METHOD AND APPARATUS FOR PERFORMING PREDICATE PREDICTION

A method and apparatus for performing predicate prediction. In one method, both a predicted predicate value for a predicate and a confidence value for the predicted predicate value are determined.

Skip to: Description  ·  Claims  · Patent History  ·  Patent History
Description
FIELD OF THE INVENTION

[0001] The present invention relates to computer systems and more particularly to computer system processors that support predication and perform predicate prediction.

BACKGROUND OF THE INVENTION

[0002] A processor manipulates and controls the flow of data in a computer system. Increasing the speed of the processor will tend to increase the computational power of the computer. Processor designers employ many different techniques to increase processor speed to create more powerful computers for consumers. One technique for increasing processor speed is called predication.

[0003] Predication is the conditional execution of instructions depending on the value of a variable called a predicate. For example, consider the two instructions:

[0004] COMPARE a, b=P

[0005] IF (P) THEN c=a+b

[0006] The first instruction, COMPARE a, b=P, determines a value for the predicate P. For example, if a is equal to b, then the value of predicate P is “True”, and if a is not equal to b, then the value of predicate P is “False.” “True” and “False” are typically represented in a computer system as single bit values “1” and “0”, respectively (or “0” and “1”, respectively, in a negative logic implementation).

[0007] The second instruction, IF (P) THEN c=a+b, includes two parts. The first part, IF (P) THEN, predicates (or conditions) the second part, c=a+b, on the value of predicate P. If P is true (e.g. a “1”), then the value of c is set equal to the value of a+b. If P is false (e.g. a “0”), then the second part of the instruction is skipped and the processor executes the next sequential instruction in the program code.

[0008] Unfortunately, the compare instruction, COMPARE a, b=P, can take a lengthy amount of time to process. Because of this, the execution of subsequent instructions in the program code sequence may be delayed until the compare instruction is resolved.

[0009] To increase processing speed, advanced processors predict predicate values. A processor may use any of a variety of methods to predict a predicate value for a predicate, and the processor then uses the predicted predicate value to evaluate subsequent, predicated instructions. For example, assume the processor that executes the above program code predicts that predicate P is 1. The processor executes the predicated instruction, IF P THEN c=a+b, by assigning the value of a+b to c. The processor then continues executing subsequent instructions in the program sequence before the compare instruction, COMPARE a, b=P, completes execution.

[0010] Once the compare instruction is executed, the actual predicate value is determined. If the actual predicate value is equal to the predicted predicate value used by the processor, the prediction is deemed correct and the processor continues executing the remaining program code normally. If the actual predicate value is not equal to the predicted predicate value used by the processor, the prediction is deemed incorrect. In the event of an incorrect prediction, the processor must back up to the predicated instruction, IF P THEN c=a+b, and re-execute all subsequent instructions (or at least those instructions that are dependent on the predicated instruction) using the actual predicate value. Re-executing these instructions results in a time delay and, consequently, performance degradation of the processor. This time delay is referred to as the recovery time for a mispredicted predicate, and it is typically longer than the amount of delay the processor would otherwise have experienced had it never attempted to predict the predicate in the first place.

[0011] It is important, therefore, to predict predicates as accurately as possible to ensure that recovery time penalties do not exceed predicate prediction time savings. Sometimes a predicate can be predicted with great accuracy. For example, when the actual predicate value of a particular predicate is “0” the last five times an instruction is executed, chances are very good that a predicted predicate value of “0” will be accurate the sixth time the instruction is executed. In contrast, sometimes a predicate cannot be predicted with much accuracy. For example, when the actual predicate value of a particular predicate is randomly either “0” or “1” the last five times an instruction is executed, chances are not much better than 50% that a predicted predicate value of “0” will be accurate the sixth time the instruction is executed.

[0012] In the past, processor designers would simply hope that, on average, predicate prediction accuracy odds favor making predicate predictions to improve processor performance.

SUMMARY OF THE INVENTION

[0013] A new method and apparatus for performing predicate prediction is described. In one method, both a predicted predicate value for a predicate and a confidence value for the predicted predicate value are determined.

[0014] Other features and advantages of the present invention will be apparent from the accompanying drawings and the detailed description that follows.

BRIEF DESCRIPTION OF THE DRAWINGS

[0015] The present invention is illustrated by way of example and not limitation in the figures of the accompanying drawings in which like references indicate similar elements and in which:

[0016] FIG. 1 is program code including a predicated instruction;

[0017] FIG. 2 is a state diagram for predicate prediction in accordance with an embodiment of the present invention;

[0018] FIG. 3 is a predicate predictor implementing the state diagram of FIG. 2;

[0019] FIG. 4 is a state diagram for predicate prediction in accordance with an alternate embodiment of the present invention; and

[0020] FIG. 5 is a flow chart showing a method of the present invention.

DETAILED DESCRIPTION

[0021] A method and apparatus for performing predicate prediction is described in which a predicate is predicted when the confidence in the accuracy of the prediction is high, and the predicate is not predicted when confidence is low. The predicate predictor that implements an embodiment of this invention includes a predicate table having two entries per predicate. The first entry is a predicted predicate value for the predicate and the second entry is a confidence value for the predicted predicate value. The predicate predictor further includes output and input circuitry coupled to the predicate table. The output circuitry evaluates the confidence value and determines if a predicate should be predicted. The input circuitry updates the predicted predicate and confidence values based on previous predicted predicate and confidence values and actual predicate values evaluated by the processor.

[0022] In one method of the present invention, the predicted predicate and confidence values corresponding to the predicate of a fetched predicated instruction are read from the predicate table. If the confidence value has a predetermined logical relationship to a predetermined value, no prediction is made. Instead, the execution of the instruction is stalled until the actual predicate value is determined. For example, if the confidence value is less than a particular value, it indicates a low confidence level in the predicted predicate value. In response, a pipeline of the processor is stalled until the actual predicate value is determined. If the confidence value is greater than or equal to the predetermined value, indicating a high confidence level in the predicted predicate value, a prediction is made using the predicted predicate value, and execution of the instruction continues normally.

[0023] After the instruction that determines the actual predicate value completes execution, the resulting actual predicate value is compared to the predicted predicate value. If the prediction was correct, the confidence value corresponding to the predicate is modified in the predicate table by increasing (or decreasing in an inverted implementation) the confidence value, if not already saturated, to indicate increased confidence in the predicted predicate value. If the prediction was incorrect, the confidence value is modified in the predicate table, if not already saturated, to indicate decreased confidence in the predicted predicate value. In this manner, the confidence value tracks correct and incorrect predictions for the predicate made by the predicate predictor. For one embodiment of the present invention, the actual predicate value is also used to update the predicted predicate value in the predicate table.

[0024] A more detailed description of embodiments of the present invention, including various configurations and implementations, is provided below.

[0025] FIG. 1 is program code 100 including four instructions. The first instruction, MOVE 5→R(a), inserts the value 5 into register R(a). The next instruction, COMPARE R(b), R(c)→p2, compares the value in register R(b) with the value in register R(c) and, if the values are equal, stores a value of 1 (True) in a predicate table for predicate p2. Otherwise, if the value in register R(b) is not equal to the value in register R(c), a value of 0 (False) is stored in the predicate table for predicate p2. The next instruction, IF (p2) THEN MOVE 6→R(a), inserts the value 6 into register R(a) if p2 is 1, and otherwise does nothing if p2 is 0. The last instruction, ADD R(a)+5→R(d), inserts the value of 5 plus the value in register R(a) into register R(d).

[0026] Instruction IF (p2) THEN MOVE 6→(a) of FIG. 1 is a predicated instruction, the execution of which is predicated on the value of predicate p2. If p2 is 1 (i.e. the value in register R(b) is equal to the value in register R(c)), then the value in register R(d) is 11. If p2 is 0, then the value in register R(d) is 10. In accordance with one embodiment, the COMPARE instruction takes three clocks to complete and the IF-THEN and ADD instructions take one clock each. Given these conditions, the IF-THEN and ADD instructions following the COMPARE instruction can be executed before the COMPARE instruction completes if the value of predicate p2 can be predicted. Unfortunately, if p2 is incorrectly predicted, the recovery time may take, for example, ten or more clocks. Therefore, it is important that p2 be predicted only if there is a high likelihood that the prediction will be correct. Otherwise, it is best to wait the three clocks until the COMPARE instruction completes and the actual predicate value for p2 is determined before executing the IF-THEN and ADD instructions.

[0027] If the four instructions in the program code 100 of FIG. 1 are contained in a loop, the processor may fetch these instructions many times. After the predicated IF-THEN instruction is fetched, its controlling predicate, p2, is looked up in a predicate table where corresponding predicted predicate and confidence values are read. These values are used by a predicate predictor to make good prediction decisions, and, if necessary, to modify the table entries so that better prediction decisions are made the next time the instruction is re-fetched. The predicate predictor operates according to the state diagram of FIG. 2.

[0028] FIG. 2 is a state diagram for predicate prediction in accordance with an embodiment of the present invention in which four states are defined. In state 220, the predicted predicate value (PPV) in the predicate table corresponding to the desired predicate (p2 in the case of the program code sequence of FIG. 1) is 1. The confidence value (CV) for this PPV, also in the predicate table corresponding to the desired predicate, is 1. For this embodiment of the present invention, a CV of 1 indicates a high confidence in the accuracy of the PPV, so the predicate is predicted to be the PPV of 1. If the actual predicate value (APV) is determined to be 1 after executing the COMPARE instruction that calculates the predicate value, then the prediction is correct, and the high CV of 1 for the PPV of 1 is maintained.

[0029] If, however, the APV is determined to be 0, then the prediction is incorrect and the state machine transitions to state 225 of FIG. 2. Note that the incorrect prediction results in a recovery delay including a pipeline flush and re-execution of the instruction predicated on the incorrectly predicted predicate. In addition, any subsequent instructions that relied directly or indirectly on the incorrectly predicted predicate are flushed and re-executed.

[0030] In state 225 of FIG. 2 the CV is lowered to 0, indicating less confidence in the PPV, and the PPV is modified by setting its value to the previously calculated APV of 0. The CV and PPV are entered back into the predicate table at the location corresponding to the incorrectly predicted predicate. In accordance with the embodiment of FIG. 2, a CV of 0 tells the processor that the odds that the PPV is accurate are very low. So low, in fact, that it would be better to wait until the APV is determined by, for example, completing execution of a COMPARE instruction rather than using the PPV to predict the predicate and possibly suffer a significant recovery delay. For this reason, the predicate predictor sends a signal to the instruction scheduling and execution units of the processor. In response, pipeline stalls are inserted until the APV is determined. Once the APV is determined, the APV is used to resolve the predication, and instruction execution proceeds normally.

[0031] For an alternate embodiment of the present invention, instead of inserting pipeline stalls until the APV is determined, stalls are inserted for a predetermined period of time. This embodiment may be found useful in applications in which it is already known how long (i.e. how many clocks) it takes to determine the APV for most applications. In accordance with this embodiment of the present invention, this predetermined period of time is less than the recovery time for a mispredicted predicate.

[0032] If the predicate predictor is in state 225 of FIG. 2 and an APV is determined to be 1, the predicate predictor transitions to state 235. In state 235, the CV remains 0, indicating low confidence in the PPV, and the PPV is modified by setting its value to the previously calculated APV of 1. The CV and PPV are entered back into the predicate table at the location corresponding to the incorrectly predicted predicate. In accordance with the embodiment of FIG. 2, the CV of 0 tells the processor that the odds that the PPV is accurate are very low. Therefore, the predicate predictor sends a signal to the instruction scheduling and execution units of the processor. In response, pipeline stalls are inserted until the APV is determined. Once the APV is determined, the APV is used to resolve the predication, and instruction execution proceeds normally.

[0033] Once in state 235, if an APV is determined to be 1, the predicate predictor transitions back to state 220 described above, and the CV is raised to 1 while the PPV remains unchanged. If, on the other hand, the APV is determined to be 0, the predicate predictor transitions back to state 225.

[0034] If the predicate predictor is in state 225 of FIG. 2 and an APV is determined to be 0, the predicate predictor transitions to state 240. In state 240, the CV is raised to 1 and the PPV is set to 0. The CV of 1 indicates a high confidence in the PPV. The CV and PPV are entered back into the predicate table at the locations corresponding to the predicate. When the predicate predictor is in state 240, predictions are made for the predicate in a corresponding position in the predicate table using a PPV of 0. If, after predicting a PPV of 0, the APV is determined to be 1, the predicate predictor transitions to state 235, described above, whereupon the CV is lowered to 0 and the PPV is set to the calculated APV of 1. If, however, the APV is determined to be 0, the predicate predictor remains in state 210.

[0035] For an alternate embodiment of the present invention, additional stall states or prediction states are inserted into the state machine of the predicate predictor. One such embodiment is described below in conjunction with FIG. 4. For another embodiment, the CV and PPV are determined independently of one another. In accordance with an alternate embodiment of the present invention, inverted logic is used in which a lower CV indicates a higher confidence in the PPV, and vice-versa. In addition, an alternate algorithm may be implemented to determine the PPV other than the above-described algorithm in which a subsequent PPV is simply set to it's immediately preceding APV.

[0036] FIG. 3 is a predicate predictor implementing the state diagram of FIG. 2. Predicate table 300 includes PPV entries and CV entries, each corresponding to a predicate. The output of the PPV portion of table 300 is coupled to the PPV input of instruction scheduling and execution pipeline 305. The output of the CV portion of table 300 is coupled to the inverted STALL input of pipeline 305. The output of instruction decoder 310 is coupled to the instruction input of pipeline 305 as well as to predicate select circuitry (e.g. a multiplexer) coupled to predicate table 300. The PPV and APV outputs of pipeline 305 are coupled to inputs of XOR gate 355. In addition, the APV output of pipeline 305 is coupled to the input of the PPV portion of predicate table 300. The predicate output of pipeline 305 is coupled to the predicate select circuitry of predicate table 300. The output of XOR gate 355 is coupled to the input of the CV portion of predicate table 300 via inverter 350. The output of XOR gate 355 is also coupled to an input of AND gate 360. The inverted STALL output of pipeline 305 is coupled to the other input of AND gate 360, the output of the AND gate being coupled to the flush signal input to pipeline 305.

[0037] To demonstrate the operation of the predicate predictor of FIG. 3, consider the execution of program code 100 of FIG. 1. After the processor fetches the instruction COMPARE R(b), R(c)→p2, the instruction is decoded in instruction decoder 310 and is executed in instruction scheduling and execution pipeline 305 of FIG. 3. After the processor fetches the instruction IF (p2) THEN MOVE 6→R(a), the instruction is decoded in instruction decoder 310. Predicate p2 is extracted from the decoded instruction and forwarded from instruction decoder 310 to the predicate select circuitry of predicate table 300. The PPV of 1 and CV of 1 corresponding to p2 are read. This corresponds to state 220 of FIG. 2. The decoded instruction is also forwarded from instruction decoder 310 to the instruction input to pipeline 305.

[0038] The PPV of 1 is forwarded to the PPV input of pipeline 305 in FIG. 3 and the CV of 1 is forwarded to the inverted STALL input of pipeline 305. The STALL signal, therefore, is 0, indicating that pipeline 305 is not to be stalled (i.e. a prediction is to be made using PPV). Within pipeline 305, the IF-THEN instruction is evaluated predicting that p2 is true. As a result, the value of 6 is moved into register R(a). The subsequent instruction, ADD R(a)+5→R(d), is decoded by decoder 310 and forwarded to pipeline 305 where it is executed. Hence, 11 (R(a) plus 5), is inserted into register R(d).

[0039] After these instructions are executed in pipeline 305 of FIG. 3, the COMPARE instruction completes, and the APV is determined and forwarded to an input of XOR gate 355 and to the PPV input of predicate table 300. The PPV of 1 for p2 is also forwarded to an input of XOR gate 355. If the APV for p2 is equal to 1 (i.e. the value in register R(b) is equal to the value in register R(c)), then the output of XOR gate 355 is 0. This 0 is inverted to a 1 and is provided to the CV input of predicate table 300. The 1 is entered into the table for the CV entry corresponding to p2. The APV of 1 is also entered into the table for the PPV entry corresponding to p2. The output of XOR gate 355 of 0 is also provided to an input of AND gate 360, ensuring that the output of this gate is also 0, resulting in no flush of pipeline 305.

[0040] If, instead, the APV for p2 is equal to 0 ((i.e. the value in register R(b) is not equal to the value in register R(c)), then the output of XOR gate 355 of FIG. 3 is 1. This 1 is inverted to a 0 and is provided to the CV input of predicate table 300. The 0 is entered into the table for the CV entry corresponding to p2. The APV of 0 is also entered into the table for the PPV entry corresponding to p2. The output of XOR gate 355 of 1 is provided to an input of AND gate 360. The inverted stall output from pipeline 305, which is also 1, is provided to the other input of AND gate 360. As a result, the output of the AND gate is 1, and this 1 is provided to the flush input to pipeline 305, causing the pipeline to flush and re-execute the predicated IF-THEN instruction along with any subsequently executed dependent instructions.

[0041] The PPV of 0 and CV of 0 entered into predicate table 300 for predicate p2 corresponds to a transition to state 225 of FIG. 2. A subsequent use of predicate p2 would result in stalling the execution of the instruction predicated on p2 until its APV is determined, and a transition to either state 235 if the APV is determined to be 1 or state 240 if the APV is determined to be 0.

[0042] For an alternate embodiment of the present invention, the PPV and CV entries corresponding to each predicate in the predicate table are unified such that a PPV and a CV can be determined from a single entry in the table. For another embodiment, each PPV or CV entry includes 2 or more bits to accommodate, for example, more sophisticated predicate prediction techniques or additional confidence states.

[0043] FIG. 4 is a state diagram for predicate prediction in accordance with an alternate embodiment of the present invention in which additional confidence states are implemented and the PPV calculation is independent of CV calculation. This embodiment may be implemented using a counter to modify the CV wherein the CV is incremented with every correct prediction (the PPV is equal to the APV for a particular predicate) and is decremented with every incorrect prediction (the PPV is not equal to the APV for a particular predicate) with saturation at both ends.

[0044] In state 400 of FIG. 4, the CV is 00. For this embodiment, a CV of 00 indicates a very low confidence in the PPV. As a result, stalls are inserted in the processor pipeline until the APV is calculated by execution of, for example, a COMPARE instruction. Once the APV is determined, it is compared to the PPV stored in the predicate prediction table. If the APV is not equal to the PPV, the PPV is deemed to be “incorrect” (even though no actual prediction was made), and the predicate predictor remains in state 400 for the particular predicate. If, however, the APV is equal to the PPV, the PPV is deemed to be “correct”, and the predicate predictor transitions to state 405, incrementing the CV to 01.

[0045] In state 405 of FIG. 4, the CV is 01. For this embodiment, a CV of 01 indicates a low confidence in the PPV. As a result, stalls are inserted in the processor pipeline until the APV is calculated. After the APV is determined, it is compared to the PPV stored in the predicate table. If the APV is not equal to the PPV, the PPV is incorrect and the predicate predictor transitions back to state 400, decrementing the CV to 00. If, however, the APV is equal to the PPV, the PPV is correct, and the predicate predictor transitions to state 410, incrementing the CV to 10.

[0046] In state 410 of FIG. 4, the CV is 10 and, for this embodiment, a CV of 10 indicates a sufficiently high confidence in the PPV. As a result, a prediction is made that the predicate is equal to the PPV. After the APV is determined, it is compared to the PPV. If the APV is not equal to the PPV, the PPV is incorrect and the predicate predictor transitions back to state 405, decrementing the CV to 00. In addition, the processor must recover from the incorrect prediction, as explained above. If, however, the APV is equal to the PPV, the PPV is correct, and the predicate predictor transitions to state 415, incrementing the CV to 11.

[0047] In state 415 of FIG. 4, the CV is 11 and, for this embodiment, a CV of 11 indicates a high confidence in the PPV. As a result, a prediction is made that the predicate is equal to the PPV. After the APV is determined, it is compared to the PPV. If the APV is not equal to the PPV, the PPV is incorrect and the predicate predictor transitions back to state 410, decrementing the CV to 10. In addition, the processor must recover from the incorrect prediction, as explained above. If, however, the APV is equal to the PPV, the PPV is correct, and the predicate predictor remains in state 415. The embodiment of FIG. 4, in comparison to FIG. 2, tolerates occasional mispredictions while allowing predictions to continue.

[0048] FIG. 5 is a flow chart showing a method of the present invention. At step 500 a predicated instruction is fetched. The instruction is predicated on a predicate. At step 505 a predicted predicate value is determined for the predicate. This predicted predicate value may be determined by reading a PPV entry from a predicate table in a position corresponding to the predicate, or by reading some other entry corresponding to the predicate and calculating the PPV therefrom. At step 510 a confidence value is determined for the predicted predicate value. This confidence value may be determined by reading a CV entry from a predicate table in a position corresponding to the predicate, or by reading some other entry corresponding to the predicate and calculating the CV therefrom. In accordance with one embodiment of the present invention, steps 505 and 510 are performed in parallel.

[0049] At step 515 of FIG. 5, it is determined if a confidence value is less than a particular threshold value. The threshold value may be predetermined by a processor designer and hardwired into the processor through the use of logic circuits coupled to a predicate table. Alternatively, the threshold value may be programmed by a user of the processor or may be dynamically adjusted by additional logic.

[0050] If the confidence value is less than the threshold value, the execution of the instruction is stalled at step 525 until the actual predicate value is determined. If, however, the confidence value is not less than the threshold value (i.e. it is greater than or equal to the threshold value), then the predicate is predicted to be the predicted predicate value at step 520.

[0051] This invention has been described with reference to specific exemplary embodiments thereof. It will, however, be evident to persons having the benefit of this disclosure that various modifications and changes may be made to these embodiments without departing from the broader spirit and scope of the invention. The specification and drawings are, accordingly, to be regarded in an illustrative rather than a restrictive sense.

Claims

1. A method of performing predicate prediction in a processor, the method comprising:

determining a predicted predicate value for a predicate; and
determining a confidence value for the predicted predicate value.

2. The method of

claim 1, further comprising stalling a portion of the processor if the confidence value has a predetermined logical relationship to a predetermined value.

3. The method of

claim 2, wherein stalling continues until an actual predicate value is determined for the predicate.

4. The method of

claim 2, wherein stalling continues for a predetermined period of time.

5. The method of

claim 4, wherein the predetermined period of time is less than the recovery time for a mispredicted predicate.

6. The method of

claim 2, further comprising predicting the predicate to be the predicted predicate value if the confidence value is greater than or equal to the predetermined value.

7. The method of

claim 1, further comprising predicting the predicate to be the predicted predicate value if the confidence value has a predetermined logical relationship to a predetermined value.

8. The method of

claim 1, wherein determining the confidence value comprises tracking correct and incorrect predictions for the predicate.

9. The method of

claim 2, wherein determining the confidence value comprises tracking correct and incorrect predictions for the predicate.

10. A method of performing predicate prediction in a computer system, the method comprising the steps of:

accessing a first entry corresponding to a first predicate in a table;
predicting the first predicate to be a first predicted predicate value in response to accessing the first entry;
creating a modified first entry in the table if it is determined that the first predicted predicate value is incorrect;
accessing the modified first entry corresponding to the first predicate in the table; and
stalling execution of a first instruction that is predicated on the first predicate in response to accessing the modified first entry.

11. The method of

claim 10, further comprising the steps of:
accessing a second entry corresponding to a second predicate in the table;
predicting the second predicate to be a second predicted predicate value in response to accessing the second entry;
creating a modified second entry in the table if it is determined that the second predicted predicate value is incorrect;
accessing the modified second entry corresponding to the second predicate in the table; and
stalling execution of a second instruction that is predicated on the second predicate in response to accessing the modified second entry.

12. The method of

claim 10, wherein the step of accessing the first entry comprises the sub-steps of:
searching for the first predicate in the table; and
reading a first confidence value corresponding to the first predicted predicate value.

13. The method of

claim 12, wherein the step of creating the first entry comprises the step of changing the first confidence value.

14. The method of

claim 10, wherein the step of predicting comprises the sub-steps of:
searching for the first predicate in the table;
reading a first predicted predicate value corresponding to the first predicate in the table; and
conditionally executing the first instruction depending on the first predicted predicate value.

15. The method of

claim 10, further comprising the steps of fetching the first instruction before the step of accessing the first entry, and re-fetching the first instruction after the step of creating the first entry and before the step of accessing the modified first entry.

16. The method of

claim 10, wherein the step of stalling continues until an actual predicate value is determined for the first predicate.

17. A predicate predictor in a processor, the predicate predictor comprising:

a predicate table including a first initial entry corresponding to a first predicate; and
an output circuit coupled to the table to either predict the first predicate or to cause a portion of the processor to stall based on the first initial entry.

18. The predicate predictor of

claim 17, further comprising an input circuit coupled to the table to insert a first modified entry in the table corresponding to the first predicate, the first modified entry being based on the first initial entry and a first actual predicate value.

19. The predicate predictor of

claim 17, wherein the predicate table further includes a second initial entry corresponding to a second predicate, and the output circuit either predicts the second predicate or causes the portion of the processor to stall based on the second initial entry.

20. The predicate predictor of

claim 19, further comprising an input circuit coupled to the table to insert a first modified entry and a second modified entry in the table corresponding to the first predicate and the second predicate, respectively, the first modified entry being based on the first initial entry and a first actual predicate value, and the second modified entry being based on the second initial entry and a second actual predicate value.

21. The predicate predictor of

claim 17, wherein the output circuit predicts the first predicate if the first initial entry indicates that a first confidence value corresponding to a first predicted predicate value is greater than a predetermined value, and the output circuit otherwise causes a portion of the processor to stall.

22. The predicate predictor of

claim 17, wherein the output circuit predicts the first predicate if the first initial entry indicates that a first confidence value corresponding to a first predicted predicate value is less than a predetermined value, and the output circuit otherwise causes a portion of the processor to stall.
Patent History
Publication number: 20010042195
Type: Application
Filed: Aug 4, 1998
Publication Date: Nov 15, 2001
Inventor: RALPH M. KLING (SUNNYVALE, CA)
Application Number: 09129141