1. Technical Field
The present invention relates in general to a method for effective page number (EPN) to real page number (RPN) translation in processors. Specifically, the present invention relates to a method for optimizing EPN to RPN translation when a data miss occurs.
2. Description of Related Art
Processor-generated memory accesses require address translation before they go out to the memory subsystem. In present day computing, it is common to have a process executing only in main, or “physical,” memory, while the user perceives a much larger “virtual” memory which is allocated on an external disk. To address the virtual memory, many processors contain a translator to translate virtual addresses, or effective page numbers (EPN), in virtual memory to physical addresses, or real page numbers (RPN), in physical memory, and a translation look-aside buffer (TLB), which caches recently generated virtual-physical address pairs, or page table entries (PTE). A group of eight PTEs is called a page table entry group (PTEG).
Most processors have a load store unit (LSU). There are usually one or more arrays in the LSU that serve as a data effective to real address translation (D-ERAT) location. These locations hold pairs of linked EPNs and RPNs. When the instruction decoding unit (IDU) issues an instruction, the real address is looked up in the D-ERAT. Usually, if the RPN is missing from the D-ERAT, the TLB will check the recently accessed PTEGs and find the missing address. Therefore, the PTEs must be checked to find the missing RPN. The PTEs are checked to see if the abbreviated virtual page number (AVPN) and page attributes matches the AVPN and page attributes of the EPN associated with the missing RPN. Once a match is found, the RPN from the matching PTE is installed in the D-ERAT.
However, not all processors have TLBs. For example, the International Business Machines p-series p6 processor chip design does not have a TLB. Therefore, when a D-ERAT miss occurs, the PTEG must be reloaded from the level two cache memory (L2). This has negative impact on performance and overhead as the current instruction is paused until the missing RPN is found. In a best-case scenario, the 128 bit PTEG reload, at a 32 byte data width, from the core to the L2 would take four nest clocks, which is equivalent to eight processor clocks, during which the eight PTEs are analyzed for a match. Once a match is found, the PTE's RPN data is then installed in the D-ERAT, and the next-to-complete instruction is restarted.
Even for processors with TLBs, the TLBs can miss as well. In such a case, the usual process is to reload all of the PTEGs first into the TLB and then look up the missing address from the TLB. In some instances, this can take more than 100 processor cycles and can cause code to run as much as thirty times slower than normal.
Therefore, in order to mitigate the impact on performance, it would be advantageous to have an improved method for EPN to RPN translation and resumption of the execution stream.
The present invention provides a method, system and computer program product for optimizing EPN to RPN translation when a data miss occurs. The method, system and computer program product utilize the placement of the desired PTE in the first half of the PTEG and the early data-coming signals from the L2 cache to prime the data-flow pipe to the D-ERAT arrays and requesting a steal cycle, for executing the write into the D-ERAT, with a dispatch-restart.
According to a preferred embodiment of the present invention, the method begins when the memory management unit (MMU) receives notification that a D-ERAT miss has occurred. The MMU then requests a reload of the required PTEG from the L2 cache memory. The L2 cache sends an early data-coming signal. Once this signal is received by the MMU, the MMU checks to see if the signal is the second early data-coming signal. If the signal is not the second early coming signal, the method waits for the second signal. If the signal is the second signal received, then the MMU sends a request for a steal cycle and thread specific dispatch-restart to the LSU's steal request arbiter. These steal cycle and dispatch-restart requests are presented to the IDU in time to allow the next-to-complete instruction to make use of a newly installed EPN-RPN translation based on a PTE match found in the first half of the PTEG. If the steal cycle request is not granted, then a new request for a steal cycle is generated. This process is repeated until a steal cycle is granted. Once a steal cycle has been granted, the method then checks to see if a match for the missing data has been found. If a match has not been found, then a new request for a steal cycle is generated. Once it is verified that a match has been found, then, during the steal cycle, the missing EPN-RPN translation is written to the D-ERAT, and the next-to-complete instruction is restarted and the method ends.
Concurrently with waiting on/verifying that a second early data-coming signal has been received and requesting a steal cycle, the MMU is finding a match for the missing data. The MMU does this by receiving the two PTE's from the L2 cache at the nest-core interface registers. The MMU then examines this data for a match against the search criteria. If there is no match, then the MMU waits to receive the next early data-coming signal and pair of PTEs. If a match to the search criteria is found, then the match found marker is set to yes and the data is held, waiting to be written to the D-ERAT.
The novel features believed characteristic of the invention are set forth in the appended claims. The invention itself, however, as well as a preferred mode of use, further objectives and advantages thereof, will best be understood by reference to the following detailed description of an illustrative embodiment when read in conjunction with the accompanying drawings, wherein:
With reference now to the figures and in particular with reference to
With reference now to
An operating system runs on processor 202 and is used to coordinate and provide control of various components within data processing system 200 in
Those of ordinary skill in the art will appreciate that the hardware in
For example, data processing system 200, if optionally configured as a network computer, may not include SCSI host bus adapter 212, hard disk drive 226, tape drive 228, and CD-ROM 230. In that case, the computer, to be properly called a client computer, includes some type of network communication interface, such as LAN adapter 210, modem 222, or the like. As another example, data processing system 200 may be a stand-alone system configured to be bootable without relying on some type of network communication interface, whether or not data processing system 200 comprises some type of network communication interface. As a further example, data processing system 200 may be a personal digital assistant (PDA), which is configured with ROM and/or flash ROM to provide non-volatile memory for storing operating system files and/or user-generated data.
The depicted example in
The processes of the present invention are performed by processor 202 using computer implemented instructions, which may be located in a memory such as, for example, main memory 204, memory 224, or in one or more peripheral devices 226-230.
When a D-ERAT miss occurs, MMU 312 begins the process of locating the missing real address. MMU 312 sends a request for a reload of the PTEG from L2 cache memory (L2) 302. MMU 312 sends the request to CIA 318, which then transmits the request to L2302. L2302 sends a signal that data is coming to nest-core interface register 310 and then begins sending data, two PTEs at a time, to nest-core interface register 310. Nest-core interface register 310 then passes this data onto MMU 312, which checks it to see if the data matches the EPN associated with the missing RPN.
Each time before L2302 sends data to nest-core interface register 310, L2302 sends an early data-coming signal. Once the second early data-coming signal is received, MMU 312 sends a request for a steal cycle and a thread specific dispatch-restart to steal/restart request arbiter 314. If steal/restart request arbiter 314 grants the request, then steal/restart request arbiter 314 sends the steal/restart cycle request to IDU 316. If the missing RPN has been found, then MMU 312 issues a write enable command and the data is written from nest-core interface register 310 to either D-ERAT0306 or D-ERAT1308, depending on which one suffered the miss.
Once an early data-coming signal is received by the MMU (step 404), the MMU checks to see if the signal is the second early data-coming signal received (step 406). The second early data-coming signal indicates that half of the PTEG's PTEs will have been transferred. If the early data-coming signal is not the second early data-coming signal (a no output to step 406), the method waits for the second the early data-coming signal. If the early data-coming signal is the second early data-coming signal received (a yes output to step 406), then the MMU sends a request for a steal cycle and thread specific dispatch-restart to the LSU's steal/restart request arbiter (step 410). The method then checks to see if a steal cycle has been granted (step 412). If the steal cycle request is not granted (a no output to step 412), then a new request for a steal cycle is generated (step 410). This process is repeated until a steal cycle is granted. Once a steal cycle has been granted (a yes output to step 412), the method then checks to see if a match for the missing data has been found (step 414). If a match has not been found (a no output to step 414), then a new request for a steal cycle is generated (step 410). Once it is verified that a match has been found (a yes output to step 414), then during the steal cycle, the missing EPN to RPN translation is written to the D-ERAT (step 416), and the restarted next-to-complete instruction uses this EPN to RPN translation (step 418) the cycle after the steal and the method ends.
While the MMU is waiting on verifying that a second early data-coming signal has been received and requesting a steal cycle, the MMU is simultaneously examining the PTEs to find a match for the missing data. It does this by receiving two PTEs per cycle from the L2 cache at the nest-core interface register (step 420). The MMU then checks this data to see if the AVPN and page attributes of either of the PTEs received matches the AVPN and page attributes associated with the missing RPN (step 422). If neither one matches (a no output to step 422), then the MMU checks to see if the entire PTEG has been reloaded (step 426). If there are still outstanding PTE reloads (a no output to step 426), the MMU waits to receive the next pair of PTEs (step 404). If the entire PTEG has been received and no PTE match was found, (a yes output to step 426), a page-fault error is reported (step 428) and the method ends. If a match to the search criteria is found (a yes output to step 422), then the match found marker is set to yes and the data is held, waiting to be written to the D-ERAT (step 424).
This invention allows a re-dispatched next-to-complete instruction to make use of an EPN-RPN translation DERAT entry, the cycle after it was created based on a matching PTE found in the first half of the PTEG. This is facilitated by optimizing the data path, from receiving L2 cache reload data to reloading the EPN to RPN translation into D-ERAT, and utilizing the early data-coming signals to request the re-dispatch of the next-to-complete instruction.
While the above described method is described in terms of handling a D-ERAT miss, the same method can be applied to TLB misses, significantly reducing the negative impact and recovery time of TLB misses.
Additionally, while the above described method is described in terms of using the second early data-coming signal, the same method can use any early data-coming signal, such as the first, third, fourth, etc. to trigger the request of the re-dispatch of the next-to-complete instruction.
Thus the present invention solves the disadvantages of the prior art by providing a method for handling D-ERAT and TLB misses that takes advantage of early data-coming signals from the L2 cache to prime the data-flow pipe to the D-ERAT arrays and requesting a steal cycle for executing the write into the D-ERAT. The method, according to a preferred embodiment of the present invention, begins when the MMU receives notification that a D-ERAT miss has occurred. The MMU then requests a reload of the required PTEG from the L2 cache memory. The L2 cache sends an early data-coming signal. Once this signal is received by the MMU, the MMU checks to see if the signal is the second early data-coming signal. If the signal is not the second early coming signal, the method waits for the second signal. If the signal is the second signal received, then the MMU sends a request for a steal cycle and thread specific dispatch-restart to the LSU's steal request arbiter. These steal cycle and dispatch-restart requests are presented to the IDU in time to allow the next-to-complete instruction to make use of a newly installed EPN to RPN translation based on a PTE match found in the first half of the PTEG. If the steal cycle request is not granted, then a new request for a steal cycle is generated. This process is repeated until a steal cycle is granted. Once a steal cycle has been granted, the method then checks to see if a match for the missing data has been found. If a match has not been found, then a new request for a steal cycle is generated. Once it is verified that a match has been found, then, during the steal cycle, the missing EPN-RPN translation is written to the D-ERAT, and the next-to-complete instruction is restarted and the method ends.
Concurrently with waiting on/verifying that a second early data-coming signal has been received and requesting a steal cycle, the MMU is finding a match for the missing data. The MMU does this by receiving the two PTE's from the L2 cache at the nest-core interface registers. The MMU then examines this data for a match against the search criteria. If there is no match, then the MMU waits to receive the next early data-coming signal and pair of PTEs. If a match to the search criteria is found, then the match found marker is set to yes and the data is held, waiting to be written to the D-ERAT.
It is important to note that while the present invention has been described in the context of a fully functioning data processing system, those of ordinary skill in the art will appreciate that the processes of the present invention are capable of being distributed in the form of a computer readable medium of instructions and a variety of forms and that the present invention applies equally regardless of the particular type of signal bearing media actually used to carry out the distribution. Examples of computer readable media include recordable-type media, such as a floppy disk, a hard disk drive, a RAM, CD-ROMs, DVD-ROMs, and transmission-type media, such as digital and analog communications links, wired or wireless communications links using transmission forms, such as, for example, radio frequency and light wave transmissions. The computer readable media may take the form of coded formats that are decoded for actual use in a particular data processing system.
The description of the present invention has been presented for purposes of illustration and description, and is not intended to be exhaustive or limited to the invention in the form disclosed. Many modifications and variations will be apparent to those of ordinary skill in the art. The embodiment was chosen and described in order to best explain the principles of the invention, the practical application, and to enable others of ordinary skill in the art to understand the invention for various embodiments with various modifications as are suited to the particular use contemplated.
Number | Date | Country | |
---|---|---|---|
Parent | 11054277 | Feb 2005 | US |
Child | 11969988 | Jan 2008 | US |