WO2003083663A2 - Use of context identifiers in cache memory - Google Patents
Use of context identifiers in cache memory Download PDFInfo
- Publication number
- WO2003083663A2 WO2003083663A2 PCT/US2003/007710 US0307710W WO03083663A2 WO 2003083663 A2 WO2003083663 A2 WO 2003083663A2 US 0307710 W US0307710 W US 0307710W WO 03083663 A2 WO03083663 A2 WO 03083663A2
- Authority
- WO
- WIPO (PCT)
- Prior art keywords
- thread
- context identifier
- address
- base
- cache
- 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.)
- Ceased
Links
Classifications
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F12/00—Accessing, addressing or allocating within memory systems or architectures
- G06F12/02—Addressing or allocation; Relocation
- G06F12/08—Addressing or allocation; Relocation in hierarchically structured memory systems, e.g. virtual memory systems
- G06F12/12—Replacement control
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F12/00—Accessing, addressing or allocating within memory systems or architectures
- G06F12/02—Addressing or allocation; Relocation
- G06F12/08—Addressing or allocation; Relocation in hierarchically structured memory systems, e.g. virtual memory systems
- G06F12/0802—Addressing of a memory level in which the access to the desired data or data block requires associative addressing means, e.g. caches
- G06F12/0806—Multiuser, multiprocessor or multiprocessing cache systems
- G06F12/0842—Multiuser, multiprocessor or multiprocessing cache systems for multiprocessing or multitasking
Definitions
- This invention relates to computer technology. More particularly, this invention relates to improving the performance of cache memory in a computing device.
- FIG. 1 illustrates a typical cache memory array 100.
- Cache memory array 100 includes cache lines 110. Each cache line includes a tag 120 and a data block 130.
- Example cache line 140 includes tag 150 and data block 160.
- Reference numeral 170 illustrates that example tag 150 is a portion of main memory address 170.
- Main memory address 170 is the main memory address corresponding to data block 160.
- processors transfer instructions and operands back and forth between the execution core of the processor and the computer's memory hierarchy during memory transfers. Examples of memory transfers are loading instructions/operands from the memory hierarchy to the processor and storing instructions/operands from the processor to the memory hierarchy.
- the processor generates a main memory address. A portion of the main memory address is compared with the entries in tag 120 during a cache look-up to determine whether cache array 100 contains an entry corresponding to the memory transfer. As demonstrated by the relationship between tag
- cache memory uses a portion of each linear address generated by the processor to index data stored in cache array 100.
- a thread is a part of a computer program that can execute independently of other parts of the computer program.
- the performance of a processor can be enhanced if multiple threads are executed concurrently on the processor. Concurrent execution of multiple threads is possible if the dependencies among the various instructions of the multiple threads are detected and properly managed.
- FIG. 2 illustrates how many Intel® processors use a virtual memory environment to allow a large linear address space to be supported by a small amount of physical memory (e.g., random access memory).
- a processor generates a linear address 210.
- Linear address 210 comprises a directory field 220, a table field 225, and an offset field 230.
- the base of the page directory 235 is contained in control register CR3 240.
- the directory entry 220 of linear address 210 provides an offset to the value contained in control register CR3 240.
- the page directory contains a page table base pointer 245.
- Table field 225 provides an offset that is combined with page table base pointer 245 to identify the base of the page that contains the physical address 255.
- Offset field 230 is combined with the page table entry to identify the physical address 255.
- FIG. 3 illustrates a shortcoming associated with performing cache look-ups with only a partial main memory address.
- a processor (not shown) generates linear addresses 304 and 306 in response to load instructions LDO and LDl.
- 305 and 307 illustrate the portion of each address that is used to perform a cache look-up. While 305 and 307 appear to be identical, they are only a portion of 304 and 306 respectively.
- 304 and 306 map to two different physical addresses because each address has a different entry in their respective directory fields (320 and 325) and offset fields (330 and 335).
- An additional complication is introduced when, as in FIG. 3, a processor supports concurrent execution of multiple threads. Thread 0 and Thread 1 can have different values for the bases of their respective page directories (340 and 345). Thus, even if 304 and 306 were the same, they would map to two different physical addresses.
- Figure 1 is a diagram of a prior art cache memory array.
- Figure 2 is a conceptual illustration of mapping a linear address to a physical address.
- Figure 3 is a conceptual illustration of two similar tags that map to two different physical addresses.
- Figure 4 A is a diagram of one embodiment of a cache memory array using a context identifier.
- Figure 4B is a conceptual illustration of one embodiment of a context identifier.
- Figure 5 is a simplified block diagram of one embodiment of a context identifier generator and related control circuitry.
- Figure 6 is a block diagram of one embodiment of a cache memory system.
- FIG. 7 is a block diagram of one embodiment of a cache memory system.
- Cache memory systems index cache lines with a portion of a linear address called a tag.
- a processor generates the linear address during a memory transfer operation.
- a portion of the linear address is compared with the tags during a cache look-up.
- Intel® processors provide a mechanism to ensure that an apparent match between a partial
- the hit/miss determinator operates in parallel with the cache look-up process of cache memory.
- the hit/miss determinator converts a linear address associated with an issued instruction to the corresponding physical address and compares that physical address with the full address associated with the tag that matches the partial linear address.
- the hit/miss determinator is much slower than cache memory because it must translate linear addresses into physical addresses and because it performs comparisons of complete addresses. If the hit/miss determinator detects that cache memory has produced a false match, it corrects the mistakes made by cache memory. The process of detecting and responding to errors introduced by a false match in cache memory can degrade processor performance.
- FIG. 4A illustrates one embodiment of a cache memory array incorporating a context identifier.
- Cache memory array 400 includes a number of cache lines 410. Each cache line 410 includes context identifier 405, tag 420, and data block 430. Thus, cache line 440A includes context identifier 415 A and tag 450A. Similarly, cache line 440B includes context identifier 415B and tag 450B. Two different threads generated context identifiers 415 A and 415B.
- Linear addresses 470A and 470B correspond to tags 450A and 450B.
- linear addresses contain context identifiers to illustrate how context identifiers can be used to distinguish between similar linear addresses.
- Context identifiers are not part of a linear address, however, and are generated separately from the linear addresses.
- Cache memory systems implemented according to the prior art conduct cache look-ups by comparing a partial linear address generated by a processor (not shown) with each tag 420 in cache array 400. If the processor generated a partial linear address of 123, then that address would match both tag 450A and tag 450B. As stated above, a hit/miss determinator ultimately determines which cache line, if either, matches the main memory address generated by the processor. Prior art systems incur a performance penalty when the hit/miss determinator manages and corrects false matches between a partial linear address and a tag 420.
- FIG. 4B illustrates the use of context identifiers to reduce the frequency of a false match between a partial linear address generated by the processor and a tag 420.
- Linear addresses 470A and 470B are associated with cache lines 440A and 440B of FIG. 4 A.
- Address 475 is generated by a processor in response to an issued instruction.
- Address 475 includes context identifier 480 and partial linear address 485.
- a prior art cache might have identified a false match between 475 and 470B because partial linear address 485 matches tag 450B.
- context identifier 480 is compared with context identifier 415B.
- partial linear address 485 is compared with tag 450B.
- cache array 400 will not find a false match between 475 and 470B because context identifier 480 does not match context identifier 415B.
- FIG. 5 illustrates one embodiment of a portion of a page miss handler (PMH).
- PMH 500 generates and controls the assignment of context identifiers.
- PMH 500 includes context identifier generator 510, comparator 520, context identifier multiplexer 530, and inverter 540.
- context identifier generator 510 generates a one bit binary number corresponding to a currently executing thread.
- context identifier generator 510 generates a binary number with more than one bit.
- Comparator 520 compares the addresses of the bases of the page directories used by two threads that are executing on a processor.
- the context identifier comprises two or more bits.
- PMH 500 determines whether or not the same context identifier is assigned to the instructions of two different threads. For the embodiment shown in FIG. 5, PMH 500 assigns a first context identifier to a first thread that executes on the processor. For example, if Thread 0 is the first thread to execute on the processor, the processor may assign 0 as Thread 0's context identifier. The context identifier is not required to match the thread number. Thus, Thread 0 may have a context identifier of either 1 or 0. In alternate embodiments of the invention, a processor executes more than two threads of instructions and context identifiers of more than one bit are used.
- PMH 500 determines whether to assign the instructions of the second thread a different context identifier than was assigned to the instructions of Thread 0. It is possible that Thread 0 and Thread 1 are using the same pages in main memory. If so, then it is desirable to assign the same context identifier to the instructions of the two threads because a false match between a tag and a linear address is less likely when the linear address is known to map to the same page as the tag. Comparator 520 determines whether Thread 0 and Thread 1 are using the same pages in main memory by comparing the bases of the page directories used by the two threads.
- multiplexer 530 will select the same context identifier for Thread 1 as it selected for Thread 0. Conversely, if comparator 520 indicates that Thread 0 and Thread 1 are not using the same address for the bases of their page directories, multiplexer 530 selects the output of inverter 540 as the context identifier for Thread 1. Determining whether two threads share the same context identifier can be implemented in a different manner. For example, in an embodiment of the invention, the operating system determines whether two threads share the same context identifier and explicitly tells the processor the correct context identifier to associate with a thread.
- a predictor that studies the memory access patterns of the threads predicts the context identifier.
- a user may instruct PHM 500 to always select the same value for the instructions of two different threads or to always select a different context identifier value for the instructions of two different threads.
- some embodiments make use of additional criteria besides the address of the base directory, to determine whether two threads share the same context identifier.
- more than two threads are present in the processor.
- the context identifiers are extended to an encoding scheme that allows for n different context identifiers to be specified.
- n bit context identifier when an n bit context identifier is used, the n bits are placed in the cache in the same way that a single bit is placed in the cache.
- comparing n bit context identifiers to each other can be done in nearly the same way as comparing two single bit context identifiers.
- An embodiment of the invention with multiple threads uses a pool of unused context identifiers.
- a thread changes its page table base (CR3), it compares the new value to the value of the page table base used by other active threads or any valid page table base of a context identifier in the pool. If there is a match, it takes the value of the context identifier of the thread that produced the match. If there is not a match with another active thread, it takes an unused context identifier from the pool.
- Context identifiers are returned to the unused pool when either a thread changes its page base value, or the last line of cache with a given context identifier is deallocated. The latter arrangement allows a thread to hit on data that a previous thread brought in.
- FIG. 6 illustrates a read from a cache memory system having a context identifier.
- Cache array 610 includes cache lines 605. Each cache line 605 includes a context identifier 610A, a tag 61 OB, and a data block 6 IOC.
- Cache array 610 is coupled to cache controller 620.
- Cache controller 620 controls access to the data contained in cache array 610.
- Cache controller 620 is coupled to hit/miss determinator 670 and comparators 675 and 680. The operation of hit/miss determinator 670 and comparators 675 and 680 is discussed below.
- comparator 675 is coupled to AGU 630 as well as AND gate 685.
- AGU 630 generates linear addresses for issued instructions that require a memory transfer (e.g., LOAD and STORE instructions).
- comparator 680 is coupled to AND gate 685 and PMH 640 through multiplexer 650.
- PMH 640 contains control logic used to determine which context identifier is assigned to which issued instruction.
- a read cycle is typically initiated by an issued LOAD instruction (LD) 660.
- LD 660 is sent to PMH 640 and AGU 630.
- PMH 640 determines, among other things, which thread is the source of LD 660.
- PMH 640 assigns a context identifier to LD 660 based, in part, on which thread is the source of LD 660.
- PMH 640 issues a context identifier associated with LD 660 to comparator 680 through multiplexer 650.
- AGU 630 issues a partial linear address to comparator 675.
- Comparators 675 and 680 use the partial linear address and LD 660's context identifier to determine whether cache array 610 contains the information that LD 660 requires.
- cache array 610 contains the required information a cache hit results. If cache array 610 does not contain the required information a cache miss results.
- a cache hit requires that a particular cache line contain a context identifier that matches LD 660's context identifier and a tag that matches the partial linear address corresponding to LD 660.
- Comparators 675 and 680 compare the tag field and the context identifier field of each cache line with LD 660's context identifier and partial linear address. According to one embodiment, there are as many comparators as there are cache lines so that comparisons can be done in a single parallel operation. If a single cache line contains a context identifier and a tag that matches LD 660's context identifier and partial linear address, then AND gate 685 signals a cache hit. The possibility exists, however, that the cache hit is based on a false match because comparator 675 compares only a portion of LD 660's address with each tag in cache array 610A.
- Hit/miss determinator 670 detects whether a cache hit is based on a false match.
- Hit/miss determinator receives the full linear address of the location in main memory from which LD 660 requires an instruction/operand.
- hit/miss determinator 670 translates the linear address conveyed to it by the AGU to a physical address.
- Hit/miss determinator 670 determines the physical address corresponding to the tag matching LD 660's partial linear address.
- Hit/miss determinator 670 compares both complete physical addresses to determine whether the cache hit is based on a false match.
- FIG. 7 illustrates a write to cache memory using a context identifier.
- Cache array 710 includes a number of cache lines 705.
- Each cache line 705 includes a context identifier 710A, a tag 710B, and a data block 7 IOC.
- Cache array 710 is coupled to cache controller 720.
- Cache controller 720 performs a number of functions including determining into which cache line a block of data will be written.
- Cache controller 720 is coupled to AGU 730 and PMH 740 through mulitplexer750.
- Issued instruction 760 is sent from the processor (not shown) to PMH 740 and AGU 730.
- AGU 730 generates a linear address when issued instruction 760 requires a memory transfer.
- AGU 730 is generally part of the processor's execution core. In other embodiments AGU 730 may generate a physical address.
- PMH 740 generates at least two context identifiers and the control signals that control multiplexer 750. In other embodiments, PMH 740 may generate any number of context identifiers.
- a write cycle is typically initiated by an issued store instruction (ST) (e.g., ST 760).
- ST 760 is sent to PMH 740 and AGU 730.
- PMH 740 determines which thread is the source of ST 760.
- PMH 740 further determines which context identifier to assign to ST 760.
- PMH 740 has three modes of operation: OFF, NON-SHARED, and ADAPTIVE. If PMH 740 is operating in the OFF mode, then PHM 740 may write the same value for each context identifier.
- a cache line is shared by the instructions of two or more threads if the threads have the same context identifier as the context identifier stored in the cache line.
- PMH 740 may assign a context identifier that is particular to the thread that contains the issued instruction.
- the ADAPTIVE mode allows PMH 740 to dynamically determine whether to assign the same or different context identifiers for instructions originating from different threads. In one embodiment, if the threads share the same address for the base of their page directories, then PMH 740 dynamically assigns the same context identifier for the instructions contained in the threads. If not, in an embodiment, then PMH 740 dynamically assigns different context identifiers to the instructions contained in the threads.
- PMH 740 considers whether the computer is in multi-threaded mode and whether paging is enabled when determining whether to write the same context identifier for the instructions of two different threads. Any number of criteria may be used to determine the value of a context identifier that is assigned to an issued instruction. Further, the context identifier generator and related control logic can be located in a number of places within an electronic system and need not be contained in the PMH or similar unit.
- PMH 740 sends a context identifier appropriate for ST 760 to cache controller 720, through multiplexer 750.
- AGU 730 generates a linear address corresponding to the main memory location to which ST 760A seeks to store data.
- AGU 730 provides cache controller 720 and hit/miss determinator 770 with the linear address corresponding to ST 760.
- Cache controller 720 applies a cache line replacement policy to determine which cache line will be used to store data for ST 760.
- Cache line replacement policies are well known in the art (see e.g., Handy, Jim; The Cache Memory Book; Academic Press, 1998 for a more detailed description of cache line replacement policies).
- cache controller 720 After selecting an appropriate cache line, cache controller 720 writes the context identifier to the context identifier field 780A of the selected cache line 780. Cache controller 720 writes a portion of ST 760's linear address to the tag field 780B of cache line 780. In one embodiment, the tag comprises bits 23 to 12 of a 32 bit linear address. There are many combinations of address bits that may be used for the tag. The cache controller writes the data associated with ST 760 into data block field 780C of selected cache line 780.
- Cache management can be controlled by instructions from an electronically accessible medium, which may be used to program a computer (or other electronic devices) to perform a process described herein.
- the electronically accessible medium may include, but is not limited to, floppy diskettes, optical disks, CD-ROMs, magneto-optical disks, ROMs, RAMs, EPROMs, EEPRPOMs, magnet or optical cards, flash memory, or other type of media / machine-readable medium suitable for storing electronic instructions.
- the instructions may also be downloaded as a computer program product, wherein the program may be transferred from a remote computer to a requesting computer by way of data signals embodied in a carrier wave or other propagation medium via a communications link (e.g., a modem or a network connection).
Landscapes
- Engineering & Computer Science (AREA)
- Theoretical Computer Science (AREA)
- Physics & Mathematics (AREA)
- General Engineering & Computer Science (AREA)
- General Physics & Mathematics (AREA)
- Memory System Of A Hierarchy Structure (AREA)
Priority Applications (5)
| Application Number | Priority Date | Filing Date | Title |
|---|---|---|---|
| AU2003214148A AU2003214148A1 (en) | 2002-03-22 | 2003-03-13 | Use of context identifiers in cache memory |
| HK05101786.1A HK1069449B (en) | 2002-03-22 | 2003-03-13 | Use of a context identifier in cache memory |
| KR1020037017291A KR100634930B1 (ko) | 2002-03-22 | 2003-03-13 | 캐시 메모리에서 문맥 식별자를 사용하는 방법 및 장치 |
| JP2003581019A JP4459628B2 (ja) | 2002-03-22 | 2003-03-13 | キャッシュメモリにおけるコンテクスト識別子の使用 |
| DE10392127T DE10392127T5 (de) | 2002-03-22 | 2003-03-13 | Verwendung eines Kontextidentifizierers in einem Zwischenspeicher |
Applications Claiming Priority (2)
| Application Number | Priority Date | Filing Date | Title |
|---|---|---|---|
| US10/104,815 | 2002-03-22 | ||
| US10/104,815 US7085889B2 (en) | 2002-03-22 | 2002-03-22 | Use of a context identifier in a cache memory |
Publications (2)
| Publication Number | Publication Date |
|---|---|
| WO2003083663A2 true WO2003083663A2 (en) | 2003-10-09 |
| WO2003083663A3 WO2003083663A3 (en) | 2004-05-21 |
Family
ID=28040700
Family Applications (1)
| Application Number | Title | Priority Date | Filing Date |
|---|---|---|---|
| PCT/US2003/007710 Ceased WO2003083663A2 (en) | 2002-03-22 | 2003-03-13 | Use of context identifiers in cache memory |
Country Status (9)
| Country | Link |
|---|---|
| US (1) | US7085889B2 (enExample) |
| JP (1) | JP4459628B2 (enExample) |
| KR (1) | KR100634930B1 (enExample) |
| CN (1) | CN1302396C (enExample) |
| AU (1) | AU2003214148A1 (enExample) |
| DE (1) | DE10392127T5 (enExample) |
| RU (1) | RU2285286C2 (enExample) |
| TW (1) | TWI300897B (enExample) |
| WO (1) | WO2003083663A2 (enExample) |
Families Citing this family (15)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US6560690B2 (en) * | 2000-12-29 | 2003-05-06 | Intel Corporation | System and method for employing a global bit for page sharing in a linear-addressed cache |
| US20040049657A1 (en) * | 2002-09-10 | 2004-03-11 | Kling Ralph M. | Extended register space apparatus and methods for processors |
| US7254617B2 (en) * | 2002-12-06 | 2007-08-07 | Scott Ruple | Distributed cache between servers of a network |
| US7206916B2 (en) * | 2004-03-08 | 2007-04-17 | Sun Microsystems, Inc. | Partial address compares stored in translation lookaside buffer |
| WO2005116837A1 (en) * | 2004-05-26 | 2005-12-08 | Intel Corporation | Automatic caching generation in network applications |
| ATE536587T1 (de) | 2004-08-31 | 2011-12-15 | Freescale Semiconductor Inc | Virtueller adressen-cache und verfahren zum gemeinsamen benutzen von daten unter verwendung einer eindeutigen task-kennung |
| US20070266199A1 (en) * | 2004-09-07 | 2007-11-15 | Freescale Semiconductor, Inc. | Virtual Address Cache and Method for Sharing Data Stored in a Virtual Address Cache |
| KR100899097B1 (ko) * | 2007-05-11 | 2009-05-25 | 한국과학기술원 | 복수의 인덱싱 정보를 제공하는 방법 및 이를 이용한 캐쉬메모리 장치 |
| US8024546B2 (en) * | 2008-10-23 | 2011-09-20 | Microsoft Corporation | Opportunistic page largification |
| CN101854311A (zh) * | 2009-03-31 | 2010-10-06 | 国际商业机器公司 | 在web服务器上传递上下文信息的方法和装置 |
| CN104932990B (zh) * | 2015-06-03 | 2018-05-11 | 华为技术有限公司 | 一种高速缓冲存储器中数据块的替换方法和装置 |
| CN107291630B (zh) * | 2016-03-30 | 2020-08-25 | 华为技术有限公司 | 一种高速缓冲存储器处理方法及装置 |
| US11379592B2 (en) * | 2018-12-20 | 2022-07-05 | Intel Corporation | Write-back invalidate by key identifier |
| US11593109B2 (en) * | 2021-06-07 | 2023-02-28 | International Business Machines Corporation | Sharing instruction cache lines between multiple threads |
| US11593108B2 (en) | 2021-06-07 | 2023-02-28 | International Business Machines Corporation | Sharing instruction cache footprint between multiple threads |
Family Cites Families (50)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| GB8823077D0 (en) * | 1988-09-30 | 1988-11-09 | Int Computers Ltd | Data processing apparatus |
| US5341487A (en) | 1991-12-20 | 1994-08-23 | International Business Machines Corp. | Personal computer having memory system with write-through cache and pipelined snoop cycles |
| US5615343A (en) | 1993-06-30 | 1997-03-25 | Intel Corporation | Method and apparatus for performing deferred transactions |
| TW255022B (enExample) | 1993-06-30 | 1995-08-21 | Intel Corp | |
| US5568620A (en) | 1993-06-30 | 1996-10-22 | Intel Corporation | Method and apparatus for performing bus transactions in a computer system |
| US5548733A (en) | 1994-03-01 | 1996-08-20 | Intel Corporation | Method and apparatus for dynamically controlling the current maximum depth of a pipe lined computer bus system |
| US5572703A (en) | 1994-03-01 | 1996-11-05 | Intel Corporation | Method and apparatus for snoop stretching using signals that convey snoop results |
| BR9506997A (pt) | 1994-03-01 | 1997-11-18 | Intel Corp | Arquitetura de barramento altamente canalizada |
| TW400483B (en) | 1994-03-01 | 2000-08-01 | Intel Corp | High performance symmetric arbitration protocol with support for I/O requirements |
| US6029217A (en) | 1994-10-03 | 2000-02-22 | International Business Machines Corporation | Queued arbitration mechanism for data processing system |
| US5710906A (en) | 1995-07-07 | 1998-01-20 | Opti Inc. | Predictive snooping of cache memory for master-initiated accesses |
| KR0164395B1 (ko) | 1995-09-11 | 1999-02-18 | 김광호 | 반도체 메모리 장치와 그 리이드 및 라이트 방법 |
| US5812803A (en) | 1995-09-29 | 1998-09-22 | Intel Corporation | Method and apparatus for controlling data transfers between a bus and a memory device using a multi-chip memory controller |
| JPH09101916A (ja) * | 1995-10-06 | 1997-04-15 | Fujitsu Ltd | マルチプロセス処理装置 |
| US5809522A (en) * | 1995-12-18 | 1998-09-15 | Advanced Micro Devices, Inc. | Microprocessor system with process identification tag entries to reduce cache flushing after a context switch |
| US5838995A (en) | 1995-12-18 | 1998-11-17 | International Business Machines Corporation | System and method for high frequency operation of I/O bus |
| EP0882266A1 (en) | 1996-02-20 | 1998-12-09 | Intergraph Corporation | High-availability super server |
| JP3643425B2 (ja) | 1996-02-29 | 2005-04-27 | 富士通株式会社 | データ処理方法、データ処理装置及びインターフェイスコントローラ |
| US5754818A (en) * | 1996-03-22 | 1998-05-19 | Sun Microsystems, Inc. | Architecture and method for sharing TLB entries through process IDS |
| US6427162B1 (en) * | 1996-05-02 | 2002-07-30 | Sun Microsystems, Inc. | Separate code and data contexts: an architectural approach to virtual text sharing |
| US5733603A (en) | 1996-06-05 | 1998-03-31 | Kimberly-Clark Corporation | Surface modification of hydrophobic polymer substrate |
| US6012118A (en) | 1996-12-30 | 2000-01-04 | Intel Corporation | Method and apparatus for performing bus operations in a computer system using deferred replies returned without using the address bus |
| JP3887867B2 (ja) * | 1997-02-26 | 2007-02-28 | 株式会社日立製作所 | 構造化文書の登録方法 |
| US6065101A (en) | 1997-06-12 | 2000-05-16 | International Business Machines Corporation | Pipelined snooping of multiple L1 cache lines |
| US5919254A (en) | 1997-06-25 | 1999-07-06 | Intel Corporation | Method and apparatus for switching between source-synchronous and common clock data transfer modes in a multiple processing system |
| US6336159B1 (en) | 1997-06-25 | 2002-01-01 | Intel Corporation | Method and apparatus for transferring data in source-synchronous protocol and transferring signals in common clock protocol in multiple agent processing system |
| US5991855A (en) | 1997-07-02 | 1999-11-23 | Micron Electronics, Inc. | Low latency memory read with concurrent pipe lined snoops |
| US5978869A (en) | 1997-07-21 | 1999-11-02 | International Business Machines Corporation | Enhanced dual speed bus computer system |
| US6108736A (en) | 1997-09-22 | 2000-08-22 | Intel Corporation | System and method of flow control for a high speed bus |
| US5964856A (en) | 1997-09-30 | 1999-10-12 | Intel Corporation | Mechanism for data strobe pre-driving during master changeover on a parallel bus |
| US6691118B1 (en) * | 1997-10-31 | 2004-02-10 | Oracle International Corporation | Context management system for modular software architecture |
| US6092156A (en) | 1997-11-05 | 2000-07-18 | Unisys Corporation | System and method for avoiding deadlocks utilizing split lock operations to provide exclusive access to memory during non-atomic operations |
| KR100255664B1 (ko) * | 1997-12-29 | 2000-05-01 | 윤종용 | 반도체 집적회로의 클락 포워딩 회로 및 클락포워딩 방법 |
| US6006291A (en) | 1997-12-31 | 1999-12-21 | Intel Corporation | High-throughput interface between a system memory controller and a peripheral device |
| US6041380A (en) | 1998-01-21 | 2000-03-21 | Micron Electronics, Inc. | Method for increasing the number of devices capable of being operably connected to a host bus |
| US6449677B1 (en) | 1998-09-03 | 2002-09-10 | Compaq Information Technologies Group, L.P. | Method and apparatus for multiplexing and demultiplexing addresses of registered peripheral interconnect apparatus |
| 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 |
| US8332478B2 (en) * | 1998-10-01 | 2012-12-11 | Digimarc Corporation | Context sensitive connected content |
| RU2140132C1 (ru) * | 1999-01-13 | 1999-10-20 | Валов Сергей Геннадьевич | Способ двухтактной ассоциативной маршрутизации |
| US6272604B1 (en) | 1999-05-20 | 2001-08-07 | International Business Machines Corporation | Contingent response apparatus and method for maintaining cache coherency |
| US6487621B1 (en) | 1999-08-17 | 2002-11-26 | Compaq Information Technologies Group, L.P. | Architecture, system and method for ensuring an ordered transaction on at least one of a plurality of multi-processor buses that experience a hit-to-modified snoop cycle |
| US6615323B1 (en) | 1999-09-02 | 2003-09-02 | Thomas Albert Petersen | Optimizing pipelined snoop processing |
| US6591321B1 (en) | 1999-11-09 | 2003-07-08 | International Business Machines Corporation | Multiprocessor system bus protocol with group addresses, responses, and priorities |
| CN1173271C (zh) * | 1999-12-24 | 2004-10-27 | 仁宝电脑工业股份有限公司 | 具有双重高速缓冲映射存储器的高速缓冲存储器系统 |
| US6609171B1 (en) | 1999-12-29 | 2003-08-19 | Intel Corporation | Quad pumped bus architecture and protocol |
| EP1215577B1 (en) * | 2000-08-21 | 2012-02-22 | Texas Instruments Incorporated | Fault management and recovery based on task-ID |
| EP1182571B1 (en) | 2000-08-21 | 2011-01-26 | Texas Instruments Incorporated | TLB operations based on shared bit |
| EP1215582A1 (en) | 2000-12-15 | 2002-06-19 | Texas Instruments Incorporated | Cache memory access system and method |
| US20020087824A1 (en) * | 2000-12-29 | 2002-07-04 | Hum Herbert H.J. | System and method for employing a process identifier to minimize aliasing in a linear-addressed cache |
| US6560690B2 (en) * | 2000-12-29 | 2003-05-06 | Intel Corporation | System and method for employing a global bit for page sharing in a linear-addressed cache |
-
2002
- 2002-03-22 US US10/104,815 patent/US7085889B2/en not_active Expired - Lifetime
-
2003
- 2003-03-13 RU RU2003136262/09A patent/RU2285286C2/ru not_active IP Right Cessation
- 2003-03-13 AU AU2003214148A patent/AU2003214148A1/en not_active Abandoned
- 2003-03-13 KR KR1020037017291A patent/KR100634930B1/ko not_active Expired - Fee Related
- 2003-03-13 DE DE10392127T patent/DE10392127T5/de not_active Ceased
- 2003-03-13 JP JP2003581019A patent/JP4459628B2/ja not_active Expired - Fee Related
- 2003-03-13 WO PCT/US2003/007710 patent/WO2003083663A2/en not_active Ceased
- 2003-03-13 CN CNB038005220A patent/CN1302396C/zh not_active Expired - Fee Related
- 2003-03-14 TW TW092105617A patent/TWI300897B/zh not_active IP Right Cessation
Also Published As
| Publication number | Publication date |
|---|---|
| TW200405155A (en) | 2004-04-01 |
| AU2003214148A8 (en) | 2003-10-13 |
| HK1069449A1 (en) | 2005-05-20 |
| TWI300897B (en) | 2008-09-11 |
| RU2285286C2 (ru) | 2006-10-10 |
| KR20040017821A (ko) | 2004-02-27 |
| AU2003214148A1 (en) | 2003-10-13 |
| JP4459628B2 (ja) | 2010-04-28 |
| WO2003083663A3 (en) | 2004-05-21 |
| CN1552025A (zh) | 2004-12-01 |
| US7085889B2 (en) | 2006-08-01 |
| US20030182512A1 (en) | 2003-09-25 |
| CN1302396C (zh) | 2007-02-28 |
| DE10392127T5 (de) | 2004-07-29 |
| KR100634930B1 (ko) | 2006-10-17 |
| RU2003136262A (ru) | 2005-05-27 |
| JP2006505834A (ja) | 2006-02-16 |
Similar Documents
| Publication | Publication Date | Title |
|---|---|---|
| US7165164B2 (en) | Method and apparatus including heuristic for sharing TLB entries | |
| US6560690B2 (en) | System and method for employing a global bit for page sharing in a linear-addressed cache | |
| US4797814A (en) | Variable address mode cache | |
| US5561814A (en) | Methods and apparatus for determining memory operating characteristics for given memory locations via assigned address ranges | |
| US7194597B2 (en) | Method and apparatus for sharing TLB entries | |
| US5475827A (en) | Dynamic look-aside table for multiple size pages | |
| US7085889B2 (en) | Use of a context identifier in a cache memory | |
| US7111124B2 (en) | Set partitioning for cache memories | |
| US5555395A (en) | System for memory table cache reloads in a reduced number of cycles using a memory controller to set status bits in the main memory table | |
| US5893930A (en) | Predictive translation of a data address utilizing sets of associative entries stored consecutively in a translation lookaside buffer | |
| US7039768B2 (en) | Cache predictor for simultaneous multi-threaded processor system supporting multiple transactions | |
| US6061774A (en) | Limited virtual address aliasing and fast context switching with multi-set virtual cache without backmaps | |
| US7721047B2 (en) | System, method and computer program product for application-level cache-mapping awareness and reallocation requests | |
| EP0284751B1 (en) | Cache memory | |
| US9514047B2 (en) | Apparatus and method to dynamically expand associativity of a cache memory | |
| US20090292880A1 (en) | Cache memory system | |
| US6567907B1 (en) | Avoiding mapping conflicts in a translation look-aside buffer | |
| JP6249120B1 (ja) | プロセッサ | |
| EP0611462B1 (en) | Memory unit including a multiple write cache | |
| US9665494B2 (en) | Parallel lookup in first and second value stores | |
| US11455253B2 (en) | Set indexing for first-level and second-level set-associative cache | |
| HK1069449B (en) | Use of a context identifier in cache memory |
Legal Events
| Date | Code | Title | Description |
|---|---|---|---|
| AK | Designated states |
Kind code of ref document: A2 Designated state(s): AE AG AL AM AT AU AZ BA BB BG BR BY BZ CA CH CN CO CR CU CZ DE DK DM DZ EC EE ES FI GB GD GE GH GM HR HU ID IL IN IS JP KE KG KP KR KZ LC LK LR LS LT LU LV MA MD MG MK MN MW MX MZ NI NO NZ OM PH PL PT RO RU SC SD SE SG SK SL TJ TM TN TR TT TZ UA UG UZ VC VN YU ZA ZM ZW |
|
| AL | Designated countries for regional patents |
Kind code of ref document: A2 Designated state(s): GH GM KE LS MW MZ SD SL SZ TZ UG ZM ZW AM AZ BY KG KZ MD RU TJ TM AT BE BG CH CY CZ DE DK EE ES FI FR GB GR HU IE IT LU MC NL PT RO SE SI SK TR BF BJ CF CG CI CM GA GN GQ GW ML MR NE SN TD TG |
|
| 121 | Ep: the epo has been informed by wipo that ep was designated in this application | ||
| DFPE | Request for preliminary examination filed prior to expiration of 19th month from priority date (pct application filed before 20040101) | ||
| WWE | Wipo information: entry into national phase |
Ref document number: 2003581019 Country of ref document: JP |
|
| WWE | Wipo information: entry into national phase |
Ref document number: 038005220 Country of ref document: CN |
|
| WWE | Wipo information: entry into national phase |
Ref document number: 1177/MUMNP/2003 Country of ref document: IN |
|
| WWE | Wipo information: entry into national phase |
Ref document number: KR Ref document number: 1020037017291 Country of ref document: KR |
|
| RET | De translation (de og part 6b) |
Ref document number: 10392127 Country of ref document: DE Date of ref document: 20040729 Kind code of ref document: P |
|
| WWE | Wipo information: entry into national phase |
Ref document number: 10392127 Country of ref document: DE |
|
| 122 | Ep: pct application non-entry in european phase | ||
| REG | Reference to national code |
Ref country code: DE Ref legal event code: 8607 |