US20100325631A1 - Method and apparatus for increasing load bandwidth - Google Patents

Method and apparatus for increasing load bandwidth Download PDF

Info

Publication number
US20100325631A1
US20100325631A1 US12/816,297 US81629710A US2010325631A1 US 20100325631 A1 US20100325631 A1 US 20100325631A1 US 81629710 A US81629710 A US 81629710A US 2010325631 A1 US2010325631 A1 US 2010325631A1
Authority
US
United States
Prior art keywords
store
load
accessing
satisfied
predicted
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Abandoned
Application number
US12/816,297
Inventor
Rajesh Patel
James Dundas
Adi Yoaz
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Individual
Original Assignee
Individual
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Individual filed Critical Individual
Priority to US12/816,297 priority Critical patent/US20100325631A1/en
Publication of US20100325631A1 publication Critical patent/US20100325631A1/en
Abandoned legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/30Arrangements for executing machine instructions, e.g. instruction decode
    • G06F9/38Concurrent instruction execution, e.g. pipeline, look ahead
    • G06F9/3824Operand accessing
    • G06F9/3826Bypassing or forwarding of data results, e.g. locally between pipeline stages or within a pipeline stage
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/30Arrangements for executing machine instructions, e.g. instruction decode
    • G06F9/38Concurrent instruction execution, e.g. pipeline, look ahead
    • G06F9/3824Operand accessing
    • G06F9/3834Maintaining memory consistency
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/30Arrangements for executing machine instructions, e.g. instruction decode
    • G06F9/38Concurrent instruction execution, e.g. pipeline, look ahead
    • G06F9/3836Instruction issuing, e.g. dynamic instruction scheduling or out of order instruction execution
    • G06F9/3838Dependency mechanisms, e.g. register scoreboarding
    • G06F9/384Register renaming

Definitions

  • the invention described herein relates to the field of microprocessor architecture. More particularly, the invention relates to the scheduling of multiple load operations within a load cycle of a pipelined microprocessor.
  • Microprocessor performance may be increased by enabling multiple cache load operations to be executed within the same cycle.
  • One method of increasing the load bandwidth of a microprocessor is to support additional cache ports that may be accessed in parallel.
  • additional cache ports within cache memories, such as a Level 1 (L1) cache can be expensive in terms of die area and cycle time.
  • Interleaving involves dividing a cache into a number of sub-banks and using low-order address bits to access the banks.
  • interleaving requires more die area for crossbar switching to direct loads and retired stores to the proper cache bank.
  • Replication involves emulating an N-port cache by replicating an M-port data cache array N/M times. While replication eliminates the bank conflict problem of interleaving, it may be expensive in terms of die area. Furthermore, while replication addresses the load-bandwidth problem, it exacerbates the store-bandwidth problem since store traffic must be broadcast to all of the replicated arrays simultaneously in order to ensure that each array has an updated copy of the data.
  • Time-division multiplexing involves emulating an N-port data cache by decreasing the cycle time of an M-port array by a factor of N/M.
  • time-division multiplexing is difficult and expensive to implement and scale to higher frequencies.
  • Line buffering involves adding a small line-buffer that holds cache lines recently read from the cache by load operations. Subsequent loads may obtain data from this buffer, which can be multi-ported due to its small size.
  • line buffering is complex and expensive in terms of cycle times, because loads that miss in the buffer must go to the cache, thereby increasing latency.
  • FIG. 1 illustrates a prior art architecture for supporting one load per cycle.
  • FIG. 2 illustrates an architecture that supports multiple loads per cycle according to one embodiment of the present invention.
  • FIG. 3 illustrates a method for supporting multiple loads per cycle according to one embodiment of the present invention.
  • a method and apparatus for increasing load bandwidth is described, intended to enable increased load operation performance without substantially increasing die area or power within a pipelined microprocessor architecture.
  • CMOS complementary metal-oxide semiconductor
  • Integrated circuits described herein such as a microprocessor, cache, or other device, may be implemented as monolithic integrated circuits or on separate die.
  • FIG. 1 illustrates a microprocessor than can support execution of only one load per cycle.
  • a scheduler 100 may be a circuit that schedules load and store operations to be issued to an level 1 (L1) data cache 105 and a fast store forwarding buffer 110 , respectively.
  • the L1 data cache is a semiconductor memory device that may be used to store previously loaded data and can be accessed by load operations quickly without resorting to system memory.
  • the fast store-forwarding buffer is a semiconductor memory device that may store data that is intended to be stored to system memory and can be accessed by load operations quickly without resorting to system memory.
  • Load and store operations may be stored within a load buffer 115 and store buffer 120 , respectively, before accessing system memory.
  • a load operation may retrieve load data faster than accessing the data from the load buffer by attempting to retrieve the load data from the L1 data cache.
  • more current versions of load data may exist within the fast store-forwarding buffer that will be updated in system memory or the L1 data cache. Therefore, load operations may be satisfied faster by attempting to retrieve the load data from the fast store-forwarding buffer, rather than wait for the most current version of the load data to be updated within the L1 data cache or system memory.
  • the fast store forwarding buffer, the L1 data cache, the load buffer, and the store buffer may be implemented using circuitry well known to those of ordinary skill in the art, including Static Random Access Memory (SRAM) cells using standard complementary metal-oxide-semiconductor (CMOS) technologies.
  • SRAM Static Random Access Memory
  • CMOS complementary metal-oxide-semiconductor
  • the schedule may be implemented as a semiconductor logic circuit using standard CMOS devices.
  • some or all of the scheduler may implemented on a machine-readable medium in which instructions are stored, which when executed by a processor perform operations to schedule load operations within a microprocessor.
  • an address generation unit 125 In order to access the fast store-forwarding buffer and the L1 data cache, an address generation unit 125 generates a partial address in order to facilitate fast access to the L1 data cache. In order to access the load buffer or store buffer, a full address is generated by the address generation unit, which may take more time to generate and decode than the partial address generated to access the L1 data cache. Furthermore, L1 data cache typically supports faster access speeds than other memory structures within a computer system. Therefore, a time savings can be realized by attempting to retrieve load data from the L1 data cache instead of other memory structures, such as the store or load buffers or system memory.
  • failed attempts to retrieve load data from either the fast store forwarding buffer or L1 data cache may need to be rescheduled and re-issued in order to satisfy a load operation.
  • any operations that depend on the failed load operation must also be rescheduled, as the data upon which they depend has not been successfully retrieved.
  • the L1 data cache may support a limited number of cache ports as cache ports may be costly in terms of die area, cycle time, and power consumption.
  • Store forwarding buffer ports typically do not require as much die area as L1 data cache ports. Therefore, multiple store forwarding buffer ports may be implemented without incurring as much die cost as when implementing multiple L1 cache ports.
  • the architecture illustrated in FIG. 1 therefore, is limited to supporting only one load operation per access cycle.
  • two loads per cycle may be supported by the microprocessor architecture of FIG. 1 by using two ports in the fast store forwarding buffer and the L1 data cache.
  • implementing multiple data cache ports may result in lower clock rate, higher complexity/cost, and higher power consumption.
  • FIG. 2 illustrates a microprocessor in which multiple loads may be issued during the same access cycle, according to one embodiment, without incurring die cost and cycle time associated with implementing multiple L1 data cache ports.
  • a prediction is made as to whether a load will be satisfied by accessing the store-forwarding buffer or the L1 data cache. The loads are then scheduled and issued accordingly. If a load operation is predicted to be satisfied by accessing the store-forwarding buffer, the accuracy of the prediction may be verified by checking to see whether a store corresponding to the target address of the predicted load operation is later stored within the store buffer. If the prediction was correct, a predictor 201 may be updated in order to better predict the likelihood that the same load operation will be satisfied by accessing the store-forwarding buffer in the future. Likewise, if the prediction was incorrect, the predictor may be updated accordingly.
  • Multiple ports may be implemented relatively inexpensively with regard to cycle time, power consumption, and die area in the store-forwarding buffer.
  • two store-forwarding buffer ports 205 are implemented whereas only one L1 data cache port 210 is implemented such that multiple load operations may be scheduled and issued without incurring excessive die area, power consumption, and cycle time cost.
  • an N-bit saturating bimodal counter may be implemented as a prediction algorithm.
  • An N-bit saturated bimodal counter may be realized by a two-bit counter which increments or decrements between four states, each corresponding to a different strength of a prediction for a given load operation.
  • the predictor may increment the two-bit counter to indicate that the load operation is now a “strongly predicted” load.
  • the counter may be decremented to indicate that the load is a “weakly predicted” load.
  • prediction algorithms including a static prediction bit in the compiler or a “wait table” predictor, such as that used in the ALPHA 21264 microprocessor.
  • the predictor may be implemented either as a semiconductor logic circuit using standard CMOS semiconductor devices, or other semiconductor technology. Alternatively, some or all of the predictor may implemented on a machine-readable medium in which instructions are stored, which when executed by a processor perform operations to predict whether load operations within a microprocessor will be satisfied by accessing a fast store-forwarding buffer.
  • FIG. 3 illustrates a method for supporting multiple loads per cycle according to one embodiment.
  • loads that are not predicted to be satisfied by accessing the store forwarding buffer may be sent to the L1 data cache and store-forwarding buffer in the same load cycle, while those that are predicted to be satisfied by accessing the store forwarding buffer may be sent only to the store forwarding buffer within one load cycle.
  • loads that are predicted to be satisfied by accessing the store forwarding buffer may be sent to the L1 cache and the store-forwarding buffer in the same load cycle if a free L1 cache port is available during the load cycle.
  • the load operation may be satisfied without incurring replay if the load was incorrectly predicted.
  • Predictor updates may occur after the load operations access the store buffer and determine whether they were correctly or incorrectly predicted.
  • the store forwarding buffer and address generation unit are dual ported to allow all loads to check the store forwarding buffer, including loads that are not predicted to be satisfied by accessing the store forwarding buffer. Loads not predicted to be satisfied by accessing the store-forwarding buffer may, therefore, access load data without incurring replay.
  • Embodiments of the present invention may be implemented using in hardware or by a machine-readable medium containing instructions, which when executed by a processor, perform operations corresponding to the present invention. Accordingly, some aspects of the invention may be implemented in hardware while others are implemented in software.

Abstract

A method and apparatus for dual-target register allocation is described, intended to enable the efficient mapping/renaming of registers associated with instructions within a pipelined microprocessor architecture.

Description

    FIELD OF THE INVENTION
  • The invention described herein relates to the field of microprocessor architecture. More particularly, the invention relates to the scheduling of multiple load operations within a load cycle of a pipelined microprocessor.
  • BACKGROUND
  • Microprocessor performance may be increased by enabling multiple cache load operations to be executed within the same cycle. One method of increasing the load bandwidth of a microprocessor is to support additional cache ports that may be accessed in parallel. However, supporting additional cache ports within cache memories, such as a Level 1 (L1) cache can be expensive in terms of die area and cycle time.
  • Other techniques to increase load bandwidth include interleaving, replication, time-division multiplexing, and line buffering. Interleaving involves dividing a cache into a number of sub-banks and using low-order address bits to access the banks. However, interleaving requires more die area for crossbar switching to direct loads and retired stores to the proper cache bank.
  • Replication involves emulating an N-port cache by replicating an M-port data cache array N/M times. While replication eliminates the bank conflict problem of interleaving, it may be expensive in terms of die area. Furthermore, while replication addresses the load-bandwidth problem, it exacerbates the store-bandwidth problem since store traffic must be broadcast to all of the replicated arrays simultaneously in order to ensure that each array has an updated copy of the data.
  • Time-division multiplexing involves emulating an N-port data cache by decreasing the cycle time of an M-port array by a factor of N/M. However, time-division multiplexing is difficult and expensive to implement and scale to higher frequencies.
  • Line buffering involves adding a small line-buffer that holds cache lines recently read from the cache by load operations. Subsequent loads may obtain data from this buffer, which can be multi-ported due to its small size. However, line buffering is complex and expensive in terms of cycle times, because loads that miss in the buffer must go to the cache, thereby increasing latency.
  • BRIEF DESCRIPTION OF THE DRAWINGS
  • The features and advantages will become apparent from the following detailed description in which:
  • FIG. 1 illustrates a prior art architecture for supporting one load per cycle.
  • FIG. 2 illustrates an architecture that supports multiple loads per cycle according to one embodiment of the present invention.
  • FIG. 3 illustrates a method for supporting multiple loads per cycle according to one embodiment of the present invention.
  • DETAILED DESCRIPTION
  • A method and apparatus for increasing load bandwidth is described, intended to enable increased load operation performance without substantially increasing die area or power within a pipelined microprocessor architecture.
  • The present invention is described by way of embodiments, which exemplify the features of the present invention. The invention may be implemented in hardware or software or a combination thereof. In particular, hardware circuits described herein may be implemented using standard complementary metal-oxide semiconductor (CMOS) technology, or other technologies not specifically described. Integrated circuits described herein, such as a microprocessor, cache, or other device, may be implemented as monolithic integrated circuits or on separate die.
  • FIG. 1 illustrates a microprocessor than can support execution of only one load per cycle. A scheduler 100 may be a circuit that schedules load and store operations to be issued to an level 1 (L1) data cache 105 and a fast store forwarding buffer 110, respectively. The L1 data cache is a semiconductor memory device that may be used to store previously loaded data and can be accessed by load operations quickly without resorting to system memory. Similarly, the fast store-forwarding buffer is a semiconductor memory device that may store data that is intended to be stored to system memory and can be accessed by load operations quickly without resorting to system memory.
  • Load and store operations may be stored within a load buffer 115 and store buffer 120, respectively, before accessing system memory. A load operation may retrieve load data faster than accessing the data from the load buffer by attempting to retrieve the load data from the L1 data cache. However, more current versions of load data may exist within the fast store-forwarding buffer that will be updated in system memory or the L1 data cache. Therefore, load operations may be satisfied faster by attempting to retrieve the load data from the fast store-forwarding buffer, rather than wait for the most current version of the load data to be updated within the L1 data cache or system memory.
  • The fast store forwarding buffer, the L1 data cache, the load buffer, and the store buffer may be implemented using circuitry well known to those of ordinary skill in the art, including Static Random Access Memory (SRAM) cells using standard complementary metal-oxide-semiconductor (CMOS) technologies. However, other memory circuit architectures and/or semiconductor technologies may be used. Similarly, the schedule may be implemented as a semiconductor logic circuit using standard CMOS devices. Alternatively, some or all of the scheduler may implemented on a machine-readable medium in which instructions are stored, which when executed by a processor perform operations to schedule load operations within a microprocessor.
  • In order to access the fast store-forwarding buffer and the L1 data cache, an address generation unit 125 generates a partial address in order to facilitate fast access to the L1 data cache. In order to access the load buffer or store buffer, a full address is generated by the address generation unit, which may take more time to generate and decode than the partial address generated to access the L1 data cache. Furthermore, L1 data cache typically supports faster access speeds than other memory structures within a computer system. Therefore, a time savings can be realized by attempting to retrieve load data from the L1 data cache instead of other memory structures, such as the store or load buffers or system memory.
  • However, failed attempts to retrieve load data from either the fast store forwarding buffer or L1 data cache may need to be rescheduled and re-issued in order to satisfy a load operation. Similarly, any operations that depend on the failed load operation must also be rescheduled, as the data upon which they depend has not been successfully retrieved.
  • The L1 data cache may support a limited number of cache ports as cache ports may be costly in terms of die area, cycle time, and power consumption. Store forwarding buffer ports, on the other hand, typically do not require as much die area as L1 data cache ports. Therefore, multiple store forwarding buffer ports may be implemented without incurring as much die cost as when implementing multiple L1 cache ports. The architecture illustrated in FIG. 1, therefore, is limited to supporting only one load operation per access cycle.
  • Alternatively, two loads per cycle may be supported by the microprocessor architecture of FIG. 1 by using two ports in the fast store forwarding buffer and the L1 data cache. However, implementing multiple data cache ports may result in lower clock rate, higher complexity/cost, and higher power consumption.
  • FIG. 2 illustrates a microprocessor in which multiple loads may be issued during the same access cycle, according to one embodiment, without incurring die cost and cycle time associated with implementing multiple L1 data cache ports.
  • In one embodiment, a prediction is made as to whether a load will be satisfied by accessing the store-forwarding buffer or the L1 data cache. The loads are then scheduled and issued accordingly. If a load operation is predicted to be satisfied by accessing the store-forwarding buffer, the accuracy of the prediction may be verified by checking to see whether a store corresponding to the target address of the predicted load operation is later stored within the store buffer. If the prediction was correct, a predictor 201 may be updated in order to better predict the likelihood that the same load operation will be satisfied by accessing the store-forwarding buffer in the future. Likewise, if the prediction was incorrect, the predictor may be updated accordingly.
  • Multiple ports may be implemented relatively inexpensively with regard to cycle time, power consumption, and die area in the store-forwarding buffer. In one embodiment, two store-forwarding buffer ports 205 are implemented whereas only one L1 data cache port 210 is implemented such that multiple load operations may be scheduled and issued without incurring excessive die area, power consumption, and cycle time cost.
  • While one embodiment of the present invention has been described in which two store-forwarding buffer ports are implemented, more than two store-forwarding buffer ports may be implemented in other embodiments. Likewise, although one L1 data cache port has been implemented in one embodiment of the present invention, more than one L1 data cache port may be implemented, depending upon the cost and power consumption requirements of the computer system in which the present invention is used.
  • Various prediction algorithms may be implemented in order to predict whether a load operation will be satisfied by accessing the store forwarding buffer or the L1 data cache. In one embodiment, an N-bit saturating bimodal counter may be implemented as a prediction algorithm. An N-bit saturated bimodal counter may be realized by a two-bit counter which increments or decrements between four states, each corresponding to a different strength of a prediction for a given load operation.
  • For example, if it is determined that a load was predicted correctly, the predictor may increment the two-bit counter to indicate that the load operation is now a “strongly predicted” load. Alternatively, if it is determined that the load operation was incorrectly predicted to be satisfied by accessing the store-forwarding buffer, the counter may be decremented to indicate that the load is a “weakly predicted” load.
  • Other prediction algorithms may be used, including a static prediction bit in the compiler or a “wait table” predictor, such as that used in the ALPHA 21264 microprocessor.
  • Regardless of the particular prediction algorithm used, the predictor may be implemented either as a semiconductor logic circuit using standard CMOS semiconductor devices, or other semiconductor technology. Alternatively, some or all of the predictor may implemented on a machine-readable medium in which instructions are stored, which when executed by a processor perform operations to predict whether load operations within a microprocessor will be satisfied by accessing a fast store-forwarding buffer.
  • FIG. 3 illustrates a method for supporting multiple loads per cycle according to one embodiment. In one embodiment, loads that are not predicted to be satisfied by accessing the store forwarding buffer may be sent to the L1 data cache and store-forwarding buffer in the same load cycle, while those that are predicted to be satisfied by accessing the store forwarding buffer may be sent only to the store forwarding buffer within one load cycle. Alternatively, loads that are predicted to be satisfied by accessing the store forwarding buffer may be sent to the L1 cache and the store-forwarding buffer in the same load cycle if a free L1 cache port is available during the load cycle. By issuing the same load operation to both the L1 cache and the store-forwarding buffer in the same load cycle, the load operation may be satisfied without incurring replay if the load was incorrectly predicted. Predictor updates may occur after the load operations access the store buffer and determine whether they were correctly or incorrectly predicted.
  • In one embodiment, the store forwarding buffer and address generation unit are dual ported to allow all loads to check the store forwarding buffer, including loads that are not predicted to be satisfied by accessing the store forwarding buffer. Loads not predicted to be satisfied by accessing the store-forwarding buffer may, therefore, access load data without incurring replay.
  • Embodiments of the present invention, either in whole or in part, may be implemented using in hardware or by a machine-readable medium containing instructions, which when executed by a processor, perform operations corresponding to the present invention. Accordingly, some aspects of the invention may be implemented in hardware while others are implemented in software.
  • While this invention has been described with reference to illustrative embodiments, this description is not intended to be construed in a limiting sense. Various modifications of the illustrative embodiments, as well as other embodiments, which are apparent to persons skilled in the art to which the invention pertains are deemed to lie within the spirit and scope of the invention.

Claims (20)

1-34. (canceled)
35. A method comprising:
scheduling a plurality of load operations to be performed within a load cycle, said plurality of load operations comprising a load operation predicted to be satisfied by accessing a store-forwarding buffer; and
issuing a load operation predicted to be satisfied by accessing said store-forwarding buffer to the store-forwarding buffer and not a data load cache.
36. The method of claim 35 further comprising issuing a load operation not predicted to be satisfied by accessing said store-forwarding buffer to the data load cache within said load cycle.
37. The method of claim 35 further comprising issuing said load operation to said data load cache if the load operation is not predicted to be satisfied by accessing the store-forwarding buffer.
38. The method of claim 35 wherein said predicting is a function of how often said load operation is satisfied by accessing a store-forwarding buffer.
39. An apparatus comprising:
a prediction unit to predict whether a load operation will be satisfied by accessing a store-forwarding buffer,
wherein said load operation predicted to be satisfied by accessing said store-forwarding buffer is to be issued to said store-forwarding buffer and not a data load cache unit if no other load operation has been issued to said data load cache unit within a load cycle.
40. The apparatus of claim 39 wherein the scheduler unit is to schedule a plurality of load operations within a load cycle, wherein said scheduler unit is enabled to schedule a load operation not predicted to be satisfied by accessing said store-forwarding buffer within said load cycle.
41. The apparatus of claim 40 wherein said load operation not predicted to be satisfied by accessing said store-forwarding buffer is issued to a data cache unit.
42. The apparatus of claim 41 wherein said load operation not predicted to be satisfied by accessing said store-forwarding buffer is issued to said store-forwarding buffer within said load cycle.
43. The apparatus of claim 42, wherein said plurality of load operations comprises a load operation predicted by said prediction unit to be satisfied by accessing said store-forwarding buffer.
44. The apparatus of claim 42 wherein said load operation predicted to be satisfied by accessing said store-forwarding buffer or said load operation not predicted to be satisfied by accessing said store-forwarding buffer is rescheduled if said prediction is incorrect.
45. The apparatus of claim 44 wherein said rescheduling comprises rescheduling a dependent load operation, said dependent load operation being dependent upon said load operation predicted to be satisfied by accessing said store-forwarding buffer or upon said load operation not predicted to be satisfied by accessing said store-forwarding buffer.
46. The apparatus of claim 39 further comprising a store buffer, said prediction unit being coupled to said store buffer.
47. The apparatus of claim 46 wherein said predicting is a function of how often load operation is satisfied by accessing a store-forwarding buffer.
48. The apparatus of claim 47 wherein said function is dependent upon whether said load operation predicted to be satisfied by accessing said store-forwarding buffer is present within said store buffer.
49. A system comprising:
a prediction unit to predict whether a load operation will be satisfied by accessing a store-forwarding buffer;
a scheduler unit to schedule a plurality of load operations within a load cycle, said plurality of load operations comprising a load operation predicted by said prediction unit to be satisfied by accessing said store-forwarding buffer,
wherein the load operation is issued to a data load cache unit and not the store-forwarding buffer if the load operations is not predicted to be satisfied by accessing said store-forwarding buffer.
50. The system of claim 49 wherein said scheduler unit is enabled to schedule a load operation not predicted to be satisfied by accessing said store-forwarding buffer within said load cycle.
51. The system of claim 50 wherein said load operation not predicted to be satisfied by accessing said store-forwarding buffer is issued to said data load cache unit.
52. The system of claim 51 wherein said load operation not predicted to be satisfied by accessing said store-forwarding buffer is issued to said store-forwarding buffer within said load cycle.
53. The system of claim 52 wherein said load operation predicted to be satisfied by accessing said store-forwarding buffer or said load operation not predicted to be satisfied by accessing said store-forwarding buffer is rescheduled if said prediction is incorrect.
US12/816,297 2001-09-28 2010-06-15 Method and apparatus for increasing load bandwidth Abandoned US20100325631A1 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
US12/816,297 US20100325631A1 (en) 2001-09-28 2010-06-15 Method and apparatus for increasing load bandwidth

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
US09/968,474 US7739483B2 (en) 2001-09-28 2001-09-28 Method and apparatus for increasing load bandwidth
US12/816,297 US20100325631A1 (en) 2001-09-28 2010-06-15 Method and apparatus for increasing load bandwidth

Related Parent Applications (1)

Application Number Title Priority Date Filing Date
US09/968,474 Continuation US7739483B2 (en) 2001-09-28 2001-09-28 Method and apparatus for increasing load bandwidth

Publications (1)

Publication Number Publication Date
US20100325631A1 true US20100325631A1 (en) 2010-12-23

Family

ID=25514319

Family Applications (2)

Application Number Title Priority Date Filing Date
US09/968,474 Expired - Fee Related US7739483B2 (en) 2001-09-28 2001-09-28 Method and apparatus for increasing load bandwidth
US12/816,297 Abandoned US20100325631A1 (en) 2001-09-28 2010-06-15 Method and apparatus for increasing load bandwidth

Family Applications Before (1)

Application Number Title Priority Date Filing Date
US09/968,474 Expired - Fee Related US7739483B2 (en) 2001-09-28 2001-09-28 Method and apparatus for increasing load bandwidth

Country Status (1)

Country Link
US (2) US7739483B2 (en)

Families Citing this family (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7783911B2 (en) * 2006-06-27 2010-08-24 International Business Machines Corporation Programmable bus driver launch delay/cycle delay to reduce elastic interface elasticity requirements
US7752475B2 (en) * 2006-06-27 2010-07-06 International Business Machines Corporation Late data launch for a double data rate elastic interface
US7739538B2 (en) * 2006-06-27 2010-06-15 International Business Machines Corporation Double data rate chaining for synchronous DDR interfaces
US7882322B2 (en) * 2006-06-27 2011-02-01 International Business Machines Corporation Early directory access of a double data rate elastic interface
US7734944B2 (en) * 2006-06-27 2010-06-08 International Business Machines Corporation Mechanism for windaging of a double rate driver
US8943273B1 (en) 2008-08-14 2015-01-27 Marvell International Ltd. Method and apparatus for improving cache efficiency
US9996356B2 (en) * 2015-12-26 2018-06-12 Intel Corporation Method and apparatus for recovering from bad store-to-load forwarding in an out-of-order processor

Citations (10)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5210838A (en) * 1990-05-15 1993-05-11 Sun Microsystems, Inc. Method and apparatus for predicting the effective addresses of future memory load operations in a microprocessor
US5606670A (en) * 1993-12-30 1997-02-25 Intel Corporation Method and apparatus for signalling a store buffer to output buffered store data for a load operation on an out-of-order execution computer system
US5822788A (en) * 1996-12-20 1998-10-13 Intel Corporation Mechanism for prefetching targets of memory de-reference operations in a high-performance processor
US6055629A (en) * 1996-02-15 2000-04-25 Fujitsu, Ltd. Predicting for all branch instructions in a bunch based on history register updated once for all of any taken branches in a bunch
US6141747A (en) * 1998-09-22 2000-10-31 Advanced Micro Devices, Inc. System for store to load forwarding of individual bytes from separate store buffer entries to form a single load word
US6581151B2 (en) * 2001-07-18 2003-06-17 Ip-First, Llc Apparatus and method for speculatively forwarding storehit data based on physical page index compare
US6622237B1 (en) * 2000-01-03 2003-09-16 Advanced Micro Devices, Inc. Store to load forward predictor training using delta tag
US6651161B1 (en) * 2000-01-03 2003-11-18 Advanced Micro Devices, Inc. Store load forward predictor untraining
US6694424B1 (en) * 2000-01-03 2004-02-17 Advanced Micro Devices, Inc. Store load forward predictor training
US7752423B2 (en) * 2001-06-28 2010-07-06 Intel Corporation Avoiding execution of instructions in a second processor by committing results obtained from speculative execution of the instructions in a first processor

Family Cites Families (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US4217638A (en) * 1977-05-19 1980-08-12 Tokyo Shibaura Electric Co., Ltd. Data-processing apparatus and method
US6243804B1 (en) * 1998-07-22 2001-06-05 Scenix Semiconductor, Inc. Single cycle transition pipeline processing using shadow registers
US6154832A (en) * 1998-12-04 2000-11-28 Advanced Micro Devices, Inc. Processor employing multiple register sets to eliminate interrupts

Patent Citations (10)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5210838A (en) * 1990-05-15 1993-05-11 Sun Microsystems, Inc. Method and apparatus for predicting the effective addresses of future memory load operations in a microprocessor
US5606670A (en) * 1993-12-30 1997-02-25 Intel Corporation Method and apparatus for signalling a store buffer to output buffered store data for a load operation on an out-of-order execution computer system
US6055629A (en) * 1996-02-15 2000-04-25 Fujitsu, Ltd. Predicting for all branch instructions in a bunch based on history register updated once for all of any taken branches in a bunch
US5822788A (en) * 1996-12-20 1998-10-13 Intel Corporation Mechanism for prefetching targets of memory de-reference operations in a high-performance processor
US6141747A (en) * 1998-09-22 2000-10-31 Advanced Micro Devices, Inc. System for store to load forwarding of individual bytes from separate store buffer entries to form a single load word
US6622237B1 (en) * 2000-01-03 2003-09-16 Advanced Micro Devices, Inc. Store to load forward predictor training using delta tag
US6651161B1 (en) * 2000-01-03 2003-11-18 Advanced Micro Devices, Inc. Store load forward predictor untraining
US6694424B1 (en) * 2000-01-03 2004-02-17 Advanced Micro Devices, Inc. Store load forward predictor training
US7752423B2 (en) * 2001-06-28 2010-07-06 Intel Corporation Avoiding execution of instructions in a second processor by committing results obtained from speculative execution of the instructions in a first processor
US6581151B2 (en) * 2001-07-18 2003-06-17 Ip-First, Llc Apparatus and method for speculatively forwarding storehit data based on physical page index compare

Also Published As

Publication number Publication date
US20030065908A1 (en) 2003-04-03
US7739483B2 (en) 2010-06-15

Similar Documents

Publication Publication Date Title
US11163582B1 (en) Microprocessor with pipeline control for executing of instruction at a preset future time
US5546597A (en) Ready selection of data dependent instructions using multi-cycle cams in a processor performing out-of-order instruction execution
JP3561915B2 (en) System and method for assigning tags to control instruction processing in a superscalar processor
US7200737B1 (en) Processor with a replay system that includes a replay queue for improved throughput
US7073026B2 (en) Microprocessor including cache memory supporting multiple accesses per cycle
US6968444B1 (en) Microprocessor employing a fixed position dispatch unit
US20100325631A1 (en) Method and apparatus for increasing load bandwidth
KR100745904B1 (en) a method and circuit for modifying pipeline length in a simultaneous multithread processor
US6963962B2 (en) Memory system for supporting multiple parallel accesses at very high frequencies
US7743237B2 (en) Register file bit and method for fast context switch
US6202139B1 (en) Pipelined data cache with multiple ports and processor with load/store unit selecting only load or store operations for concurrent processing
US10331357B2 (en) Tracking stores and loads by bypassing load store units
US6507899B1 (en) Interface for a memory unit
JP2008515117A (en) Method and apparatus for providing source operands for instructions in a processor
US7975093B2 (en) Cache with high access store bandwidth
US5900012A (en) Storage device having varying access times and a superscalar microprocessor employing the same
US6360307B1 (en) Circuit architecture and method of writing data to a memory
US5787454A (en) Recorder buffer with interleaving mechanism for accessing a multi-parted circular memory array
US7111127B2 (en) System for supporting unlimited consecutive data stores into a cache memory
CN109564510B (en) System and method for allocating load and store queues at address generation time
US6957319B1 (en) Integrated circuit with multiple microcode ROMs
US7124236B1 (en) Microprocessor including bank-pipelined cache with asynchronous data blocks
US8140833B2 (en) Implementing polymorphic branch history table reconfiguration
JP2762798B2 (en) Information processing apparatus of pipeline configuration having instruction cache
US7610476B1 (en) Multiple control sequences per row of microcode ROM

Legal Events

Date Code Title Description
STCB Information on status: application discontinuation

Free format text: ABANDONED -- FAILURE TO RESPOND TO AN OFFICE ACTION