This application is related to the application entitled “Prefetching Using Hashed Program Counter,” having an attorney docket number of SC13733TH, having inventors Hassan F. Al-Sukhni, Brian C. Grayson, James C. Holt, Matt B. Smittle, and Michael D. Snyder as inventors, having a common assignee, and having the same filing date, all of which is incorporated by reference in its entirety.
This application is related to the application entitled “Prefetching Across A Page Boundary,” having an attorney docket number of SC14279TH, having inventors Hassan F. Al-Sukhni, Brian C. Grayson, James C. Holt, Matt B. Smittle, and Michael D. Snyder as inventors, having a common assignee, and having the same filing date, all of which is incorporated by reference in its entirety.
1. Field of the Invention
This invention relates in general to data processing systems and more specifically to prefetching in a data processing system.
2. Description of the Related Art
Data prefetching can be used to overcome memory latency in data processing systems. One type of data prefetching is stride prefetching. Stride prefetching is based on detecting regular access patterns in the data address stream. Prefetch addresses can be generated based on those detected strides.
Some data processing operations may include multiple strided streams in a data address stream with each strided stream exhibiting a regular pattern of access to a memory. Some prior art systems for data prefetch stride detection have utilized the program counter (PC) value for identifying multiple strided streams within a data address stream.
One problem with using a PC value for stride detection is that the PC value for an instruction must be carried at least through part of the processor pipeline. As the processor pipeline becomes deeper and wider, the cost (e.g. in terms of power and area) of carrying the PC value for each instruction in the pipeline increases.
What is needed is an improved system for prefetching in a data processing system.
The present invention may be better understood, and its numerous objects, features, and advantages made apparent to those skilled in the art by referencing the accompanying drawings.
The use of the same reference symbols in different drawings indicates identical items unless otherwise noted.
The following sets forth a detailed description of a mode for carrying out the invention. The description is intended to be illustrative of the invention and should not be taken to be limiting.
Strides in the data address stream of a data processing system can be detected using a hashed value of the program counter (PC). The program counter indicates the next (or current in some embodiments) instruction of a program that a processor is fetching e.g. in a fetch stage (e.g. stage 102 of
Each stage in
Each instruction includes multiple information fields that may be processed during each stage. In the embodiment shown, the instructions include a hashed program counter information field 101, a source register identifier field 103, an instruction field 105, and instruction information field 107 (e.g. instruction type, destination register).
The different fields of each instruction of a pipeline stage may be stored in registers of the circuitry implementing that stage. Accordingly, as the instructions flow through the data pipeline, the information in each field would be passed from registers of one stage to registers of another stage.
In the memory data access stage 108, data address information 150 is generated. This information is utilized to access data for further processing operations.
Because a hashed value of the program counter and not the entire program counter is used for stride detection, the amount of information required to flow through a processor pipeline may be reduced. In some embodiments, reducing the amount of information allows for a reduction in circuitry (e.g. area and complexity of an integrated circuit) as well as power needed for processing operations. In some embodiments, some of the information of each instruction may not be needed to propagate through the entire pipeline.
Processor 203 includes a load store unit 207, L2 cache 211, L1 cache 213, prefetch unit 209, and a bus interface unit (BIU) 217 for interfacing with memory 221. Processor 203 also includes an L2 memory management unit (MMU) 227 with a translation lookaside buffer (TLB) 229 and an L1 MMU 223 with a TLB 225. In one embodiment, MMU 223 is a subset of MMU 227. In one embodiment, MMU 227 is a multilevel memory management unit. Processor 203 also includes execution units 205 e.g. floating point units, integer and arithmetic logic units, instruction fetch units, and branch prediction units.
Processor 203 implements a processor pipeline with execution units 205 and with load store unit 207. In one embodiment the memory data access stage 108 is implemented with load store unit 207. Processor 203 also implements the pipeline with a program counter circuit 202 and PC hashing circuit 204. Program counter circuit 202 generates the program counter and hashing circuit 204 generates a hashed value of the program counter.
In one embodiment, processor 203 is a 64 bit processor, but may have other instruction sizes (e.g. 8, 16, 32) in other embodiments. Also in other embodiments, processor 203 may include other circuitry not shown and/or have other configurations.
During processor operations, load store unit 207 generates a data address information 150 for the requested data for an instruction. Each generated address makes up an address of the data address stream. In one embodiment, load store unit 207 accesses the L1 cache 213 to determine if the data is present. If the data is not present in the L1 cache 213, load store unit 207 will request the data from the L2 cache (or other cache levels in other embodiments). If the data is not present in any of the caches, then load store unit 207 requests the data from memory 221 via BIU 212. If the data is not present in memory 221, then a request for the data from another memory (e.g. hard disk drive, CD drive etc.) is generated e.g. via an exception or interrupt. Load store unit 207 may perform other operations in data retrieval not described herein. The accessed data is then forwarded to the execution units and/or written to the appropriate cache.
Accessing data from memory 221 (and the L2 cache) requires multiple cycles as compared to accessing data from L1 cache. Accordingly, it may be desirable to prefetch the data. In one embodiment, prefetching includes predicting the address of the data to be accessed in subsequent processing operations of the processor pipeline and retrieving such data before needed for those processing operations. In some embodiments, the retrieved data is written to L1 cache 213.
An example of processor operations where data prefetching may be advantageous is for processing operations that generate strided streams in the data address stream. A strided stream is a group of data accesses in the data address stream that have addresses which are separated by a constant difference (stride). One example of a strided stream occurs where a loop, with a specific load instruction, is performed multiple times where data is obtained from multiple memory locations each separated by a constant address difference. Some processor operations may generate multiple strided streams within the data address stream. Strided streams may also be generated by other control constructs e.g. recursive function calls.
Furthermore, these strided streams may be intermixed (aliased) within the data address stream wherein memory pattern recognition of the different strided streams becomes difficult. For example a program loop may include different access instructions to different memory areas with each iteration of the loop. Each access instruction would generate its own stride pattern. During the processing of a loop with three different strided streams, an access of strided stream 1 would be performed, an access of strided stream 2 would be performed, and then an access of strided stream 3 would be performed. On a second iteration of the loop, a second access of strided stream 1 would be performed, a second access of strided stream 2 would be performed, and then a second access of strided stream 3 would be performed.
In one embodiment, prefetch unit 209 utilizes a hashed value of the program counter to determine if a data access was generated by an instruction that has been generating a particular strided stream. In the case where a loop contains different data accesses, prefetch unit 209 uses the hashed value to differentiate between the different load instructions and then detect if there is a strided pattern in the stream.
In some processing operations, different load instructions (each with its own program counter value) generate different strided streams. Accordingly, using the hashed value to differentiate among different instructions allows for prefetch unit 209 to differentiate among different strided streams generated by different instructions.
However, it has been discovered that not all of the bits of the program counter may be needed to differentiate among likely instructions which generate strided streams in a data address stream.
For example, the program instructions that generate accesses of different strided streams may be most likely to have program counter values that are separated by differences in bits of a certain location (e.g. the least significant bits) of each other such that the other bits (e.g. the most significant bits) may convey redundant information.
In one embodiment where the program counter value includes 64 bits, bits 2-5 (with bit 0 being the least significant bit) would be examined to differentiate the different instructions. With this embodiment, the hashed value of the program counter would be bits 2-5 of the program counter. In other embodiments, the hashed value would include other bits of the program counter. In other embodiments, the hashed value would be generated from the program counter by different techniques. For example, in some embodiments, the hashed value would be other bits (either consecutive bits or non consecutive bits) of the program counter. For example, the hashed value could be bits 0-10, bits 0, 2, 4, 6, 8, 10, 12, or bits 5, 10, 15, 20, 25, 30.
In other embodiments, logical operations may be performed on the bits of the program counter to obtain the hashed value. For example, certain bits of the program counter may be exclusive OR'd (XOR'd) (or be processed by other logical or arithmetic operations e.g. shifting, complementing) to obtain a hashed value. In other embodiments, the hashed value may include some bits of the program counter and bits derived by logical or arithmetical operations of other bits of the program counter.
In the embodiment shown, prefetch unit 209 generates prefetch addresses which are provided to prefetch queue 210. LSU 207 processes the prefetch addresses to obtain the data of the prefetch address. In one embodiment, LSU 207 accesses L2 cache 211 to determine if the data is present. If the data is not present, LSU 207 requests the data from memory 221. These prefetches may be processed on a lower priority than data fetches for pipeline operations in some embodiments.
In the embodiment shown, de-aliasing circuit 307 also utilizes the source register identifier for differentiating among the instructions having the same hashed value. In one embodiment, a pipeline instruction includes an operation code (op code), a source register identifier (e.g. 103), offset or offset register identifier, destination register identifier, and other fields. Because different instructions may have the same hashed value, the source register identifier may be used in further differentiating the instructions. Typically, different data access instructions of different loops would utilize different source address registers. Accordingly, utilizing additional information of an instruction in addition to the hashed value provides further accuracy in differentiating instructions where the possibility exists that two instructions have the same hashed value. In other embodiments, other information in a pipeline instruction e.g. the destination register identifier, the offset, the operation type, or any other pipeline information may be used. Such information may be used without the penalty of increasing the pipeline width where the information is used for other processes of the data processing operation. In other embodiments, the stream identifier may be formed with other information.
In the embodiment shown, de-aliasing circuit 307 receives a hashed value from LSU 207. In one embodiment, de-aliasing circuit 307 generates a stream identifier based on the hashed value and the source register identifier. This stream identifier is provided to the allocation circuit 305. Circuit 305 attempts to allocate each stream identifier to one prefetch engine (e.g. 311, 313). See e.g. the discussion below regarding
De-aliasing circuit 307 also receives an event stream from LSU 207. The event stream includes data access information of the LSU 207 and information associated with the access information including the data address of the event and the type of the event. Examples of the type of events that are conveyed in the event stream include data cache misses, data cache hits, prefetch evicts, and load fold on prefetches. In the case of prefetch evicts and load fold on prefetch, the ID for the prefetch engine that issued the prefetch is included in the event stream.
Each prefetch engine (e.g. 311) attempts to detect a strided stream in the data addresses associated with its allocated stream identifier. In one embodiment, each prefetch engine includes a detection circuit 316 that detects strided patterns by comparing consecutive data access addresses associated with the allocated stream identifier. The prediction circuit 321, generates predicted addresses of future data accesses of the strided stream based on the detected stride from detection circuit 316 and the current data address. The predictions are provided to the select prefetch engine circuit 309, wherein the predictions are provided to LSU 207 via PFQ 210. LSU 207 uses the predictions to prefetch the data and store the data in L1 cache 213. In other embodiments, the prefetched data may be stored in other memory locations or temporary buffers.
In the embodiment shown, each prefetch engine includes a confidence circuit 317 that generates a confidence value for the stream identifier being tracked by the prefetch engine. In one embodiment, the confidence circuit 317 monitors the success of the prefetches associated with the stream identifier and adjusts the confidence level based on factors e.g. as to whether the prefetched data is used, whether there was a load miss, or whether there was a prefetch evict. In one embodiment, confidence level may have 5 active levels where the highest level is indicative of 4 consecutive prefetch uses (See
In some embodiments, the number of outstanding prefetch addresses allowed by prefetch unit 209 would be dependent upon the confidence level. The higher the confidence level, the more outstanding prefetch addresses would be generated.
Reconciliation circuit 323 is utilized to control the prefetching to ensure that the prefetch addresses are for data that is scheduled to be obtained ahead of its need in the pipelined operations. Reconciliation circuit 323 may be utilized to “synchronize” the PE and program accessed regions of the memory. For example, if the prefetch engine runs far ahead of the program, previously prefetch data may be overwritten before used. Reconciliation circuit 323 is utilized to rectify such a situation.
In one embodiment, prefetch unit includes four prefetch engines, but may include other numbers (e.g. 2, 8, 16) in other embodiments.
The select prefetch engine circuit 309 of control unit 301 selects which prefetch engine to obtain a prefetch address to provide to load store unit 207. In one embodiment, select prefetch engine circuit 309 selects the prefetch engine in a round robin pattern and/or based on whether the prefetch engine has a prefetch address available.
In 401, de-aliasing circuit 307 produces a stream identifier from the hashed value and the source register identifier (e.g. 121 of
In 403, de-aliasing circuit 307 determines whether a prefetch engine (e.g. 311, 313) is allocated to the stream identifier. If yes in 403, then de-aliasing circuit 307 passes the information of the event e.g. data address and event type associated with the instruction to the allocated prefetch engine. In 407, the prefetch engine handles the event and adjusts the confidence level accordingly.
In one embodiment, the allocated prefetch engine handles the event by determining whether there was a load hit, a load miss, whether the prefetch was used, or whether the prefetch was evicted. A load hit is where the pipeline requested data is in L1 cache 213 and a load miss is when the pipeline requested data is not in L1 cache 213.
If no in 403, the allocation circuit 305 determines whether there is a non allocated prefetch engine in 409. A non allocated prefetch engine may be an engine that was previously allocated but whose confidence level is below a threshold (e.g. 0). If yes in 409, then allocation circuit 305 allocates a free prefetch engine to the stream identifier and operations 405 and 407 are completed.
If no in 409, then allocation circuit 413 determines whether to reallocate a prefetch engine to the stream identifier. In the embodiment shown, allocation circuit 305 selects a prefetch engine based on the lowest value of a priority metric. In one embodiment, the priority metric is the confidence level as will be discussed below. In other embodiments, other priority metrics may be used including e.g. the least frequently accessed stream identifier or the least recently accessed stream identifier.
In 415, allocation circuit 305 reduces the priority metric of the selected prefetch engine. In one embodiment, circuit 305 reduces the confidence level in operation 415. If in 417, the priority metric (e.g. the confidence level) is below the a predetermined threshold (e.g. the confidence level is zero), the allocation circuit 305 reallocates the selected prefetch engine to the stream identifier in 419 and operations 405 and 407 are performed. If no in 417, the event associated with the stream identifier is ignored.
In other embodiments, upon selecting a prefetch engine with the lowest priority metric, the prefetch engine is automatically reallocated to the stream identifier. However, utilizing a threshold determination (e.g. 417) provides a system where extraneous access “noise” will not de-allocate a prefetch engine properly tracking a strided stream.
In one embodiment, confidence circuit 317 determines the confidence of the prefetching by implementing a confidence level scheme for a stream identifier. In one embodiment, the confidence level is adjusted based on a number of factors such as an indication whether a prefetch was used by the processor (PF used), whether there was a load miss (e.g. whether a load instruction associated with the stream identifier had an address that was not in the L1 cache), and whether the next address generated by the load instruction associated with the stream identifier allocated to the PE is within the detected stride of that strided stream (referred to as a stride hit or stride miss).
In one embodiment, each prefetch unit is able to request multiple prefetches ahead in a detected strided stream (e.g. issue multiple outstanding prefetches). In one embodiment, the ability to issue multiple outstanding prefetches is based on a confidence level.
State machine 501 includes two types of states. SP state 505, NQD state 502, and SPD state 509 are inactive states and LC1 state 511, HC1 state 513, HC2 state 515, HC4 state 517, and HC6 state 519 are active states. The prefetch engine can generate prefetch addresses only in the active states.
Initially, each prefetch engine is in OFF state 503. In the OFF state 503, the engine is not allocated to any stream identifier. From state 503, the prefetch engine moves to SP state 505 in response to being allocated to a stream identifier (e.g. as in operation 411). In SP state 505, the confidence level of the stream identifier is zero or at the lowest level.
If in SP state 505, the event received by the de-aliasing circuit 307 is an address associated with the stream identifier (referred to as a PE hit) and the address is a stride miss, then the PE stays in state 505. A stride miss is generated by an instruction associated with the stream identifier having an address separated from its previous address by a difference other than the stride. If the address is a PE hit and a stride hit, then the PE transitions to low confidence LC1 state 511.
In LC1 state 511, the prediction unit of the PE is in a state that it is allowed to have one outstanding prefetch address. Thus, if there are no outstanding prefetches, then the PE will generate a prefetch address. In one embodiment, the prefetch address is computed from the previous address of the strided stream and the stride. In state 511 if there is a load miss and a stride hit, then the PE remains in state 511. In one embodiment, prefetch unit 209 receives an indication of a load miss from load store unit 207 via the event stream. A load miss occurs when a data address of a load instruction associated with the stream identifier is not found in the L1 cache or in LSU 207. Such a condition may indicate that a previous prefetch address was not accurate, the load instruction is not generating (or is no longer generating) addresses of a strided stream.
If in LC1 state 511 there is a prefetch evict (PFevict), then the PE transitions to SPD state 509. A prefetch evict event occurs where LSU 207 obtains the data for a prefetch address in a queue (not shown) of LSU 207 and stores the data in L1 cache 213. The prefetch address is then evicted from the queue of LSU 207 and an indication of a prefetch evict (which includes the PE ID of the prefetch identifier) is placed in the event stream.
In state 509, no prefetch address is generated by the prefetch engine. If in state 509, the next address associated with the stream identifier is a PE hit and a stride hit, then the PE transitions back to state 511. In state 509, if a prefetched address was used (e.g. if processor pipeline accessed the data of the prefetched address in the L1 cache, or in the load store unit 207), which is hereafter designated as a “PF used”, then the PE transitions to state 513.
In the embodiment of
Each of the active states 511, 513, 515, 517, and 519 represent a successively higher confidence level in the prefetching operation by a PE in the detected stride stream. HC6 state 519 is the highest confidence active state and state 511 is the lowest confidence active state. If a load miss or a PF evict event occurs during one of the active states, the PE transitions to a lower state. If a PF used event occurs, the PE transitions to a higher confidence state. The PE remains in the highest confidence state 519 in response to a PF used event. In the embodiment shown, state machine 501 includes 5 active states, but other embodiments may include a different number of active states and therefore a different number of confidence levels.
In each of active states 511, 513, 515, 517, and 519, the PE transitions back to SP state 505 in response to two consecutive stride misses.
States 509, 502 and 505 are referred to as inactive states in that the PE prediction unit does not generate prefetch addresses in these states. Also in these states, the PE is responsive to a PE miss.
In state 505, the PE transitions to state 502 in response to a PE miss and an arbitration policy decision. In one embodiment, the arbitration policy decision is to select one PE to reduce the confidence level (e.g. from state 505 to state 502). See for example operation 415 of
In state 509, the PE transitions to NQD state 502 in response to a load miss or a PE miss and arbitration policy decision (see the preceding paragraph). The NQD state 502 is implemented to prevent the prefetch unit from thrashing the reallocation of newly allocated PEs to different stream identifiers. In state 502, the PE transitions to the OFF state 503 in response to a PE miss. In state 502, the PE remains at state 502 in response to a stride miss. In state 502, the PE transitions to state LC1511 in response to a stride hit.
In the embodiment shown, when in active states 511 and 513, only one outstanding prefetch address is allowed. In these states, the PE waits for confirmation regarding the use of the prefetch address to obtain data before generating additional prefetch addresses. State 515 allows for two outstanding prefetch addresses. Thus in this state, one outstanding prefetch address is used to obtain the next predicted data in the strided stream (next data) and the other outstanding prefetch address is used to obtain the predicted data (located a stride apart) following the next predicted data in strided stream. In state 517, the prediction unit allows for four outstanding prefetch addresses where one outstanding address is used to obtained the next predicted data in the strided stream and the other 3 outstanding addresses are used to get the next three predicted data accesses of the strided stream. In state 519, the prediction unit allows for 6 outstanding prefetch addresses.
When the number outstanding prefetch addresses is below the maximum number of allowable prefetch addresses of the state, the PE generates additional prefetch addresses until the number of outstanding prefetch addresses matches the maximum allowed number. When an indication of a result of a prefetch is received by the PE, the number of outstanding prefetch addresses is decremented.
If the PE transitions to a lower active confidence state from a higher confidence state (e.g. state 515 to state 513), the PE would not generate a prefetch address (e.g. the PE enters a prefetch stall master state) until the number of outstanding prefetches above the maximum allowable number for the lower state are resolved. For example, when transitioning to state 513 from state 515, no prefetch addresses would be generated until the outcome of the last outstanding address is known. If transitioning from state 519 to state 517, then a new address would not be generated until there are only three outstanding prefetch addresses.
The ability to control the number of outstanding prefetch addresses based on a confidence level may enable a data processing system to schedule the acquisition of data for future use while minimizing resources. This minimization of resources is due to the amount of predictive data obtained ahead of its required use in the processor pipeline is based on a likely use of that data. In other embodiments, a greater number of an outstanding prefetch addresses may be allowed for each confidence level state.
In the embodiment shown, state 509 can only be reached from an active state 511. Accordingly, state 509 is an inactive state reached in response to load miss or PF evict from an active state. In state 509, the PE skips state 511 and transitions to state 513 in response to a PF used event. This skipping of state 511 may result in faster gain back of confidence from an inactive state.
In some embodiments, a prefetch engine may generate prefetch addresses that cross the page boundary of a page that includes a current address of the strided stream. In one embodiment, the addresses received by the prefetch unit 209 from the processor pipeline (e.g. 100) via the load store unit 207 are virtual addresses. The prefetch unit also receives physical address (e.g. from MMU 223) via the load store unit and event stream 350 that include translations of the virtual address of the load misses of L1 cache 213. In the embodiment shown, the prediction circuit 321 uses the physical address of the cache miss and stride information of the address data stream to generate a prefetch physical address. Subsequent prefetch physical addresses are generated by prediction circuit 321 using previous prefetch physical address and the stride information.
However, when the predicted prefetch physical address crosses a memory page boundary, the physical address of the next page in memory is unknown to the prefetch engine.
In one embodiment, the prediction unit of the PE generates a request for translation of a virtual address to the translation control circuit 308 in response to a determination that an address boundary is being crossed. In response, translation control circuit 308, when available (e.g. not servicing requests from other PEs), provides the virtual address to the L2 MMU 227 for translation.
If yes in 602, then control circuit 308 provides the translation request (including the virtual address) to MMU 227 for translation in 603. In 604, MMU 227 checks translation lookaside buffer 229 to determine whether it includes an entry for the virtual address of the request. If no in 604, then MU 227 signals prefetch unit 209 of a TLB miss in 609.
If yes in 604, MMU 227 provides the translation information to translation control circuit 308 in 607, which passes the information to the requesting prefetch engine. The prefetch engine makes a determination in 611 of whether access to the next page is permitted based on access attributes in the translation information. Access to a particular memory may be denied if e.g. that page of memory is used by another process. If yes in 611, the prefetch engine utilizes the translation information to generate a prefetch physical address in the next page. The address is provided to LSU 207 via PFQ 210. LSU 207 then retrieves the prefetched data from either L2 cache 211 or memory 221. If no in 611, then a prefetch address is not generated.
If TLB 229 does not include the translation information for the virtual address as determined in 604, then in 609, MMU 227 indicates to the prefetch engine that no translation information exists in 609. In response to the indication that no translation information exists, the allocation circuit 305 de-allocates the prefetch engine from the stream identifier (e.g. by transitioning the state machine to OFF state 503, see
The ability to generate prefetch physical address across a page boundary may improve processor pipeline performance by avoiding load misses due to crossing page boundaries.
In some embodiments, the requests for translation information from the prefetch unit 209 are of a lower priority than requests from load store unit 207. Also in some embodiments, the translation information may be obtained from the L1 MMU 223. However, obtaining the information from the L2 MMU 227 does not impede on processor pipeline operations.
In one embodiment, the prefetch engines would not predict addresses from data address streams with strides (e.g. the distance between consecutive addresses of the address data stream) being greater than a predefined distance. In one embodiment, the predefined distance is 512 bytes. In one embodiment, the pages are 4 Kbytes but maybe of other sizes in other embodiments.
In some embodiments, other translation information regarding a virtual address provided to the prefetch unit may include access rights. If the access rights indicate that the page is not accessible, the PE will not generate prefetch address to the restricted area (e.g. and would transition to OFF state 503.
In the embodiments described above, prefetch unit 209 requests translation information from a TLB. However, in other embodiments, translation information may be obtained from other types of translation sources in a data processing system. For example, in other embodiments, the translation information requested by the prefetch unit may be obtained from a page table in memory 221.
In some embodiments, the PE can be dynamically allocated based on software prefetch instructions. In one embodiment, the processor includes a data stream touch instruction that commands the prefetch unit to allocate a PE to a particular instruction.
In some embodiments, each prefetch engine implements a set of master states. Examples of prefetch master states includes as DST (data stream touch) state, a page cross stall master state (for waiting for virtual translation information), a prefetch stall master state (for the condition when the number of outstanding prefetch addresses is greater than the number allowed in an active state (e.g. 511, 513, 515, 517, and 519)), a prefetch active master state (for generating additional outstanding prefetch addresses), and an idle state. In one embodiment, the master states may be integrated with the states of state machine 501 of
If no in 703, allocation circuit 305 generates a stream identifier in 703. In 709, allocation circuit 305 determines if any prefetch engine is allocated to the stream identifier. If yes (referred to as a PE hit in the state diagram of
If no in 713, allocation circuit 305 finds the prefetch engine with the lowest confidence level in 715. If two prefetch engines are tied with the same lowest confidence level, a tie breaking mechanism is used (e.g. round robin or one with lower identifier). If yes in 717 (the selected PC is in an active state that is greater than or equal to the low confidence state (LC1) (see state 511 of
In 901, de-aliasing circuit 307 receives an indication of a load fold event. This indication includes a prefetch engine identifier (PE ID) that is unique to each prefetch engine of prefetch unit 209. When prefetch unit 209 generates a prefetch address, the prefetch engine identifier accompanies the prefetch address in PFQ 210 and in LSU 207. In 903, the PE ID is checked to determine the PE that generated the address of the load fold. In 905, if the prefetch engine of the PE ID is in the OFF state (state 503 of
If in 913, the number of OSPs is less than the maximum allowed, in 915 a determination is made whether the prefetch engine is in a page cross stall master state (PG cross). In the page cross stall master state, no further action is taken in that the prefetch engine is awaiting a translation of a virtual address from the L2 MMU 227. See the discussion above with respect to
If no in 915, the ready to prefetch flag for the prefetch engine is set in 917 to indicate to select prefetch engine circuit 309 that the prefetch engine is ready to generate prefetch addresses. Also, in 917, the master state of the prefetch engine is set to prefetch active.
In 1011 a determination is made whether the confidence level state is greater than or equal to LC1511 (see
If no in 1103, the prefetch engine handles the load miss in the prefetch stall master state or the prefetch active master state in operation 1113 (See
In 1207 a determination is made whether a stride hit has occurred. In one embodiment, a stride hit occurs when the tracked stride calculated in 1205 is equal to the program stride. The program stride is the stride that has been recently calculated, or for a newly allocated prefetch engine, it is an estimated stride. If a stride hit is determined in 1207, then a determination is made in 1209 whether the confidence state is greater than state LC1511. If the confidence state level is above LC1 state 511 (e.g. state 513, state 515, state 517, or state 519), then the confidence state level is reduced in 1211 and the tracked address becomes the MLA in 1215. Also, in 1215, the known program address (KPA) becomes the MLA.
If no in 1209, then in 1217, the prefetch stride is set to the program stride. The prefetch stride is the stride used by the prediction circuit 321 to calculate the next prefetch address from the previous prefetch address. Accordingly in 1221, the prefetch address is calculated by adding the MLA to the prefetch stride. In 1225, if the OSP is less than the maximum number of outstanding prefetches, then the ready to prefetch flag is set to true and the master state of the prefetch is set to prefetch active.
In 1227, a determination is made whether the confidence state level is LC1. If yes in 1227, then the confidence level is moved up to HC1 in 1229. If no in 1227, the confidence level is set to LC1511. Afterwards, operation 1215 is preformed.
If no in 1207 (a stride miss), a determination is made whether the confidence state level is LC1 state 511. If yes in 1233, then in the confidence state is moved to SP state 505, the OSP is reset to zero, and the ready to prefetch flag is set to false in 1237. Afterwards, the program stride is set to the tracked stride in 1245.
If no in 1233, then in 1235 a determination is made whether the confidence state is greater than LC1. If yes in 1235, a determination is made in 1239 wherein the prefetch stride is the program stride. If no in 1139, then operations 1237 and 1245 are performed. If yes in 1239, then the confidence state is reduced in 1241 and operation 1245 is performed. If no in 1235, then in 1236, the ready to prefetch flag is set to false and operation 1245 is performed. Afterwards, operation 1215 is performed.
In the embodiment shown, a determination of whether a load hit was to a prefetched line is made by examining whether the load hit address is between the line of the last known program address (either a previous load hit address or previous load miss) (KPA line) and the line of the latest prefetch address. If the load hit address is in between the KPA line and the line of the latest prefetch address, then it is assumed that the load hit was to a prefetched line of data in the cache. If the load hit address is outside the boundary, then its assumed that the load hit was not to a prefetched line of data in the cache.
Providing a determination such as that set forth in
In 1403, the result of the determination is initially set to no. In 1405, a determination is made whether the KPA line is equal to the load hit address line. If yes in 1405, then in result remains no. If no in 1407, then a determination is made in 1407 whether the stride is less than zero. In the embodiment described, the prefetch engines are able to detect and predict positive and negative strided streams. Accordingly, decision 1407 is utilized. If no in 1407 (the strided stream is positive), then a determination is made in 1409 whether the load hit address line is between the KPA line and the latest prefetch address. In one embodiment, this comparison is made by comparing the load hit address line with the latest prefetch address on a cache line granularity basis. If yes in 1409, the result is set to yes (meaning that its prefetch hit) in 1411 and in 1413, the KPA is set to the LHA. If no in 1409, then the KPA is set to LHA and a no is returned.
If yes in 1407, then a determination is made whether the LHA line is between the latest prefetched address (on a cache line granularity) and the KPA line in 1417. if yes in 1417, then in 1411, the result is set to yes, and the KPA is set to LHA in 1413. If no in 1417, the KPA is set to the LHA and a “no” is returned in 1425
In 1507, a determination is made whether the prefetch engine is executing a prefetch DST instruction (prefetch engine in a DST master state). If yes in 1507, the prefetch engine will decrement a block count in 1509. If the DST block count is determined to be zero in 1511, then the confidence level state is set to OFF state 503 in 1513 and the prefetch engine is de-alocated.
If no in 1507, the number of outstanding prefetches is increased by one in 1515. If the number of OSPs is greater than the allowed number for a confidence level state as determined in 1519, then the ready to prefetch flag is set to false and the master state of the prefetch engine transitions to a prefetch stall master state (PF stall) in 1521. If no in 1519, then no further processing is performed.
If a page crossing is detected in 1503, the master state of the prefetch engine is set to page cross stall master state in 1521. Also, the ready to prefetch flag is set to false. Further in 1521, the virtual address is set and the PFAA is set to false. Furthermore, the next page requested flag (NPR) is set to false.
If the MMQ is not free in 1603, then a determination is made in 1611 of whether the translation has been serviced by the L2 MMU 227. If no in 1611, control circuit 308 goes back to 1603 until the translation is determined to be serviced in 1611. If yes in 1611, there is a determination of whether the translation is successful (translation ok) in 1603. If the translation was not successful (e.g. the virtual address was not in the L2 MMU TLB 229), then the selected PE is reset to the OFF state 503 in 1615. Control circuit 308 then goes back to 1603.
If in 1613 the translation was performed, then in 1617, the translation information is provided to the requesting PE, the master state of the requesting PE is set to PF active, and the MMQ is set to free. Translation control circuit 308 then goes back to 1603 to handle the next translation request.
In one embodiment, the operations of
The techniques and circuitry described above are described as used for data prefetching in a data processing system. However, such hashed values may be used in other types of prefetching such as e.g. instruction fetching in a data processing system.
In one embodiment, a method of prefetching in a data processing system includes determining if a prefetch to a prefetch address was used and adjusting a confidence value in response to determining if the prefetch was used. In a further embodiment, the step of adjusting a confidence value includes increasing the confidence value if a prefetch to a prefetch address is determined to be used. In a further embodiment, the prefetch address is associated with a processor pipeline instruction and the method further includes reducing the confidence value if the processor pipeline instruction generates a load miss. In a further embodiment, the method further includes allowing more outstanding prefetches when the confidence value is increased. In a further embodiment, the method includes allowing less outstanding prefetches when the confidence value is decreased. In a further embodiment, the prefetch address is associated with a first strided stream, and the confidence value corresponds to prefetch address generation associated with the first strided stream. In this further embodiment, the method further includes performing a second prefetch to a second prefetch address, wherein the second prefetch address is associated with a second strided stream, and wherein a second confidence value corresponds to prefetch address generation associated with the second strided stream. In this further embodiment, the method further includes allowing less outstanding prefetches associated with the first strided stream than associated with the second strided stream when the confidence value is less than the second confidence value. In a further embodiment, the prefetch address is associated with a strided stream, and the step of determining if a prefetch to a prefetch address was used includes providing cache hit information including an address information of a cache hit and determining whether the cache hit falls within a range of a prefetch address associated with the strided stream using the cache hit information. In a further embodiment, the prefetch address is associated with a strided stream and the step of determining if a prefetch to a prefetch address was used includes providing cache hit information including an address information of a cache hit and determining whether the cache hit falls within a range between a prefetch address associated with the strided stream and a known program address of the strided stream using the cache hit information. In a further embodiment, the prefetch address is associated with a strided stream, and the prefetch address is generated based on a detected stride of the strided stream. In this further embodiment, the method includes adjusting the stride in response to a stride miss to produce an adjusted stride and generating a second prefetch address with the adjusted stride. In a further embodiment, the prefetching comprises data prefetching. In a further embodiment, the method includes adjusting a number of allowed outstanding prefetches in response to determining if the prefetch to the prefetch address is used. In a further embodiment, the method includes decreasing the confidence level in response to a prefetch evict of a prefetch address generated by the prefetch circuit based on a strided stream.
In another embodiment, circuitry for use in prefetching includes a prefetch circuit. The prefetch circuit generates prefetch addresses based on a detected strided stream. The prefetch circuit operates at a first confidence level and a second confidence level, wherein when operating at a first confidence level, the prefetch circuit is allowed a first number of allowable outstanding prefetches, wherein when operating at the second confidence level, the prefetch circuit is allowed a second number of allowable outstanding prefetches, wherein the second number is greater than the first number. In a further embodiment, when a number of outstanding prefetches is greater than an allowed number of outstanding prefetches of a confidence level at which the prefetch circuit is operating, the prefetch circuit is in a stop condition where no prefetch addresses based on the detected strided stream are issued. In a further embodiment, the prefetch circuit transitions from operating at the first confidence level to operating at the second confidence level in response to a determination that a prefetch to a prefetch address based on the detected strided stream was used. In a further embodiment, the detected strided stream is associated with a pipeline instruction, wherein the prefetch circuit transitions from operating at the second confidence level to the first confidence level based on a determination that the pipeline instruction generated a cache miss. In a further embodiment, the detected strided stream is associated with a pipeline instruction, wherein the prefetch circuit transitions from operating at the second confidence level to the first confidence level based on a determination of a prefetch evict of a prefetch address based on the detected strided stream. In a further embodiment, the prefetch circuit operates at a third confidence level, wherein when operating at a third confidence level, the prefetch circuit is allowed a third number of allowable outstanding prefetches, wherein the third number is greater than the second number. In a further embodiment, the prefetch circuit selectively adjusts a parameter used to generate the prefetch address in response to a load miss, wherein the parameter consists of at least one of a group of a last known program address, a stride value, and a number of outstanding prefetches.
In another embodiment, a method for prefetching in a data processing system includes detecting a strided stream in an address stream, generating prefetch addresses based on the strided stream, and adjusting a number of allowable outstanding prefetches that are based on the strided stream. The adjusting is based on a determination of whether a prefetch to a prefetch address that was based of the strided stream was used. In a further embodiment, the step of determining if a prefetch to a prefetch address is used includes providing cache hit information including an address of a cache hit and determining whether the cache hit information falls within a range of a prefetch address that was based on the strided stream using the cache hit information was used.
While particular embodiments of the present invention have been shown and described, it will be recognized to those skilled in the art that, based upon the teachings herein, further changes and modifications may be made without departing from this invention and its broader aspects, and thus, the appended claims are to encompass within their scope all such changes and modifications as are within the true spirit and scope of this invention.