1. Field of the Invention
The present invention relates to superscalar reduced instruction set computers (RISC), more particularly, the present invention relates to a register renaming circuit for superscalar RISC computers.
2. Background Art
A more detailed description of some of the basic concepts discussed in this application is found in a number of references, including Mike Johnson, Superscalar Microprocessor Design (Prentice-Hall, Inc., Englewood Cliffs, N.J., 1991) (hereafter Johnson); John L. Hennessy et al., Computer Architecture—A Quantitative Approach (Morgan Kaufmann Publishers, Inc., San Mateo, Calif., 1990). Johnson's text, particularly Chapters 2, 6 and 7 provide an excellent discussion of the register renaming issues addressed by the present invention.
A major consideration in a superscalar RISC processor is to how to execute multiple instructions in parallel and out-of-order, without incurring data errors due to dependencies inherent in such execution. Data dependency checking, register renaming and instruction scheduling are integral aspects of the solution. A detailed discussion of storage conflicts, register renaming and dependency mechanisms is found in commonly owned, co-pending U.S. Pat. No. 5,497,499 (hereafter referred to as the '499 patent).
The '499 patent discloses a register renaming circuit (RRC) having a fixed instruction window. In the fixed instruction window, dependency checking and resource assignment is done on the same set of instructions until all the instructions in the set are completed. This means that there is a fixed relationship between each instruction's position in the instruction stream and the instruction number used for resource assignment.
For example, in an instruction stream with an instruction window of 4 instructions every fourth instruction maps to instruction A (i.e., the first instruction in the window). This technique makes re-mapping of instruction very simple. In this case a 4-to-1 multiplexer is all that is necessary for each resource to forward a single instruction to that resource. However, the fixed format requires that the instruction window be advanced by a fixed amount, which results in somewhat inefficient processing.
When an instruction retires (an instruction can retire after it has been executed without exception and when all previous instructions have been executed and their results are stored in the register file), its result is moved into a main register file (i.e., the programmable visible register file) and if any instructions were dependent on that instruction, their renamed sources are not needed anymore. In the architecture disclosed in the '499 patent, all instructions' sources are renamed every cycle. This renaming technique requires many comparators for performing the dependency checks. More specifically, the source register addresses of each instruction must be compared to the destination register addresses of all preceding instructions in the instruction window every cycle.
What is desired is a more efficient register renaming technique requiring less comparators and permitting the processor to execute instructions in parallel and out of order.
The present invention is directed to a system and method for performing register renaming of source registers on a per-cycle basis only for new instructions added to the instruction window in that cycle. The present invention thus reduces the total number of dependency check comparators necessary for performing register renaming.
A preferred embodiment of the present invention comprises storing the instructions in a variable advance instruction window, and assigning a tag to each instruction in the instruction window. The tag of each retired instruction is assigned to the next new instruction to be added to the instruction window. The results of instructions executed by the processor are stored in a temp buffer according to their corresponding tags to avoid output dependencies and anti-dependencies. The temp buffer therefore permits the processor to execute instructions out of order and in parallel.
Data dependency checks are performed only for each new instruction added to the instruction window. Operands of the instructions having input dependencies are often located in the temporary buffer, and the source register addresses of those instructions having dependencies are renamed according to the tags of the operands located in the temp buffer. The renamed source register addresses are then stored in a rename result register file.
The foregoing and other features and advantages of the present invention will be apparent from the following more particular description of the preferred embodiments of the invention, as illustrated in the accompanying drawings.
The invention will be better understood if reference is made to the accompanying drawings. A brief description of the drawings is as follows:
The terms processor, CPU, and digital processor are often used interchangeably in this field. The term “processor’ is used hereafter with the understanding that other similar terms could be substituted therefore without changing the underlying meaning of this disclosure.
The present invention is directed to a Register Renaming Circuit (RRC) which is part of a processor. The RRC permits the processor to execute instructions in parallel and out of order. In a preferred embodiment of the present invention, the processor has a variable advance instruction window (VAIW) for holding instructions from an instruction stream prior to execution. The RRC can be used with a fixed advance instruction window as well.
The VAIW in a preferred embodiment holds eight instructions, and up to four new instructions can be added to the top four locations of the VAIW in any one cycle.
In a VAIW, any one of instructions 10, 11, 12 and 13 can be mapped into the first location in the window (location A, for example). Tags are assigned to the instructions as the instructions enter the VAIW. The tags are stored in a first-in-first-out buffer (hereafter called a FIFO; not shown).
As an instruction advances in the VAIW by a variable amount, the tag associated with that instruction also advances in the FIFO by the same amount. When a new instruction enters the VAIW it is assigned the tag of the most recent instruction to leave the VAIW, thus tags are reused. Instructions can leave the VAIW by either retiring, or they can be flushed out if a branch is taken.
The tag of each instruction leaving the instruction window is returned to the head of the FIFO and re-used by the new instruction added to the window. However, the first instruction and tag in the FIFO always progress in order, because instructions always retire in order.
According to the present invention only new instructions in the VAIW need be checked for dependencies. This eliminates the need for excess comparators. New instructions in the window are therefore passed through the RRC. In order to reduce complexity by renaming the source registers for only those instructions that are new in the instruction window on a per-cycle basis, two assumptions are made:
In a preferred embodiment of the present invention, the temp buffer (or temporary buffer) is part of the main register file. The register file contains 40 registers; registers 0-31 are the main registers (commonly called the programmer visible registers), and registers 32-39 comprise the temp buffer. The temp buffer and main register file share the same read ports. Thus, to read the data from temp buffer address 4, {100100} would be the address on the read address port, for example.
In order to perform dependency checking in the present invention, an RRC Inputs Register File (RIRF) is used to hold the source and destination register addresses of all instructions in the instruction window. As new instructions enter the window an instruction fetch unit (IFU: not shown) sends the instructions' source and destination register addresses to the RIRF. The source and destination register addresses are stored in the RIRF by tag number. The RIRF has one output for each instruction in the window and the source and destination register addresses are read from the RIRF and sent to the RRC.
The RRC performs the data dependency checking and the register renaming. The data dependency check is done by the Data Dependency Checker (DDC) and the rename is performed by the Tag Assignment Logic (TAL).
There are three kinds of data dependencies: input dependencies, antidependencies and output dependencies. An instruction is input dependent on a previous instruction if one of its inputs is the previous instruction's output; an instruction is anti-dependent if the address of one of its source registers (RS) is the same as the address of a later instruction's destination register (RD); and an instruction is output dependent if the address of its destination register is the same as the address of another instruction's destination register.
Dependencies limit the amount of parallelism that a computer can exploit. For example, if instruction A is input dependent on instruction B, then instruction A must not be executed until after instruction B is executed. Also, if instruction A and B are output dependent and instruction A comes first in the program, then instruction A's result must be written to the main register file before instruction B's. Finally, if instruction A is anti-dependent on instruction B, then instruction B's result must not be written to the main register file until after instruction A has begun executing. Output and anti-dependencies are usually avoided by use of the temp buffer. Input dependencies cannot be avoided and are located by the DDC.
The DDC locates input dependencies by comparing the register file addresses of each instruction's sources with the register file addresses of each previous instruction's destination. If an instruction's input data comes from the same register file address as a previous instruction's output data, then they are dependent (the term “dependent” will be used to mean “input dependent” for the remainder of this description).
It is possible that an instruction can be dependent on several previous instructions. When this happens, the RRC assumes that the programmer intended that the instruction be dependent on the most previous instruction. For example, if instruction 5 depends on instructions 3 and 1, then the RRC would assume that the programmer intended instruction 5 to use instruction 3's results and not instruction 1's.
A DDC equal compare circuit 100 for checking dependencies between instructions A and B in accordance with the present invention is shown in
The present invention avoids the problems caused by output and antidependencies by storing the results of all instructions in the temp buffer and then moving the results into the main register file in program order. For example, if instruction 1 finishes before instruction 0, its result will be written to the register file after instruction 0's result is written to the register file. The use of the temp buffer allows the processor to execute instructions out of order and in parallel. Since the results of the instructions are moved to the main register file in order, output and anti-dependencies do not cause a problem.
Since the result of an instruction can sit in the temp buffer for a long time before it gets moved to the main register file, instructions that are dependent on that instruction will also have to wait. In order to improve performance, the present invention includes a means with which to use data that is in the temp buffer. That means is the Tag Assignment Logic (TAL).
The TAL determines the location in the temp buffer of the operands of dependent instructions. As noted above all instructions are assigned a tag that remains constant while the instruction is in the window, and there is one location in the temp buffer for each instruction in the window. Thus, the processor implementing the present invention uses the tag of an instruction as the temp buffer address of that instruction's result.
Since the TAL knows where every instruction's result is stored, and since it also knows (from tile DDC) where the dependencies are between instructions, tile TAL can determine the location in the temp buffer of each instruction's inputs.
A representative block diagram of a TAL 300 used to determine the location of instruction n's source (RS) is shown in
A complete rename circuit for instruction n's source register is shown in
A representative block diagram of a rename circuit 500 of the present embodiment is shown in
Renaming circuits 508 for renaming the source registers of a plurality of instructions are shown in
Because renaming only happens when a new instruction enters the window, some technique is needed to store the outputs of the RRC. One technique would be to store the RRC results in a FIFO whenever the instruction window advances. The present embodiment, however, stores the renamed registers in a separate register file (discussed below). Since each instruction's tag stays constant, the renamed source register results from the rename circuits can be stored by tag number. The register file for storing the rename results therefore has one write port for each new instruction in the window and one read port for each instruction in the window.
A representative block diagram of a rename result register file (RRRF) 600 is shown in
When an instruction retires its result is moved into the main register file. If any instructions were dependent on that instruction, their renamed sources are not needed anymore.
The area to which new instructions can enter the instruction window (in this embodiment the area is the top four locations), are those locations which are register renamed. Once an instruction leaves that area of the window it is no longer renamed. The RRC of the present invention renames an instruction's source register when it enters the window, so there needs to be a mechanism to detect which instructions' sources have been moved to the register file and to replace the renamed source register address with the original source register address. The first part of that mechanism is called MONDEP (as in “monitor dependencies”) and the second part is called RFMXING. In addition, a source register ready generator (RDY_GEN) is used to determine when each instruction's sources are available.
A representative high level block diagram of the RIRF, RRC, RRRF, MONDEP, RDY_GEN and RFMXING (labeled as 802, 804, 600, 806, 808 and 810, respectively) is shown in
Source and destination register addresses of new instructions from the IFU (not shown) are sent to RIRF 802 via a bus 812, and are accessed by RRC 804 via a bus 814. The source registers of all instructions are passed to RFMXING 806 via a bus 816. Renamed source registers of all instructions are stored in RRRF 600 via a bus 818. The stored renamed source registers of all instructions are passed to RFMXING 806, MONDEP 808 and RDY_GEN 810 via a bus 820.
MONDEP 808 determines which dependencies have disappeared by comparing the tags of retiring or recently-retired instructions with the lower three bits of the renamed sources of each instruction. Information regarding retired instructions is sent to MONDEP 808 via a bus 828 from a retirement unit (not shown; the details of a retirement unit that can be used to generate these signals is disclosed in co-pending, commonly owned U.S. Pat. No. 5,826,055). If there is a match, then MONDEP 808 knows that the dependency has been removed and the outputs of MONDEP 808 outputs which instructions' inputs have been moved from the temp, buffer to the register file. These outputs signals are sent to RFMXING 806 and RDY_GEN 810 via buses 822.
In a preferred embodiment of the present invention, the instruction window holds eight instructions. Each cycle, at most three of those instructions can be retired. In the cycle after an instruction is retired, its tag is moved to the top of the FIFO. Therefore, to check what dependencies have been removed, MONDEP 808 compares each of the renamed sources of each instruction with the tags of the top three instructions in the FIFO. In a further embodiment MONDEP 808 can compare each renamed source with the tags of the instructions at the bottom of the FIFO that are about to be retired.
MONDEP 808 outputs a bit for each source of each instruction and the bits are sent to RFMXING and RDY_GEN blocks in the RRC. These bits are asserted when an instruction's dependency goes away and remain asserted until the instruction is retired.
RDY_GEN 810 determines when each instruction's sources are available and outputs this information via a bus 830. The difference between MONDEP 808 and RDY_GEN 810 is MONDEP 808 only monitors when instructions retire. An instruction does not have to wait until another instruction retires to use its result; it only needs to wait until it is done (an instruction is done when its result is entered into the temp buffer). Also, if an instruction has no dependencies, then it can be executed immediately. Information concerning whether an instruction is “done” is input to RDY_GEN 810 via a bus 832. “Done” signals come from done control logic (not shown). In connection with the present invention, the term “done” means the result of the instruction is in a temporary buffer or otherwise available at the output of a functional unit. (An example of done control logic may be found in the '499 patent.)
RDY_GEN 810 has one output for each source of all instructions in the window. The output for a particular instruction's source is assured if one of three conditions is true:
These outputs 830 of RDY_GEN 810 go to the ISSUER which determines which instruction(s) is to issued based on functional unit availability and lack of dependencies.
RFMXING 806 is used to generate the read addresses of the register files. It contains a collection of muxes for each read port of each register file. These muxes are selected by the outputs of the ISSUER and MONDEP 808. Read addresses for each port of each register file are output by RFMXING 806, via a bus 824. (A processor may have a separate register file for a floating point subprocessor and an integer subprocessor, for example.)
The circuit to generate the address for one register file port is shown in
While various embodiments of the present invention have been described above, it should be understood that they have been presented by way of example, and not limitation. Thus the breadth and scope of the present invention should not be limited by any of the above-described exemplary embodiments, but should be defined only in accordance with the following claims and their equivalents. All cited patent documents and publications in the above description are incorporated herein by reference.
This application is a divisional of application Ser. No. 11/235,090, filed Sep. 27, 2005, now U.S. Pat. No. 7,558,945, which is a continuation of application Ser. No. 10/222,935, filed Aug. 19, 2002, now U.S. Pat. No. 6,970,995, which is a continuation of application Ser. No. 10/083,143, filed Feb. 27, 2002, now U.S. Pat. No. 6,922,772, which is a continuation of Ser. No. 09/826,211, filed Apr. 5, 2001, now U.S. Pat. No. 6,408,375, which is a continuation of application Ser. No. 09/399,000, filed Sep. 17, 1999, now U.S. Pat. No. 6,272,617, which is a continuation of application Ser. No. 09/063,059, filed Apr. 21, 1998, now U.S. Pat. No. 6,138,231, which is a continuation of application Ser. No. 08/698,211, filed Aug. 15, 1996, now U.S. Pat. No. 5,809,276, which is a continuation of application Ser. No. 08/478,531, filed Jun. 7, 1995, now U.S. Pat. No. 5,590,295, which is a continuation of application Ser. No. 07/997,948, filed Dec. 31, 1992, now abandoned. The present application is related to the following applications: U.S. patent application Ser. No. 08/219,425, filed Mar. 29, 1994, now U.S. Pat. No. 5,497,499, patent application Ser. No. 07/860,718, filed Mar. 31, 1992, now U.S. Pat. No. 5,371,684, patent application Ser. No. 08/481,146, filed Jun. 7, 1995, now U.S. Pat. No. 5,826,055, patent application Ser. No. 07/877,451, filed May 1, 1992, now abandoned, patent application Ser. No. 07/817,810, filed Jan. 8, 1992, now U.S. Pat. No. 5,539,911, patent application Ser. No. 07/727,006, filed Jul. 8, 1991, now abandoned, patent application Ser. No. 08/397,016, filed Mar. 1, 1995, now U.S. Pat. No. 5,560,032, patent application Ser. No. 07/817,809, filed Jan. 8, 1992, now abandoned, patent application Ser. No. 07/727,058, filed Jul. 8, 1991, now abandoned. The above cited patent documents are incorporated herein by reference.
Number | Name | Date | Kind |
---|---|---|---|
3346851 | Thornton et al. | Oct 1967 | A |
3718912 | Hasbrouck et al. | Feb 1973 | A |
3771138 | Celtruda et al. | Nov 1973 | A |
3789365 | Jen et al. | Jan 1974 | A |
3913074 | Homberg et al. | Oct 1975 | A |
4034349 | Monaco et al. | Jul 1977 | A |
4128880 | Cray, Jr. | Dec 1978 | A |
4200927 | Hughes et al. | Apr 1980 | A |
4212076 | Conners | Jul 1980 | A |
4228495 | Bernhard et al. | Oct 1980 | A |
4296470 | Fairchild et al. | Oct 1981 | A |
4315308 | Jackson | Feb 1982 | A |
4315314 | Russo | Feb 1982 | A |
4410939 | Kawakami | Oct 1983 | A |
4434461 | Puhl | Feb 1984 | A |
4459657 | Murao | Jul 1984 | A |
4476525 | Ishii | Oct 1984 | A |
4482950 | Dshkhunian et al. | Nov 1984 | A |
4498134 | Hansen et al. | Feb 1985 | A |
4500963 | Smith et al. | Feb 1985 | A |
4532598 | Shibayama et al. | Jul 1985 | A |
4561051 | Rodman | Dec 1985 | A |
4574349 | Rechtschaffen | Mar 1986 | A |
4594655 | Hao et al. | Jun 1986 | A |
4597054 | Lockwood et al. | Jun 1986 | A |
4613941 | Smith et al. | Sep 1986 | A |
4626989 | Torii | Dec 1986 | A |
4644466 | Saito | Feb 1987 | A |
4648045 | Demetrescu | Mar 1987 | A |
4675806 | Uchida | Jun 1987 | A |
4714994 | Oklobdzija et al. | Dec 1987 | A |
4719569 | Ludemann et al. | Jan 1988 | A |
4722049 | Lahti | Jan 1988 | A |
4752873 | Shonai et al. | Jun 1988 | A |
4758948 | May et al. | Jul 1988 | A |
4766566 | Chuang | Aug 1988 | A |
4775927 | Hester et al. | Oct 1988 | A |
4791607 | Igarashi et al. | Dec 1988 | A |
4807115 | Torng | Feb 1989 | A |
4811208 | Myers et al. | Mar 1989 | A |
4814978 | Dennis | Mar 1989 | A |
4823201 | Simon et al. | Apr 1989 | A |
4829467 | Ogata | May 1989 | A |
4833599 | Colwell et al. | May 1989 | A |
4841453 | Finlay et al. | Jun 1989 | A |
4858105 | Kuriyama et al. | Aug 1989 | A |
4858116 | Gillett, Jr. et al. | Aug 1989 | A |
4881167 | Sasaki et al. | Nov 1989 | A |
4897810 | Nix | Jan 1990 | A |
4901228 | Kodama | Feb 1990 | A |
4901233 | Liptay | Feb 1990 | A |
4903196 | Pomerene et al. | Feb 1990 | A |
4916604 | Yamamoto et al. | Apr 1990 | A |
4924376 | Ooi | May 1990 | A |
4926323 | Baror et al. | May 1990 | A |
4928226 | Kamada et al. | May 1990 | A |
4942525 | Shintani et al. | Jul 1990 | A |
4945479 | Rusterholz et al. | Jul 1990 | A |
4964057 | Yabe | Oct 1990 | A |
4974154 | Matsuo | Nov 1990 | A |
4974155 | Dulong et al. | Nov 1990 | A |
4980817 | Fossum et al. | Dec 1990 | A |
4985825 | Webb, Jr. et al. | Jan 1991 | A |
4991078 | Wilhelm et al. | Feb 1991 | A |
4991081 | Bosshart | Feb 1991 | A |
4992938 | Cocke et al. | Feb 1991 | A |
5003462 | Blaner et al. | Mar 1991 | A |
5032985 | Curran | Jul 1991 | A |
5051925 | Kadono et al. | Sep 1991 | A |
5067069 | Fite et al. | Nov 1991 | A |
5072364 | Jardine et al. | Dec 1991 | A |
5089951 | Iijima | Feb 1992 | A |
5093783 | Kitada | Mar 1992 | A |
5097409 | Schwartz et al. | Mar 1992 | A |
5101341 | Circello et al. | Mar 1992 | A |
5109495 | Fite et al. | Apr 1992 | A |
5119485 | Ledbetter, Jr. et al. | Jun 1992 | A |
5120083 | Stine | Jun 1992 | A |
5125083 | Fite et al. | Jun 1992 | A |
5125092 | Prener | Jun 1992 | A |
5129067 | Johnson | Jul 1992 | A |
5133074 | Chou | Jul 1992 | A |
5133077 | Karne et al. | Jul 1992 | A |
5134561 | Liptay | Jul 1992 | A |
5136697 | Johnson | Aug 1992 | A |
5140682 | Okura et al. | Aug 1992 | A |
5142633 | Murray et al. | Aug 1992 | A |
5142634 | Fite et al. | Aug 1992 | A |
5148533 | Joyce et al. | Sep 1992 | A |
5148536 | Witek et al. | Sep 1992 | A |
5150309 | Shaw et al. | Sep 1992 | A |
5155843 | Stamm et al. | Oct 1992 | A |
5167026 | Murray et al. | Nov 1992 | A |
5167035 | Mann et al. | Nov 1992 | A |
5179530 | Genusov et al. | Jan 1993 | A |
5179673 | Steely, Jr. et al. | Jan 1993 | A |
5179689 | Leach et al. | Jan 1993 | A |
5185872 | Arnold et al. | Feb 1993 | A |
5185878 | Baror et al. | Feb 1993 | A |
5187796 | Wang et al. | Feb 1993 | A |
5193157 | Barbour et al. | Mar 1993 | A |
5197132 | Steely, Jr. et al. | Mar 1993 | A |
5197136 | Kimura et al. | Mar 1993 | A |
5201056 | Daniel et al. | Apr 1993 | A |
5214763 | Blaner et al. | May 1993 | A |
5214786 | Watanabe et al. | May 1993 | A |
5222223 | Webb, Jr. et al. | Jun 1993 | A |
5222240 | Patel | Jun 1993 | A |
5222244 | Carbine et al. | Jun 1993 | A |
5226125 | Balmer et al. | Jul 1993 | A |
5226126 | McFarland et al. | Jul 1993 | A |
5226166 | Ishida et al. | Jul 1993 | A |
5226170 | Rubinfeld | Jul 1993 | A |
5228136 | Shimizu et al. | Jul 1993 | A |
5230068 | Van Dyke et al. | Jul 1993 | A |
5233694 | Hotta et al. | Aug 1993 | A |
5237666 | Suzuki et al. | Aug 1993 | A |
5241636 | Kohn | Aug 1993 | A |
5249286 | Alpert et al. | Sep 1993 | A |
5251306 | Tran | Oct 1993 | A |
5255384 | Sachs et al. | Oct 1993 | A |
5261057 | Coyle et al. | Nov 1993 | A |
5261071 | Lyon | Nov 1993 | A |
5276899 | Neches | Jan 1994 | A |
5278963 | Hattersley et al. | Jan 1994 | A |
5283903 | Uehara | Feb 1994 | A |
5285527 | Crick et al. | Feb 1994 | A |
5287465 | Kurosawa et al. | Feb 1994 | A |
5287467 | Blaner et al. | Feb 1994 | A |
5291615 | Okamoto | Mar 1994 | A |
5293500 | Ishida et al. | Mar 1994 | A |
5301278 | Bowater et al. | Apr 1994 | A |
5303362 | Butts, Jr. et al. | Apr 1994 | A |
5303382 | Buch et al. | Apr 1994 | A |
5317720 | Stamm et al. | May 1994 | A |
5345569 | Tran | Sep 1994 | A |
5355457 | Shebanow et al. | Oct 1994 | A |
5355460 | Eickemeyer et al. | Oct 1994 | A |
5367660 | Gat et al. | Nov 1994 | A |
5371684 | Iadonato et al. | Dec 1994 | A |
5377339 | Saito et al. | Dec 1994 | A |
5388215 | Baker et al. | Feb 1995 | A |
5390355 | Horst | Feb 1995 | A |
5394351 | Widigen et al. | Feb 1995 | A |
5394515 | Lentz et al. | Feb 1995 | A |
5394529 | Brown, III et al. | Feb 1995 | A |
5398330 | Johnson | Mar 1995 | A |
5404470 | Miyake | Apr 1995 | A |
5404472 | Kurosawa et al. | Apr 1995 | A |
5430884 | Beard et al. | Jul 1995 | A |
5430888 | Witek et al. | Jul 1995 | A |
5436869 | Yoshida | Jul 1995 | A |
5440752 | Lentz et al. | Aug 1995 | A |
5442757 | McFarland et al. | Aug 1995 | A |
5446912 | Colwell et al. | Aug 1995 | A |
5448705 | Nguyen et al. | Sep 1995 | A |
5452426 | Papworth et al. | Sep 1995 | A |
5461715 | Matsuo et al. | Oct 1995 | A |
5471592 | Gove et al. | Nov 1995 | A |
5473764 | Chi | Dec 1995 | A |
5481685 | Nguyen et al. | Jan 1996 | A |
5481734 | Yoshida | Jan 1996 | A |
5487156 | Popescu et al. | Jan 1996 | A |
5488729 | Vegesna et al. | Jan 1996 | A |
5490280 | Gupta et al. | Feb 1996 | A |
5493687 | Garg et al. | Feb 1996 | A |
5497499 | Garg et al. | Mar 1996 | A |
5524225 | Kranich | Jun 1996 | A |
5539911 | Nguyen et al. | Jul 1996 | A |
5559951 | Lentz et al. | Sep 1996 | A |
5560032 | Nguyen et al. | Sep 1996 | A |
5560035 | Garg et al. | Sep 1996 | A |
5561775 | Kurosawa et al. | Oct 1996 | A |
5561776 | Popescu et al. | Oct 1996 | A |
5564056 | Fetterman et al. | Oct 1996 | A |
5564117 | Lentz et al. | Oct 1996 | A |
5566385 | Iadonato et al. | Oct 1996 | A |
5568624 | Sites et al. | Oct 1996 | A |
5574927 | Scantlin | Nov 1996 | A |
5574935 | Vidwans et al. | Nov 1996 | A |
5574941 | Horst | Nov 1996 | A |
5577200 | Abramson et al. | Nov 1996 | A |
5577217 | Hoyt et al. | Nov 1996 | A |
5584001 | Hoyt et al. | Dec 1996 | A |
5586278 | Papworth et al. | Dec 1996 | A |
5590295 | Deosaran et al. | Dec 1996 | A |
5592636 | Popescu et al. | Jan 1997 | A |
5604865 | Lentz et al. | Feb 1997 | A |
5604877 | Hoyt et al. | Feb 1997 | A |
5604912 | Iadonato et al. | Feb 1997 | A |
5606676 | Grochowski et al. | Feb 1997 | A |
5608885 | Gupta et al. | Mar 1997 | A |
5613132 | Clift et al. | Mar 1997 | A |
5615126 | Deeley et al. | Mar 1997 | A |
5615385 | Fetterman et al. | Mar 1997 | A |
5617554 | Alpert et al. | Apr 1997 | A |
5619664 | Glew | Apr 1997 | A |
5619668 | Zaidi | Apr 1997 | A |
5623628 | Brayton et al. | Apr 1997 | A |
5625788 | Boggs et al. | Apr 1997 | A |
5625837 | Popescu et al. | Apr 1997 | A |
5627983 | Popescu et al. | May 1997 | A |
5627984 | Gupta et al. | May 1997 | A |
5627985 | Fetterman et al. | May 1997 | A |
5628021 | Iadonato et al. | May 1997 | A |
5630075 | Joshi et al. | May 1997 | A |
5630083 | Carbine et al. | May 1997 | A |
5630149 | Bluhm | May 1997 | A |
5630157 | Dwyer, III | May 1997 | A |
5640588 | Vegesna et al. | Jun 1997 | A |
5651125 | Witt et al. | Jul 1997 | A |
5655098 | Witt et al. | Aug 1997 | A |
5664136 | Witt et al. | Sep 1997 | A |
5666494 | Mote, Jr. | Sep 1997 | A |
5682546 | Garg et al. | Oct 1997 | A |
5689672 | Witt et al. | Nov 1997 | A |
5689720 | Nguyen et al. | Nov 1997 | A |
5708841 | Popescu et al. | Jan 1998 | A |
5734584 | Iadonato et al. | Mar 1998 | A |
5737624 | Garg et al. | Apr 1998 | A |
5745375 | Reinhardt et al. | Apr 1998 | A |
5754800 | Lentz et al. | May 1998 | A |
5768575 | McFarland et al. | Jun 1998 | A |
5778210 | Henstrom et al. | Jul 1998 | A |
5797025 | Popescu et al. | Aug 1998 | A |
5802605 | Alpert et al. | Sep 1998 | A |
5809276 | Deosaran et al. | Sep 1998 | A |
5819101 | Peleg et al. | Oct 1998 | A |
5826055 | Wang et al. | Oct 1998 | A |
5831871 | Iadonato et al. | Nov 1998 | A |
5832205 | Kelly et al. | Nov 1998 | A |
5832292 | Nguyen et al. | Nov 1998 | A |
5832293 | Popescu et al. | Nov 1998 | A |
5838986 | Garg et al. | Nov 1998 | A |
5881275 | Peleg et al. | Mar 1999 | A |
5892963 | Iadonato et al. | Apr 1999 | A |
5896542 | Iadonato et al. | Apr 1999 | A |
5941979 | Lentz et al. | Aug 1999 | A |
5961629 | Nguyen et al. | Oct 1999 | A |
5974526 | Garg et al. | Oct 1999 | A |
6038653 | Nguyen et al. | Mar 2000 | A |
6038654 | Nguyen et al. | Mar 2000 | A |
6044449 | Garg et al. | Mar 2000 | A |
6047348 | Lentz et al. | Apr 2000 | A |
6083274 | Iadonato et al. | Jul 2000 | A |
6092176 | Iadonato et al. | Jul 2000 | A |
6092181 | Nguyen et al. | Jul 2000 | A |
6101594 | Nguyen et al. | Aug 2000 | A |
6128723 | Nguyen et al. | Oct 2000 | A |
6131157 | Wang et al. | Oct 2000 | A |
6138231 | Deosaran et al. | Oct 2000 | A |
6219763 | Lentz et al. | Apr 2001 | B1 |
6249856 | Garg et al. | Jun 2001 | B1 |
6256720 | Nguyen et al. | Jul 2001 | B1 |
6272579 | Lentz et al. | Aug 2001 | B1 |
6272617 | Deosaran et al. | Aug 2001 | B1 |
6272619 | Nguyen et al. | Aug 2001 | B1 |
6282630 | Nguyen et al. | Aug 2001 | B1 |
6289433 | Garg et al. | Sep 2001 | B1 |
6360309 | Iadonato et al. | Mar 2002 | B1 |
6385634 | Peleg et al. | May 2002 | B1 |
6401232 | Iadonato et al. | Jun 2002 | B1 |
6408375 | Deosaran et al. | Jun 2002 | B2 |
6412064 | Wang et al. | Jun 2002 | B1 |
6418529 | Roussel | Jul 2002 | B1 |
6611908 | Lentz et al. | Aug 2003 | B2 |
6647485 | Nguyen et al. | Nov 2003 | B2 |
6735685 | Senter et al. | May 2004 | B1 |
6757808 | Iadonato et al. | Jun 2004 | B2 |
6775761 | Wang et al. | Aug 2004 | B2 |
6782521 | Iadonato et al. | Aug 2004 | B2 |
6915412 | Nguyen et al. | Jul 2005 | B2 |
6920548 | Wang et al. | Jul 2005 | B2 |
6922772 | Deosaran et al. | Jul 2005 | B2 |
6934829 | Nguyen et al. | Aug 2005 | B2 |
6941447 | Nguyen et al. | Sep 2005 | B2 |
6948052 | Nguyen et al. | Sep 2005 | B2 |
6954844 | Lentz et al. | Oct 2005 | B2 |
6959375 | Nguyen et al. | Oct 2005 | B2 |
6970995 | Deosaran et al. | Nov 2005 | B2 |
6986024 | Nguyen et al. | Jan 2006 | B2 |
7028161 | Nguyen et al. | Apr 2006 | B2 |
7043624 | Iadonato et al. | May 2006 | B2 |
7051187 | Garg et al. | May 2006 | B2 |
7162610 | Nguyen et al. | Jan 2007 | B2 |
7174525 | Iadonato et al. | Feb 2007 | B2 |
7430651 | Iadonato et al. | Sep 2008 | B2 |
7487333 | Nguyen et al. | Feb 2009 | B2 |
7516305 | Wang et al. | Apr 2009 | B2 |
7523296 | Wang et al. | Apr 2009 | B2 |
7555632 | Nguyen et al. | Jun 2009 | B2 |
7721070 | Nguyen et al. | May 2010 | B2 |
7739482 | Nguyen et al. | Jun 2010 | B2 |
7802074 | Garg et al. | Sep 2010 | B2 |
20010034823 | Garg et al. | Oct 2001 | A1 |
20020059508 | Lentz et al. | May 2002 | A1 |
20020083300 | Deosaran et al. | Jun 2002 | A1 |
20020129324 | Iadonato et al. | Sep 2002 | A1 |
20020194456 | Deosaran et al. | Dec 2002 | A1 |
20030056086 | Nguyen et al. | Mar 2003 | A1 |
20030056087 | Nguyen et al. | Mar 2003 | A1 |
20030070060 | Nguyen et al. | Apr 2003 | A1 |
20030079113 | Nguyen et al. | Apr 2003 | A1 |
20030115440 | Garg et al. | Jun 2003 | A1 |
20040024987 | Lentz et al. | Feb 2004 | A1 |
20040054872 | Nguyen et al. | Mar 2004 | A1 |
20040093482 | Nguyen et al. | May 2004 | A1 |
20040093483 | Nguyen et al. | May 2004 | A1 |
20040093485 | Nguyen et al. | May 2004 | A1 |
20050228973 | Wang et al. | Oct 2005 | A1 |
20060041736 | Garg et al. | Feb 2006 | A1 |
20060064569 | Lentz et al. | Mar 2006 | A1 |
20060123218 | Iadonato et al. | Jun 2006 | A1 |
20060149925 | Nguyen et al. | Jul 2006 | A1 |
20070101103 | Nguyen et al. | May 2007 | A1 |
20070106878 | Nguyen et al. | May 2007 | A1 |
20070106880 | Wang et al. | May 2007 | A1 |
20070113047 | Garg et al. | May 2007 | A1 |
20070113214 | Iadonato et al. | May 2007 | A1 |
20080059770 | Garg et al. | Mar 2008 | A1 |
20090013155 | Wang et al. | Jan 2009 | A1 |
20090013158 | Iadonato et al. | Jan 2009 | A1 |
20090158014 | Wang et al. | Jun 2009 | A1 |
Number | Date | Country |
---|---|---|
57-57345 | Apr 1982 | JP |
60-144830 | Jul 1985 | JP |
61-40650 | Feb 1986 | JP |
61-107434 | May 1986 | JP |
62-242243 | Oct 1987 | JP |
63-192135 | Aug 1988 | JP |
1-142831 | Jun 1989 | JP |
1-199233 | Aug 1989 | JP |
2-048732 | Feb 1990 | JP |
2-118757 | May 1990 | JP |
2-211534 | Aug 1990 | JP |
2-224025 | Sep 1990 | JP |
2-226342 | Sep 1990 | JP |
3-035324 | Feb 1991 | JP |
3-218524 | Sep 1991 | JP |
4-054638 | Feb 1992 | JP |
4-096132 | Mar 1992 | JP |
4-503582 | Jun 1992 | JP |
5-197544 | Aug 1993 | JP |
6-019707 | Jan 1994 | JP |
WO 8809035 | Nov 1988 | WO |
WO 9120031 | Dec 1991 | WO |
Number | Date | Country | |
---|---|---|---|
20090235053 A1 | Sep 2009 | US |
Number | Date | Country | |
---|---|---|---|
Parent | 11235090 | Sep 2005 | US |
Child | 12472052 | US |
Number | Date | Country | |
---|---|---|---|
Parent | 10222935 | Aug 2002 | US |
Child | 11235090 | US | |
Parent | 10083143 | Feb 2002 | US |
Child | 10222935 | US | |
Parent | 09826211 | Apr 2001 | US |
Child | 10083143 | US | |
Parent | 09399000 | Sep 1999 | US |
Child | 09826211 | US | |
Parent | 09063059 | Apr 1998 | US |
Child | 09399000 | US | |
Parent | 08698211 | Aug 1996 | US |
Child | 09063059 | US | |
Parent | 08478531 | Jun 1995 | US |
Child | 08698211 | US | |
Parent | 07997948 | Dec 1992 | US |
Child | 08478531 | US |