US20110055483A1 - Transactional memory system with efficient cache support - Google Patents

Transactional memory system with efficient cache support Download PDF

Info

Publication number
US20110055483A1
US20110055483A1 US12/550,844 US55084409A US2011055483A1 US 20110055483 A1 US20110055483 A1 US 20110055483A1 US 55084409 A US55084409 A US 55084409A US 2011055483 A1 US2011055483 A1 US 2011055483A1
Authority
US
United States
Prior art keywords
transaction
aig
instruction
old data
instructions
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.)
Granted
Application number
US12/550,844
Other versions
US8566524B2 (en
Inventor
Thomas J. Heller, Jr.
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
International Business Machines Corp
Original Assignee
International Business Machines Corp
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by International Business Machines Corp filed Critical International Business Machines Corp
Assigned to INTERNATIONAL BUSINESS MACHINES CORPORATION reassignment INTERNATIONAL BUSINESS MACHINES CORPORATION ASSIGNMENT OF ASSIGNORS INTEREST (SEE DOCUMENT FOR DETAILS). Assignors: HELLER, THOMAS J., JR.
Priority to US12/550,844 priority Critical patent/US8566524B2/en
Priority to PCT/EP2010/062302 priority patent/WO2011023679A1/en
Priority to GB1203473.2A priority patent/GB2484881B/en
Priority to JP2012526034A priority patent/JP2013503379A/en
Priority to DE112010003492.3T priority patent/DE112010003492B4/en
Priority to CN201080038491.9A priority patent/CN102483704B/en
Publication of US20110055483A1 publication Critical patent/US20110055483A1/en
Priority to US13/656,778 priority patent/US8667231B2/en
Publication of US8566524B2 publication Critical patent/US8566524B2/en
Application granted granted Critical
Priority to US14/060,662 priority patent/US8738862B2/en
Expired - Fee Related legal-status Critical Current
Adjusted expiration legal-status Critical

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F12/00Accessing, addressing or allocating within memory systems or architectures
    • G06F12/02Addressing or allocation; Relocation
    • G06F12/08Addressing or allocation; Relocation in hierarchically structured memory systems, e.g. virtual memory systems
    • G06F12/0802Addressing of a memory level in which the access to the desired data or data block requires associative addressing means, e.g. caches
    • G06F12/0875Addressing of a memory level in which the access to the desired data or data block requires associative addressing means, e.g. caches with dedicated cache, e.g. instruction or stack
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/46Multiprogramming arrangements
    • G06F9/466Transaction processing
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/30Arrangements for executing machine instructions, e.g. instruction decode
    • G06F9/30003Arrangements for executing specific machine instructions
    • G06F9/30076Arrangements for executing specific machine instructions to perform miscellaneous control operations, e.g. NOP
    • G06F9/30087Synchronisation or serialisation instructions

Definitions

  • This invention relates generally to processing within a computing environment, and more particularly to a computing system with optimized support for transactional memory.
  • Current multiprocessor and multithreaded computing systems allow the performance of a single software application to be scaled to many times the possible performance of a single threaded application.
  • Current software and hardware systems provide for the parallel processing of multiple threads of execution.
  • Software applications can use existing thread libraries, such as the POSIX® pthread library, to control the creation of multiple threads of parallel execution.
  • the use of multiple threads works well for applications that operate on easily partitioned tasks and data; course grain locks can be used to control access to the few shared data structures to prevent rare conflicts between the data updates of multiple threads.
  • transactional memory systems have been proposed and built to provide a simpler programming model for constructing multithreaded applications that need to control access to shared data structures. These systems allow software running on one thread of execution to optimistically assume that shared data structures can be updated without conflict with the accesses and updates of other threads of execution. The speculative updates to memory are kept “pending” until the transactional memory system confirms that no conflicts with storage accesses of other threads have occurred. The transactional memory system must be able to discard the pending speculative updates when conflicts between the stored accesses of multiple threads are detected.
  • An exemplary embodiment is a computer implemented method for use by a transaction program for managing memory access to a shared memory location for transaction data of a first thread, the shared memory location being accessible by the first thread and a second thread.
  • the method includes executing at a computing system a string of instructions to complete a transaction of the first thread, beginning with one instruction of the string of instructions. It is determined at the computing system whether the one instruction is part of an active atomic instruction group (AIG) of instructions associated with the transaction of the first thread.
  • a cache structure and a transaction table which together provide for entries in an active mode for the AIG are located. The locating is in response to determining that the one instruction is part of an active AIG.
  • An entry includes an old data state stored in the cache structure and control information stored in the transaction table. All storage locations inspected or modified by instructions of the active AIG remain pending until the computing system indicates that the storage locations should be committed.
  • the next instruction is executed at the computing system under a normal execution mode in response to determining that the one instruction is not part of
  • Another exemplary embodiment is a computer program product for use by a transaction program for managing memory access to a shared memory location for transaction data of a first thread, the shared memory location being accessible by the first thread and a second thread.
  • the computer program product includes a tangible storage medium readable by a processing circuit and storing instructions for execution by the processing circuit for performing a method.
  • the method includes executing a string of instructions to complete a transaction of the first thread, beginning with one instruction of the string of instructions. It is determined whether the one instruction is part of an active AIG of instructions associated with the transaction of the first thread.
  • a cache structure and a transaction table which together provide for entries in an active mode for the AIG are located. The locating is in response to determining that the one instruction is part of an active AIG.
  • An entry includes an old data state stored in the cache structure and control information stored in the transaction table. All storage locations inspected or modified by instructions of the active AIG remain pending until the computing system indicates that the storage locations should be committed. The next instruction is executed under a normal execution mode in response to determining that the one instruction is not part of an active AIG.
  • a further exemplary embodiment is a system for use by a transaction program for managing, in a computer system, memory access to a shared memory location for transaction data of a first thread, the shared memory location being accessible by the first thread and a second thread.
  • the system includes a computer memory and a processor in communication with the computer memory.
  • the processor includes an instruction fetching element for fetching instructions from memory and one or more execution elements for executing fetched instructions.
  • the computer system is capable of performing a method. The method includes executing a string of instructions to complete a transaction of the first thread, beginning with one instruction of the string of instructions. It is determined whether the one instruction is part of an active AIG of instructions associated with the transaction of the first thread.
  • a cache structure and a transaction table which together provide for entries in an active mode for the AIG are located.
  • the locating is in response to determining that the one instruction is part of an active AIG.
  • An entry includes an old data state stored in the cache structure and control information stored in the transaction table. All storage locations inspected or modified by instructions of the active AIG remain pending until the computing system indicates that the storage locations should be committed.
  • the next instruction is executed under a normal execution mode in response to determining that the one instruction is not part of an active AIG.
  • FIG. 1 illustrates a computing system with optimized transactional memory that may be implemented by an exemplary embodiment of the present invention
  • FIG. 2 illustrates real system memory transaction tables that may be implemented by an exemplary embodiment
  • FIG. 3 illustrates a load processing flow that may be implemented by an exemplary embodiment
  • FIG. 4 illustrates a store processing flow that may be implemented by an exemplary embodiment
  • FIG. 5 illustrates a commit processing flow that may be implemented by an exemplary embodiment
  • FIG. 6 illustrates a rollback processing flow that may be implemented by an exemplary embodiment
  • FIG. 7 illustrates special instructions and an atomic instruction group (AIG) of instructions used in a nested AIG that may be implemented by an exemplary embodiment
  • FIG. 8 illustrates a generalized flowchart that shows the flow of decoding and execution of instructions in an exemplary embodiment
  • FIG. 9 illustrates an old data state store flow that may be implemented by an exemplary embodiment
  • FIG. 10 illustrates a computer program product that may be implemented by an exemplary embodiment.
  • An exemplary embodiment of the present invention is directed to a transactional memory system that combines a data cache structure (e.g., a hardware buffer) with a log based structure (e.g., a software table) to hold speculative transaction data.
  • a data cache structure e.g., a hardware buffer
  • a log based structure e.g., a software table
  • An exemplary embodiment provides for “old data states” to be stored in cache and eliminates the need to move “old data states” into the log based structure.
  • an exemplary embodiment provides for storing the old data states in the log based structure.
  • Exemplary embodiments provide a computing system which uses a combination of a “private-to-transaction” (PTRAN) tag, attached to each increment of real system memory, a log of speculative loads and stores, and a data cache structure storing old data states associated with the speculative loads and stores to provide an improved implementation of a transactional memory system.
  • An exemplary embodiment uses a log with the added mark bit employed as a PTRAN tag and associated with every increment of real system memory.
  • Hardware is provided to quickly detect conflicts between the storage accesses of transactions running on multiple threads of execution.
  • the use of the tag in memory and associated conflict detection hardware included in an exemplary embodiment of the present invention provides a much faster transactional memory system with much less overhead when compared to existing systems.
  • the complexity of an exemplary embodiment is lower than prior attempts at using additional cache coherency states for conflict detection, especially for systems with large numbers of processors and associated interconnections.
  • An exemplary embodiment of the present invention uses a combination of the cache and the main memory array of the computing system to hold the speculative data (including both an old data state and control information) and can support very long transactions.
  • An exemplary embodiment utilizes the cache to store old data states and the main memory array (also referred to herein as main storage or main memory) to store transaction and address information (e.g., control information) associated with the speculative loads and stores.
  • the main memory array is utilized to store any overflow old data states that do not fit into the portion of the cache (e.g., a buffer) reserved for the old data states.
  • the term “old data state” refers to the original non-speculative data at storage locations that are the targets of the store instructions inside of a transaction.
  • An exemplary embodiment provides the ability to check the address of a new memory access without a long search process for common cases. Likewise, it is an improvement over software only transactional memory systems since the conflict detection and use of the tag in memory eliminates some of the software overhead associated with tracking the speculative state of transactions. It also provides the ability to detect storage conflicts at a very fine level (down to a single byte) as opposed to prior art software systems that track updates to entire software objects which may be hundreds or thousands of bytes. Existing software systems will either give frequent over-indication of potential data conflicts or incur very large software path length penalties when attempting to track the updates to individual components of software objects. A further advantage of eliminating the bandwidth required to do reading and writing to the main memory is realized by providing a cache location for storing old data states.
  • FIG. 3 of the '517 patent includes an operation “locate enlistment record of memory location.” The text describing FIG.
  • An exemplary embodiment of the present invention uses a “transaction table” that is distinct from the virtual memory page tables of the system in combination with a data cache structure to store information associated with the speculative loads and stores.
  • the '034 patent describes a transactional memory system which focuses on using “caches as buffers for data accessed by atomic transactions”.
  • the '034 patent teaches forcing the failure of a transaction when the system detects a “buffer overflow” and does not propose dealing with the case of speculative data being evicted from the cache.
  • a buffer overflow will result if too many transactional loads or stores target the same cache congruence class.
  • the percentage of transactions which overflow the cache and fail will be proportional to the number of loads and stores contained in a transaction. Long transactions will fail more often.
  • Rajwar, Herlihy and Lai take a similar approach as Ananian in their paper entitled “Virtualizing Transactional Memory” (2005 IEEE).
  • Rajwar, et al. also use a data cache as the primary mechanism to track the speculative state associated with transactions. Speculative data which is forced out of the caches is moved to the transaction address data table (XADT) overflow area in virtual memory. The detection of a possible conflict with an address that is part of the XADT requires a slow linear search of the XADT.
  • Rajwar describes the use of filters to eliminate some of these searches but there are many cases where the searches will still need to be done.
  • Exemplary embodiments of the present invention may be used in combination with any of them in order to provide high performance transactional memory operations without incurring a large increase in hardware or software complexity.
  • An exemplary embodiment is described for the IBM PowerPC® architecture but anyone skilled in the art could apply the same approach to any other architecture such as IBM's zSeries®, IBM's pSeries® with the P3, P4, P5 processors, and even IBM's System 38 and its AS/400® can utilize the support of an exemplary embodiment of the present invention, as well as other computer systems, such as Sun Microsystems' SPARC®, and the Intel® IA-32, etc.
  • An exemplary embodiment for use with other application programming interfaces (APIs) that may be created for other specialized versions of transactional memory implementations.
  • APIs application programming interfaces
  • An exemplary embodiment of the present invention uses a hardware bit or bits associated with all memory locations, not just those that are currently part of an active transaction.
  • An exemplary embodiment uses the added hardware bit or bits to provide much faster execution of transactions than that which can be obtained using the process described n the '517 patent.
  • An exemplary embodiment uses a data cache structure to hold old data states in conjunction with an improved transaction table as a log to optimize the memory usage and provides a system which uses less memory than would be used by other systems like that described in the '517 patent, yet an exemplary embodiment can execute applications developed for these other systems.
  • An exemplary embodiment provides one or more PTRAN bits for every storage increment. There is no need in the current embodiment for an indirect method of “locating” the PTRAN bit.
  • An exemplary embodiment provides a much faster indication of potential conflicts since the PTRAN bit is a directly addressable part of the memory location to be marked.
  • An exemplary does not need an interface such as that described in the '517 patent, and achieves its benefit using hardware and firmware to update and reset the PTRAN bit.
  • An exemplary embodiment does not require application software to be aware of the state of the PTRAN bit or bits although one may provide a direct interface if desired.
  • An exemplary embodiment is also optimized for a short commit processing time.
  • An exemplary embodiment does not require the use of a version number for each storage location.
  • An advantage of an exemplary embodiment is that it uses a “transaction table” that is distinct from the virtual memory page tables of the system. This enables very large transactions to be processed and provides conflict detection down to a single byte.
  • An exemplary embodiment has no limit on the number of concurrent threads that can simultaneously access memory locations in the same virtual memory segment.
  • An exemplary embodiment performs conflict detection on physical memory addresses (or real addresses) and only restricts simultaneous access at the granularity of this conflict detection. This granularity can differ for various implementations of exemplary embodiments but will typically be on the order of bytes. If the Chang and Mergen system tries to use large numbers of concurrent threads, that system could not provide similar benefits without using extremely large virtual page table formats and consequently incurring a performance penalty.
  • An exemplary embodiment of the present invention does not impose this performance penalty.
  • Another advantage of an exemplary embodiment is that old data states associated with speculative loads and stores is stored in a data cache structure located in cache, thus saving on any bandwidth and clock cycles required to move the old data states into the transaction table. If the data cache structure becomes full, the old data states are stored in the transaction table as a backup to the data cache structure.
  • FIG. 1 there is a computing system illustrating an exemplary embodiment of the present invention which has one or more microprocessors ( 100 , 101 , 102 ) coupled to a physical memory array ( 120 ) via an interconnection element ( 110 ).
  • the microprocessors ( 100 , 101 , 102 ) include a cache 104 (also referred to herein as a “cache storage”) and the caches 104 include a cache structure 106 for storing old data states associated with the transactions.
  • the cache structure 106 is a hardware buffer containing 32 cache lines. Other cache structures and number of cache lines may be implemented by exemplary embodiments and may be selected based on criteria such as application and system requirements.
  • the physical memory array stores transaction data ( 121 ) and PTRAN tags ( 122 ) which are associated with every increment of real system memory.
  • the interconnection element ( 110 ) can be implemented as a shared bus or crossbar switch.
  • An exemplary embodiment applies to systems which use any other scheme of interconnecting physical memory to a multiprocessor system which may be implemented in one or more chips.
  • the memory could be broken down into smaller portions and distributed across private connections to each of the central processing unit (CPU) chips as done for some IBM systems using the POWER4® microprocessor or for Amdahl's AMD Opteron® based servers.
  • the microprocessors and memory controllers may be located together on a single silicon chip or they may be spread across multiple chips.
  • the physical memory of the computing system is divided into n increments.
  • One or more (PTRAN) bits associated with every increment of real system memory are provided for each of the n increments.
  • An exemplary embodiment allows for the choice of any memory increment size and the best choice will depend on workload characteristics, hardware costs, and data caching structure used in the target system.
  • An increment of 16 bytes is used in the illustrated embodiment.
  • the PTRAN bit(s) are used to indicate whether (or not) a data entry in memory is part of the speculative memory state of an uncommitted transaction that is currently active in the system.
  • Special new instructions (BEGIN_AIG, END_AIG) as illustrated by the nested AIG code sequence of FIG. 7 are used to mark the beginning and end of a group of instructions.
  • the instructions which execute between the special new instructions are referred to as an “atomic instruction group” (AIG) illustrated by AIG instructions shown in FIG. 7 (Instruction A 0 , Instruction A 1 , Instruction A 2 ).
  • AIG atomic instruction group
  • Additional storage access rules are used when a processor is executing instructions which are part of an AIG. All of the storage locations modified by the AIG group of instructions are updated in memory in an atomic fashion. The updates to the storage locations are kept “pending” until the processor and/or software application indicates that they should be “committed”. All of the updates are either committed to “normal” memory at once or they are discarded.
  • An exemplary embodiment provides a way for hardware to quickly detect potential conflicts between the storage accesses of multiple AIGs.
  • an exemplary embodiment uses special new instructions to mark the boundaries of a transaction, any other method could be used to identify a group of memory locations that are to be updated in an atomic fashion.
  • An exemplary embodiment is compatible with any number of software interfaces that may be used to implement a transactional memory system.
  • An exemplary embodiment can provide the same fast conflict detection for any system which is attempting to provide an atomic update of multiple storage locations.
  • An exemplary embodiment also applies to systems which mark the boundaries of an instruction group in any other ways, including compiler generated hints attached to other instructions, internal microprocessor commands generated by internal microcode or millicode.
  • a PTRAN tag ( 122 ) is one or more bits associated with an increment in memory which is set for all memory accesses generated by instructions that are part of an AIG.
  • a processor inspects the bit before attempting to set it; this enables the quick detection of potential conflicts with other AIGs that are concurrently executing on other threads.
  • the setting of the bit may be accomplished by a “test and set” (TS) operation of the IBM z/Architecture or any other equivalent operation that enables an atomic update in a multithreaded or multiprocessor system.
  • TS test and set
  • transaction tables ( 230 , 231 ) are created as part of the real system memory ( 220 ) (also referred to herein as “main storage”) which is illustrated here as physical memory ( 120 ).
  • the transaction tables ( 230 , 231 ) could also created in logical or virtual memory. Any system to map the logical system memory to the physical system memory can be used, and there are numerous examples known in the art which can be used, such as those in the IBM zSeries, IBM pSeries, Sun Microsystems' SPARC, Intel's IA-32, etc.
  • a transaction table entry is made when instructions that are part of an AIG cause a memory location to be inspected or updated.
  • a thread identifier ( 203 , 213 ) is associated with each transaction table ( 230 , 231 ).
  • a next entry register ( 202 , 212 ) is used as an index into the transaction table ( 230 , 231 ) and indicates which entry should be written next.
  • a table origin ( 201 , 211 ) indicates the address of the first entry of the transaction table ( 230 , 231 ) for its thread ( 203 , 213 ).
  • the transaction table ( 230 , 231 ) is used to hold additional information beyond the simple information that is associated with the PTRAN tag bit or bits that are associated with the memory location that has been inspected or updated. This additional information is related to the speculative state associated with an AIG.
  • a single PTRAN bit is utilized.
  • the combination of the transaction table ( 230 , 321 ) and the cache structure ( 106 ) will contain all additional information about the speculative state (e.g., the combination will contain entries in an active mode for the AIG), therefore the PTRAN bit will only indicate that a physical address is involved in an AIG.
  • transaction table A 230
  • the address 240
  • the transaction information identifier 241
  • old or new data 242
  • transaction table A ( 230 ) only contains the old data if the cache structure ( 106 ) cannot store the old data. This may occur, when the cache structure ( 106 ) becomes full. In this manner, the transaction table A ( 230 ) is used as a backup to the cache structure ( 106 ) for storing the old data states.
  • Other embodiments may use additional PTRAN bits which can be used by hardware or software to speed the processing of certain events involved in the processing of AIGs or the speculative states of any other transactional memory system.
  • an entry in the transaction table includes the address ( 240 ) that has been inspected or updated inside of an AIG, a transaction information field ( 241 ) and a data field ( 242 ).
  • a store instruction that is part of an AIG will cause the system to copy the “old” data value, the old data state, from the original storage location to the cache structure ( 106 ) for that address and the new speculative data is placed in the main storage location (e.g., the physical memory ( 120 )). If the cache structure ( 106 ) cannot store the old data state, then it is stored in the transaction table in the data field ( 242 ).
  • An exemplary embodiment can be made to work with the new values held in the cache structure ( 106 ) if desired. Placing the old data value in the cache structure ( 106 ) allows the system to be optimized for the case where most transactions are successful. The old data can be discarded quickly when it is no longer needed, when a transaction is committed permanently to memory, by changing the pointer to the cache structure ( 106 ) or by clearing the contents of the cache structure ( 106 ).
  • the transaction information field 241 of a transaction table entry includes any transaction information that is needed to make detailed decisions about the need to cause a transaction failure. It also has provisions for additional information to allow efficient support of nested transactions, virtualized transactions or other extensions of the transactional memory architecture.
  • the transaction information field ( 241 ) includes an indication of whether the storage access of the associated address ( 240 ) was a load type access or a store type access.
  • the transaction information field ( 240 ) can also indicate whether the address is shared among multiple AIGs in the system.
  • FIG. 3 shows a load processing flowchart for the actions for tracking a speculative state using the PTRAN bit and the transaction tables.
  • An “override” of this “AIG active mode” may be provided.
  • the override could be associated with the logical memory segment or logical memory page which contains the target address.
  • An override forces the system to treat the storage request as normal in spite of the fact that the request is part of an AIG. If the override is active then the result of the decision ( 310 ) will cause normal processing ( 320 ) to take place. Assuming that an AIG is active and the override is not, then the associated PTRAN bit is inspected at an inspection step ( 330 ). A load instruction inside of an AIG detects upon inspection the state of the PTRAN bit.
  • the processor sets the PTRAN bit and make a record of the access in the transaction table ( 230 ) for the active AIG by adding to the transaction table at the set PTRAN block ( 340 ) and then the complete load can continue ( 360 ). If the PTRAN bit is already set, the address which caused this potential conflict is compared with the addresses already entered in the processor's transaction table.
  • Each transaction table ( 230 , 231 ) contains the addresses for a particular AIG.
  • each cache structure ( 106 ) contains old data states for a particular AIG.
  • each cache structure ( 106 ) corresponds to a transaction table and the same index is used for storing the old data states and the control information associated with each instruction being tracked in the AIG.
  • the processor checks whether the address is enabled for sharing among AIGs in a determination step for AIG sharing ( 370 ). If the address is not currently enabled for sharing among multiple AIGs, the processor may signal other processors in the system to request a “shared AIG access” for this address during the determination step whether sharing is allowed among AIGs ( 370 ). A shared access can be granted if no other AIG in the system has speculatively written the storage location.
  • the AIG fails ( 380 ), otherwise ( 390 ) the load address is added to the transaction table ( 230 ) and the transaction information field ( 241 ) is updated to indicate that the address is a load access that is shared among multiple AIGs in the system.
  • FIG. 4 store processing flowchart shows the actions for processing a store that is part of an AIG.
  • a store decision 400 is made to determine whether the access is part of an AIG and whether the special storage access rules for AIG accesses apply.
  • the mode of the processor is checked in a similar method as previously described for load accesses. If the special mode of operation, under which the special access rules for AIG accesses apply, is not active then the store is treated as a normal store ( 440 ). Assuming that an AIG is active, the associated PTRAN bit is inspected at the store process inspection block ( 410 ).
  • the PTRAN bit is set at the store transaction step ( 450 ) and a new entry is added to the transaction table ( 230 ).
  • the “old data” is moved to the cache structure ( 106 ), the address is written to the new entry ( 240 ) and the transaction information field ( 241 ) is updated.
  • the cache structure ( 106 ) is unable to store the old data state, then the old data state is stored in the data field ( 242 ) of the transaction table.
  • the transaction information field ( 241 ) is marked to indicate that the access associated with this entry was a store type access.
  • the new store data is written to memory after the setting of the PTRAN bit is completed.
  • a decision ( 420 ) is made based on whether the current store address is already part of an AIG which is active on the processor.
  • the transaction table ( 230 ) for the processor is examined, if it is determined that the address is present in the transaction table then the transaction information field ( 241 ) for the entry is checked and a decision as to shared access entry ( 460 ) is made. If the transaction information field ( 241 ) indicates that the entry is a load type access entry that is shared among multiple AIGs, the transaction fails ( 430 ) otherwise the transaction information field ( 241 ) for the associated entry is updated to indicate a store type access and the store is processed ( 470 ).
  • an exemplary embodiment includes a set of actions completed when the last instruction in an AIG has been processed and the entire group is ready to be “committed” permanently to memory as determined initially at a test step ( 500 ). If not, the processing continues in AIG mode ( 550 ). An AIG is committed to memory when the processing of the loads and stores of the AIG according to flowcharts from FIG. 3 and FIG. 4 does not result in a transaction failure. In the case of AIG success then testing ( 500 ) determines the last instruction in an AIG has been processed and the entire group is ready to be “committed” permanently to memory. Then, the transaction table is examined ( 510 , 520 ) and each entry for the AIG to be committed is read and its associated PTRAN bit is reset in memory at the transaction table commit step ( 530 ) determination.
  • a specialized hardware engine may be used to complete the performance of this commit operation.
  • a combination of processor caches, multiprocessor coherency actions and an exemplary embodiment can be used to provide software with the illusion that all of the memory updates for a single AIG occur simultaneously even though the main memory storage arrays are not updated simultaneously.
  • the resetting of the PTRAN bits continues until the last valid entry in the transaction table has been determined to be reached ( 530 ). At this point the AIG is considered to be committed and the performance by the engine therefore completes ( 540 ).
  • the interrupt may cause the processor to spend a large amount of time running code that is not part of the partially completed AIG. It may not be desirable for the processor to keep the AIG active during this time.
  • the system can force a transaction failure for any AIG that is currently executing when a timer interrupt occurs.
  • a similar approach can be used for any other special case events occurring in the processor.
  • Transaction failures or forced retries are handled according to the process of the rollback processing flowchart for “rollback” processing shown in FIG. 6 .
  • FIG. 6 it will be seen that the lack of a transaction failure condition ( 600 ) allows the processor to continue in the AIG active mode ( 650 ).
  • An exemplary embodiment uses an “eager” policy with respect to detecting transaction failures and causing transaction rollback. Also, an exemplary embodiment may be used in systems that wait until the end of a transaction to take the actions required for a rollback.
  • the memory updates executed as part of an AIG are either committed to normal main storage at the same time ( FIG. 5 ) or they are discarded with a “rollback” operation ( 620 - 640 ).
  • Rollback transaction table processing entry steps provide that the transaction table ( 230 ) and the cache structure ( 106 ) for the AIG are inspected and any old data (or old data states) is written back to the main memory address ( 240 ) indicated in the entry. The PTRAN bit for the associated address is reset.
  • the rollback processing ( 620 ) continues until the last valid entry in the table has been processed ( 630 ). After the last valid entry has been processed, the rollback is complete ( 640 ).
  • the actions taken by the processor at this point will differ based upon various software architectures for transactional memory. Any transactional memory architectures described in the background may be used. In some cases the AIG will be retried from the beginning. In other cases special software handlers will be invoked to deal with the transaction failure. An exemplary embodiment may be used with any of these different architectures.
  • An exemplary embodiment supports the execution of “nested” transactions.
  • a second AIG may be included within the scope of the first AIG as shown in FIG. 7 .
  • Each BEGIN_AIG special instruction ( FIG. 7 ) statement causes the system to create a transaction table ( 230 ) and to associate the table with the AIG. Decisions about whether or not a storage address belongs to an AIG ( 350 ) may include the inner AIG (A) or the combination of the inner and outer AIGs (A & B).
  • the END-AIG special instruction statement ends the transaction sequence, but as shown, a sequence for a specific transaction (transaction B) may be nested within another sequence (transaction A).
  • transaction tables ( 230 ) may be used to support many nesting architectures for transactional memory. Multiple versions of the “old data”, or the old data state, may be stored in any number of cache structures ( 106 ) or transaction tables ( 230 ) at any nesting depth.
  • Prior-art transactional memory systems that rely on data caches to hold speculative states are unable to provide similar support for nested transactions without adding additional state information to cache directories and adding additional complexity to the cache coherency protocol. Nesting support on prior-art systems would impose a large hardware complexity penalty on those designs.
  • An exemplary embodiment can also be extended to include a combined transaction table/cache structure that includes entries from both the inner AIG (Instruction B 0 , Instruction B 1 ) and the outer AIG (Instruction A 0 , Instruction A 1 , Instruction A 2 ).
  • This combined transaction table/cache structure may be used in place of the individual transaction tables and cache structures, or in addition to the individual transaction tables and cache structures.
  • main storage refers to an array of DRAM memory chips. Additional control information can be added to the data caches to indicate whether a specific address has been enabled for “shared AIG access” and therefore eliminate the need to search the transaction table for some cases.
  • FIG. 8 shows the flow of decoding and execution of instructions in a computing system that uses an exemplary embodiment.
  • An exemplary embodiment uses a BEGIN_AIG instruction to indicate the beginning of an AIG and an END_AIG instruction to indicate the end of an AIG. Any other suitable method of marking the beginning and end of a group of instructions can be used.
  • the instructions or marks may be inserted in the code explicitly by programmers in a high level language or added by compilers or translators as implementations of high level locking functions.
  • the instructions or marks may be added by a library function call or be included by a special event in a runtime environment.
  • the instructions or marks may be generated by firmware, hardware or a combination of both as a response to decoding a particular sequence of instructions or receiving a special command to enter a new mode of execution.
  • An exemplary embodiment identifies the beginning of an AIG after decoding of an instruction ( 800 ). If it is determined that a BEGIN_AIG instruction has been decoded ( 805 ) the processor enters a new mode of execution, AIG MODE ( 815 ), otherwise the instruction is executed as usual ( 810 ) and processing continues with the next instruction ( 800 ).
  • the architected state of the processor Prior to entering AIG MODE, the architected state of the processor is saved in the same manner that a traditional program call is handled in the IBM Z-Series architecture. Any similar state saving mechanism may be used on any other processor architecture.
  • the processor may return directly to this saved state if the AIG fails or may return to this state after a series of other error handling routines have been invoked.
  • decoding of instructions continues ( 820 ). If a load or store is decoded ( 825 ) then special handling of these loads and stores is required ( 840 ). The steps required for the processing of a load inside of an AIG are described in FIG. 3 , those for a store inside of an AIG are described in FIG. 4 .
  • the decoding of instruction other than loads and stores inside of an AIG does not necessarily require special processing ( 830 ). If the instruction is not a load or store type instruction then it is determined whether the instruction is another BEGIN_AIG ( 830 ). Nested AIG instructions require special handling ( 835 ).
  • the prior art contains many different ways of handling nested transactions. An exemplary embodiment can be used to support any of them.
  • the nested AIG handler for an exemplary embodiment adds the instructions of the “inner” AIG to the “outer” AIG creating a single larger AIG.
  • Other embodiments of the invention may provide different rules of processing for loads and stores that are part an inner nested transaction as well as special rules for the commitment and failure handling of inner nested transactions.
  • the instruction is executed ( 845 ) and it is next determined ( 855 ) whether the instruction is the last instruction of the AIG.
  • the preferred embodiment uses the decoding of an END_AIG instruction to indicate that the last instruction of an AIG has been reached. If the last instruction of the AIG has been reached then the AIG is committed to memory and the processor exits the AIG MODE of operation ( 865 ).
  • FIG. 9 illustrates an old data state store flow that may be implemented by an exemplary embodiment.
  • a request is received (e.g., from block 450 in FIG. 4 ) to write an old data state associated with an AIG to the cache structure ( 106 ).
  • the cache structure ( 106 ) is located in cache storage ( 104 ); this provides for fast data access when writing and reading the old data states.
  • the cache structure ( 106 ) is a hardware buffer, however other software and/or hardware implementations may be implemented by exemplary embodiments.
  • a hardware buffer corresponds to a transaction table ( 230 , 231 ) and there is one buffer (logical or physical) implemented for each transaction table ( 230 , 231 ).
  • the next entry register ( 202 , 212 ) for the transaction table ( 230 , 231 ) may be utilized by the corresponding buffer for storing (and retrieving) the old data states.
  • one buffer is utilized by multiple transaction tables ( 230 , 231 ) to store the old data states.
  • a separate index is maintained for the buffer, and a correlation between old data states and addresses in a transaction table ( 230 , 231 ) is maintained.
  • the old data state cannot be stored in the buffer if the buffer is full.
  • a bit in the control structure of the cache is utilized to indicate that the buffer is full. If the buffer is full, then block 908 is performed and the old data state is written to the transaction table at the location indicated by the next entry register ( 202 , 212 ) (i.e., same row in the transaction table as the corresponding address). A bit is set in the header of the transaction table to indicate that the old data state is located in the transaction table.
  • processing continues at block 906 .
  • the old data state is written to the buffer.
  • each transaction table has a corresponding buffer and the old data state is written to the buffer at the location indicated by the next entry register ( 202 , 212 ).
  • a bit is set in the transaction table to indicate whether the old data state is located in the buffer or the data field 242 of the transaction table.
  • aspects of the present invention may be embodied as a system, method or computer program product. Accordingly, aspects of the present invention may take the form of an entirely hardware embodiment, an entirely software embodiment (including firmware, resident software, micro-code, etc.) or an embodiment combining software and hardware aspects that may all generally be referred to herein as a “circuit,” “module” or “system.” Furthermore, aspects of the present invention may take the form of a computer program product embodied in one or more computer readable medium(s) having computer readable program code embodied thereon.
  • the computer readable medium may be a computer readable signal medium or a computer readable storage medium.
  • a computer readable storage medium may be, for example, but not limited to, an electronic, magnetic, optical, electromagnetic, infrared, or semiconductor system, apparatus, or device, or any suitable combination of the foregoing.
  • a computer readable storage medium may be any tangible medium that can contain, or store a program for use by or in connection with an instruction execution system, apparatus, or device.
  • a computer readable signal medium may include a propagated data signal with computer readable program code embodied therein, for example, in baseband or as part of a carrier wave. Such a propagated signal may take any of a variety of forms, including, but not limited to, electromagnetic, optical, or any suitable combination thereof
  • a computer readable signal medium may be any computer readable medium that is not a computer readable storage medium and that can communicate, propagate, or transport a program for use by or in connection with an instruction execution system, apparatus, or device.
  • Program code embodied on a computer readable medium may be transmitted using any appropriate medium, including but not limited to wireless, wireline, optical fiber cable, RF, etc., or any suitable combination of the foregoing.
  • Computer program code for carrying out operations for aspects of the present invention may be written in any combination of one or more programming languages, including an object oriented programming language such as Java, Smalltalk, C++ or the like and conventional procedural programming languages, such as the “C” programming language or similar programming languages.
  • the program code may execute entirely on the user's computer, partly on the user's computer, as a stand-alone software package, partly on the user's computer and partly on a remote computer or entirely on the remote computer or server.
  • the remote computer may be connected to the user's computer through any type of network, including a local area network (LAN) or a wide area network (WAN), or the connection may be made to an external computer (for example, through the Internet using an Internet Service Provider).
  • LAN local area network
  • WAN wide area network
  • Internet Service Provider for example, AT&T, MCI, Sprint, EarthLink, MSN, GTE, etc.
  • These computer program instructions may also be stored in a computer readable medium that can direct a computer, other programmable data processing apparatus, or other devices to function in a particular manner, such that the instructions stored in the computer readable medium produce an article of manufacture including instructions which implement the function/act specified in the flowchart and/or block diagram block or blocks.
  • the computer program instructions may also be loaded onto a computer, other programmable data processing apparatus, or other devices to cause a series of operational steps to be performed on the computer, other programmable apparatus or other devices to produce a computer implemented process such that the instructions which execute on the computer or other programmable apparatus provide processes for implementing the functions/acts specified in the flowchart and/or block diagram block or blocks.
  • Embodiments can be embodied in the form of computer-implemented processes and apparatuses for practicing those processes.
  • the invention is embodied in computer program code executed by one or more network elements.
  • Embodiments include a computer program product 900 as depicted in FIG. 10 on a computer usable medium 1002 with computer program code logic 1004 containing instructions embodied in tangible media as an article of manufacture.
  • Exemplary articles of manufacture for computer usable medium 1002 may include floppy diskettes, CD-ROMs, hard drives, universal serial bus (USB) flash drives, or any other computer-readable storage medium, wherein, when the computer program code logic 1004 is loaded into and executed by a computer, the computer becomes an apparatus for practicing the invention.
  • Embodiments include computer program code logic 1004 , for example, whether stored in a storage medium, loaded into and/or executed by a computer, or transmitted over some transmission medium, such as over electrical wiring or cabling, through fiber optics, or via electromagnetic radiation, wherein, when the computer program code logic 1004 is loaded into and executed by a computer, the computer becomes an apparatus for practicing the invention.
  • the computer program code logic 1004 segments configure the microprocessor to create specific logic circuits.
  • each block in the flowchart or block diagrams may represent a module, segment, or portion of code, which comprises one or more executable instructions for implementing the specified logical function(s).
  • the functions noted in the block may occur out of the order noted in the figures. For example, two blocks shown in succession may, in fact, be executed substantially concurrently, or the blocks may sometimes be executed in the reverse order, depending upon the functionality involved.

Abstract

A computer implemented method for use by a transaction program for managing memory access to a shared memory location for transaction data of a first thread, the shared memory location being accessible by the first thread and a second thread. A string of instructions to complete a transaction of the first thread are executed, beginning with one instruction of the string of instructions. It is determined whether the one instruction is part of an active atomic instruction group (AIG) of instructions associated with the transaction of the first thread. A cache structure and a transaction table which together provide for entries in an active mode for the AIG are located if the one instruction is part of an active AIG. The next instruction is executed under a normal execution mode in response to determining that the one instruction is not part of an active AIG.

Description

    BACKGROUND
  • This invention relates generally to processing within a computing environment, and more particularly to a computing system with optimized support for transactional memory.
  • Current multiprocessor and multithreaded computing systems allow the performance of a single software application to be scaled to many times the possible performance of a single threaded application. Current software and hardware systems provide for the parallel processing of multiple threads of execution. Software applications can use existing thread libraries, such as the POSIX® pthread library, to control the creation of multiple threads of parallel execution. The use of multiple threads works well for applications that operate on easily partitioned tasks and data; course grain locks can be used to control access to the few shared data structures to prevent rare conflicts between the data updates of multiple threads.
  • Many software applications contain data structures that must be shared among multiple threads and have frequent concurrent inspections and updates of the shared data structures. These applications require additional modifications in order to obtain good scaling when using large numbers of threads. Applications which use multiple threads of execution that access shared data structures concurrently require the use of specialized data locking routines in order to produce a reliable outcome that is free from deadlocks and corrupted data. The majority of existing multithreaded applications in this category use fine grained software locks to achieve good performance and correct operation. Writing high performance multithreaded programs which use fine grained software locks is extremely difficult and requires expert programming skills. The lack of these skills in the software industry may limit the production of multithreaded applications which require the use of shared data structures and therefore the usefulness of multithreaded and multiprocessor computing systems for certain application classes, including many forms of transaction processing.
  • Various “transactional memory” systems have been proposed and built to provide a simpler programming model for constructing multithreaded applications that need to control access to shared data structures. These systems allow software running on one thread of execution to optimistically assume that shared data structures can be updated without conflict with the accesses and updates of other threads of execution. The speculative updates to memory are kept “pending” until the transactional memory system confirms that no conflicts with storage accesses of other threads have occurred. The transactional memory system must be able to discard the pending speculative updates when conflicts between the stored accesses of multiple threads are detected.
  • BRIEF SUMMARY
  • An exemplary embodiment is a computer implemented method for use by a transaction program for managing memory access to a shared memory location for transaction data of a first thread, the shared memory location being accessible by the first thread and a second thread. The method includes executing at a computing system a string of instructions to complete a transaction of the first thread, beginning with one instruction of the string of instructions. It is determined at the computing system whether the one instruction is part of an active atomic instruction group (AIG) of instructions associated with the transaction of the first thread. A cache structure and a transaction table which together provide for entries in an active mode for the AIG are located. The locating is in response to determining that the one instruction is part of an active AIG. An entry includes an old data state stored in the cache structure and control information stored in the transaction table. All storage locations inspected or modified by instructions of the active AIG remain pending until the computing system indicates that the storage locations should be committed. The next instruction is executed at the computing system under a normal execution mode in response to determining that the one instruction is not part of an active AIG.
  • Another exemplary embodiment is a computer program product for use by a transaction program for managing memory access to a shared memory location for transaction data of a first thread, the shared memory location being accessible by the first thread and a second thread. The computer program product includes a tangible storage medium readable by a processing circuit and storing instructions for execution by the processing circuit for performing a method. The method includes executing a string of instructions to complete a transaction of the first thread, beginning with one instruction of the string of instructions. It is determined whether the one instruction is part of an active AIG of instructions associated with the transaction of the first thread. A cache structure and a transaction table which together provide for entries in an active mode for the AIG are located. The locating is in response to determining that the one instruction is part of an active AIG. An entry includes an old data state stored in the cache structure and control information stored in the transaction table. All storage locations inspected or modified by instructions of the active AIG remain pending until the computing system indicates that the storage locations should be committed. The next instruction is executed under a normal execution mode in response to determining that the one instruction is not part of an active AIG.
  • A further exemplary embodiment is a system for use by a transaction program for managing, in a computer system, memory access to a shared memory location for transaction data of a first thread, the shared memory location being accessible by the first thread and a second thread. The system includes a computer memory and a processor in communication with the computer memory. The processor includes an instruction fetching element for fetching instructions from memory and one or more execution elements for executing fetched instructions. The computer system is capable of performing a method. The method includes executing a string of instructions to complete a transaction of the first thread, beginning with one instruction of the string of instructions. It is determined whether the one instruction is part of an active AIG of instructions associated with the transaction of the first thread. A cache structure and a transaction table which together provide for entries in an active mode for the AIG are located. The locating is in response to determining that the one instruction is part of an active AIG. An entry includes an old data state stored in the cache structure and control information stored in the transaction table. All storage locations inspected or modified by instructions of the active AIG remain pending until the computing system indicates that the storage locations should be committed. The next instruction is executed under a normal execution mode in response to determining that the one instruction is not part of an active AIG.
  • Additional features and advantages are realized through the techniques of the present invention. Other embodiments and aspects of the invention are described in detail herein and are considered a part of the claimed invention. For a better understanding of the invention with advantages and features, refer to the description and to the drawings.
  • BRIEF DESCRIPTION OF THE SEVERAL VIEWS OF THE DRAWINGS
  • Referring now to the drawings wherein like elements are numbered alike in the several FIGURES:
  • FIG. 1 illustrates a computing system with optimized transactional memory that may be implemented by an exemplary embodiment of the present invention;
  • FIG. 2 illustrates real system memory transaction tables that may be implemented by an exemplary embodiment;
  • FIG. 3 illustrates a load processing flow that may be implemented by an exemplary embodiment;
  • FIG. 4 illustrates a store processing flow that may be implemented by an exemplary embodiment;
  • FIG. 5 illustrates a commit processing flow that may be implemented by an exemplary embodiment;
  • FIG. 6 illustrates a rollback processing flow that may be implemented by an exemplary embodiment;
  • FIG. 7 illustrates special instructions and an atomic instruction group (AIG) of instructions used in a nested AIG that may be implemented by an exemplary embodiment;
  • FIG. 8 illustrates a generalized flowchart that shows the flow of decoding and execution of instructions in an exemplary embodiment;
  • FIG. 9 illustrates an old data state store flow that may be implemented by an exemplary embodiment; and
  • FIG. 10 illustrates a computer program product that may be implemented by an exemplary embodiment.
  • DETAILED DESCRIPTION
  • An exemplary embodiment of the present invention is directed to a transactional memory system that combines a data cache structure (e.g., a hardware buffer) with a log based structure (e.g., a software table) to hold speculative transaction data. An exemplary embodiment provides for “old data states” to be stored in cache and eliminates the need to move “old data states” into the log based structure. However, in the event that the data cache structure cannot store the old data states (e.g., it becomes full), an exemplary embodiment provides for storing the old data states in the log based structure.
  • Exemplary embodiments provide a computing system which uses a combination of a “private-to-transaction” (PTRAN) tag, attached to each increment of real system memory, a log of speculative loads and stores, and a data cache structure storing old data states associated with the speculative loads and stores to provide an improved implementation of a transactional memory system. An exemplary embodiment uses a log with the added mark bit employed as a PTRAN tag and associated with every increment of real system memory. Hardware is provided to quickly detect conflicts between the storage accesses of transactions running on multiple threads of execution. The use of the tag in memory and associated conflict detection hardware included in an exemplary embodiment of the present invention provides a much faster transactional memory system with much less overhead when compared to existing systems. The complexity of an exemplary embodiment is lower than prior attempts at using additional cache coherency states for conflict detection, especially for systems with large numbers of processors and associated interconnections.
  • An exemplary embodiment of the present invention uses a combination of the cache and the main memory array of the computing system to hold the speculative data (including both an old data state and control information) and can support very long transactions. An exemplary embodiment utilizes the cache to store old data states and the main memory array (also referred to herein as main storage or main memory) to store transaction and address information (e.g., control information) associated with the speculative loads and stores. In addition, the main memory array is utilized to store any overflow old data states that do not fit into the portion of the cache (e.g., a buffer) reserved for the old data states. As used herein the term “old data state” refers to the original non-speculative data at storage locations that are the targets of the store instructions inside of a transaction. An exemplary embodiment provides the ability to check the address of a new memory access without a long search process for common cases. Likewise, it is an improvement over software only transactional memory systems since the conflict detection and use of the tag in memory eliminates some of the software overhead associated with tracking the speculative state of transactions. It also provides the ability to detect storage conflicts at a very fine level (down to a single byte) as opposed to prior art software systems that track updates to entire software objects which may be hundreds or thousands of bytes. Existing software systems will either give frequent over-indication of potential data conflicts or incur very large software path length penalties when attempting to track the updates to individual components of software objects. A further advantage of eliminating the bandwidth required to do reading and writing to the main memory is realized by providing a cache location for storing old data states.
  • Transactional memory systems have been proposed as illustrated by U.S. Pat. No. 7,536,517 (hereinafter the “'517 patent”), which teaches the use of software enlistment records associated with memory locations that have been accessed by transactions. The system described in the '517 patent also uses a “version value” in the “enlistment record”. FIG. 3 of the '517 patent includes an operation “locate enlistment record of memory location.” The text describing FIG. 3 gives the example of the enlistment record being part of a software object at the referenced memory address and being created with the use of a “software transactional memory interface.” The '517 patent uses version numbers associated with each enlistment record and needs to deal with cases where the version number exceeds the maximum number supported by the enlistment record. In hindsight, after learning of the details of an exemplary embodiment of the present invention, it will be recognized that these features of the recent developments in transaction memory systems are not needed and can be improved upon.
  • Earlier, and now long ago, as pointed out in the development of fast paced computing systems developments summarized by David A. Wood, in his article entitled “An Overview of Hardware Alternatives” (Transactional Memory Workshop, Apr. 8, 2005) it was Chang and Mergen of IBM (described in 801 Storage: Architecture and Programming) who proposed using a lock bit associated with each segment of virtual memory. Their system provided an ability to detect concurrent accesses of storage locations by multiple threads but restricted the total number of concurrent threads that could operate on any single virtual memory segment when the transaction locking mechanism becomes active. Large virtual memory page tables which are required by Chang and Mergen to execute concurrent threads impose a performance penalty on all threads of execution that use virtual memory, not just those that execute transactions, so the Chang and Mergen suggestions became an anecdote in the prior art, as Woods said “No one seems to be looking at what they learned.” An exemplary embodiment of the present invention uses a “transaction table” that is distinct from the virtual memory page tables of the system in combination with a data cache structure to store information associated with the speculative loads and stores.
  • Unknown to Woods, in the Chang and Mergen IBM Yorktown facility there had been ongoing laboratory developments relating to transactional memory systems, including the memory system described in U.S. Pat. No. 7,350,034 (hereinafter the “'034 patent”), filed Jun. 20, 2005, and entitled “Architecture Support of Best-Effort Atomic Transactions for Multiprocessor Systems”.
  • The '034 patent describes a transactional memory system which focuses on using “caches as buffers for data accessed by atomic transactions”. The '034 patent teaches forcing the failure of a transaction when the system detects a “buffer overflow” and does not propose dealing with the case of speculative data being evicted from the cache. A buffer overflow will result if too many transactional loads or stores target the same cache congruence class. The percentage of transactions which overflow the cache and fail will be proportional to the number of loads and stores contained in a transaction. Long transactions will fail more often.
  • Other systems have been proposed which use a cache to implement a conflict detection scheme, and to capture speculative data which overflows the cache. An exemplary embodiment of the present invention does not rely primarily on data cache states for conflict detection. The required specialized cache states cause an undesired increase in complexity and also make it difficult to add the required detection and isolation mechanisms to existing multiprocessor cache coherency designs. Nevertheless, there are numerous attempts to exploit the cache which have been tried, besides the approach described in the '034 patent. One approach is to use a “before-image log” and a cache coherency states to implement a conflict detection scheme. Another approach is described by Ananian, et al. in their paper entitled “Unbounded Transactional Memory” (Research Abstracts 2006, CSAIL Publications and Digital Archive) which describes a transactional memory system which uses a single “unsorted linear array data structure” to capture speculative data which overflows data caches. They use an extra bit per cache set, the “O” bit to indicate if that set has “overflowed”, and another bit per cache entry, the “T” bit to indicate that the entry holds speculative data. The linear array data structure does provide the ability to support longer transactions but it does not provide the fast detection capability of exemplary embodiments of the present invention. The linear array in Ananian needs to be searched for any cache access that targets the set that “overflowed”. This can be a long process for transactions that cause many overflows. Rajwar, Herlihy and Lai take a similar approach as Ananian in their paper entitled “Virtualizing Transactional Memory” (2005 IEEE). Rajwar, et al. also use a data cache as the primary mechanism to track the speculative state associated with transactions. Speculative data which is forced out of the caches is moved to the transaction address data table (XADT) overflow area in virtual memory. The detection of a possible conflict with an address that is part of the XADT requires a slow linear search of the XADT. Rajwar describes the use of filters to eliminate some of these searches but there are many cases where the searches will still need to be done.
  • In addition to the above summarized developments in the field, many software interfaces and instruction set modifications have been proposed for the support of transactional memory. The paper “Architectural Semantics for Practical Transactional Memory” (McDonald et al, Computer Systems Laboratory, Stanford University, 2006) compares some of the proposals and provides references for many others and is incorporated herein by reference in its entirety.
  • Many software interfaces and instruction set modifications have been proposed for the support of transactional memory. Exemplary embodiments of the present invention may be used in combination with any of them in order to provide high performance transactional memory operations without incurring a large increase in hardware or software complexity. An exemplary embodiment is described for the IBM PowerPC® architecture but anyone skilled in the art could apply the same approach to any other architecture such as IBM's zSeries®, IBM's pSeries® with the P3, P4, P5 processors, and even IBM's System 38 and its AS/400® can utilize the support of an exemplary embodiment of the present invention, as well as other computer systems, such as Sun Microsystems' SPARC®, and the Intel® IA-32, etc. Anyone skilled in the art could extend an exemplary embodiment for use with other application programming interfaces (APIs) that may be created for other specialized versions of transactional memory implementations.
  • An exemplary embodiment of the present invention uses a hardware bit or bits associated with all memory locations, not just those that are currently part of an active transaction. An exemplary embodiment uses the added hardware bit or bits to provide much faster execution of transactions than that which can be obtained using the process described n the '517 patent. An exemplary embodiment uses a data cache structure to hold old data states in conjunction with an improved transaction table as a log to optimize the memory usage and provides a system which uses less memory than would be used by other systems like that described in the '517 patent, yet an exemplary embodiment can execute applications developed for these other systems. An exemplary embodiment provides one or more PTRAN bits for every storage increment. There is no need in the current embodiment for an indirect method of “locating” the PTRAN bit. An exemplary embodiment provides a much faster indication of potential conflicts since the PTRAN bit is a directly addressable part of the memory location to be marked. An exemplary does not need an interface such as that described in the '517 patent, and achieves its benefit using hardware and firmware to update and reset the PTRAN bit. An exemplary embodiment does not require application software to be aware of the state of the PTRAN bit or bits although one may provide a direct interface if desired. An exemplary embodiment is also optimized for a short commit processing time. An exemplary embodiment does not require the use of a version number for each storage location.
  • An advantage of an exemplary embodiment is that it uses a “transaction table” that is distinct from the virtual memory page tables of the system. This enables very large transactions to be processed and provides conflict detection down to a single byte. An exemplary embodiment has no limit on the number of concurrent threads that can simultaneously access memory locations in the same virtual memory segment. An exemplary embodiment performs conflict detection on physical memory addresses (or real addresses) and only restricts simultaneous access at the granularity of this conflict detection. This granularity can differ for various implementations of exemplary embodiments but will typically be on the order of bytes. If the Chang and Mergen system tries to use large numbers of concurrent threads, that system could not provide similar benefits without using extremely large virtual page table formats and consequently incurring a performance penalty. An exemplary embodiment of the present invention does not impose this performance penalty. Another advantage of an exemplary embodiment is that old data states associated with speculative loads and stores is stored in a data cache structure located in cache, thus saving on any bandwidth and clock cycles required to move the old data states into the transaction table. If the data cache structure becomes full, the old data states are stored in the transaction table as a backup to the data cache structure.
  • Turning now to the drawings in greater detail, it will be seen that in FIG. 1 there is a computing system illustrating an exemplary embodiment of the present invention which has one or more microprocessors (100,101,102) coupled to a physical memory array (120) via an interconnection element (110). The microprocessors (100, 101, 102) include a cache 104 (also referred to herein as a “cache storage”) and the caches 104 include a cache structure 106 for storing old data states associated with the transactions. In an exemplary embodiment, the cache structure 106 is a hardware buffer containing 32 cache lines. Other cache structures and number of cache lines may be implemented by exemplary embodiments and may be selected based on criteria such as application and system requirements. The physical memory array stores transaction data (121) and PTRAN tags (122) which are associated with every increment of real system memory. The interconnection element (110) can be implemented as a shared bus or crossbar switch. An exemplary embodiment applies to systems which use any other scheme of interconnecting physical memory to a multiprocessor system which may be implemented in one or more chips. The memory could be broken down into smaller portions and distributed across private connections to each of the central processing unit (CPU) chips as done for some IBM systems using the POWER4® microprocessor or for Amdahl's AMD Opteron® based servers. The microprocessors and memory controllers may be located together on a single silicon chip or they may be spread across multiple chips.
  • The physical memory of the computing system is divided into n increments. One or more (PTRAN) bits associated with every increment of real system memory are provided for each of the n increments. An exemplary embodiment allows for the choice of any memory increment size and the best choice will depend on workload characteristics, hardware costs, and data caching structure used in the target system. An increment of 16 bytes is used in the illustrated embodiment. The PTRAN bit(s) are used to indicate whether (or not) a data entry in memory is part of the speculative memory state of an uncommitted transaction that is currently active in the system.
  • Special new instructions (BEGIN_AIG, END_AIG) as illustrated by the nested AIG code sequence of FIG. 7 are used to mark the beginning and end of a group of instructions. The instructions which execute between the special new instructions are referred to as an “atomic instruction group” (AIG) illustrated by AIG instructions shown in FIG. 7 (Instruction A0, Instruction A1, Instruction A2). Additional storage access rules are used when a processor is executing instructions which are part of an AIG. All of the storage locations modified by the AIG group of instructions are updated in memory in an atomic fashion. The updates to the storage locations are kept “pending” until the processor and/or software application indicates that they should be “committed”. All of the updates are either committed to “normal” memory at once or they are discarded. The results are discarded when hardware and/or software detects a conflict between the storage accesses of multiple AIGs that are executing concurrently in the multiprocessor system. An exemplary embodiment provides a way for hardware to quickly detect potential conflicts between the storage accesses of multiple AIGs. Although an exemplary embodiment uses special new instructions to mark the boundaries of a transaction, any other method could be used to identify a group of memory locations that are to be updated in an atomic fashion. An exemplary embodiment is compatible with any number of software interfaces that may be used to implement a transactional memory system. An exemplary embodiment can provide the same fast conflict detection for any system which is attempting to provide an atomic update of multiple storage locations. An exemplary embodiment also applies to systems which mark the boundaries of an instruction group in any other ways, including compiler generated hints attached to other instructions, internal microprocessor commands generated by internal microcode or millicode.
  • A PTRAN tag (122) is one or more bits associated with an increment in memory which is set for all memory accesses generated by instructions that are part of an AIG. A processor inspects the bit before attempting to set it; this enables the quick detection of potential conflicts with other AIGs that are concurrently executing on other threads. The setting of the bit may be accomplished by a “test and set” (TS) operation of the IBM z/Architecture or any other equivalent operation that enables an atomic update in a multithreaded or multiprocessor system.
  • Turning now to FIG. 2, it will be seen that transaction tables (230,231) are created as part of the real system memory (220) (also referred to herein as “main storage”) which is illustrated here as physical memory (120). The transaction tables (230,231) could also created in logical or virtual memory. Any system to map the logical system memory to the physical system memory can be used, and there are numerous examples known in the art which can be used, such as those in the IBM zSeries, IBM pSeries, Sun Microsystems' SPARC, Intel's IA-32, etc. A transaction table entry is made when instructions that are part of an AIG cause a memory location to be inspected or updated. A thread identifier (203,213) is associated with each transaction table (230,231). A next entry register (202,212) is used as an index into the transaction table (230,231) and indicates which entry should be written next. A table origin (201,211) indicates the address of the first entry of the transaction table (230,231) for its thread (203, 213). The transaction table (230,231) is used to hold additional information beyond the simple information that is associated with the PTRAN tag bit or bits that are associated with the memory location that has been inspected or updated. This additional information is related to the speculative state associated with an AIG. In an illustrated IBM zSeries or pSeries CPU (100, 101, 102) embodiment which is described herein, a single PTRAN bit is utilized. In this case, the combination of the transaction table (230,321) and the cache structure (106) will contain all additional information about the speculative state (e.g., the combination will contain entries in an active mode for the AIG), therefore the PTRAN bit will only indicate that a physical address is involved in an AIG. This is illustrated for transaction table A (230) as the address (240), the transaction information identifier (241) and old or new data (242). As described herein, transaction table A (230) only contains the old data if the cache structure (106) cannot store the old data. This may occur, when the cache structure (106) becomes full. In this manner, the transaction table A (230) is used as a backup to the cache structure (106) for storing the old data states. Other embodiments may use additional PTRAN bits which can be used by hardware or software to speed the processing of certain events involved in the processing of AIGs or the speculative states of any other transactional memory system. The combination of using just a single bit in memory and associating that bit with a more complete description of the transactional state in the transaction tables combined with the cache structure provides a transactional memory system which requires very little hardware overhead without incurring the performance penalty seen in prior-art software transactional memory systems.
  • Turning again to FIG. 2, it will be seen that an entry in the transaction table, A for example (230), includes the address (240) that has been inspected or updated inside of an AIG, a transaction information field (241) and a data field (242). A store instruction that is part of an AIG will cause the system to copy the “old” data value, the old data state, from the original storage location to the cache structure (106) for that address and the new speculative data is placed in the main storage location (e.g., the physical memory (120)). If the cache structure (106) cannot store the old data state, then it is stored in the transaction table in the data field (242).
  • An exemplary embodiment can be made to work with the new values held in the cache structure (106) if desired. Placing the old data value in the cache structure (106) allows the system to be optimized for the case where most transactions are successful. The old data can be discarded quickly when it is no longer needed, when a transaction is committed permanently to memory, by changing the pointer to the cache structure (106) or by clearing the contents of the cache structure (106). The transaction information field 241 of a transaction table entry includes any transaction information that is needed to make detailed decisions about the need to cause a transaction failure. It also has provisions for additional information to allow efficient support of nested transactions, virtualized transactions or other extensions of the transactional memory architecture. In an exemplary embodiment, the transaction information field (241) includes an indication of whether the storage access of the associated address (240) was a load type access or a store type access. The transaction information field (240) can also indicate whether the address is shared among multiple AIGs in the system.
  • FIG. 3 shows a load processing flowchart for the actions for tracking a speculative state using the PTRAN bit and the transaction tables. When a processor attempts a load type access, initially a decision (310) is made to determine whether the load access address is part of an AIG and whether the special storage access rules for AIG accesses apply. If not, normal processing applies and a normal load processing (320) operation is followed. Whether or not a load type access is part of an AIG may be determined in many different ways in the decision process step (310). A mode bit may be set in the processor pipeline or in load/store units to indicate that a special AIG mode of operation is active. The mode may be part of the physical state of the processor or the logical state of a virtual processor. If the special mode of operation is not active then the load is treated as a normal load (320).
  • An “override” of this “AIG active mode” may be provided. The override could be associated with the logical memory segment or logical memory page which contains the target address. An override forces the system to treat the storage request as normal in spite of the fact that the request is part of an AIG. If the override is active then the result of the decision (310) will cause normal processing (320) to take place. Assuming that an AIG is active and the override is not, then the associated PTRAN bit is inspected at an inspection step (330). A load instruction inside of an AIG detects upon inspection the state of the PTRAN bit. When the PTRAN bit is already set (330) it is due possibly to the actions of another thread executing on the same processor or on another processor. If at the inspection step 330 it is found that the PTRAN bit is not set (340) then the processor sets the PTRAN bit and make a record of the access in the transaction table (230) for the active AIG by adding to the transaction table at the set PTRAN block (340) and then the complete load can continue (360). If the PTRAN bit is already set, the address which caused this potential conflict is compared with the addresses already entered in the processor's transaction table. If the PTRAN bit was set when tested at the inspection block (330) by another load earlier in the same AIG, it is already part of the AIG as tested and determined (350) and then the complete load may continue (360). Each transaction table (230, 231) contains the addresses for a particular AIG. Similarly, in an exemplary embodiment, each cache structure (106) contains old data states for a particular AIG. In an exemplary embodiment, each cache structure (106) corresponds to a transaction table and the same index is used for storing the old data states and the control information associated with each instruction being tracked in the AIG. Accordingly, if the address was not already part of the AIG as tested and determined (350) then the address for the load is not found in the processor's transaction table and then the processor checks whether the address is enabled for sharing among AIGs in a determination step for AIG sharing (370). If the address is not currently enabled for sharing among multiple AIGs, the processor may signal other processors in the system to request a “shared AIG access” for this address during the determination step whether sharing is allowed among AIGs (370). A shared access can be granted if no other AIG in the system has speculatively written the storage location. If the shared access is not granted then the AIG fails (380), otherwise (390) the load address is added to the transaction table (230) and the transaction information field (241) is updated to indicate that the address is a load access that is shared among multiple AIGs in the system.
  • The FIG. 4 store processing flowchart shows the actions for processing a store that is part of an AIG. When a processor attempts a store type access, initially a store decision (400) is made to determine whether the access is part of an AIG and whether the special storage access rules for AIG accesses apply. The mode of the processor is checked in a similar method as previously described for load accesses. If the special mode of operation, under which the special access rules for AIG accesses apply, is not active then the store is treated as a normal store (440). Assuming that an AIG is active, the associated PTRAN bit is inspected at the store process inspection block (410). If the PTRAN bit is not already set then the PTRAN bit is set at the store transaction step (450) and a new entry is added to the transaction table (230). The “old data” is moved to the cache structure (106), the address is written to the new entry (240) and the transaction information field (241) is updated. As described below in reference to FIG. 9, if the cache structure (106) is unable to store the old data state, then the old data state is stored in the data field (242) of the transaction table. The transaction information field (241) is marked to indicate that the access associated with this entry was a store type access. The new store data is written to memory after the setting of the PTRAN bit is completed. If the inspection of the PTRAN bit (410) indicates that the bit was already set then a decision (420) is made based on whether the current store address is already part of an AIG which is active on the processor. The transaction table (230) for the processor is examined, if it is determined that the address is present in the transaction table then the transaction information field (241) for the entry is checked and a decision as to shared access entry (460) is made. If the transaction information field (241) indicates that the entry is a load type access entry that is shared among multiple AIGs, the transaction fails (430) otherwise the transaction information field (241) for the associated entry is updated to indicate a store type access and the store is processed (470).
  • Turning now to the commit processing flowchart of FIG. 5, it will be seen that an exemplary embodiment includes a set of actions completed when the last instruction in an AIG has been processed and the entire group is ready to be “committed” permanently to memory as determined initially at a test step (500). If not, the processing continues in AIG mode (550). An AIG is committed to memory when the processing of the loads and stores of the AIG according to flowcharts from FIG. 3 and FIG. 4 does not result in a transaction failure. In the case of AIG success then testing (500) determines the last instruction in an AIG has been processed and the entire group is ready to be “committed” permanently to memory. Then, the transaction table is examined (510,520) and each entry for the AIG to be committed is read and its associated PTRAN bit is reset in memory at the transaction table commit step (530) determination.
  • A specialized hardware engine may be used to complete the performance of this commit operation. A combination of processor caches, multiprocessor coherency actions and an exemplary embodiment can be used to provide software with the illusion that all of the memory updates for a single AIG occur simultaneously even though the main memory storage arrays are not updated simultaneously. During the commit processing, the resetting of the PTRAN bits continues until the last valid entry in the transaction table has been determined to be reached (530). At this point the AIG is considered to be committed and the performance by the engine therefore completes (540).
  • Some conditions prevent the completion of an AIG. These conditions may be detected during load processing while executing an AIG (380) or during store processing while executing an AIG (430). There are many other possible processor conditions that may cause the need to abort the processing of an AIG. These include error conditions detected in the system as well as other conditions that would require significant additional hardware support to enable the processor to handle them correctly. Many prior-art transactional memory architectures include provisions for the abort of transactions and for a subsequent retry. Prior-art software constructs can be used together with an exemplary embodiment to eliminate the need to provide hardware to deal with all possible special cases. A simple example is the case of a timer interrupt in the middle of processing an AIG. The interrupt may cause the processor to spend a large amount of time running code that is not part of the partially completed AIG. It may not be desirable for the processor to keep the AIG active during this time. The system can force a transaction failure for any AIG that is currently executing when a timer interrupt occurs. A similar approach can be used for any other special case events occurring in the processor.
  • Transaction failures or forced retries are handled according to the process of the rollback processing flowchart for “rollback” processing shown in FIG. 6. Turning now to FIG. 6, it will be seen that the lack of a transaction failure condition (600) allows the processor to continue in the AIG active mode (650). An exemplary embodiment uses an “eager” policy with respect to detecting transaction failures and causing transaction rollback. Also, an exemplary embodiment may be used in systems that wait until the end of a transaction to take the actions required for a rollback. The memory updates executed as part of an AIG are either committed to normal main storage at the same time (FIG. 5) or they are discarded with a “rollback” operation (620-640).
  • Upon finding a transaction failure condition (600) failure several additional steps are required (610,620). Rollback transaction table processing entry steps provide that the transaction table (230) and the cache structure (106) for the AIG are inspected and any old data (or old data states) is written back to the main memory address (240) indicated in the entry. The PTRAN bit for the associated address is reset. The rollback processing (620) continues until the last valid entry in the table has been processed (630). After the last valid entry has been processed, the rollback is complete (640). The actions taken by the processor at this point will differ based upon various software architectures for transactional memory. Any transactional memory architectures described in the background may be used. In some cases the AIG will be retried from the beginning. In other cases special software handlers will be invoked to deal with the transaction failure. An exemplary embodiment may be used with any of these different architectures.
  • An exemplary embodiment supports the execution of “nested” transactions. A second AIG may be included within the scope of the first AIG as shown in FIG. 7. Each BEGIN_AIG special instruction (FIG. 7) statement causes the system to create a transaction table (230) and to associate the table with the AIG. Decisions about whether or not a storage address belongs to an AIG (350) may include the inner AIG (A) or the combination of the inner and outer AIGs (A & B). The END-AIG special instruction statement (FIG. 7) ends the transaction sequence, but as shown, a sequence for a specific transaction (transaction B) may be nested within another sequence (transaction A). The use of multiple transaction tables (230) may be used to support many nesting architectures for transactional memory. Multiple versions of the “old data”, or the old data state, may be stored in any number of cache structures (106) or transaction tables (230) at any nesting depth. Prior-art transactional memory systems that rely on data caches to hold speculative states are unable to provide similar support for nested transactions without adding additional state information to cache directories and adding additional complexity to the cache coherency protocol. Nesting support on prior-art systems would impose a large hardware complexity penalty on those designs. An exemplary embodiment can also be extended to include a combined transaction table/cache structure that includes entries from both the inner AIG (Instruction B0, Instruction B1) and the outer AIG (Instruction A0, Instruction A1, Instruction A2). This combined transaction table/cache structure may be used in place of the individual transaction tables and cache structures, or in addition to the individual transaction tables and cache structures.
  • There are many additional hardware features that can be added to exemplary embodiments to speed the processing of the transaction table manipulations and the setting and resetting of the PTRAN bit(s). Since the PTRAN bit is part of the main storage data, it can be cached in the normal data caches of the system. The transaction tables are also part of main storage and can also be cached. As used herein the term “main storage” refers to an array of DRAM memory chips. Additional control information can be added to the data caches to indicate whether a specific address has been enabled for “shared AIG access” and therefore eliminate the need to search the transaction table for some cases.
  • The capabilities of exemplary embodiments of the present invention as described above can be implemented in software, firmware, hardware along with some combination of software, and firmware.
  • FIG. 8 shows the flow of decoding and execution of instructions in a computing system that uses an exemplary embodiment. An exemplary embodiment uses a BEGIN_AIG instruction to indicate the beginning of an AIG and an END_AIG instruction to indicate the end of an AIG. Any other suitable method of marking the beginning and end of a group of instructions can be used. The instructions or marks may be inserted in the code explicitly by programmers in a high level language or added by compilers or translators as implementations of high level locking functions. The instructions or marks may be added by a library function call or be included by a special event in a runtime environment. The instructions or marks may be generated by firmware, hardware or a combination of both as a response to decoding a particular sequence of instructions or receiving a special command to enter a new mode of execution.
  • An exemplary embodiment identifies the beginning of an AIG after decoding of an instruction (800). If it is determined that a BEGIN_AIG instruction has been decoded (805) the processor enters a new mode of execution, AIG MODE (815), otherwise the instruction is executed as usual (810) and processing continues with the next instruction (800).
  • Prior to entering AIG MODE, the architected state of the processor is saved in the same manner that a traditional program call is handled in the IBM Z-Series architecture. Any similar state saving mechanism may be used on any other processor architecture. The processor may return directly to this saved state if the AIG fails or may return to this state after a series of other error handling routines have been invoked. While in AIG MODE, decoding of instructions continues (820). If a load or store is decoded (825) then special handling of these loads and stores is required (840). The steps required for the processing of a load inside of an AIG are described in FIG. 3, those for a store inside of an AIG are described in FIG. 4. After loads and stores in an AIG are processed it is determined (850) whether there has been an AIG failure as described in the descriptions of FIG. 3 and FIG. 4. If there is a failure then special handlers are invoked (860). The actions of the special handlers for transaction failure may vary depending on the architecture of the system using the exemplary embodiment. Many methods of dealing with transaction failures have been described in the prior art, any of them could be used for this purpose. The possible methods include retrying the transaction from the beginning for a set number of attempts, waiting for the condition that caused the failure to change, calling specialized software routines to resolve conflicts among threads etc. These possible failure handlers may require the rollback of the AIG which caused the failure (860). If no failure was detected then it is determined whether the load or store was the last instruction of the AIG (855). If the instruction is the last instruction in the AIG then the AIG is committed (865) using the process described in FIG. 5. The processor then exits the AIG Mode and continues with the next sequential instruction after the AIG (800).
  • The decoding of instruction other than loads and stores inside of an AIG does not necessarily require special processing (830). If the instruction is not a load or store type instruction then it is determined whether the instruction is another BEGIN_AIG (830). Nested AIG instructions require special handling (835). The prior art contains many different ways of handling nested transactions. An exemplary embodiment can be used to support any of them. The nested AIG handler for an exemplary embodiment adds the instructions of the “inner” AIG to the “outer” AIG creating a single larger AIG. Other embodiments of the invention may provide different rules of processing for loads and stores that are part an inner nested transaction as well as special rules for the commitment and failure handling of inner nested transactions. If it is determined that the instruction is not a BEGIN_AIG then the instruction is executed (845) and it is next determined (855) whether the instruction is the last instruction of the AIG. The preferred embodiment uses the decoding of an END_AIG instruction to indicate that the last instruction of an AIG has been reached. If the last instruction of the AIG has been reached then the AIG is committed to memory and the processor exits the AIG MODE of operation (865).
  • FIG. 9 illustrates an old data state store flow that may be implemented by an exemplary embodiment. At block 902, a request is received (e.g., from block 450 in FIG. 4) to write an old data state associated with an AIG to the cache structure (106).
  • As described previously, the cache structure (106) is located in cache storage (104); this provides for fast data access when writing and reading the old data states. In an exemplary embodiment, the cache structure (106) is a hardware buffer, however other software and/or hardware implementations may be implemented by exemplary embodiments. In an exemplary embodiment, a hardware buffer corresponds to a transaction table (230, 231) and there is one buffer (logical or physical) implemented for each transaction table (230,231). In this embodiment, the next entry register (202, 212) for the transaction table (230,231) may be utilized by the corresponding buffer for storing (and retrieving) the old data states. In an other exemplary embodiment, one buffer is utilized by multiple transaction tables (230,231) to store the old data states. In this embodiment, a separate index is maintained for the buffer, and a correlation between old data states and addresses in a transaction table (230,231) is maintained.
  • At block 904, it is determined if the old data state can be stored in the buffer. In the embodiment depicted in FIG. 9, the old data state cannot be stored in the buffer if the buffer is full. In an exemplary embodiment, a bit in the control structure of the cache is utilized to indicate that the buffer is full. If the buffer is full, then block 908 is performed and the old data state is written to the transaction table at the location indicated by the next entry register (202,212) (i.e., same row in the transaction table as the corresponding address). A bit is set in the header of the transaction table to indicate that the old data state is located in the transaction table.
  • If the buffer is not full, as determined at block 904, then processing continues at block 906. At block 906, the old data state is written to the buffer.
  • In the embodiment depicted in FIG. 9, each transaction table has a corresponding buffer and the old data state is written to the buffer at the location indicated by the next entry register (202,212). A bit is set in the transaction table to indicate whether the old data state is located in the buffer or the data field 242 of the transaction table.
  • Technical effects and benefits include a high speed transactional memory system with much less overhead when compared to existing systems. In addition, bandwidth requirements and processing time are reduced by providing a cache location for storing old data states associated with speculative load and store instructions. Further, system reliability and availability is improved by using a transaction table in main storage as a back-up to the cache when the cache structure becomes full.
  • The terminology used herein is for the purpose of describing particular embodiments only and is not intended to be limiting of the invention. As used herein, the singular forms “a”, “an” and “the” are intended to include the plural forms as well, unless the context clearly indicates otherwise. It will be further understood that the terms “comprises” and/or “comprising,” when used in this specification, specify the presence of stated features, integers, steps, operations, elements, and/or components, but do not preclude the presence or addition of one or more other features, integers, steps, operations, elements, components, and/or groups thereof
  • The corresponding structures, materials, acts, and equivalents of all means or step plus function elements in the claims below are intended to include any structure, material, or act for performing the function in combination with other claimed elements as specifically claimed. The description of the present invention has been presented for purposes of illustration and description, but 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 without departing from the scope and spirit of the invention. The embodiment was chosen and described in order to best explain the principles of the invention and 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.
  • As will be appreciated by one skilled in the art, aspects of the present invention may be embodied as a system, method or computer program product. Accordingly, aspects of the present invention may take the form of an entirely hardware embodiment, an entirely software embodiment (including firmware, resident software, micro-code, etc.) or an embodiment combining software and hardware aspects that may all generally be referred to herein as a “circuit,” “module” or “system.” Furthermore, aspects of the present invention may take the form of a computer program product embodied in one or more computer readable medium(s) having computer readable program code embodied thereon.
  • Any combination of one or more computer readable medium(s) may be utilized. The computer readable medium may be a computer readable signal medium or a computer readable storage medium. A computer readable storage medium may be, for example, but not limited to, an electronic, magnetic, optical, electromagnetic, infrared, or semiconductor system, apparatus, or device, or any suitable combination of the foregoing. More specific examples (a non-exhaustive list) of the computer readable storage medium would include the following: an electrical connection having one or more wires, a portable computer diskette, a hard disk, a random access memory (RAM), a read-only memory (ROM), an erasable programmable read-only memory (EPROM or Flash memory), an optical fiber, a portable compact disc read-only memory (CD-ROM), an optical storage device, a magnetic storage device, or any suitable combination of the foregoing. In the context of this document, a computer readable storage medium may be any tangible medium that can contain, or store a program for use by or in connection with an instruction execution system, apparatus, or device.
  • A computer readable signal medium may include a propagated data signal with computer readable program code embodied therein, for example, in baseband or as part of a carrier wave. Such a propagated signal may take any of a variety of forms, including, but not limited to, electromagnetic, optical, or any suitable combination thereof A computer readable signal medium may be any computer readable medium that is not a computer readable storage medium and that can communicate, propagate, or transport a program for use by or in connection with an instruction execution system, apparatus, or device.
  • Program code embodied on a computer readable medium may be transmitted using any appropriate medium, including but not limited to wireless, wireline, optical fiber cable, RF, etc., or any suitable combination of the foregoing.
  • Computer program code for carrying out operations for aspects of the present invention may be written in any combination of one or more programming languages, including an object oriented programming language such as Java, Smalltalk, C++ or the like and conventional procedural programming languages, such as the “C” programming language or similar programming languages. The program code may execute entirely on the user's computer, partly on the user's computer, as a stand-alone software package, partly on the user's computer and partly on a remote computer or entirely on the remote computer or server. In the latter scenario, the remote computer may be connected to the user's computer through any type of network, including a local area network (LAN) or a wide area network (WAN), or the connection may be made to an external computer (for example, through the Internet using an Internet Service Provider).
  • Aspects of the present invention are described below with reference to flowchart illustrations and/or block diagrams of methods, apparatus (systems) and computer program products according to embodiments of the invention. It will be understood that each block of the flowchart illustrations and/or block diagrams, and combinations of blocks in the flowchart illustrations and/or block diagrams, can be implemented by computer program instructions. These computer program instructions may be provided to a processor of a general purpose computer, special purpose computer, or other programmable data processing apparatus to produce a machine, such that the instructions, which execute via the processor of the computer or other programmable data processing apparatus, create means for implementing the functions/acts specified in the flowchart and/or block diagram block or blocks.
  • These computer program instructions may also be stored in a computer readable medium that can direct a computer, other programmable data processing apparatus, or other devices to function in a particular manner, such that the instructions stored in the computer readable medium produce an article of manufacture including instructions which implement the function/act specified in the flowchart and/or block diagram block or blocks.
  • The computer program instructions may also be loaded onto a computer, other programmable data processing apparatus, or other devices to cause a series of operational steps to be performed on the computer, other programmable apparatus or other devices to produce a computer implemented process such that the instructions which execute on the computer or other programmable apparatus provide processes for implementing the functions/acts specified in the flowchart and/or block diagram block or blocks.
  • As described above, embodiments can be embodied in the form of computer-implemented processes and apparatuses for practicing those processes. In exemplary embodiments, the invention is embodied in computer program code executed by one or more network elements. Embodiments include a computer program product 900 as depicted in FIG. 10 on a computer usable medium 1002 with computer program code logic 1004 containing instructions embodied in tangible media as an article of manufacture. Exemplary articles of manufacture for computer usable medium 1002 may include floppy diskettes, CD-ROMs, hard drives, universal serial bus (USB) flash drives, or any other computer-readable storage medium, wherein, when the computer program code logic 1004 is loaded into and executed by a computer, the computer becomes an apparatus for practicing the invention. Embodiments include computer program code logic 1004, for example, whether stored in a storage medium, loaded into and/or executed by a computer, or transmitted over some transmission medium, such as over electrical wiring or cabling, through fiber optics, or via electromagnetic radiation, wherein, when the computer program code logic 1004 is loaded into and executed by a computer, the computer becomes an apparatus for practicing the invention. When implemented on a general-purpose microprocessor, the computer program code logic 1004 segments configure the microprocessor to create specific logic circuits.
  • The flowchart and block diagrams in the Figures illustrate the architecture, functionality, and operation of possible implementations of systems, methods, and computer program products according to various embodiments of the present invention. In this regard, each block in the flowchart or block diagrams may represent a module, segment, or portion of code, which comprises one or more executable instructions for implementing the specified logical function(s). It should also be noted that, in some alternative implementations, the functions noted in the block may occur out of the order noted in the figures. For example, two blocks shown in succession may, in fact, be executed substantially concurrently, or the blocks may sometimes be executed in the reverse order, depending upon the functionality involved. It will also be noted that each block of the block diagrams and/or flowchart illustration, and combinations of blocks in the block diagrams and/or flowchart illustration, can be implemented by special purpose hardware-based systems that perform the specified functions or acts, or combinations of special purpose hardware and computer instructions.

Claims (20)

1. A computer implemented method for use by a transaction program for managing memory access to a shared memory location for transaction data of a first thread, the shared memory location being accessible by the first thread and a second thread, the method comprising:
executing at a computing system a string of instructions to complete a transaction of the first thread, beginning with one instruction of the string of instructions;
determining at the computing system whether the one instruction is part of an active atomic instruction group (AIG) of instructions associated with the transaction of the first thread;
locating a cache structure and a transaction table which together provide for entries in an active mode for the AIG, the locating in response to determining that the one instruction is part of an active AIG, an entry including an old data state stored in the cache structure and control information stored in the transaction table, and all storage locations inspected or modified by instructions of the active AIG remain pending until the computing system indicates that the storage locations should be committed; and
executing at the computing system a next instruction under a normal execution mode in response to determining that the one instruction is not part of an active AIG.
2. The method of claim 1, further comprising:
receiving a request to store the old data state;
determining whether to store the old state data in the cache structure or the transaction table;
storing the old data state in the cache structure in response to determining that the old data state should be stored in the cache structure; and
storing the old data state in the transaction table in response to determining that the old data state should be stored in the cache structure.
3. The method of claim 2, further comprising:
receiving a request to store the control information; and
storing the control information in the transaction table.
4. The method of claim 1, wherein the control information includes a physical address and a private-to-transaction (PTRAN) tag.
5. The method of claim 1, wherein the transaction table is located in main storage.
6. The method of claim 1, wherein the cache structure is located in cache storage.
7. A computer program product for use by a transaction program for managing memory access to a shared memory location for transaction data of a first thread, the shared memory location being accessible by the first thread and a second thread, the computer program product comprising:
a tangible storage medium readable by a processing circuit and storing instructions for execution by the processing circuit for performing a method comprising:
executing a string of instructions to complete a transaction of the first thread, beginning with one instruction of the string of instructions;
determining whether the one instruction is part of an active atomic instruction group (AIG) of instructions associated with the transaction of the first thread;
locating a cache structure and a transaction table which together provide for entries in an active mode for the AIG, the locating in response to determining that the one instruction is part of an active AIG, an entry including an old data state stored in the cache structure and control information stored in the transaction table, and all storage locations inspected or modified by instructions of the active AIG remain pending until the computing system indicates that the storage locations should be committed; and
executing a next instruction under a normal execution mode in response to determining that the one instruction is not part of an active AIG.
8. The computer program product of claim 7, wherein the method further comprises:
receiving a request to store the old data state;
determining whether to store the old data state in the cache structure or in the transaction table;
storing the old data state in the cache structure in response to determining that the old data state should be stored in the cache structure; and
storing the old data state in the transaction table in response to determining that the old data state should be stored in the cache structure.
9. The computer program product of claim 8, wherein it is determined that the old data state should be stored in the transaction table when the cache structure is full.
10. The computer program product of claim 8, wherein the method further comprises:
receiving a request to store the control information; and
storing the control information in the transaction table.
11. The computer program product of claim 7, wherein the control information includes a physical address and a private-to-transaction (PTRAN) tag.
12. The computer program product of claim 7, wherein each entry includes information related to a speculative state
13. The computer program product of claim 7, wherein the transaction table is located in main storage.
14. The computer program product of claim 7, wherein the transaction table is distinct from virtual memory page tables of the system.
15. The computer program product of claim 7, wherein the cache structure is located in cache storage.
16. A system for use by a transaction program for managing in a computer system memory access to a shared memory location for transaction data of a first thread, the shared memory location being accessible by the first thread and a second thread, the system comprising:
a computer memory; and
a processor in communication with the computer memory, the processor comprising an instruction fetching element for fetching instructions from memory and one or more execution elements for executing fetched instructions;
wherein the computer system is capable of performing a method comprising:
executing a string of instructions to complete a transaction of the first thread, beginning with one instruction of the string of instructions;
determining whether the one instruction is part of an active atomic instruction group (AIG) of instructions associated with the transaction of the first thread;
locating a cache structure and a transaction table which together provide for entries in an active mode for the AIG, the locating in response to determining that the one instruction is part of an active AIG, an entry including an old data state stored in the cache structure and control information stored in the transaction table, and all storage locations inspected or modified by instructions of the active AIG remain pending until the computing system indicates that the storage locations should be committed; and
executing a next instruction under a normal execution mode in response to determining that the one instruction is not part of an active AIG.
17. The system of claim 16, wherein the method further comprises:
receiving a request to store the old data state;
determining whether to store the old data state in the cache structure or in the transaction table;
storing the old data state in the cache structure in response to determining that the old data state should be stored in the cache structure; and
storing the old data state in the transaction table in response to determining that the old data state should be stored in the cache structure.
18. The system of claim 16, wherein the method further comprises:
receiving a request to store the control information; and
storing the control information in the transaction table.
19. The system of claim 16, wherein the control information includes a physical address and a private-to-transaction (PTRAN) tag.
20. The system of claim 16, wherein the transaction table is located in main storage and the cache structure is located in cache storage.
US12/550,844 2009-08-31 2009-08-31 Transactional memory system with efficient cache support Expired - Fee Related US8566524B2 (en)

Priority Applications (8)

Application Number Priority Date Filing Date Title
US12/550,844 US8566524B2 (en) 2009-08-31 2009-08-31 Transactional memory system with efficient cache support
DE112010003492.3T DE112010003492B4 (en) 2009-08-31 2010-08-24 Transaction storage system with efficient cache support
GB1203473.2A GB2484881B (en) 2009-08-31 2010-08-24 Transactional memory system with efficient cache support
JP2012526034A JP2013503379A (en) 2009-08-31 2010-08-24 Transactional memory system with efficient cache support
PCT/EP2010/062302 WO2011023679A1 (en) 2009-08-31 2010-08-24 Transactional memory system with efficient cache support
CN201080038491.9A CN102483704B (en) 2009-08-31 2010-08-24 There is the transactional memory system that efficient high-speed cache is supported
US13/656,778 US8667231B2 (en) 2009-08-31 2012-10-22 Transactional memory system with efficient cache support
US14/060,662 US8738862B2 (en) 2009-08-31 2013-10-23 Transactional memory system with efficient cache support

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
US12/550,844 US8566524B2 (en) 2009-08-31 2009-08-31 Transactional memory system with efficient cache support

Related Child Applications (1)

Application Number Title Priority Date Filing Date
US13/656,778 Continuation US8667231B2 (en) 2009-08-31 2012-10-22 Transactional memory system with efficient cache support

Publications (2)

Publication Number Publication Date
US20110055483A1 true US20110055483A1 (en) 2011-03-03
US8566524B2 US8566524B2 (en) 2013-10-22

Family

ID=43037842

Family Applications (3)

Application Number Title Priority Date Filing Date
US12/550,844 Expired - Fee Related US8566524B2 (en) 2009-08-31 2009-08-31 Transactional memory system with efficient cache support
US13/656,778 Expired - Fee Related US8667231B2 (en) 2009-08-31 2012-10-22 Transactional memory system with efficient cache support
US14/060,662 Expired - Fee Related US8738862B2 (en) 2009-08-31 2013-10-23 Transactional memory system with efficient cache support

Family Applications After (2)

Application Number Title Priority Date Filing Date
US13/656,778 Expired - Fee Related US8667231B2 (en) 2009-08-31 2012-10-22 Transactional memory system with efficient cache support
US14/060,662 Expired - Fee Related US8738862B2 (en) 2009-08-31 2013-10-23 Transactional memory system with efficient cache support

Country Status (6)

Country Link
US (3) US8566524B2 (en)
JP (1) JP2013503379A (en)
CN (1) CN102483704B (en)
DE (1) DE112010003492B4 (en)
GB (1) GB2484881B (en)
WO (1) WO2011023679A1 (en)

Cited By (14)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20110179230A1 (en) * 2010-01-15 2011-07-21 Sun Microsystems, Inc. Method of read-set and write-set management by distinguishing between shared and non-shared memory regions
CN102722401A (en) * 2012-04-25 2012-10-10 华中科技大学 Pseudo associated multi-version data management method for hardware transaction memory system
US20130205284A1 (en) * 2012-02-02 2013-08-08 Dhruva Chakrabarti Ownership acquire policy selection
US20130262424A1 (en) * 2012-03-30 2013-10-03 International Business Machines Corporation Database system transaction management
US20140280892A1 (en) * 2013-03-15 2014-09-18 BlueStripe Software, Inc. Methods and Computer Program Products for Transaction Analysis of Network Traffic in a Network Device
US20150039868A1 (en) * 2012-06-15 2015-02-05 International Business Machines Corporation Intra-instructional transaction abort handling
US9015419B2 (en) 2012-06-15 2015-04-21 International Business Machines Corporation Avoiding aborts due to associativity conflicts in a transactional environment
US9104427B2 (en) 2007-05-14 2015-08-11 International Business Machines Corporation Computing system with transactional memory using millicode assists
US9223687B2 (en) 2012-06-15 2015-12-29 International Business Machines Corporation Determining the logical address of a transaction abort
US9262320B2 (en) 2012-06-15 2016-02-16 International Business Machines Corporation Tracking transactional execution footprint
US9298469B2 (en) 2012-06-15 2016-03-29 International Business Machines Corporation Management of multiple nested transactions
US9298631B2 (en) 2012-06-15 2016-03-29 International Business Machines Corporation Managing transactional and non-transactional store observability
US20200065103A1 (en) * 2018-08-23 2020-02-27 International Business Machines Corporation Mechanism for completing atomic instructions in a microprocessor
US11349715B2 (en) * 2019-02-01 2022-05-31 Arista Networks, Inc. Method and system for consistent policy enforcement through fabric offloading

Families Citing this family (18)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US9430166B2 (en) * 2012-08-10 2016-08-30 International Business Machines Corporation Interaction of transactional storage accesses with other atomic semantics
US9977683B2 (en) * 2012-12-14 2018-05-22 Facebook, Inc. De-coupling user interface software object input from output
US9384037B2 (en) * 2013-03-14 2016-07-05 Intel Corporation Memory object reference count management with improved scalability
GB2516092A (en) * 2013-07-11 2015-01-14 Ibm Method and system for implementing a bit array in a cache line
GB2516091A (en) * 2013-07-11 2015-01-14 Ibm Method and system for implementing a dynamic array data structure in a cache line
US10015049B2 (en) 2014-02-13 2018-07-03 Sap Se Configuration of network devices in a network
US9384133B2 (en) 2014-05-30 2016-07-05 International Business Machines Corporation Synchronizing updates of page table status indicators and performing bulk operations
US9785554B2 (en) 2014-05-30 2017-10-10 International Business Machines Corporation Synchronizing updates of page table status indicators in a multiprocessing environment
US9588893B2 (en) 2014-11-10 2017-03-07 International Business Machines Corporation Store cache for transactional memory
US9436608B1 (en) 2015-02-12 2016-09-06 International Business Machines Corporation Memory nest efficiency with cache demand generation
US10210200B2 (en) * 2015-10-01 2019-02-19 Futurewei Technologies, Inc. Action-based routing of a transaction in an online transaction processing system
US10255071B2 (en) * 2015-10-14 2019-04-09 International Business Machines Corporation Method and apparatus for managing a speculative transaction in a processing unit
US9514006B1 (en) 2015-12-16 2016-12-06 International Business Machines Corporation Transaction tracking within a microprocessor
CN107025130B (en) 2016-01-29 2021-09-03 华为技术有限公司 Processing node, computer system and transaction conflict detection method
US11947978B2 (en) 2017-02-23 2024-04-02 Ab Initio Technology Llc Dynamic execution of parameterized applications for the processing of keyed network data streams
US10831509B2 (en) 2017-02-23 2020-11-10 Ab Initio Technology Llc Dynamic execution of parameterized applications for the processing of keyed network data streams
US11614937B1 (en) * 2021-12-30 2023-03-28 Apple Inc. Accelerator circuit for mathematical operations with immediate values table
CN117472803B (en) * 2023-12-28 2024-03-29 北京微核芯科技有限公司 Atomic instruction execution method and device and electronic equipment

Citations (76)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US3686641A (en) * 1970-09-30 1972-08-22 Burroughs Corp Multiprogram digital processing system with interprogram communication
US5428761A (en) * 1992-03-12 1995-06-27 Digital Equipment Corporation System for achieving atomic non-sequential multi-word operations in shared memory
US5438761A (en) * 1993-09-16 1995-08-08 Krumszyn; Luba M. Rotatable carpenter's level
US5553291A (en) * 1992-09-16 1996-09-03 Hitachi, Ltd. Virtual machine control method and virtual machine system
US5701432A (en) * 1995-10-13 1997-12-23 Sun Microsystems, Inc. Multi-threaded processing system having a cache that is commonly accessible to each thread
US5742785A (en) * 1992-12-18 1998-04-21 International Business Machines Corporation Posting multiple reservations with a conditional store atomic operations in a multiprocessing environment
US5946711A (en) * 1997-05-30 1999-08-31 Oracle Corporation System for locking data in a shared cache
US5963922A (en) * 1996-02-29 1999-10-05 Helmering; Paul F. System for graphically mapping related elements of a plurality of transactions
US5974438A (en) * 1996-12-31 1999-10-26 Compaq Computer Corporation Scoreboard for cached multi-thread processes
US6035379A (en) * 1997-01-09 2000-03-07 Microsoft Corporation Transaction processing for user data employing both logging and shadow copying
US6052695A (en) * 1995-02-28 2000-04-18 Ntt Data Communications Systems Corporation Accurate completion of transaction in cooperative type distributed system and recovery procedure for same
US6360220B1 (en) * 1998-08-04 2002-03-19 Microsoft Corporation Lock-free methods and systems for accessing and storing information in an indexed computer data structure having modifiable entries
US6360231B1 (en) * 1999-02-26 2002-03-19 Hewlett-Packard Company Transactional memory for distributed shared memory multi-processor computer systems
US6381676B2 (en) * 1998-05-27 2002-04-30 Hewlett-Packard Company Cache management for a multi-threaded processor
US20020072071A1 (en) * 1997-11-17 2002-06-13 Rosemarie Kientsch-Engel Method for the detection of psa-act complexes
US20020078308A1 (en) * 2000-12-14 2002-06-20 International Business Machines Corporation Symmetric multi-processing system
US20020103804A1 (en) * 2001-01-16 2002-08-01 Newframe Corporation Ltd. Sharing live data with a non cooperative DBMS
US20020143847A1 (en) * 2001-03-30 2002-10-03 Smith Gary Stephen Method of mixed workload high performance scheduling
US20020161815A1 (en) * 2001-02-22 2002-10-31 International Business Machines Corporation Mechanism for executing nested transactions in an execution environment supporting flat transactions only
US20020199069A1 (en) * 2001-06-07 2002-12-26 Joseph Anish Pulikottil Method of memory management in a multi-threaded environment and program storage device
US6510498B1 (en) * 1998-06-30 2003-01-21 Sun Microsystems, Inc. Method and apparatus for memory allocation in a multi-threaded virtual machine
US20030066056A1 (en) * 2001-09-28 2003-04-03 Petersen Paul M. Method and apparatus for accessing thread-privatized global storage objects
US20030079094A1 (en) * 2001-10-19 2003-04-24 Ravi Rajwar Concurrent execution of critical sections by eliding ownership of locks
US20030084038A1 (en) * 2001-11-01 2003-05-01 Verisign, Inc. Transactional memory manager
US6611906B1 (en) * 2000-04-30 2003-08-26 Hewlett-Packard Development Company, L.P. Self-organizing hardware processing entities that cooperate to execute requests
US20030204682A1 (en) * 2002-04-26 2003-10-30 Tomoyuki Ueno Multiprocessor apparatus
US6651146B1 (en) * 2000-02-24 2003-11-18 International Business Machines Corporation Method and apparatus for managing access contention to a linear list without the use of locks
US20040015642A1 (en) * 2002-07-16 2004-01-22 Sun Microsystems, Inc. Software transactional memory for dynamically sizable shared data structures
US6738837B1 (en) * 2001-02-02 2004-05-18 Cradle Technologies, Inc. Digital system with split transaction memory access
US6748505B1 (en) * 2000-07-11 2004-06-08 Intel Corporation Efficient system bus architecture for memory and register transfers
US20040152948A1 (en) * 2003-02-04 2004-08-05 Kim Ee Do Auxiliary ring for genitals
US20040162948A1 (en) * 2003-02-13 2004-08-19 Marc Tremblay Method and apparatus for avoiding locks by speculatively executing critical sections
US20040187127A1 (en) * 2003-02-25 2004-09-23 Albert Gondi Systems and methods for transaction chaining
US20040187115A1 (en) * 2003-02-13 2004-09-23 Marc Tremblay Selectively monitoring stores to support transactional program execution
US20040187116A1 (en) * 2003-02-13 2004-09-23 Marc Tremblay Selectively monitoring loads to support transactional program execution
US6826757B2 (en) * 2000-04-18 2004-11-30 Sun Microsystems, Inc. Lock-free implementation of concurrent shared object with dynamic node allocation and distinguishing pointer value
US20040267828A1 (en) * 2003-06-30 2004-12-30 Zwilling Michael J Transaction consistent copy-on-write database
US20050060559A1 (en) * 2003-09-12 2005-03-17 Mckenney Paul E. Utilizing hardware transactional approach to execute code after initially utilizing software locking by employing pseudo-transactions
US6874065B1 (en) * 1999-02-26 2005-03-29 Hewlett-Packard Development Company, L.P. Cache-flushing engine for distributed shared memory multi-processor computer systems
US6880071B2 (en) * 2001-04-09 2005-04-12 Sun Microsystems, Inc. Selective signalling of later reserve location memory fault in compound compare and swap
US20050086446A1 (en) * 2003-10-04 2005-04-21 Mckenney Paul E. Utilizing software locking approach to execute code upon failure of hardware transactional approach
US20050097296A1 (en) * 2003-11-05 2005-05-05 International Business Machines Corporation Memory allocation
US20050131947A1 (en) * 2003-12-12 2005-06-16 Udo Laub Data processing system and method
US20050138298A1 (en) * 2003-12-18 2005-06-23 Downer Wayne A. Secondary path for coherency controller to interconnection network(s)
US6938130B2 (en) * 2003-02-13 2005-08-30 Sun Microsystems Inc. Method and apparatus for delaying interfering accesses from other threads during transactional program execution
US20050216625A1 (en) * 2004-03-09 2005-09-29 Smith Zachary S Suppressing production of bus transactions by a virtual-bus interface
US6981110B1 (en) * 2001-10-23 2005-12-27 Stephen Waller Melvin Hardware enforced virtual sequentiality
US7000234B1 (en) * 2000-01-20 2006-02-14 Sun Microsystems, Inc. Maintaining a double-ended queue as a linked-list with sentinel nodes and delete flags with concurrent non-blocking insert and remove operations using a double compare-and-swap primitive
US7017160B2 (en) * 2000-04-18 2006-03-21 Sun Microsystems, Inc. Concurrent shared object implemented using a linked-list with amortized node allocation
US20060085591A1 (en) * 2004-09-30 2006-04-20 Sanjeev Kumar Hybrid hardware and software implementation of transactional memory access
US20060085588A1 (en) * 2004-09-30 2006-04-20 Ravi Rajwar Transactional memory execution utilizing virtual memory
US7039794B2 (en) * 1999-12-09 2006-05-02 Intel Corporation Method and apparatus for processing an event occurrence for a least one thread within a multithreaded processor
US20060173885A1 (en) * 2002-07-16 2006-08-03 Sun Microsystems, Inc. Obstruction-free data structures and mechanisms with separable and/or substitutable contention management mechanisms
US7089374B2 (en) * 2003-02-13 2006-08-08 Sun Microsystems, Inc. Selectively unmarking load-marked cache lines during transactional program execution
US20060206692A1 (en) * 2005-02-04 2006-09-14 Mips Technologies, Inc. Instruction dispatch scheduler employing round-robin apparatus supporting multiple thread priorities for use in multithreading microprocessor
US20060212456A1 (en) * 2005-03-18 2006-09-21 Microsoft Corporation System and method for updating objects in a multi-threaded computing environment
US7117502B1 (en) * 2000-11-10 2006-10-03 Sun Microsystems, Inc. Linked-list implementation of a data structure with concurrent non-blocking insert and remove operations
US20060282476A1 (en) * 2005-06-10 2006-12-14 International Business Machines Corporation System and method using atomic sets of memory locations
US20060288173A1 (en) * 2005-06-20 2006-12-21 Xiaowei Shen Architecture support of best-effort atomic transactions for multiprocessor systems
US20060294326A1 (en) * 2005-06-23 2006-12-28 Jacobson Quinn A Primitives to enhance thread-level speculation
US20070028056A1 (en) * 2005-07-29 2007-02-01 Microsoft Corporation Direct-update software transactional memory
US20070028058A1 (en) * 2005-08-01 2007-02-01 Bradley David E System for determining the position of an element in memory
US7187062B2 (en) * 2004-04-14 2007-03-06 Avago Technologies Wireless Ip (Singapore) Pte. Ltd. Coupler detector
US20070186056A1 (en) * 2006-02-07 2007-08-09 Bratin Saha Hardware acceleration for a software transactional memory system
US20070239942A1 (en) * 2006-03-30 2007-10-11 Ravi Rajwar Transactional memory virtualization
US20070282838A1 (en) * 2006-05-30 2007-12-06 Sun Microsystems, Inc. Fine-locked transactional memory
US20070300238A1 (en) * 2006-06-21 2007-12-27 Leonidas Kontothanassis Adapting software programs to operate in software transactional memory environments
US20080022054A1 (en) * 2006-06-28 2008-01-24 Ben Hertzberg Object based conflict detection in a software transactional memory
US20080065864A1 (en) * 2006-09-07 2008-03-13 Haitham Akkary Post-retire scheme for tracking tentative accesses during transactional execution
US20080288238A1 (en) * 2007-05-14 2008-11-20 International Business Machines Corporation Computing System with Guest Code Support of Transactional Memory
US20080288727A1 (en) * 2007-05-14 2008-11-20 International Business Machines Corporation Computing System with Optimized Support for Transactional Memory
US20080288730A1 (en) * 2007-05-14 2008-11-20 International Business Machines Corporation Transactional Memory System Which Employs Thread Assists Using Address History Tables
US20090172292A1 (en) * 2007-12-27 2009-07-02 Bratin Saha Accelerating software lookups by using buffered or ephemeral stores
US7689788B2 (en) * 2007-01-23 2010-03-30 Sun Microsystems, Inc. System and method for executing transactions
US7730286B2 (en) * 2005-12-30 2010-06-01 Intel Corporation Software assisted nested hardware transactions
US7865701B1 (en) * 2004-09-14 2011-01-04 Azul Systems, Inc. Concurrent atomic execution

Family Cites Families (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7178062B1 (en) 2003-03-12 2007-02-13 Sun Microsystems, Inc. Methods and apparatus for executing code while avoiding interference
US6922658B2 (en) * 2003-03-31 2005-07-26 International Business Machines Corporation Method and system for testing the validity of shared data in a multiprocessing system
US7552317B2 (en) * 2004-05-04 2009-06-23 Sun Microsystems, Inc. Methods and systems for grouping instructions using memory barrier instructions
US8799882B2 (en) 2005-12-07 2014-08-05 Microsoft Corporation Compiler support for optimizing decomposed software transactional memory operations

Patent Citations (86)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US3686641A (en) * 1970-09-30 1972-08-22 Burroughs Corp Multiprogram digital processing system with interprogram communication
US5428761A (en) * 1992-03-12 1995-06-27 Digital Equipment Corporation System for achieving atomic non-sequential multi-word operations in shared memory
US5553291A (en) * 1992-09-16 1996-09-03 Hitachi, Ltd. Virtual machine control method and virtual machine system
US5742785A (en) * 1992-12-18 1998-04-21 International Business Machines Corporation Posting multiple reservations with a conditional store atomic operations in a multiprocessing environment
US5438761A (en) * 1993-09-16 1995-08-08 Krumszyn; Luba M. Rotatable carpenter's level
US6052695A (en) * 1995-02-28 2000-04-18 Ntt Data Communications Systems Corporation Accurate completion of transaction in cooperative type distributed system and recovery procedure for same
US5701432A (en) * 1995-10-13 1997-12-23 Sun Microsystems, Inc. Multi-threaded processing system having a cache that is commonly accessible to each thread
US5963922A (en) * 1996-02-29 1999-10-05 Helmering; Paul F. System for graphically mapping related elements of a plurality of transactions
US5974438A (en) * 1996-12-31 1999-10-26 Compaq Computer Corporation Scoreboard for cached multi-thread processes
US6035379A (en) * 1997-01-09 2000-03-07 Microsoft Corporation Transaction processing for user data employing both logging and shadow copying
US6078999A (en) * 1997-01-09 2000-06-20 Microsoft Corporation Recovering from a failure using a transaction table in connection with shadow copy transaction processing
US5946711A (en) * 1997-05-30 1999-08-31 Oracle Corporation System for locking data in a shared cache
US20020072071A1 (en) * 1997-11-17 2002-06-13 Rosemarie Kientsch-Engel Method for the detection of psa-act complexes
US6381676B2 (en) * 1998-05-27 2002-04-30 Hewlett-Packard Company Cache management for a multi-threaded processor
US6510498B1 (en) * 1998-06-30 2003-01-21 Sun Microsystems, Inc. Method and apparatus for memory allocation in a multi-threaded virtual machine
US6360220B1 (en) * 1998-08-04 2002-03-19 Microsoft Corporation Lock-free methods and systems for accessing and storing information in an indexed computer data structure having modifiable entries
US20020073071A1 (en) * 1999-02-26 2002-06-13 Fong Pong Transactional memory for distributed shared memory multi-processor computer systems
US6874065B1 (en) * 1999-02-26 2005-03-29 Hewlett-Packard Development Company, L.P. Cache-flushing engine for distributed shared memory multi-processor computer systems
US6360231B1 (en) * 1999-02-26 2002-03-19 Hewlett-Packard Company Transactional memory for distributed shared memory multi-processor computer systems
US6880045B2 (en) * 1999-02-26 2005-04-12 Hewlett-Packard Development Company, L.P. Multi-processor computer system with transactional memory
US7039794B2 (en) * 1999-12-09 2006-05-02 Intel Corporation Method and apparatus for processing an event occurrence for a least one thread within a multithreaded processor
US7000234B1 (en) * 2000-01-20 2006-02-14 Sun Microsystems, Inc. Maintaining a double-ended queue as a linked-list with sentinel nodes and delete flags with concurrent non-blocking insert and remove operations using a double compare-and-swap primitive
US6651146B1 (en) * 2000-02-24 2003-11-18 International Business Machines Corporation Method and apparatus for managing access contention to a linear list without the use of locks
US7017160B2 (en) * 2000-04-18 2006-03-21 Sun Microsystems, Inc. Concurrent shared object implemented using a linked-list with amortized node allocation
US6826757B2 (en) * 2000-04-18 2004-11-30 Sun Microsystems, Inc. Lock-free implementation of concurrent shared object with dynamic node allocation and distinguishing pointer value
US6611906B1 (en) * 2000-04-30 2003-08-26 Hewlett-Packard Development Company, L.P. Self-organizing hardware processing entities that cooperate to execute requests
US6748505B1 (en) * 2000-07-11 2004-06-08 Intel Corporation Efficient system bus architecture for memory and register transfers
US7117502B1 (en) * 2000-11-10 2006-10-03 Sun Microsystems, Inc. Linked-list implementation of a data structure with concurrent non-blocking insert and remove operations
US20020078308A1 (en) * 2000-12-14 2002-06-20 International Business Machines Corporation Symmetric multi-processing system
US20020103804A1 (en) * 2001-01-16 2002-08-01 Newframe Corporation Ltd. Sharing live data with a non cooperative DBMS
US6738837B1 (en) * 2001-02-02 2004-05-18 Cradle Technologies, Inc. Digital system with split transaction memory access
US20020161815A1 (en) * 2001-02-22 2002-10-31 International Business Machines Corporation Mechanism for executing nested transactions in an execution environment supporting flat transactions only
US20020143847A1 (en) * 2001-03-30 2002-10-03 Smith Gary Stephen Method of mixed workload high performance scheduling
US6880071B2 (en) * 2001-04-09 2005-04-12 Sun Microsystems, Inc. Selective signalling of later reserve location memory fault in compound compare and swap
US20020199069A1 (en) * 2001-06-07 2002-12-26 Joseph Anish Pulikottil Method of memory management in a multi-threaded environment and program storage device
US20030066056A1 (en) * 2001-09-28 2003-04-03 Petersen Paul M. Method and apparatus for accessing thread-privatized global storage objects
US20030079094A1 (en) * 2001-10-19 2003-04-24 Ravi Rajwar Concurrent execution of critical sections by eliding ownership of locks
US7107402B1 (en) * 2001-10-23 2006-09-12 Stephen Waller Melvin Packet processor memory interface
US6981110B1 (en) * 2001-10-23 2005-12-27 Stephen Waller Melvin Hardware enforced virtual sequentiality
US20030084038A1 (en) * 2001-11-01 2003-05-01 Verisign, Inc. Transactional memory manager
US20030204682A1 (en) * 2002-04-26 2003-10-30 Tomoyuki Ueno Multiprocessor apparatus
US20080098181A1 (en) * 2002-07-16 2008-04-24 Moir Mark S Software Transactional Memory for Dynamically Sizable Shared Data Structures
US20060173885A1 (en) * 2002-07-16 2006-08-03 Sun Microsystems, Inc. Obstruction-free data structures and mechanisms with separable and/or substitutable contention management mechanisms
US20040034673A1 (en) * 2002-07-16 2004-02-19 Sun Microsystems, Inc. Obstruction-free mechanism for atomic update of multiple non-contiguous locations in shared memory
US20040015642A1 (en) * 2002-07-16 2004-01-22 Sun Microsystems, Inc. Software transactional memory for dynamically sizable shared data structures
US20040152948A1 (en) * 2003-02-04 2004-08-05 Kim Ee Do Auxiliary ring for genitals
US6862664B2 (en) * 2003-02-13 2005-03-01 Sun Microsystems, Inc. Method and apparatus for avoiding locks by speculatively executing critical sections
US20040162948A1 (en) * 2003-02-13 2004-08-19 Marc Tremblay Method and apparatus for avoiding locks by speculatively executing critical sections
US6938130B2 (en) * 2003-02-13 2005-08-30 Sun Microsystems Inc. Method and apparatus for delaying interfering accesses from other threads during transactional program execution
US7089374B2 (en) * 2003-02-13 2006-08-08 Sun Microsystems, Inc. Selectively unmarking load-marked cache lines during transactional program execution
US20040187116A1 (en) * 2003-02-13 2004-09-23 Marc Tremblay Selectively monitoring loads to support transactional program execution
US20060200632A1 (en) * 2003-02-13 2006-09-07 Marc Tremblay Selectively unmarking load-marked cache lines during transactional program execution
US20040187115A1 (en) * 2003-02-13 2004-09-23 Marc Tremblay Selectively monitoring stores to support transactional program execution
US20040187127A1 (en) * 2003-02-25 2004-09-23 Albert Gondi Systems and methods for transaction chaining
US20040267828A1 (en) * 2003-06-30 2004-12-30 Zwilling Michael J Transaction consistent copy-on-write database
US20050060559A1 (en) * 2003-09-12 2005-03-17 Mckenney Paul E. Utilizing hardware transactional approach to execute code after initially utilizing software locking by employing pseudo-transactions
US20050086446A1 (en) * 2003-10-04 2005-04-21 Mckenney Paul E. Utilizing software locking approach to execute code upon failure of hardware transactional approach
US20050097296A1 (en) * 2003-11-05 2005-05-05 International Business Machines Corporation Memory allocation
US20050131947A1 (en) * 2003-12-12 2005-06-16 Udo Laub Data processing system and method
US20050138298A1 (en) * 2003-12-18 2005-06-23 Downer Wayne A. Secondary path for coherency controller to interconnection network(s)
US20050216625A1 (en) * 2004-03-09 2005-09-29 Smith Zachary S Suppressing production of bus transactions by a virtual-bus interface
US7187062B2 (en) * 2004-04-14 2007-03-06 Avago Technologies Wireless Ip (Singapore) Pte. Ltd. Coupler detector
US7865701B1 (en) * 2004-09-14 2011-01-04 Azul Systems, Inc. Concurrent atomic execution
US20060085591A1 (en) * 2004-09-30 2006-04-20 Sanjeev Kumar Hybrid hardware and software implementation of transactional memory access
US20060085588A1 (en) * 2004-09-30 2006-04-20 Ravi Rajwar Transactional memory execution utilizing virtual memory
US20060206692A1 (en) * 2005-02-04 2006-09-14 Mips Technologies, Inc. Instruction dispatch scheduler employing round-robin apparatus supporting multiple thread priorities for use in multithreading microprocessor
US20060212456A1 (en) * 2005-03-18 2006-09-21 Microsoft Corporation System and method for updating objects in a multi-threaded computing environment
US20060282476A1 (en) * 2005-06-10 2006-12-14 International Business Machines Corporation System and method using atomic sets of memory locations
US20060288173A1 (en) * 2005-06-20 2006-12-21 Xiaowei Shen Architecture support of best-effort atomic transactions for multiprocessor systems
US7350034B2 (en) * 2005-06-20 2008-03-25 International Business Machines Corporation Architecture support of best-effort atomic transactions for multiprocessor systems
US20060294326A1 (en) * 2005-06-23 2006-12-28 Jacobson Quinn A Primitives to enhance thread-level speculation
US7536517B2 (en) * 2005-07-29 2009-05-19 Microsoft Corporation Direct-update software transactional memory
US20070028056A1 (en) * 2005-07-29 2007-02-01 Microsoft Corporation Direct-update software transactional memory
US20070028058A1 (en) * 2005-08-01 2007-02-01 Bradley David E System for determining the position of an element in memory
US7730286B2 (en) * 2005-12-30 2010-06-01 Intel Corporation Software assisted nested hardware transactions
US20070186056A1 (en) * 2006-02-07 2007-08-09 Bratin Saha Hardware acceleration for a software transactional memory system
US20070239942A1 (en) * 2006-03-30 2007-10-11 Ravi Rajwar Transactional memory virtualization
US20070282838A1 (en) * 2006-05-30 2007-12-06 Sun Microsystems, Inc. Fine-locked transactional memory
US20070300238A1 (en) * 2006-06-21 2007-12-27 Leonidas Kontothanassis Adapting software programs to operate in software transactional memory environments
US20080022054A1 (en) * 2006-06-28 2008-01-24 Ben Hertzberg Object based conflict detection in a software transactional memory
US20080065864A1 (en) * 2006-09-07 2008-03-13 Haitham Akkary Post-retire scheme for tracking tentative accesses during transactional execution
US7689788B2 (en) * 2007-01-23 2010-03-30 Sun Microsystems, Inc. System and method for executing transactions
US20080288730A1 (en) * 2007-05-14 2008-11-20 International Business Machines Corporation Transactional Memory System Which Employs Thread Assists Using Address History Tables
US20080288727A1 (en) * 2007-05-14 2008-11-20 International Business Machines Corporation Computing System with Optimized Support for Transactional Memory
US20080288238A1 (en) * 2007-05-14 2008-11-20 International Business Machines Corporation Computing System with Guest Code Support of Transactional Memory
US20090172292A1 (en) * 2007-12-27 2009-07-02 Bratin Saha Accelerating software lookups by using buffered or ephemeral stores

Cited By (26)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US9104427B2 (en) 2007-05-14 2015-08-11 International Business Machines Corporation Computing system with transactional memory using millicode assists
US8209499B2 (en) * 2010-01-15 2012-06-26 Oracle America, Inc. Method of read-set and write-set management by distinguishing between shared and non-shared memory regions
US20110179230A1 (en) * 2010-01-15 2011-07-21 Sun Microsystems, Inc. Method of read-set and write-set management by distinguishing between shared and non-shared memory regions
US20130205284A1 (en) * 2012-02-02 2013-08-08 Dhruva Chakrabarti Ownership acquire policy selection
US20130262424A1 (en) * 2012-03-30 2013-10-03 International Business Machines Corporation Database system transaction management
US10885015B2 (en) 2012-03-30 2021-01-05 International Business Machines Corporation Database system transaction management
US9870384B2 (en) * 2012-03-30 2018-01-16 International Business Machines Corporation Database system transaction management
CN102722401A (en) * 2012-04-25 2012-10-10 华中科技大学 Pseudo associated multi-version data management method for hardware transaction memory system
US9286076B2 (en) * 2012-06-15 2016-03-15 International Business Machines Corporation Intra-instructional transaction abort handling
US20150039868A1 (en) * 2012-06-15 2015-02-05 International Business Machines Corporation Intra-instructional transaction abort handling
US9223687B2 (en) 2012-06-15 2015-12-29 International Business Machines Corporation Determining the logical address of a transaction abort
US9262320B2 (en) 2012-06-15 2016-02-16 International Business Machines Corporation Tracking transactional execution footprint
US9015419B2 (en) 2012-06-15 2015-04-21 International Business Machines Corporation Avoiding aborts due to associativity conflicts in a transactional environment
US9483276B2 (en) 2012-06-15 2016-11-01 International Business Machines Corporation Management of shared transactional resources
US9298469B2 (en) 2012-06-15 2016-03-29 International Business Machines Corporation Management of multiple nested transactions
US9298631B2 (en) 2012-06-15 2016-03-29 International Business Machines Corporation Managing transactional and non-transactional store observability
US9311101B2 (en) 2012-06-15 2016-04-12 International Business Machines Corporation Intra-instructional transaction abort handling
US9378143B2 (en) 2012-06-15 2016-06-28 International Business Machines Corporation Managing transactional and non-transactional store observability
US9400657B2 (en) 2012-06-15 2016-07-26 International Business Machines Corporation Dynamic management of a transaction retry indication
US20160080233A1 (en) * 2013-03-15 2016-03-17 Microsoft Technology Licensing, Llc Methods and Computer Program Products for Transaction Analysis of Network Traffic in a Network Device
US9722900B2 (en) * 2013-03-15 2017-08-01 Microsoft Technology Licensing, Llc Methods and computer program products for transaction analysis of network traffic in a network device
US9197520B2 (en) * 2013-03-15 2015-11-24 Microsoft Technology Licensing, Llc Methods and computer program products for transaction analysis of network traffic in a network device
US20140280892A1 (en) * 2013-03-15 2014-09-18 BlueStripe Software, Inc. Methods and Computer Program Products for Transaction Analysis of Network Traffic in a Network Device
US20200065103A1 (en) * 2018-08-23 2020-02-27 International Business Machines Corporation Mechanism for completing atomic instructions in a microprocessor
US10831489B2 (en) * 2018-08-23 2020-11-10 International Business Machines Corporation Mechanism for completing atomic instructions in a microprocessor
US11349715B2 (en) * 2019-02-01 2022-05-31 Arista Networks, Inc. Method and system for consistent policy enforcement through fabric offloading

Also Published As

Publication number Publication date
US20130046937A1 (en) 2013-02-21
DE112010003492B4 (en) 2019-04-25
US20140047186A1 (en) 2014-02-13
JP2013503379A (en) 2013-01-31
US8738862B2 (en) 2014-05-27
GB201203473D0 (en) 2012-04-11
CN102483704B (en) 2015-08-26
CN102483704A (en) 2012-05-30
GB2484881B (en) 2016-10-19
US8566524B2 (en) 2013-10-22
DE112010003492T5 (en) 2012-09-20
US8667231B2 (en) 2014-03-04
GB2484881A (en) 2012-04-25
WO2011023679A1 (en) 2011-03-03

Similar Documents

Publication Publication Date Title
US8738862B2 (en) Transactional memory system with efficient cache support
US8321637B2 (en) Computing system with optimized support for transactional memory
US9009452B2 (en) Computing system with transactional memory using millicode assists
US8095741B2 (en) Transactional memory computing system with support for chained transactions
US8095750B2 (en) Transactional memory system with fast processing of common conflicts
US8117403B2 (en) Transactional memory system which employs thread assists using address history tables
US8688920B2 (en) Computing system with guest code support of transactional memory
US8200909B2 (en) Hardware acceleration of a write-buffering software transactional memory
US8190859B2 (en) Critical section detection and prediction mechanism for hardware lock elision
US8521965B2 (en) Hardware acceleration for a software transactional memory system
US8255626B2 (en) Atomic commit predicated on consistency of watches
US20070050592A1 (en) Method and apparatus for accessing misaligned data streams
US20060026371A1 (en) Method and apparatus for implementing memory order models with order vectors
US20170060755A1 (en) Method for load instruction speculation past older store instructions

Legal Events

Date Code Title Description
AS Assignment

Owner name: INTERNATIONAL BUSINESS MACHINES CORPORATION, NEW Y

Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:HELLER, THOMAS J., JR.;REEL/FRAME:023171/0440

Effective date: 20090831

REMI Maintenance fee reminder mailed
LAPS Lapse for failure to pay maintenance fees

Free format text: PATENT EXPIRED FOR FAILURE TO PAY MAINTENANCE FEES (ORIGINAL EVENT CODE: EXP.)

STCH Information on status: patent discontinuation

Free format text: PATENT EXPIRED DUE TO NONPAYMENT OF MAINTENANCE FEES UNDER 37 CFR 1.362

FP Lapsed due to failure to pay maintenance fee

Effective date: 20171022