The invention relates to computer systems, and more particularly to a method and mechanism for prefetching in a computer system.
Many computer systems utilize servers, such as “database servers”, to store and maintain information. In a client-server computer system model (or a multi-tiered computer architecture), users that wish to access or modify information at the server are often located at a “client”. To facilitate the explanation of the invention, the terms “database server” and “database client” may be used in this document in place of “server” and “client”; however, the invention is not limited in its applicability to database systems, and indeed, can be utilized in many other types of computer systems.
In client-server systems, users at a database client submit commands to the database server to store, modify, or retrieve data. In response to the user commands, data manipulation or query activities are performed at the database server, with data results returned back to the database client for access. In networked environments, the database server often performs data manipulation or query commands submitted by remotely located clients. The client may establish a direct connection to the database server over the network, or may establish a connection through one or more intervening system components, such as an application server or transaction processing monitor. In either case, the database server processes the user commands and generates appropriate data outputs to be returned to the client. For example, a common database function is to perform data queries using a database query language such as SQL. The database server receives each query and generates a query result that satisfies the criteria defined by a particular query. The query result is subsequently transferred to the database client from which the query originated.
Inefficiencies may occur during the processing and transmission of data between the database server and client. For example, the database server produces a result set composed of a quantity of data that can be sent to a database client. The user may initially place an explicit request to transmit a first portion of that result set from the database server to the client, causing a first set of overhead, such as “network roundtrip overhead”, to be expended. At a later time, the user may request a second portion of the result set to be transmitted to the client, resulting in another set of overhead to be expended. This process may proceed until all of the result set is sent, resulting in multiple sets of roundtrip overhead to be expended between the database server and the client. The expense of sending the data in response to multiple requests also includes the wait time that is expended while the user waits for the request to be sent to the database server and for the subsequent data to be sent back to the client. In addition, if the transmitted data are broken into smaller pieces than the optimum data transfer sizes for the system, additional overhead is expended. Thus, the more pieces that the data set is broken into before transmissions from the server to the client, the greater the overhead that is likely to be expended.
Another type of inefficiency that may occur is the retransmission of data in the returned result set. If the data to be sent to the client contains redundancies, then excess overhead, such as increased transmission time and data storage at the client, is expended by the system to transmit and store that redundant data. When the amount of data redundancies is sufficiently large, the excess overhead can have a serious effect upon system performance. Such a circumstance may occur, for example, if the client is querying large database tables with sparse data for performing queries with joins involving wide tables.
As is evident from the foregoing, inefficiencies may occur as a result of data transmissions between a database server and a client. These same inefficiencies may arise from other types of client-server applications, such as for example, a web-based architecture for sending web pages from a web server to a client station having a web browser. Moreover, these inefficiencies may be exasperated by a query in which data that is accessed to respond to the query exists at a remote location. This may occur, for example, if the query is sent to be processed at a first server, but the first server needs to access one or more additional servers in order to adequately process the query.
The present invention is directed to a method and mechanism for implementing pipelined prefetching in a computer system. According to an embodiment of the invention, data prefetching is utilized to predictably retrieve information between multiple levels of nodes in the computer system, in which a first server may receive prefetched data from a second server, the second server receives prefetched data from a third server, with the chain of pipelined prefetching extending as long as needed/desired to effect efficient data transfers between the nodes. Further details of aspects, objects, and advantages of the invention are described below in the detailed description, drawings, and claims.
The accompanying drawings are included to provide a further understanding of the invention and, together with the Detailed Description, serve to explain the principles of the invention.
The present invention is directed to a method and mechanism for increasing the efficiency of data transfers between a server and a client using pipelined prefetching. In the following description, for the purposes of explanation, one or more embodiments having specific combinations of elements and/or process actions are set forth in order to provide a thorough understanding of the present invention. It will be apparent, however, to one skilled in the art that the present invention may be practiced without these specific combinations or order of elements/process actions.
Prefetching refers to the action of transmitting information before it is immediately requested, based upon predictive selection of data anticipated to be requested by a client in the future. To illustrate the invention, consider a data result set at a server as shown in table 100 of
The initial request for data results in a certain amount of overhead, including a given quantity of network roundtrips for the user request from the client to server, as well as the data transmission from server to client. At a later time, the user may request a second portion of the result set to be transmitted from the server to client, resulting in further overhead being expended. This process is inefficient if the overhead of separately requesting and sending the data in multiple portions is higher than if the data is requested and sent at one time.
It can be predictively anticipated that the client will eventually require more data than is initially requested. In the case of
For an example in another context, consider an Internet web page having hyperlinks to other web pages/information. If a user requests the Internet web page to be sent to the client, it can be anticipated that the user may later wish to retrieve the additional web pages/information that are linked into the initial web page. With the present invention, the contents of the linked web pages/information can be prefetched into the client's local cache. If the user later requests that information, it can immediately be displayed to the user, without requiring any wait time or additional network overhead to request and retrieve that information. An example of a mechanism and process for prefetching data from a remote server that can be used in the present invention is disclosed in U.S. Pat. No. 6,675,195, which is hereby incorporated by reference in its entirety.
One approach to implement prefetching is to designate a “prefetch count” for a given connection or session from server to client. The prefetch count represents the number of additional rows of data to prefetch in response to an explicit fetch command. For example, if a prefetch count of one is established, then each request for a row from the server results in one additional row being returned, with the prefetched row being the row immediately following the explicitly requested row. If the prefetch count is set to 2, then each request for a row is increased by an additional 2 rows of data, etc. In an embodiment, the prefetch count is a tunable value that can be adjusted based upon current system and network conditions.
To satisfy request 208 from client 202, first server 204 may need to send a data request 212 to a second server 206. Essentially, first server 204 becomes a client that is serviced by second server 206. The response from second server 206 may be stored in first server 204's local cache 222. In anticipation of future requests 212 from first server 204, second server 206 may return more rows to first server 204 than were explicitly requested. These additional rows are prefetched in anticipation of a future request for those rows, e.g., in response to an explicit or prefetch request by client 220. In this manner, an indefinitely long chain of server devices can be pipelined together with prefetch requests. This aspect of the present invention provides certain operating efficiencies, with the actual amount of benefit depending upon the system and network topology to which the invention is applied.
The first approach is a direct connection from client 302 over a wide area network (WAN) 310 to the remote server 304. In this example, each separate request for a row of data involves a single network roundtrip, and a prefetch count of one is established for this connection between client 302 and remote server 304. This means that every request to fetch one row of data (with each request costing one network roundtrip) will result in two rows of data actually being returned.
The following sequence may be performed to accomplish the retrieval under this first approach: (a) first, an initial request for a row of data is sent from client 302 to remote server 304; (b) the first and second rows of data are sent from remote server 304 to client 302 over WAN 310, with steps a and b costing one network roundtrip—this action can be immediately taken if the requested data exists in cache at server 304 (cache hit) or the data must be generated if not already existing in cache (cache miss); (c) a second request for a row of data is thereafter sent from client 302 to remote server 304; (d) in response, the third and fourth rows of data are sent from remote server 304 to client 302 over WAN 310, with steps c and d costing another network roundtrip; (e) a final request for a row of data is sent from client 302 to remote server 304; (f) in response, the fifth and sixth rows of data are sent from remote server 304 to client 302 over WAN 310, with steps e and f costing an additional network roundtrip, for a total cost of three network roundtrips required to retrieve the six rows of data.
In the second approach, the client sends its request to a local server 306 over a local area network (LAN) 312, and the local server 306 in turn sends a request for data to the remote server 304 over a WAN 314. In effect, the second approach incorporates the pipelined server approach described with respect to
The following sequence may be performed to accomplish the retrieval under the second approach: (a) first, an initial request for a row of data is sent from client 302 to local server 306; (b) if the data does not exist in the cache 308 at local server 306 (i.e., a cache miss occurs), then a request for a row of data is sent to remote server 304 over WAN 314; (c) in response, all six rows of data (1 requested row plus 5 prefetched rows) are sent from remote server 304 to local server 306, with steps b and c costing one network roundtrip over WAN 314; (d) the six rows of data are stored in cache 308; (e) the first and second rows of data are sent from local server 306 to client 302 over LAN 312, with steps a and e costing one network roundtrip over LAN 312; (f) a second request for a row of data is thereafter sent from client 302 to local server 306; (g) in response, the third and fourth rows of data are retrieved from cache 380 and sent from local server 306 to client 302 over LAN 312, with steps f and g costing another network roundtrip over LAN 312; (h) a final request for a row of data is sent from client 302 to local server 306; (i) in response, the fifth and sixth rows of data are retrieved from cache and sent from local server 306 to client 302 over LAN 312, with steps h and i costing an additional network roundtrip over LAN 312. The total cost of the second approach is therefore three network roundtrips over LAN 312 plus one network roundtrip over WAN 314.
In comparing the two approaches, it is noted that the cost of retrieving the six rows to client 302 under the first approach is 3 roundtrips over WAN 310. The cost of the second approach is 3 roundtrips over LAN 312 plus 1 roundtrip over WAN 314. Since a network roundtrip over a WAN is typically considered much more expensive than an equivalent roundtrip over a LAN, it is likely that the second approach is considered more efficient than the first approach. This surprising result is likely to be true, despite the fact that the second approach involves a cache miss while the first approach does not. This result can be adjusted by increasing the prefetch count on the connection between client 320 and remote server 304. However, such an increase would also result in a corresponding increase in memory usage at client 302, which may be an undesirable situation if a large quantity of rows is being requested by client 302.
It is also possible that some data previously sent and stored at the client will be the subject of a later request seeking re-transmission of the same data to the client. Such transmission of redundant data causes excess overhead to be expended both in terms of the transmission overhead (e.g., excess bandwidth usage) as well as the excess memory cache used at the client to store the redundant data. According to an embodiment of the present invention, data access and transmissions between a server and client are performed using a combination of “prefetching” and data redundancy management. Prefetching is employed to predictively retrieve information before it is explicitly requested by a client. Data redundancy management is employed to minimize the overhead of storing redundant information at the client. While the following description is made with respect to a client and server, it is noted that the following approach can also be implemented between two or more servers when pipelined prefetching is employed.
According to an embodiment of the invention, only data that is changed from one row to the next is transmitted from the server to the client or from a first server to a second server. Referring to
In the bitmaps of
In a similar manner, it can be seen that bits 410, 412, and 414 of bitmap 408 are set at “1”, “1”, and “0”, respectively, corresponding to changes/no changes in value between rows 110 to 112 in table 100. Likewise, bits 418, 420, and 422 in bitmap 416 are set at “1”, “1”, and “1”, respectively, corresponding to changes in value between rows 112 and 114 in table 100.
To reduce the transmission of redundant data in table 100 from server to client, table 100 is checked to determine whether redundant data between one row and the next is being requested. Bitmaps 400, 408, and 416 can be checked to make this determination. Only data that changes from one row to the next will be sent from server to client. As noted above, changed data corresponds to the value of “1” for each bit in the bitmaps 400, 408, and 416.
In operation, a portion of table 100 from server 502 is explicitly requested for delivery to client 504. If prefetching is used, then a greater portion, or even all, of table 100 is sent in response to the user/client request. For purposes of this example, it is assumed that the entirety of table 100 is prefetched to client 504. Initially, all of row 108 would be sent from server 502 to client 504 over network 506. Thus, the values “100”, “Joe”, and “200” corresponding to columns 102, 104, and 106 of row 108 would be sent to client 504, and stored in cache sections 510, 512, and 514, respectively.
At client 504, data structures are maintained to allow a user to access the data that is received. In an embodiment, the data structures correspond to the types of data that are transmitted from server to client. Thus, data structure 528, corresponding to row 108 of table 100, contains pointers to each of the column values for row 108 in table 100. In particular, the pointers in data structure 528 point to cache sections 510, 512, and 514 of cache 508, which correspond to the local copy of row 108, and these pointers are used by a usr at client 504 to access these cached values.
Additional data structures are employed to track each row of data that is transmitted form server 502 to client 504. Thus, data structure 530 contains pointers to the cache sections containing values for row 110 of table 100. Similarly, data structures 532 and 534 contain pointers to the cache sections containing values for rows 112 and 114, respectively, of table 100 sent from server 502 to client 504.
After the first row 108 of table 100 is sent from server 502 to client 504, any transmission of additional rows results in the possibility that redundant data for column values will be requested for transmission across network 506. Thus bitmaps 400, 408, and 416 are consulted in an embodiment of the invention to determine whether a next-row redundant data value is being sent. If a next-row redundant data value situation occurs, then the redundant data value is not sent across network 506. Instead, the corresponding data structure at client 504 is configured to point to the previous copy that has already been transmitted.
Consider the values of row 110 in table 100. A review of rows 108 and 110 in column 102 of table 100 shows that there is no change in the column value. A similar review of these rows in column 104 shows that there is again no change in value. However, inspection of rows 108 and 110 in column 106 shows that the column value changes from “200” to “300”. In this circumstance, only the changed column value (i.e., “300” in row 110, column 106 of table 100) is sent from server 502 to client 504. This changed column value is stored in cache section 516 of cache 508.
The data structure 530 for row 110 is configured to point to cache section 516 for its representation of column 106. However, for the unchanged column values that did not get transmitted from server 502 to client 504, data structure 530 is configured to point to existing cache sections that contain the redundant data. Thus, the pointer in data structure 530 corresponding to column 102 points to cache section 510 (which is also pointed to by the data structure pointer 528 corresponding to column 102 for row 108 of table 100). The pointer in data structure 530 corresponding to column 104 points to cache section 514 (which is also pointed to by the data structure pointer 528 corresponding to column 104 for row 108).
In an equivalent manner, it can be seen that only the values for columns 102 and 104 in row 112 differ from it preceding row 110. The column value for row 112 did not change in the transition from row 110 to 112. Thus, only the values for columns 102 and 104 in row 112 are transmitted from server 502 to client 504. These transmitted values are stored in cache sections 518 and 520. In the data structure 532 for row 112, it can be seen that pointers for columns 102 and 104 point to these newly filled cache sections, but the pointer for column 106 points to a cache section 516 previously filled for row 110.
For row 114, it can be seen that every column has a value that differs from its value in the preceding row. Thus, every column value is transmitted from server 502 to client 504, which is then stored in cache 508. Thus, cache section 522, 524, and 526 are used to store the values of row 144 transmitted to client 504. Data structure 534, which corresponds to row 114 in table 100, contains pointers that point to each of these newly filled cache sections.
While the embodiment just discussed only performs a data redundancy check for one preceding row, the invention can be extended to check or data redundancy across multiple previous rows. The data structures maintained form each row can point to any cache section in cache 508, even for cache sections filled by row values beyond just the immediately preceding row.
To track changes across multiple rows, a multidimensional bitmap can be maintained to track changes across multiple rows. Thus, the bitmap would contain multiple bits for each column-row pair, corresponding to an indication of value change for several preceding rows for that same column.
Instead of, or in addition to the use of a multidimensional bitmap, an additional optimization comprises a scan of cache 508 to eliminate redundant data storage, without the use of bitmaps to reduce the transmission of data redundancies. In this optimization, the redundant data in cache 508 are removed after they have been transmitted from server 502 to client 504 (which reduces cache usage at the client), and pointers in the data structures are reorganized to all point to the reduced and consolidated number of column values.
Further details regarding approaches for implementing prefetching with data redundancy reduction are disclosed in co-pending application Ser. No. 09/515,674, filed Feb. 29, 2000, entitled “METHOD AND MECHANISM FOR REDUCING CLIENT-SIDE MEMORY FOOTPRINT OF TRANSMITTED DATA”, and application Ser. No. 10/144,666, filed May 10, 2002, entitled “METHOD AND MECHANISM FOR REDUCING CLIENT-SIDE MEMORY FOOTPRINT OF DATA FOR SCROLLABLE CURSORS”, both of which are incorporated herein by reference in their entirety.
Pipelined prefetching may be advantageously used with respect to database cursors. A cursor is a handle to a query execution area, e.g., an area in memory in which a parsed structured query language (“SQL”) statement and other information for processing the SQL statement is stored. In many database systems, a cursor is an available resource for accessing or parsing SQL statements embedded within an application. Cursors enable a SQL statement to retrieve rows from a database table into a given result set, which can then be accesses, displayed, or operated upon. Typically, a defined sequence of actions is performed to execute a SQL query statement. To execute a SQL query statement, the cursor is first created, either in conjunction with the SQL query or independently. The cursor may be automatically handled by the database system, or manually controlled by a programmer through an application programming interface. The SQL statement is thereafter parsed, optimized, and executed to produce a set of rows called the result set. The rows in the result set are retrieved (“fetched”) either a row at a time or in groups. The cursor can be considered the database query and its result set. A final stage for processing the SQL query statement is to close the cursor.
A cursor can often be utilized like a pointer to a specific row in a result set. When the cursor is active, operations can be performed against the specific row or group of rows at which the cursor is pointing. Scrollable cursors can be employed that allow scrolling in both the forward and reverse directions. Scrolling a cursor allows results to be fetched out-of-order. A backwards scrollable cursor allows movement of the cursor in either the forward and backward directions, thereby permitting rows to be accessed in any order.
Consider if the user views the result set in a scrollable window at client display device, in which scrolling the display window causes a corresponding movement for the cursor position. This type of situation exists, for example, in systems configured to conserve network bandwidth by allowing request and transmission of only enough information to be sent that can fit onto a client's display device, page, window, or screen at a particular instance in time. In these systems, additional portions of the requested data are retrieved only if specifically requested, e.g., based upon the user scrolling or paging through the data displayed in the display window. When the user at the client accesses the result set, the current position of the cursor points at a row or set of rows in the result set. In practice, this may result from the user viewing that particular row or set of rows on the scrollable display window. There may be additional rows of data in the result set both before and after the current cursor position. The cursor is scrolled in the backward direction to view rows in the result set from before the current position. The cursor is scrolled in the forward direction to view rows in the result set after the current position. It is noted that scrolling a display window is only one of many possible ways to scroll a cursor; another possible approach to make explicit API calls to a database to reposition the cursor.
Pipelined prefetching can be employed to prefetch data in response to fetch commands responsive to scrolling a cursor. To illustrate this aspect of the invention according to an embodiment, consider if a scrollable cursor is implemented using multiple levels of caching to store a result set from a SQL operation. Using multiple levels of caching to implement a scrollable cursor is described in more detail in U.S. Pat. No. 6,973,457, entitled “Method and System for Scrollable Cursors”, which is hereby incorporated by reference in its entirety.
Consider the following query, which may cause first server 606 issues its own query 607 to second server 610 in response to receiving query 603 from client 602:
SELECT *
FROM table_at_server_606 A
WHERE EXISTS (SELECT * from table_at_server_610 B
WHERE A.value = B.value);
In an embodiment of the invention, this type of query can be satisfied by either moving the cursor to where the data is located or by moving the data to where the cursor is located. Various efficiency measures may be considered in determining whether the data or the query should be sent to a remote location, e.g., network efficiency or cache usage measures.
In the embodiment of the invention shown in
Scrollable cursors can be implemented with multiple levels of caching, in which a partial result set is stored at the client and a full or partial result set is stored at the server. In the example of
If the cursor position is scrolled/moved at client 602 beyond the boundaries of cache 604, then a fetch command may be issued to server 606. If the fetch command and/or cursor scroll command extends beyond the data stored in cache 608 at first server 606, then first server 606 could issue another fetch command to second server 610. Since server second 610 maintains its own cache 612 for result set 609, the requested data can be immediately sent from second server 610 to first server 606. If query 607 causes second server 610 to issue a query against yet another server, then the above procedure is repeated to this additional server. Potentially, an infinitely long chain of servers, queries, caches, and cursors could be linked together in this manner.
The description of pipelined prefetching illustrated with respect to
System Architecture Overview
Referring to
In an embodiment, the host computer 1522 operates in conjunction with a data storage system 1531, wherein the data storage system 1531 contains a database 1532 that is readily accessible by the host computer 1522. In alternative embodiments, the database 1532 may be resident on the host computer. In yet alternative embodiments, the database 1532 may be read by the host computer 1522 from any other medium from which a computer can read. In an alternative embodiment, the host computer 1522 can access two or more databases 1532, stored in a variety of mediums, as previously discussed.
Referring to
A processing unit may further include a read only memory (ROM) 1609 or other static storage device coupled to the bus 1606 for storing static data and instructions for the processor(s) 1607. A storage device 1610, such as a magnetic disk or optical disk, may also be provided and coupled to the bus 1606 for storing data and instructions for the processor(s) 1607. A processing unit may be coupled via the bus 1606 to a display device 1611, such as, but not limited to, a cathode ray tube (CRT), for displaying information to a user. An input device 1612 is coupled to the bus 1606 for communicating information and command selections to the processor(s) 1607. A user input device may include a cursor control 1613 for communicating direction information and command selections to the processor(s) 1607 and for controlling cursor movement on the display 1611.
According to one embodiment of the invention, the individual processing units perform specific operations by their respective processor(s) 1607 executing one or more sequences of one or more instructions contained in the main memory 1608. Such instructions may be read into the main memory 1608 from another computer-usable medium, such as the ROM 1609 or the storage device 1610. Execution of the sequences of instructions contained in the main memory 1608 causes the processor(s) 1607 to perform the processes described herein. In alternative embodiments, hard-wired circuitry may be used in place of or in combination with software instructions to implement the invention. Thus, embodiments of the invention are not limited to any specific combination of hardware circuitry and/or software.
The term “computer-usable medium,” as used herein, refers to any medium that provides information or is usable by the processor(s) 1607. Such a medium may take many forms, including, but not limited to, non-volatile, volatile and transmission media. Non-volatile media, i.e., media that can retain information in the absence of power, includes the ROM 1609. Volatile media, i.e., media that can not retain information in the absence of power, includes the main memory 1608. Transmission media includes coaxial cables, copper wire and fiber optics, including the wires that comprise the bus 1606. Transmission media can also take the form of carrier waves; i.e., electromagnetic waves that can be modulated, as in frequency, amplitude or phase, to transmit information signals. Additionally, transmission media can take the form of acoustic or light waves, such as those generated during radio wave and infrared data communications. Common forms of computer-usable media include, for example: a floppy disk, flexible disk, hard disk, magnetic tape, any other magnetic medium, CD-ROM, any other optical medium, punchcards, papertape, any other physical medium with patterns of holes, RAM, ROM, PROM (i.e., programmable read only memory), EPROM (i.e., erasable programmable read only memory), including FLASH-EPROM, any other memory chip or cartridge, carrier waves, or any other medium from which a processor 1607 can retrieve information.
Various forms of computer-usable media may be involved in providing one or more sequences of one or more instructions to the processor(s) 1607 for execution. For example, the instructions may initially be provided on a magnetic disk of a remote computer (not shown). The remote computer may load the instructions into its dynamic memory and then transit them over a telephone line, using a modem. A modem local to the processing unit may receive the instructions on a telephone line and use an infrared transmitter to convert the instruction signals transmitted over the telephone line to corresponding infrared signals. An infrared detector (not shown) coupled to the bus 1606 may receive the infrared signals and place the instructions therein on the bus 1606. The bus 1606 may carry the instructions to the main memory 1608, from which the processor(s) 1607 thereafter retrieves and executes the instructions. The instructions received by the main memory 1608 may optionally be stored on the storage device 1610, either before or after their execution by the processor(s) 1607.
Each processing unit may also include a communication interface 1614 coupled to the bus 1606. The communication interface 1614 provides two-way communication between the respective user stations 1524 and the host computer 1522. The communication interface 1614 of a respective processing unit transmits and receives electrical, electromagnetic or optical signals that include data streams representing various types of information, including instructions, messages and data. A communication link 1615 links a respective user station 1524 and a host computer 1522. The communication link 1615 may be a LAN 1526, in which case the communication interface 1614 may be a LAN card. Alternatively, the communication link 1615 may be a PSTN 1528, in which case the communication interface 1614 may be an integrated services digital network (ISDN) card or a modem. Also, as a further alternative, the communication link 1615 may be a wireless network 1530. A processing unit may transmit and receive messages, data, and instructions, including program, i.e., application, code, through its respective communication link 1615 and communication interface 1614. Received program code may be executed by the respective processor(s) 1607 as it is received, and/or stored in the storage device 1610, or other associated non-volatile media, for later execution. In this manner, a processing unit may receive messages, data and/or program code in the form of a carrier wave.
In the foregoing specification, the invention has been described with reference to specific embodiments thereof. It will, however, be evident that various modifications and changes may be made thereto without departing from the broader spirit and scope of the invention. For example, the reader is to understand that the specific ordering and combination of process actions shown in the process flow diagrams described herein is merely illustrative, and the invention can be performed using different or additional process actions, or a different combination or ordering of process actions. The specification and drawings are, accordingly, to be regarded in an illustrative rather than restrictive sense.
Number | Name | Date | Kind |
---|---|---|---|
4803613 | Kametani et al. | Feb 1989 | A |
4868764 | Richards | Sep 1989 | A |
4905138 | Bourne | Feb 1990 | A |
5175856 | Van Dyke et al. | Dec 1992 | A |
5241648 | Cheng et al. | Aug 1993 | A |
5303149 | Janigian | Apr 1994 | A |
5305389 | Palmer | Apr 1994 | A |
5359724 | Earle | Oct 1994 | A |
5408630 | Moss | Apr 1995 | A |
5410698 | Danneels et al. | Apr 1995 | A |
5446858 | Copeland et al. | Aug 1995 | A |
5499355 | Krishnamohan et al. | Mar 1996 | A |
5586260 | Hu | Dec 1996 | A |
5600316 | Moll | Feb 1997 | A |
5604490 | Blakley, III et al. | Feb 1997 | A |
5632015 | Zimowski et al. | May 1997 | A |
5724588 | Hill et al. | Mar 1998 | A |
5754771 | Epperson et al. | May 1998 | A |
5764890 | Glasser et al. | Jun 1998 | A |
5765159 | Srinivasan | Jun 1998 | A |
5787461 | Stephens | Jul 1998 | A |
5794228 | French et al. | Aug 1998 | A |
5797001 | Augenbraun et al. | Aug 1998 | A |
5799302 | Johnson et al. | Aug 1998 | A |
5802528 | Oki et al. | Sep 1998 | A |
5802569 | Genduso et al. | Sep 1998 | A |
5812527 | Kline et al. | Sep 1998 | A |
5812852 | Poulsen et al. | Sep 1998 | A |
5813000 | Furlani | Sep 1998 | A |
5815718 | Tock | Sep 1998 | A |
5819268 | Hackett | Oct 1998 | A |
5822749 | Agarwal | Oct 1998 | A |
5822790 | Mehrotra | Oct 1998 | A |
5826253 | Bredenberg | Oct 1998 | A |
5826270 | Rutkowski et al. | Oct 1998 | A |
5832231 | Raman et al. | Nov 1998 | A |
5835755 | Stellwagen, Jr. | Nov 1998 | A |
5835904 | Vicik et al. | Nov 1998 | A |
5875296 | Shi et al. | Feb 1999 | A |
5878223 | Becker et al. | Mar 1999 | A |
5878409 | Baru et al. | Mar 1999 | A |
5895463 | Dowling et al. | Apr 1999 | A |
5913025 | Higley et al. | Jun 1999 | A |
5913208 | Brown et al. | Jun 1999 | A |
5918013 | Mighdoll et al. | Jun 1999 | A |
5930795 | Chen et al. | Jul 1999 | A |
5937415 | Sheffield et al. | Aug 1999 | A |
5937421 | Petrov et al. | Aug 1999 | A |
5958040 | Jouppi | Sep 1999 | A |
6009265 | Huang et al. | Dec 1999 | A |
6021407 | Meck | Feb 2000 | A |
6023684 | Pearson | Feb 2000 | A |
6052699 | Huelsbergen et al. | Apr 2000 | A |
6052785 | Lin et al. | Apr 2000 | A |
6067623 | Blakley, III et al. | May 2000 | A |
6073168 | Mighdoll et al. | Jun 2000 | A |
6076092 | Goldberg et al. | Jun 2000 | A |
6085193 | Malkin et al. | Jul 2000 | A |
6098064 | Pirolli et al. | Aug 2000 | A |
6112197 | Chatterjee et al. | Aug 2000 | A |
6112209 | Gusack | Aug 2000 | A |
6115040 | Bladow et al. | Sep 2000 | A |
6122634 | Brodsky | Sep 2000 | A |
6134594 | Helland et al. | Oct 2000 | A |
6141759 | Braddy | Oct 2000 | A |
6151602 | Heilsberg et al. | Nov 2000 | A |
6178461 | Chan et al. | Jan 2001 | B1 |
6286104 | Buhle et al. | Sep 2001 | B1 |
6310918 | Saha et al. | Oct 2001 | B1 |
6341288 | Yach et al. | Jan 2002 | B1 |
6401193 | Afsar et al. | Jun 2002 | B1 |
6421342 | Schwartz et al. | Jul 2002 | B1 |
6421715 | Chatterjee et al. | Jul 2002 | B1 |
6430618 | Karger et al. | Aug 2002 | B1 |
6463508 | Wolf et al. | Oct 2002 | B1 |
6484179 | Roccaforte | Nov 2002 | B1 |
6505187 | Shatdal | Jan 2003 | B1 |
6507834 | Kabra et al. | Jan 2003 | B1 |
6513108 | Kerr et al. | Jan 2003 | B1 |
6557079 | Mason, Jr. et al. | Apr 2003 | B1 |
6598037 | Craig et al. | Jul 2003 | B1 |
6598121 | Challenger et al. | Jul 2003 | B2 |
6604097 | Phoenix et al. | Aug 2003 | B2 |
6618729 | Bhashyam et al. | Sep 2003 | B1 |
6629123 | Hunt | Sep 2003 | B1 |
6662218 | Mighdoll et al. | Dec 2003 | B2 |
6665684 | Zait et al. | Dec 2003 | B2 |
6675195 | Chatterjee et al. | Jan 2004 | B1 |
6701520 | Santosuosso et al. | Mar 2004 | B1 |
6763382 | Balakrishnan et al. | Jul 2004 | B1 |
6907429 | Carneal et al. | Jun 2005 | B2 |
6973457 | Bastawala et al. | Dec 2005 | B1 |
6990477 | Cotner et al. | Jan 2006 | B2 |
6993594 | Schneider | Jan 2006 | B2 |
7089331 | Gollapudi et al. | Aug 2006 | B1 |
7127463 | Arnold et al. | Oct 2006 | B2 |
20010003823 | Mighdoll et al. | Jun 2001 | A1 |
20010013045 | Loschky et al. | Aug 2001 | A1 |
20010051956 | Bird | Dec 2001 | A1 |
20020099806 | Balsamo et al. | Jul 2002 | A1 |
20020103778 | Saxena | Aug 2002 | A1 |
20020143728 | Cotner et al. | Oct 2002 | A1 |
20020194174 | Calkins et al. | Dec 2002 | A1 |
20030009538 | Shah et al. | Jan 2003 | A1 |