A method for optimizing throughput in a microprocessor that is capable of processing multiple threads of instructions simultaneously. instruction issue logic is provided between the input buffers and the pipeline of the microprocessor. The instruction issue logic speculatively issues instructions from a given thread based on the probability that the required operands will be available when the instruction reaches the stage in the pipeline where they are required. issue of an instruction is blocked if the current pipeline conditions indicate that there is a significant probability that the instruction will need to stall in a shared resource to wait for operands. Once the probability that the instruction will stall is below a certain threshold, based on current pipeline conditions, the instruction is allowed to issue.
|
8. A computer program product in a computer readable medium for issuing instructions in a multithreaded computer processor, wherein the computer program product comprises:
first instructions for receiving a set of computer instructions in an instruction issue logic, wherein each instruction of said set comprises one instruction from each of a plurality of independent instruction threads;
second instructions for identifying as dependent instructions those received instructions that require a result from a prerequisite instruction;
third instructions for determining a probability for each received instruction that the received instruction will complete all stages of a multi-stage instruction pipeline of the processor without causing a stall, wherein the probability for each received instruction is expressed as a percentage value;
fourth instructions for selecting the received instruction of the set that is least likely to cause a stall in the multi-stage pipeline; and
fifth instructions for issuing the selected instruction into the pipeline for processing, from the instruction issue logic, when the probability for the selected instruction is above a predetermined threshold that is 50%.
1. A simultaneous multithreaded computer processor with speculative instruction issue that increases throughput, the computer processor comprising:
multiple independent input buffers, wherein one set of buffers is provided for each of a plurality of independent threads of instructions;
instruction issue logic that has an output buffer and is connected to the independent input buffers, wherein the instruction issue logic:
receives a set of instructions comprising one instruction from each of the threads of instructions;
identifies as dependent instructions those received instructions that require a result from a prerequisite instruction;
determines a probability for each instruction that the each instruction will complete all stages of a multi-stage instruction pipeline of the processor without causing a stall, wherein the probability for each received instruction is expressed as a percentage value;
selects the received instruction of the set that is least likely to cause a stall in the multi-stage pipeline; and
issues the selected instruction into the pipeline for processing, from the instruction issue logic, when the probability for the selected instruction is above a predetermined threshold that is 50%; and
wherein a first stage of the multi-stage pipeline is connected to an output buffer of the instruction issue logic.
2. The computer processor of
3. The computer processor of
4. The computer processor of
5. The computer processor of
6. The computer processor of
7. The computer processor of
9. The computer program product of
sixth instructions for determining whether there is a shared resource conflict between two or more of the received instructions of said set.
10. The computer program product of
11. The computer program product of
seventh instructions for predicting a stage, within the multi-stage instruction pipeline, where results of each instruction will be available, and determining a probability for a received instruction by calculating a critical distance comprising a number of stages between a stage when the received instruction will need a given result, and the stage when a result will be available.
12. The computer program product of
13. The computer program product of
|
This application is a continuation of application Ser. No. 10/664,384 filed Sep. 17, 2003, status allowed.
The present invention relates generally to the field of computer processors and more specifically to increasing throughput in simultaneously multi-threaded processors.
A computer processor is the heart of any computer system. They are responsible for processing the instructions that make all of the functions of the computer possible. Computer processors are also called central processing units (CPU's) and microprocessors. A pipelined computer processor has multiple stages that each instruction must traverse during the processing phase. An exemplary five stage pipelined processor contains the following stages: fetch, decode, memory access, execute and write-back. During the fetch stage, an instruction is fetched from a register, or buffer. The instruction is decoded in the decode stage to determine the type of operation to be conducted, and what operand(s) are needed to complete the operation. The required operands are retrieved during the memory access stage and execution of the instruction occurs during the execute phase. The result of the executed instruction is then written back to memory during the write-back stage. Many processors have more than five stages and some processors have more than one pipeline. However, some features of pipelined processors are the same for all pipelines. Specifically, once an instruction enters a pipeline any stall caused by the instruction will cause the entire pipeline to stall. When the pipeline is stalled, no output is produced and performance drops. Thus, preventing pipeline stalls is an important factor in achieving optimal performance in microprocessors.
Microprocessors run on a timing schedule that is coordinated by a clock. The clock provides timing signals referred to as cycles. Movement of instructions, operands and results are preferably completed upon each clock cycle. A given stage within a pipeline, such as the execute stage, may take more than one clock cycle to complete. However, the execute stage is preferably broken into multiple sub-stages so that at the end of each clock cycle some output is produced and allowed to enter the next stage. In this way, the microprocessor produces some output at the end of each clock cycle. Both clock cycle and clock frequency can be used to describe the speed of the processor. A computer with a short clock cycle will have a high clock frequency. Generally, the higher the clock frequency the faster the computer, or more accurately, the faster the computer is able to process instructions.
A thread is a line, or stream, of computer instructions that when processed achieves some objective of the computer or the computer user. Simultaneously multithreaded processors allow for the execution of two or more potentially independent instruction streams concurrently. While only one instruction can occupy any one stage of a pipeline at a time, having instructions from other threads ready for processing increases system performance. To make most efficient use of the available hardware and avoid duplication of function, some pipeline resources are shared among all threads. For a given thread to occupy a shared resource, its instruction stream must at some point be merged with the instruction streams of the other threads. For the purpose of this application, the act of an instruction from any given thread merging into a shared pipeline resource is defined as “issue”. After an instruction issues, a data dependency could cause it to stall in a shared resource until the dependency is resolved, stalling all threads which require the same resource. The impact of this problem is magnified in high frequency designs because the pipeline depth requires that the decision to issue a particular instruction be made one or more cycles before operand availability is known. This increases the chance of a dependent instruction stalling in a shared resource awaiting required operands. If instead, issue was delayed until operand availability was known, overall system performance would be negatively affected in cases where the operands would have been ready at the time the dependent instruction required them. Single threaded performance would also suffer due to the increased latency, while multithreaded performance and/or efficiency would suffer due to not utilizing every possible opportunity to issue an instruction from a given thread.
Prior attempts to remedy this problem involved blocking a thread with the dependency from issuing until its operand data is ready for forwarding. This was a suitable solution for lower frequency designs, but is not optimal for high frequency designs which must make the issue decision one or more cycles before operand availability is known due to the pipeline depth. Using this prior method in processors with a high clock frequency introduces penalty cycles to a specific thread's overall latency each time a dependency is encountered, since operand data can not be used as soon as it becomes available.
A method for issuing instructions in a simultaneous, multithreaded microprocessor. The microprocessor includes at least one multi-stage pipeline for processing instructions. The processor also includes a cache memory, multiple independent input buffers for each thread, and instruction issue logic. The instruction issue logic is in a position between the input buffers and the multi-stage pipeline. The method comprises the steps of receiving sets of instructions in the instruction issue logic at a rate equal to a clock rate of the microprocessor, wherein each set of instructions comprise one instruction from each of the independent input buffers. The instruction issue logic then predicts the pipeline stage in which the results of the each instruction will be available for forwarding. This pipeline stage information is then stored until the instruction reaches the predicted stage. The issue logic then identifies any dependent instruction that requires a result from a preceding instruction that is within a critical distance of the dependent instruction. The critical distance is equal to the number of stages between a stage when the dependent instruction will need the result and a stage when the result will be available. Based on the current contents of the pipeline, the instruction issue logic issues all instructions that have a probability above a predetermined threshold that the instruction will complete all stages of the pipeline without causing a stall. The instruction issue logic holds all instructions that have a probability below the predetermined threshold, wherein instructions held by the instruction issue logic are issued after their probability of not causing a stall in the pipeline rises above the threshold.
It is an object of the present invention to increase performance in simultaneous, multi-threaded microprocessor.
It is a further object of the invention to determine the probability of an instruction to cause a stall and speculatively issue instructions based on the determined probability.
The invention of the present application will now be described in more detail with reference to the accompanying drawings, given only by way of example, in which:
The solution described herein is to speculatively issue instructions from a given thread based on the probability that the required operands will be available when the instruction requires them. Issue of the instruction is blocked if the current pipeline conditions indicate that there is a significant probability that the instruction will need to stall in a shared resource waiting for operands. Once the probability that the instruction will stall is below a certain threshold, the instruction is allowed to issue.
Minimum latency for single threaded microprocessors can also be achieved by using the present method. Speculatively issuing the dependent instruction based on the probability that its operands will be available improves single threaded performance by issuing instructions at the “optimal” time. Blocking the issue of the dependent instruction until there is a high probability that its operands will be available incurs no penalty to the thread with the dependency. Instructions that are speculatively issued are still able to use their operands at the precise time they become available. By allowing the processor to make use of every possible issue opportunity where progress on the given thread can be made reduces the overall latency of all instruction streams that are in progress, improving both multithreaded and single threaded performance.
Given that instructions are speculatively allowed to issue based on certain predictions, it is possible for the prediction to be incorrect. An example of this case is the issue of an instruction that is dependent on a cacheable load. To keep single threaded latency as low as possible, an instruction may be speculatively issued assuming the load it is dependent on will be a cache hit. If after the time of issue, it is recognized that the load is a cache miss, the dependent instruction would be forced to wait in the shared resources until the cache miss is resolved.
The foregoing description of the specific embodiments will so fully reveal the general nature of the invention that others can, by applying current knowledge, readily modify and/or adapt for various applications such specific embodiments without departing from the generic concept. Therefore, such adaptations and modifications should and are intended to be comprehended within the meaning and range of equivalents of the disclosed embodiments. It is to be understood that the phraseology of terminology employed herein is for the purpose of description and not of limitation.
McIlvaine, Michael S., Sartorius, Thomas Andrew, Smith, Rodney W., Bridges, Jeffrey T., Augsburg, Victor R.
Patent | Priority | Assignee | Title |
Patent | Priority | Assignee | Title |
5404469, | Feb 25 1992 | INDUSTRIAL TECHNOLOGY RESEARCH INSTITUTE A CORP OF THE REPUBLIC OF CHINA | Multi-threaded microprocessor architecture utilizing static interleaving |
5555432, | Aug 19 1994 | Intel Corporation | Circuit and method for scheduling instructions by predicting future availability of resources required for execution |
5574939, | May 14 1993 | Massachusetts Institute of Technology | Multiprocessor coupling system with integrated compile and run time scheduling for parallelism |
5742782, | Apr 15 1994 | Hitachi, Ltd. | Processing apparatus for executing a plurality of VLIW threads in parallel |
5809325, | Apr 18 1996 | Intel Corporation | Circuit and method for scheduling instructions by predicting future availability of resources required for execution |
5842036, | Aug 19 1994 | Intel Corporation | Circuit and method for scheduling instructions by predicting future availability of resources required for execution |
5848256, | Sep 30 1996 | Institute for the Development of Emerging Architectures, L.L.C. | Method and apparatus for address disambiguation using address component identifiers |
5864341, | Dec 06 1996 | International Business Machines Corporation | Instruction dispatch unit and method for dynamically classifying and issuing instructions to execution units with non-uniform forwarding |
5870580, | Dec 13 1996 | Advanced Micro Devices, Inc. | Decoupled forwarding reorder buffer configured to allocate storage in chunks for instructions having unresolved dependencies |
5872947, | Oct 24 1995 | GLOBALFOUNDRIES Inc | Instruction classification circuit configured to classify instructions into a plurality of instruction types prior to decoding said instructions |
5923862, | Jan 28 1997 | Samsung Electronics Co., Ltd. | Processor that decodes a multi-cycle instruction into single-cycle micro-instructions and schedules execution of the micro-instructions |
5933627, | Jul 01 1996 | Oracle America, Inc | Thread switch on blocked load or store using instruction thread field |
5958041, | Jun 26 1997 | Oracle America, Inc | Latency prediction in a pipelined microarchitecture |
5964867, | Nov 26 1997 | HTC Corporation | Method for inserting memory prefetch operations based on measured latencies in a program optimizer |
6144982, | Jun 25 1997 | Oracle America, Inc | Pipeline processor and computing system including an apparatus for tracking pipeline resources |
6360315, | Feb 09 1999 | Apple Inc | Method and apparatus that supports multiple assignment code |
6393550, | Dec 10 1993 | Intel Corporation | Method and apparatus for pipeline streamlining where resources are immediate or certainly retired |
6442678, | Dec 31 1998 | Intel Corporation | Method and apparatus for providing data to a processor pipeline |
6601162, | Jan 19 2000 | Kabushiki Kaisha Toshiba | Processor which executes pipeline processing having a plurality of stages and which has an operand bypass predicting function |
6820173, | Feb 23 2001 | Nvidia Corporation; NVidia | Data prefetcher with predictor capabilities |
6907520, | Jan 11 2001 | Oracle America, Inc | Threshold-based load address prediction and new thread identification in a multithreaded microprocessor |
7366877, | Sep 17 2003 | International Business Machines Corporation | Speculative instruction issue in a simultaneously multithreaded processor |
20030182536, |
Executed on | Assignor | Assignee | Conveyance | Frame | Reel | Doc |
Apr 17 2008 | International Business Machines Corporation | (assignment on the face of the patent) | / |
Date | Maintenance Fee Events |
May 11 2010 | ASPN: Payor Number Assigned. |
Jan 03 2014 | REM: Maintenance Fee Reminder Mailed. |
Apr 11 2014 | M1551: Payment of Maintenance Fee, 4th Year, Large Entity. |
Apr 11 2014 | M1554: Surcharge for Late Payment, Large Entity. |
Jan 08 2018 | REM: Maintenance Fee Reminder Mailed. |
Jun 25 2018 | EXP: Patent Expired for Failure to Pay Maintenance Fees. |
Date | Maintenance Schedule |
May 25 2013 | 4 years fee payment window open |
Nov 25 2013 | 6 months grace period start (w surcharge) |
May 25 2014 | patent expiry (for year 4) |
May 25 2016 | 2 years to revive unintentionally abandoned end. (for year 4) |
May 25 2017 | 8 years fee payment window open |
Nov 25 2017 | 6 months grace period start (w surcharge) |
May 25 2018 | patent expiry (for year 8) |
May 25 2020 | 2 years to revive unintentionally abandoned end. (for year 8) |
May 25 2021 | 12 years fee payment window open |
Nov 25 2021 | 6 months grace period start (w surcharge) |
May 25 2022 | patent expiry (for year 12) |
May 25 2024 | 2 years to revive unintentionally abandoned end. (for year 12) |