The subject matter presented here relates to the field of information or data processing. More specifically, this invention relates to the field of implementing a processor achieving increased performance via elimination of serial dependencies in instructions or instruction sequences.
Information or data processors are found in many contemporary electronic devices such as, for example, personal computers, personal digital assistants, game playing devices, video equipment and cellular phones. Processors used in today's most popular products are known as hardware as they comprise one or more integrated circuits. Processors execute software to implement various functions in any processor based device. Generally, software is written in a form known as source code that is compiled (by a complier) into object code. Object code within a processor is implemented to achieve a defined set of assembly language instructions that are executed by the processor using the processor's instruction set. An instruction set defines instructions that a processor can execute. Instructions include arithmetic instructions (e.g., add and subtract), logic instructions (e.g., AND, OR, and NOT instructions), and data instructions (e.g., move, input, output, load, and store instructions). As is known, computers with different architectures can share a common instruction set. For example, processors from different manufacturers may implement nearly identical versions of an instruction set (e.g., an x86 instruction set), but have substantially different architectural designs.
To meet the ever growing demand for increased processor performance, processor architectures are continually evolving. When a new or next generation processor is released, it is generally compatible with code previously compiled for a preceding generation of processor. However, compatible does not mean optimized, and while the prior code will run (without error) on the next generation processor, efficiency may suffer due to dependencies created when the prior code is executed on the next generation processor. As is well known in the art, dependencies can cause delay where one instruction is required to wait for the completion of another instruction. Serial dependencies result when instructions or sequence of instructions must be performed in a certain order, which hinders the efficiency of super-scalar or multi-threaded processors. Sometimes, these dependencies can arise due to architectural enhancements or added functionality in the next generation processor. Not only can the previously written code not take full advantage of enhanced functionality of the next generation processor, but running the previously written code reduces the efficiency of the next generation processor due to the creation of instruction (or sequence of instruction) dependencies. Conventional approaches to attempt to recover some of the lost efficiency include running a software-based screening and patch program on top of the executable code to try and patch some of the dependencies. Another approach is to simply re-compile the source code using a new compiler alternative for the new processor architecture. However, this latter approach is generally cost prohibitive for large bodies of software previously written for the prior model processor.
An apparatus is provided for achieving increased performance via elimination of serial dependencies in instructions or instruction sequences. The apparatus comprises an operational unit for determining whether an instruction will cause dependencies during completion in an execution unit. Responsive to a determination that the instruction will cause dependencies a unit will replace the instruction with an alternative instruction for completion in the execution unit. In this way, the alternative instruction is completed without causing dependencies in the execution unit.
A method is provided for achieving increased performance via elimination of serial dependencies in instructions. The method comprises determining that an instruction will cause dependencies during completion in a processor and replacing the instruction with an alternative instruction for completion in the processor.
In another embodiment, a method is provided for achieving increased performance via elimination of serial dependencies in instruction sequences. The method comprises determining that one or more instructions in a sequence of instructions will cause dependencies during completion in a processor and replacing the one or more instructions with alternative instructions for completion in the processor.
In yet another embodiment, a method is provided for achieving increased performance via elimination of serial dependencies in instruction sequences. The method comprises determining that one or more instructions in a sequence of instructions will cause dependencies during completion in a processor and replacing the entire sequence of instructions with an alternative sequence of instructions for completion in the processor.
The present invention will hereinafter be described in conjunction with the following drawing figures, wherein like numerals denote like elements, and
The following detailed description is merely exemplary in nature and is not intended to limit the invention or the application and uses of the invention. As used herein, the word “exemplary” means “serving as an example, instance, or illustration.” Thus, any embodiment described herein as “exemplary” is not necessarily to be construed as preferred or advantageous over other embodiments. Moreover, as used herein, the word “processor” encompasses any type of information or data processor, including, without limitation, Internet access processors, Intranet access processors, personal data processors, military data processors, financial data processors, navigational processors, voice processors, music processors, video processors or any multimedia processors. All of the embodiments described herein are exemplary embodiments provided to enable persons skilled in the art to make or use the invention and not to limit the scope of the invention which is defined by the claims. Furthermore, there is no intention to be bound by any expressed or implied theory presented in the preceding technical field, background, brief summary, the following detailed description or for any particular processor microarchitecture.
Referring now to
Referring now to
In operation, the decode unit 24 decodes the incoming operation-codes (opcodes) to be dispatched for the computations or processing. The decode unit 24 is responsible for the general decoding of instructions (e.g., x86 instructions and extensions thereof) and how the delivered opcodes may change from the instruction. The decode unit 24 will also pass on physical register numbers (PRNs) from a available list of PRNs (often referred to as the Free List (FL)) to the rename unit 26.
The rename unit 26 maps logical register numbers (LRNs) to the physical register numbers (PRNs) prior to scheduling and execution. According to various embodiments of the present disclosure, the rename unit 26 can be utilized to rename or remap logical registers in a manner that eliminates the need to store known data values in a physical register. In one embodiment, this is implemented with a register mapping table stored in the rename unit 26. According to the present disclosure, renaming or remapping registers saves operational cycles and power, as well as decreases latency.
The scheduler 28 contains a scheduler queue and associated issue logic. As its name implies, the scheduler 28 is responsible for determining which opcodes are passed to execution units and in what order. In one embodiment, the scheduler 28 accepts renamed opcodes from rename unit 26 and stores them in the scheduler 28 until they are eligible to be selected by the scheduler to issue to one of the execution pipes.
The register file control 32 holds the physical registers. The physical register numbers and their associated valid bits arrive from the scheduler 30. Source operands are read out of the physical registers and results written back into the physical registers. In one embodiment, the register file control 32 also check for parity errors on all operands before the opcodes are delivered to the execution units. In a multi-pipelined (super-scalar) architecture, an opcode (with any data) would be issued for each execution pipe.
The execute unit(s) 34 may be embodied as any generation purpose or specialized execution architecture as desired for a particular processor. In one embodiment the execution unit may be realized as a single instruction multiple data (SIMD) arithmetic logic unit (ALU). In another embodiment, dual or multiple SIMD ALUs could be employed for super-scalar and/or multi-threaded embodiments, which operate to produce results and any exception bits generated during execution.
In one embodiment, after an opcode has been executed, the instruction can be retired so that the state of the floating-point unit 16 or integer unit 18 can be updated with a self-consistent, non-speculative architected state consistent with the serial execution of the program. The retire unit 36 maintains an in-order list of all opcodes in process in the floating-point unit 16 (or integer unit 18 as the case may be) that have passed the rename 26 stage and have not yet been committed by to the architectural state. The retire unit 36 is responsible for committing all the floating-point unit 16 or integer unit 18 architectural states upon retirement of an opcode.
Referring now to
Referring now to
Beginning in step 50, the instruction is decoded. Next, step 52 compares the instruction to dependency data (44 of
However, if the determination of decision 54 is that the instruction will (or may) cause dependencies, the original instruction is held (stored) and replaced with an alternative instruction (or instruction sequence) (step 60). In one embodiment, the alternative instruction(s) are optimized for the architecture of the processor 10. The alternative instruction is executed in step 62 (in lieu of the original instruction) and decision 64 determines if an error or interrupt has occurred, whether due to the substitution of the alternative code for the original code or not. Although illustrated as occurring after execution of the alternative instruction, those skilled in the art understand the error detection or interrupts may occur at various points during instruction scheduling or execution in an operation unit of a processor. In the case of instruction sequences, one embodiment determines that the entire sequence will (or is likely) to cause dependencies and replaces the entire sequence of instructions with an alternative instruction sequence. In another embodiment, it could be determined that one or more of the instructions in the sequence of instructions will cause dependencies and only those instructions are replaced. In yet another embodiment, upon detecting that one instruction of an instruction sequence will (or is likely) to cause dependencies, the entire sequence of instructions is replaced with alternative instructions so as to minimize the occurrence of errors during completion. In any event, if no error has occurred, then the alternative instruction is retired (step 58) and the efficiency of the processor (or operational unit) has been enhanced and latency reduced due to the use of the alternative instruction instead of the original instruction.
However, since backward compatibility should be preserved in any next generation processor, if an error is detected by decision 64, the state of the operational unit is flushed and returned to a non-speculative architected state. Thus, the operational unit is returned to a state that is consistent with its state of the operational unit prior to substituting the alternative code for the original code. The original code is then retrieved and executed (even though it is less efficient due to dependencies) and the original instruction is retired. In this way, efficiency is enhanced and latency reduced for each possible instruction, while maintaining backward compatibility for previously written code.
Various processor-based devices may advantageously use the processor (or computational unit) of the present disclosure, including laptop computers, digital books, printers, scanners, standard or high-definition televisions or monitors and standard or high-definition set-top boxes for satellite or cable programming reception. In each example, any other circuitry necessary for the implementation of the processor-based device would be added by the respective manufacturer. The above listing of processor-based devices is merely exemplary and not intended to be a limitation on the number or types of processor-based devices that may advantageously use the processor (or computational unit) of the present disclosure.
While at least one exemplary embodiment has been presented in the foregoing detailed description of the invention, it should be appreciated that a vast number of variations exist. It should also be appreciated that the exemplary embodiment or exemplary embodiments are only examples, and are not intended to limit the scope, applicability, or configuration of the invention in any way. Rather, the foregoing detailed description will provide those skilled in the art with a convenient road map for implementing an exemplary embodiment of the invention, it being understood that various changes may be made in the function and arrangement of elements described in an exemplary embodiment without departing from the scope of the invention as set forth in the appended claims and their legal equivalents.