WO2005062168A2 - User-programmable low-overhead multithreading - Google Patents

User-programmable low-overhead multithreading Download PDF

Info

Publication number
WO2005062168A2
WO2005062168A2 PCT/US2004/038987 US2004038987W WO2005062168A2 WO 2005062168 A2 WO2005062168 A2 WO 2005062168A2 US 2004038987 W US2004038987 W US 2004038987W WO 2005062168 A2 WO2005062168 A2 WO 2005062168A2
Authority
WO
WIPO (PCT)
Prior art keywords
thread
trigger
instruction
user
event
Prior art date
Application number
PCT/US2004/038987
Other languages
French (fr)
Other versions
WO2005062168A3 (en
Inventor
Perry Wang
Hong Wang
John Shen
Ashok Seshadri
Anthony Mah
William Greene
Ravi Chandra
Piyush Desai
Steve Shih-Wei Liao
Original Assignee
Intel Corporation
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 Intel Corporation filed Critical Intel Corporation
Priority to DE112004002296T priority Critical patent/DE112004002296B4/en
Priority to CN200480041283.9A priority patent/CN101218561B/en
Publication of WO2005062168A2 publication Critical patent/WO2005062168A2/en
Publication of WO2005062168A3 publication Critical patent/WO2005062168A3/en

Links

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/46Multiprogramming arrangements
    • G06F9/48Program initiating; Program switching, e.g. by interrupt
    • G06F9/4806Task transfer initiation or dispatching
    • G06F9/4843Task transfer initiation or dispatching by program, e.g. task dispatcher, supervisor, operating system
    • 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/3009Thread control instructions
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/30Arrangements for executing machine instructions, e.g. instruction decode
    • G06F9/38Concurrent instruction execution, e.g. pipeline, look ahead
    • G06F9/3836Instruction issuing, e.g. dynamic instruction scheduling or out of order instruction execution
    • G06F9/3851Instruction issuing, e.g. dynamic instruction scheduling or out of order instruction execution from multiple instruction streams, e.g. multistreaming
    • 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/54Interprogram communication
    • G06F9/542Event management; Broadcasting; Multicasting; Notifications

Definitions

  • the present disclosure relates generally to information processing systems and, more specifically, to spawning and management of low-overhead concurrent threads.
  • multithreading An approach that has been employed to improve processor performance is known as "multithreading.”
  • software multithreading an instruction stream is split into multiple instruction streams that can be executed in parallel.
  • multiple processors in a multi-processor system may each act on one of the multiple threads concurrently.
  • time-slice multithreading In another approach, known as time-slice multithreading, a single processor switches between threads after a fixed period of time. In still another approach, a single processor switches between threads upon occurrence of a trigger event, such as a long latency cache miss. The latter approach is l ⁇ iown as switch-on-event multithreading.
  • FIG. 1 is a block diagram of at least one embodiment of a processing system capable of utilizing disclosed techniques.
  • Fig. 2 is a state diagram illustrating the states of at least one embodiment of a trigger-response mechanism.
  • Fig. 3 is a timeline illustrating asynchronous spawning of a low-overhead helper thread to perform data pre-fetching during a main thread cache miss stall.
  • FIG. 4 is a data flow diagram illustrating the saving and restoring of context information during two sample context switches.
  • FIG. 5 is a flowchart illustrating a method for providing user-programmable low-overhead multithreading.
  • Described herein are selected embodiments of a system, apparatus and method for user-programmable spawning of one or more low-overhead concurrent helper threads.
  • numerous specific details such as processor types, types of processor events, manners of detecting processor events, and control flow ordering have been set forth to provide a more thorough understanding of the present invention. It will be appreciated, however, by one skilled in the art that the invention may be practiced without such specific details. Additionally, some well-known structures, circuits, and the like have not been shown in detail to avoid unnecessarily obscuring the present invention.
  • processors that provide hardware support for multithreading such as those that support an approach referred to as simultaneous multithreading ("SMT")
  • SMT simultaneous multithreading
  • a single physical processor is made to appear as multiple logical processors to operating systems and user programs.
  • multiple threads can be active and execute concurrently on a single processor without switching. That is, each logical processor maintains a complete set of the architecture state, but many other resources of the physical processor, such as caches, execution units, branch predictors, control logic and buses are shared. Instructions from the multiple threads may execute concurrently, with at least one instruction from each thread being executed during the same time frame.
  • a second thread may utilize execution resources of the processor when a main thread has encountered a trigger event, such as a long-latency instruction. For instance, if a processor executes a load instruction that causes a cache miss, a second thread may be spawned to perform data prefetching for a future anticipated cache miss of the first thread during the time that the first thread is latent while waiting for load data to be fetched.
  • a trigger event such as a long-latency instruction.
  • FIG. 1 is a block diagram illustrating a processor 101 that includes virtual multithreading hardware to provide user-programmable low-overhead multithreading. That is, the processor 101 provides user-level asymmetric multithreading with reduced context size for the additional thread. In contrast to processors that support traditional switch-on-event multithreading, the processor 101 illustrated in Fig. 1 allows one or more user-specified trigger events to effect spawning of a helper thread.
  • Fig. 1 illustrates that the virtual multithreading hardware of the processor 101 includes a trigger-response mechanism 120 and a thread switch handler 130.
  • the thread switch handler 130 saves and restores certain minimal architectural state information upon a context switch to or from a low-overhead thread.
  • the trigger-response mechanism 120 determines that a user-defined thread switch criteria has been met, and generates an appropriate response to cause the desired thread switch to occur.
  • the multithreading scheme supported by processor 101 is asymmetric at least in the sense that the context information saved for helper threads is much smaller than context information maintained for the main thread.
  • the amount of context information saved for a thread switch is referred to as "weight" of a context switch.
  • the weight of the context switch is directly programmable. That is, the extent of the architectural state to be saved in queue 104 may be programmed via control registers 150. This context- weight-programmability is in contrast to traditional switch-on- event multithreading.
  • helper thread is intended to encompass a thread that executes concurrently with the main thread.
  • "concurrently” indicates that both threads are active at the same time, in that resources of a processing system concurrently process work for each thread.
  • a helper thread pre-performs work that the main thread is anticipated to utilize later in the main thread's instruction stream.
  • a helper thread may be spawned when the main thread incurs a trigger event that causes the main thread to experience a stall, freeing up execution resources of the processor.
  • one resource such as a memory system, performs processing for the main thread (such as, for example, fetching load data from memory into a cache), other execution resources may be utilized to concurrently process instructions for the helper thread.
  • Execution of a helper thread may result, for instance, in placing data into a data cache so that a future cache miss in the main thread may be avoided.
  • the helper thread may be utilized to perform instruction fetches into an instruction cache utilized by the main thread.
  • helper thread is thus used throughout this disclosure to refer to a low-overhead concurrent thread spawned in response to a user-defined trigger condition. It will be understood that the spawned thread may, for at least some embodiments, perform work unrelated to the work of the main thread. Such a thread spawned in response to a user-defined trigger condition involves relatively low overhead in relation to the main thread and executes while the main thread is also active (though the main thread may be stalled during all or a portion of the spawned thread's execution). However, for such embodiments the spawned thread performs work unrelated to the main thread's work.
  • helper thread as used herein also encompasses such threads.
  • Fig. 1 illustrates that the trigger-response mechanism 120 may receive as input data information from processor event counters 110. Based on user-supplied values in an active bank of trigger-response registers 115, the trigger-response mechanism 120 determines if a response is warranted based on the contents of the event counter registers 110. If so, the trigger-response mechanism 120 may generate a synchronous response or a non-synchronous response. [00021] Fig. 1 illustrates that the trigger-response mechanism 120 includes at least one bank of user-programmable trigger-response registers 115.
  • n sets (or "banks") of trigger-response registers 115a-l 15n are provided, with only one set being active at any given time.
  • the number of registers in the bank 115 indicates the number of conditions that may be utilized by the user in specifying the trigger condition to spawn a low-overhead thread:
  • each register can reflect a processor event, such as cycle count, cache miss, instruction opcode, etc.
  • trigger-response registers 115 in conjunction with event counter registers 110, support robust programmability by providing user access to several atomic events that a user might utilize to formulate a specific asynchronous trigger event.
  • the "raw" events tracked in the trigger registers 110 may be utilized by a user, alone or in conjunction with one or more other "raw” events, to specify a trigger condition (set forth in trigger-response register bank 115) for the spawning of a helper thread.
  • the trigger events may be synchronous or asynchronous events, and may be architectural or microarchitectural processor events.
  • the response generated by the trigger-response mechanism 120 may be a synchronous response or an asynchronous response.
  • the thread switch handler 130 may perform a thread switch responsive to a particular instruction in the main thread's instruction pipeline. For such occurrence, the thread switch is considered to be "synchronous" because it corresponds directly to a specific instruction in the main thread's instruction stream.
  • the thread switch is likely triggered when the trigger-response mechanism 120 detects that an opcode event counter 110 indicates that a particular opcode has been encountered.
  • the opcode may correspond to an instruction that does not otherwise change the processor state.
  • a noop instruction with a specific value in the immediate field may be treated as a "trigger" instruction. (Note that the immediate value may be distinct from the immediate value utilized for marking instructions, discussed below).
  • the processor 101 illustrated in Fig. 1 provides architectural support for "trigger" instructions that provide the user several thread- management capabilities. Trigger instructions are supported to perform the following functions: thread creation, thread destruction, thread suspension, and thread resumption. Each of these types of "trigger" instructions has the following characteristics. First, the instruction has no side effect on the processor state. Second, the instruction's opcode is recognized by at least one of the event counter registers 110 as a trigger instruction for which a synchronous response should be generated by the trigger-response mechanism.
  • the opcode for the instruction may be detected and reported by an opcode event counter register 110. This may cause the trigger-response mechanism 120 to send a synchronous response to the thread switch handler 130, indicating that a thread switch is warranted, regardless of the state of any other processor events.
  • the thread switch handler 130 marks the return instruction pointer ("IP") address as the instruction pointer address for the triggering instruction. The switch handler advances the return instruction pointer address value, and stores the return IP address in the task queue 140.
  • the value of the return IP address may be pre-advanced before storage in the queue 140, or may be post-advanced after the value is retrieved from the queue 140.
  • the task queue 140 may be any hardware storage structure.
  • the task queue 140 is implemented in memory.
  • the task queue 140 is implemented as one or more registers. Accordingly, the return IP address may be saved in a memory location or in a register.
  • the trigger-response mechanism 120 may generate instead an asynchronous response.
  • the asynchronous response indicating that a thread switch is warranted, may be based on processor events and is independent of the instruction being executed for the current thread.
  • the trigger-response mechanism 120 determines whether an asynchronous response is warranted in the following manner.
  • the processor event counters 110 track conditions that may be utilized by the user in specifying the trigger condition to spawn a low-overhead thread. For example, each register can reflect a "raw" processor event, such as cycle count, cache miss, instruction opcode, etc.
  • the event counters 110 may be implemented as counter registers to count the various "raw" processor events.
  • An event counter register 110 may be initialized to a number within the range of the event counter register 110, given the bit size of the register 110.
  • the trigger-response mechanism 120 may be programmed to detect an overflow signal from the trigger register 110 and to process the signal accordingly. For example, if a particular event counter register 110 is to detect an L3 cache miss, the counter register 110 may be initialized to a value one less than the overflow value. In such case, an overflow signal for the counter 110 is generated upon the first occurrence of an L3 cache miss. Such occurrence may be detected, and acted upon, by the trigger-response mechanism 120.
  • a user may program the particular state of the event counter registers 110 that will trigger a thread switch. That is, the user may utilize a special marking instruction to program the values of the trigger-response registers 115.
  • the marking instruction is a nop instruction with a particular immediate value. The user may utilize this instruction in a user program to be executed by the processor 101.
  • the trigger-response registers 115 are modified accordingly. This action effectively puts the trigger-response mechanism 120 "on notice" to monitor for the desired thread-switch trigger event specified by the user.
  • the trigger-response mechanism 120 provides an asynchronous response to the thread switch handler 130 if the thread-switch trigger event is detected. For the situation that the triggering condition, as indicated by the trigger- response registers, is met, then the thread switch may occur at any point in the main thread's execution stream. In this sense, the thread switch is asynchronous because it is not correlated with any particular instruction in the main thread stream but rather may occur asynchronously from the main thread's progress.
  • At least one embodiment of the trigger-response mechanism 120 monitors for only one thread-switch trigger event at a time. For example, if two marking instructions are executed, only one may be processed by the trigger-response mechanism 120 at a time. For such case, there may be multiple thread-switch trigger conditions indicated in each of a plurality of trigger-response register banks 150a-150n, but only one of the banks is active at any given time.
  • a timeout feature may be implemented such that the trigger- response mechanism 120 monitors for a first thread-switch trigger event for only a specified amount of time (which may be measured, for example, by number of elapsed cycles or number of retired instructions). If the thread-switch trigger event is not detected within the allotted time frame, then the next thread-switch trigger event may be processed.
  • Fig. 2 is a state diagram illustrating the transition of the trigger-response mechanism 120 through the states 202, 204, 206 of a single-event detection scheme.
  • a first marking instruction indicates that a thread switch should occur upon an L3 cache miss.
  • Fig. 2 illustrates that, prior to execution of the marking instruction, the trigger-response mechanism 120 is in a default state 202.
  • the trigger-response mechanism 120 transitions to a detection state 204.
  • the values in the active trigger-response register bank 115 are modified accordingly.
  • the trigger-response register bank 115 is programmed, according to the marking instruction, to generate an asynchronous thread switch response if an L3 cache miss is reported via the event counters 110.
  • the timeout period begins.
  • the trigger-response mechanism 120 monitors whether the specified thread-switch trigger condition is met. If the condition is not detected prior to completion of the specified timeout period, then a timeout has occurred.
  • Timeout causes transition back into the default state 202.
  • Timeout may occur, for our example, if no L3 miss counter overflow indication from the appropriate event counter 110 is indicated within a specified number of cycles. Similarly, a timeout may occur if a certain number of instructions has retired since the detection state 204 was entered. In such case, it is likely that the memory accesses of interest have hit in the cache. In such case, the trigger-response mechanism 120 is restored to the default state 202 and is then ready to receive the next marking instruction.
  • the trigger-response mechanism may transition back to the detection state 204 in order to monitor for the second specified thread-switch trigger event. Otherwise, the trigger-response mechanism 120 remains in the default state 202 until another marking instruction is executed.
  • Fig. 2 illustrates that if the trigger-event mechanism 120 detects during the detection stage 204 that the specified thread-switch trigger event has occurred, the trigger response mechanism 120 transitions to state 206. At state 206, the trigger-response mechanism 120 indicates to the switch handler 130 that a thread switch should occur. The trigger-event mechanism then transitions back to the default state 202.
  • Fig. 1 illustrates that the response (either synchronous or asynchronous) generated by the trigger-response mechanism 120 may be received by the thread switch handler 130.
  • the thread switch handler 130 provides minimal save/restore processing for a spawned thread.
  • the thread switch handler 130 saves minimal context information for the current thread before switching to another thread.
  • the minimal context information may be saved in a queue 140. Depending on the implementation of the queue 140, as discussed above, the minimal context information mat by saved in one or more registers, or it may be stored in memory.
  • the instruction pointer (IP) address for the current thread is the only context information saved in the queue 140 before switching to another thread.
  • additional context information may be saved.
  • Control registers 150 indicate to the switch handler 130 which information is to be saved in the queue 140 upon a context switch.
  • the helper thread(s) spawned from a main thread are "low-overhead" thread in the sense that the hardware maintains relatively little context information upon a thread switch, relative to the amount of context information maintained for the main thread by the processor.
  • Other traditional context information such as general register values, is excluded from the minimal context information saved for low-overhead thread switches.
  • a thread for which only minimal information is saved by the hardware such as the embodiment illustrated in Fig. 1 (e.g., instruction pointer (IP) address may be the only context information saved in the queue 140), may be alternatively referred to as a "low- overhead thread," "fly-weight thread,” “thin thread,” or "fiber.”
  • a thread-spawning trigger event is responsible for managing other architectural state information that is not maintained in the queue 140.
  • the thread switch is explicitly programmed by a user, the thread switch occurs based on user program interaction with the hardware; thread creation for such embodiment is not handled by the operation system.
  • the compiler explicitly manages the additional context information for a low-overhead thread via register partitioning. The low-overhead thread switches are transparent to the operating system.
  • a side-effect of the user-programmable low-overhead multithreading scheme discussed above is that thread switches may efficiently occur more frequently, and with smaller granularity, than traditional multithreading context switches.
  • the low overhead associated with such a context switch may be amortized and recouped over a relatively small quanta.
  • the granularity for a low-overhead context switch as described herein may be around 200 machine cycles.
  • granularity for an operating system-supported context switch for traditional multithreading may be many milliseconds. In terms of computing efficiency, this difference is notable - a millisecond may represent millions of machine cycles.
  • Fig. 3 is a timeline illustrating an example sequence of events according to an asynchronous usage model of the programmable low-overhead multithreading scheme discussed above.
  • a main thread Tl includes a marking instruction to indicate that a thread switch should occur upon an L3 cache miss during execution of the main thread Tl.
  • the marking instruction, x is executed before time tO, which alerts the trigger-response mechanism 120 (Fig. 1) to monitor for the user-specified thread-switch trigger event (that is, to monitor for an L3 cache miss).
  • Fig. 3 illustrates that an L3 cache miss occurs at time tO.
  • the cache miss causes execution of the main thread (Tl) to stall until the missed data is retrieved from memory.
  • Fig. 3 illustrates that this stall occurs from time tO until time t4.
  • Fig. 3 illustrates that the cache miss at time tO also triggers the trigger- response mechanism 120 (Fig. 1) to initiate a low-overhead context switch such that a helper thread, T2, is asynchronously spawned.
  • the context switch begins at time tO and completes at time tl, at which time the helper thread T2 begins execution. Accordingly, time span A in Fig. 3 illustrates the time it takes to transfer control from the main thread Tl to helper thread T2.
  • the helper thread T2 executes a precomputation slice of instructions for a future main thread (Tl) instruction, where the future main thread instruction is anticipated to incur a cache miss. That is, through profiling or other means it has been determined, for example, that the instruction at t6 is anticipated to generate performance loss due to a cache miss on a load instruction during execution of the main thread Tl. Thus, during the stall for the cache miss experienced by the main thread at time tO, the helper thread pre-fetches data into a data cache in hopes to avoid a later anticipated cache miss (at time t6) in the main thread (Tl).
  • the precomputation slice executed by the helper thread T2 from time tl up to time t2 is the smallest subset of main thread instructions necessary to precompute the address of the target load instruction anticipated to cause a cache miss in the main thread Tl at time t6.
  • the helper thread executes the target load instruction.
  • Fig. 3 illustrates that the target load instruction is executed at time t2.
  • the user may place a trigger instruction after the target load instruction in the helper thread code in order to indicate that the thread has completed execution and that the main thread Tl may resume control.
  • the trigger instruction may be an asynchronous or synchronous instruction.
  • both a synchronous and asynchronous instruction may be placed at the end of the helper thread T2.
  • Fig. 3 illustrates that, at time t2, a context switch is initiated after completion of the target load instruction. (As is stated above, this context switch may be initiated by a trigger instruction placed in the helper thread instruction stream after the target load instruction.)
  • Fig. 3 illustrates that the context switch is completed at time t3. Accordingly, time span B in Fig. 3 illustrates the time it takes to transfer control from the helper thread T2 back to main thread Tl.
  • time span B in Fig. 3 illustrates the time it takes to transfer control from the helper thread T2 back to main thread Tl.
  • the context switch has been completed at time t3, the main thread Tl is still stalled waiting for the load data, data 1 , requested at time timeO.
  • Fig. 3 illustrates that the load data, data 1 , is returned at time t4, at which time the main thread Tl becomes unstalled and resumes execution of instructions.
  • helper thread T2 is stalled from the time its target load instruction is issued at time t2 until such load data, data 2 , is returned from the memory system at time t5.
  • Fig. 4 illustrates thread switch handler 130 processing during the context switches shown at A and B in Fig. 3.
  • main thread Tl is the active thread.
  • Fig. 4 illustrates that main thread Tl is the active thread going into switch handler 130.
  • the switch handler 130 performs the low- overhead context switch by saving context information in the task queue 140.
  • the switch handler 130 sets the processor's instruction pointer to the first instruction of the helper thread T2. For example, the switch handler 130 may obtain the T2 instruction pointer value from a pre-designated memory location or from a register. Thereafter, the processor continues execution of the helper thread T2's instructions.
  • Fig. 4 illustrates that the helper thread T2 is the active thread before the time that context switch B is initiated at time t2.
  • helper thread T2 is the active thread going into the switch handler 130 at time t2.
  • the switch handler 130 saves the context information for thread T2 in the task queue 140 and restores to the processor's instruction pointer from the Tl context information that was stored in the task queue 140 during the prior context switch. Thereafter, the processor continues execution of the main thread Tl 's instructions.
  • Fig. 5 is a flowchart illustrating at least one embodiment of a method 500 for performing user-programmable multithreading.
  • the method is performed without intervention of the operating system and is transparent to the operating system.
  • the capability for a user to directly trigger the processing illustrated in Fig. 5 may be provided by a compiler, which may provide a thread-generation driver as part of a run-time library.
  • Fig. 5 illustrates that processing for the method 500 begins at block 502 and proceeds to block 504.
  • hardware such as the trigger-response registers 115 illustrated in Fig. 1, detects a user-specified thread-switch trigger condition.
  • the condition may be synchronous (such as execution of an explicit trigger instruction) or asynchronous (such as a condition indicated by a marking instruction). If no trigger condition is detected, processing loops back to block 502. Responsive to detecting a trigger event at block 504, processing proceeds to block 506.
  • hardware such as, for example, switch handler 130 illustrated in Fig. 1
  • the current thread is, for at least one embodiment, a full context main thread.
  • Suspension may include saving minimal context information for the current thread in a task queue, such as task queue 140 illustrated in Fig. 1.
  • the user may program the weight, or amount, of context info ⁇ nation saved at block 506.
  • a compiler or similar tool may maintain additional context information that is not maintained by the hardware (sometimes referred to herein as "excluded" context information).
  • the helper thread is activated by hardware, such as the switch handler 130, that places the beginning instruction pointer address for the helper thread instruction stream into the processor's instruction pointer register. From block 508 processing ends proceeds block 510.
  • hardware such as the trigger-response registers 115 illustrated in Fig. 1, detects a user-specified thread-switch trigger condition to cause relinquishment of the helper thread and, thus, resumption of the main thread.
  • the condition may be synchronous (such as execution of an explicit trigger instruction to) or asynchronous (such as a condition indicated by a marking instruction). If no trigger condition is detected, processing loops back to block 510 and the helper thread continues executing. Responsive to detecting a relinquishment trigger event at block 510, processing proceeds to block 512.
  • the helper thread is suspended. If the condition detected at block 510 indicates that the helper thread should be destroyed, then context information need not be saved for the helper thread. If, however, the helper thread is to be suspended, then context information for the helper thread is saved during suspension at block 512. Processing then proceeds to block 514.
  • the context switch effected at blocks 506 and 508 and 512 and 514 is performed without intervention of an operating system.
  • Fig. 1 illustrates an embodiment of a processing system 100 that may utilize disclosed techniques.
  • System 100 may be used, for example, to execute one or more methods for providing user-programmable multithreading, such as the embodiments described herein.
  • a processing system includes any processing system that has a processor, such as, for example; a digital signal processor
  • System 100 is representative of processing systems based on the Itanium® and Itanium® 2 microprocessors as well as the Pentium®, Pentium® Pro, Pentium® II, Pentium® III, and Pentium® 4 microprocessors, all of which are available from Intel Corporation. Other systems (including personal computers (PCs) having other microprocessors, engineering workstations, personal digital assistants and other hand-held devices, set-top boxes and the like) may also be used. At least one embodiment of system 100 may execute a version of the WindowsTM operating system available from Microsoft Corporation, although other operating systems and graphical user interfaces, for example, may also be used.
  • WindowsTM operating system available from Microsoft Corporation, although other operating systems and graphical user interfaces, for example, may also be used.
  • Processing system 100 includes a memory system 150 and a processor 101.
  • Memory system 150 may store instructions 140 and data 141 for controlling the operation of the processor 101.
  • Memory system 150 is intended as a generalized representation of memory and may include a variety of forms of memory, such as a hard drive, CD-ROM, random access memory (RAM), dynamic random access memory (DRAM), static random access memory (SRAM), flash memory and related circuitry.
  • Memory system 150 may store instructions 140 and/or data 141 represented by data signals that may be executed by the processor 101.

Abstract

A virtual multithreading hardware mechanism provides multi-threading on a single-threaded processor. Thread switches are triggered by user-defined triggers. Synchronous triggers may be defined in the form of special trigger instructions. Asynchronous triggers may be defined via special marking instructions that identify an asynchronous trigger condition. The asynchronous trigger condition may be based on a plurality of atomic processor events. Minimal context information, such as only an instruction pointer address, is maintained by the hardware upon a thread switch. In to contrast to traditional simultaneous multithreading schemes, the virtual multithreading hardware provides thread switches that are transparent to an operating system and that may be performed without operating system intervention.

Description

User-Programmable Low-Overhead Multithreading Background
Technical Field
[0001] The present disclosure relates generally to information processing systems and, more specifically, to spawning and management of low-overhead concurrent threads.
Background Art
[0002] An approach that has been employed to improve processor performance is known as "multithreading." In software multithreading, an instruction stream is split into multiple instruction streams that can be executed in parallel. In one approach, multiple processors in a multi-processor system may each act on one of the multiple threads concurrently.
[0003] In another approach, known as time-slice multithreading, a single processor switches between threads after a fixed period of time. In still another approach, a single processor switches between threads upon occurrence of a trigger event, such as a long latency cache miss. The latter approach is lαiown as switch-on-event multithreading.
[0004] Traditionally, the trigger event for switch-on-event multithreading is hardwired. However, it would be desirable for the programmer or user to specify any of a variety of triggering events to trigger a thread switch on a single processor. Embodiments of the method and apparatus disclosed herein address this and other concerns related to multithreading. Brief Description of the Drawings
[0005] The present invention may be understood with reference to the following drawings in which like elements are indicated by like numbers. These drawings are not intended to be limiting but are instead provided to illustrate selected embodiments of a method, apparatus and system for providing low-overhead concurrent helper threads.
[0006] Fig. 1 is a block diagram of at least one embodiment of a processing system capable of utilizing disclosed techniques.
[0007] Fig. 2 is a state diagram illustrating the states of at least one embodiment of a trigger-response mechanism. [0008] Fig. 3 is a timeline illustrating asynchronous spawning of a low-overhead helper thread to perform data pre-fetching during a main thread cache miss stall.
[0009] Fig. 4 is a data flow diagram illustrating the saving and restoring of context information during two sample context switches.
[00010] Fig. 5 is a flowchart illustrating a method for providing user-programmable low-overhead multithreading.
Detailed Description
[00011] Described herein are selected embodiments of a system, apparatus and method for user-programmable spawning of one or more low-overhead concurrent helper threads. In the following description, numerous specific details such as processor types, types of processor events, manners of detecting processor events, and control flow ordering have been set forth to provide a more thorough understanding of the present invention. It will be appreciated, however, by one skilled in the art that the invention may be practiced without such specific details. Additionally, some well-known structures, circuits, and the like have not been shown in detail to avoid unnecessarily obscuring the present invention.
[00012] In processors that provide hardware support for multithreading, such as those that support an approach referred to as simultaneous multithreading ("SMT"), a single physical processor is made to appear as multiple logical processors to operating systems and user programs. For SMT, multiple threads can be active and execute concurrently on a single processor without switching. That is, each logical processor maintains a complete set of the architecture state, but many other resources of the physical processor, such as caches, execution units, branch predictors, control logic and buses are shared. Instructions from the multiple threads may execute concurrently, with at least one instruction from each thread being executed during the same time frame.
[00013] For processors that do not provide the hardware features to support SMT, it may nonetheless be desirable to implement multithreading such that a second thread may utilize execution resources of the processor when a main thread has encountered a trigger event, such as a long-latency instruction. For instance, if a processor executes a load instruction that causes a cache miss, a second thread may be spawned to perform data prefetching for a future anticipated cache miss of the first thread during the time that the first thread is latent while waiting for load data to be fetched.
[00014] Fig. 1 is a block diagram illustrating a processor 101 that includes virtual multithreading hardware to provide user-programmable low-overhead multithreading. That is, the processor 101 provides user-level asymmetric multithreading with reduced context size for the additional thread. In contrast to processors that support traditional switch-on-event multithreading, the processor 101 illustrated in Fig. 1 allows one or more user-specified trigger events to effect spawning of a helper thread.
[00015] Fig. 1 illustrates that the virtual multithreading hardware of the processor 101 includes a trigger-response mechanism 120 and a thread switch handler 130. The thread switch handler 130 saves and restores certain minimal architectural state information upon a context switch to or from a low-overhead thread. The trigger-response mechanism 120 determines that a user-defined thread switch criteria has been met, and generates an appropriate response to cause the desired thread switch to occur.
[00016] The multithreading scheme supported by processor 101 is asymmetric at least in the sense that the context information saved for helper threads is much smaller than context information maintained for the main thread. The amount of context information saved for a thread switch is referred to as "weight" of a context switch. For at least one embodiment, the weight of the context switch is directly programmable. That is, the extent of the architectural state to be saved in queue 104 may be programmed via control registers 150. This context- weight-programmability is in contrast to traditional switch-on- event multithreading.
[00017] As used herein, the term "helper" thread is intended to encompass a thread that executes concurrently with the main thread. As used herein, "concurrently" indicates that both threads are active at the same time, in that resources of a processing system concurrently process work for each thread. Typically, a helper thread pre-performs work that the main thread is anticipated to utilize later in the main thread's instruction stream. A helper thread may be spawned when the main thread incurs a trigger event that causes the main thread to experience a stall, freeing up execution resources of the processor. While one resource, such as a memory system, performs processing for the main thread (such as, for example, fetching load data from memory into a cache), other execution resources may be utilized to concurrently process instructions for the helper thread.
[00018] Execution of a helper thread may result, for instance, in placing data into a data cache so that a future cache miss in the main thread may be avoided. For at least one other embodiment, the helper thread may be utilized to perform instruction fetches into an instruction cache utilized by the main thread.
[00019] The term "helper" thread is thus used throughout this disclosure to refer to a low-overhead concurrent thread spawned in response to a user-defined trigger condition. It will be understood that the spawned thread may, for at least some embodiments, perform work unrelated to the work of the main thread. Such a thread spawned in response to a user-defined trigger condition involves relatively low overhead in relation to the main thread and executes while the main thread is also active (though the main thread may be stalled during all or a portion of the spawned thread's execution). However, for such embodiments the spawned thread performs work unrelated to the main thread's work. The term "helper" thread as used herein also encompasses such threads.
[00020] Fig. 1 illustrates that the trigger-response mechanism 120 may receive as input data information from processor event counters 110. Based on user-supplied values in an active bank of trigger-response registers 115, the trigger-response mechanism 120 determines if a response is warranted based on the contents of the event counter registers 110. If so, the trigger-response mechanism 120 may generate a synchronous response or a non-synchronous response. [00021] Fig. 1 illustrates that the trigger-response mechanism 120 includes at least one bank of user-programmable trigger-response registers 115. For the illustrated embodiment, n sets (or "banks") of trigger-response registers 115a-l 15n are provided, with only one set being active at any given time. The number of registers in the bank 115 indicates the number of conditions that may be utilized by the user in specifying the trigger condition to spawn a low-overhead thread:
[00022] For example, each register can reflect a processor event, such as cycle count, cache miss, instruction opcode, etc. These trigger-response registers 115, in conjunction with event counter registers 110, support robust programmability by providing user access to several atomic events that a user might utilize to formulate a specific asynchronous trigger event. The "raw" events tracked in the trigger registers 110 may be utilized by a user, alone or in conjunction with one or more other "raw" events, to specify a trigger condition (set forth in trigger-response register bank 115) for the spawning of a helper thread. The trigger events may be synchronous or asynchronous events, and may be architectural or microarchitectural processor events.
[00023] The response generated by the trigger-response mechanism 120 may be a synchronous response or an asynchronous response. Regarding a synchronous response, the thread switch handler 130 may perform a thread switch responsive to a particular instruction in the main thread's instruction pipeline. For such occurrence, the thread switch is considered to be "synchronous" because it corresponds directly to a specific instruction in the main thread's instruction stream. For such embodiment, the thread switch is likely triggered when the trigger-response mechanism 120 detects that an opcode event counter 110 indicates that a particular opcode has been encountered. For at least one embodiment, the opcode may correspond to an instruction that does not otherwise change the processor state. For example, a noop instruction with a specific value in the immediate field may be treated as a "trigger" instruction. (Note that the immediate value may be distinct from the immediate value utilized for marking instructions, discussed below).
[00024] For at least one embodiment, the processor 101 illustrated in Fig. 1 provides architectural support for "trigger" instructions that provide the user several thread- management capabilities. Trigger instructions are supported to perform the following functions: thread creation, thread destruction, thread suspension, and thread resumption. Each of these types of "trigger" instructions has the following characteristics. First, the instruction has no side effect on the processor state. Second, the instruction's opcode is recognized by at least one of the event counter registers 110 as a trigger instruction for which a synchronous response should be generated by the trigger-response mechanism.
[00025] If such a trigger instruction reaches the execution stage of an execution pipeline, the opcode for the instruction may be detected and reported by an opcode event counter register 110. This may cause the trigger-response mechanism 120 to send a synchronous response to the thread switch handler 130, indicating that a thread switch is warranted, regardless of the state of any other processor events. For such embodiment, the thread switch handler 130 marks the return instruction pointer (" IP") address as the instruction pointer address for the triggering instruction. The switch handler advances the return instruction pointer address value, and stores the return IP address in the task queue 140. One of skill in the art will recognize that the value of the return IP address may be pre-advanced before storage in the queue 140, or may be post-advanced after the value is retrieved from the queue 140. [00026] The task queue 140 may be any hardware storage structure. For at least one embodiment, the task queue 140 is implemented in memory. For at least one other embodiment, the task queue 140 is implemented as one or more registers. Accordingly, the return IP address may be saved in a memory location or in a register. [00027] In contrast to the synchronous response discussed above, the trigger-response mechanism 120 may generate instead an asynchronous response. That is, the asynchronous response, indicating that a thread switch is warranted, may be based on processor events and is independent of the instruction being executed for the current thread. For at least one embodiment, the trigger-response mechanism 120 determines whether an asynchronous response is warranted in the following manner.
[00028] The processor event counters 110 track conditions that may be utilized by the user in specifying the trigger condition to spawn a low-overhead thread. For example, each register can reflect a "raw" processor event, such as cycle count, cache miss, instruction opcode, etc. The event counters 110 may be implemented as counter registers to count the various "raw" processor events. An event counter register 110 may be initialized to a number within the range of the event counter register 110, given the bit size of the register 110.
[00029] The trigger-response mechanism 120 may be programmed to detect an overflow signal from the trigger register 110 and to process the signal accordingly. For example, if a particular event counter register 110 is to detect an L3 cache miss, the counter register 110 may be initialized to a value one less than the overflow value. In such case, an overflow signal for the counter 110 is generated upon the first occurrence of an L3 cache miss. Such occurrence may be detected, and acted upon, by the trigger-response mechanism 120.
[00030] A user may program the particular state of the event counter registers 110 that will trigger a thread switch. That is, the user may utilize a special marking instruction to program the values of the trigger-response registers 115. For at least one embodiment, the marking instruction is a nop instruction with a particular immediate value. The user may utilize this instruction in a user program to be executed by the processor 101. When the marking instruction of the user program reaches the execution stage of an execution pipeline for the processor 101, the trigger-response registers 115 are modified accordingly. This action effectively puts the trigger-response mechanism 120 "on notice" to monitor for the desired thread-switch trigger event specified by the user.
[00031] For at least one embodiment, the trigger-response mechanism 120 provides an asynchronous response to the thread switch handler 130 if the thread-switch trigger event is detected. For the situation that the triggering condition, as indicated by the trigger- response registers, is met, then the thread switch may occur at any point in the main thread's execution stream. In this sense, the thread switch is asynchronous because it is not correlated with any particular instruction in the main thread stream but rather may occur asynchronously from the main thread's progress.
[00032] At least one embodiment of the trigger-response mechanism 120 monitors for only one thread-switch trigger event at a time. For example, if two marking instructions are executed, only one may be processed by the trigger-response mechanism 120 at a time. For such case, there may be multiple thread-switch trigger conditions indicated in each of a plurality of trigger-response register banks 150a-150n, but only one of the banks is active at any given time. A timeout feature may be implemented such that the trigger- response mechanism 120 monitors for a first thread-switch trigger event for only a specified amount of time (which may be measured, for example, by number of elapsed cycles or number of retired instructions). If the thread-switch trigger event is not detected within the allotted time frame, then the next thread-switch trigger event may be processed.
[00033] Brief reference to Fig. 2, along with Fig. 1, illustrates an example of the timeout feature. Fig. 2 is a state diagram illustrating the transition of the trigger-response mechanism 120 through the states 202, 204, 206 of a single-event detection scheme. For purposes of discussing Fig. 2, it is assumed for purposes of example that a first marking instruction indicates that a thread switch should occur upon an L3 cache miss. Fig. 2 illustrates that, prior to execution of the marking instruction, the trigger-response mechanism 120 is in a default state 202.
[00034] When the marking instruction is received, the trigger-response mechanism 120 transitions to a detection state 204. Upon entry into the detection state 204, the values in the active trigger-response register bank 115 are modified accordingly. For the cache miss example, the trigger-response register bank 115 is programmed, according to the marking instruction, to generate an asynchronous thread switch response if an L3 cache miss is reported via the event counters 110. Also upon entry into the detection state 204, the timeout period begins. [00035] During the detection state 204, the trigger-response mechanism 120 monitors whether the specified thread-switch trigger condition is met. If the condition is not detected prior to completion of the specified timeout period, then a timeout has occurred. The timeout causes transition back into the default state 202. [00036] Timeout may occur, for our example, if no L3 miss counter overflow indication from the appropriate event counter 110 is indicated within a specified number of cycles. Similarly, a timeout may occur if a certain number of instructions has retired since the detection state 204 was entered. In such case, it is likely that the memory accesses of interest have hit in the cache. In such case, the trigger-response mechanism 120 is restored to the default state 202 and is then ready to receive the next marking instruction.
[00037] If a second marking instruction has already been executed, such that a second bank of trigger-response registers 115 is available to be activated, the trigger-response mechanism may transition back to the detection state 204 in order to monitor for the second specified thread-switch trigger event. Otherwise, the trigger-response mechanism 120 remains in the default state 202 until another marking instruction is executed.
[00038] Fig. 2 illustrates that if the trigger-event mechanism 120 detects during the detection stage 204 that the specified thread-switch trigger event has occurred, the trigger response mechanism 120 transitions to state 206. At state 206, the trigger-response mechanism 120 indicates to the switch handler 130 that a thread switch should occur. The trigger-event mechanism then transitions back to the default state 202.
[00039] Returning to Fig. 1, Fig. 1 illustrates that the response (either synchronous or asynchronous) generated by the trigger-response mechanism 120 may be received by the thread switch handler 130. The thread switch handler 130 provides minimal save/restore processing for a spawned thread. When the response from the trigger-response mechanism 120 indicates that a thread switch is appropriate, the thread switch handler 130 saves minimal context information for the current thread before switching to another thread. The minimal context information may be saved in a queue 140. Depending on the implementation of the queue 140, as discussed above, the minimal context information mat by saved in one or more registers, or it may be stored in memory.
[00040] For at least one embodiment, the instruction pointer (IP) address for the current thread is the only context information saved in the queue 140 before switching to another thread. For at least one other embodiment, however, additional context information may be saved. Control registers 150 indicate to the switch handler 130 which information is to be saved in the queue 140 upon a context switch.
[00041] The helper thread(s) spawned from a main thread are "low-overhead" thread in the sense that the hardware maintains relatively little context information upon a thread switch, relative to the amount of context information maintained for the main thread by the processor. Other traditional context information, such as general register values, is excluded from the minimal context information saved for low-overhead thread switches. A thread for which only minimal information is saved by the hardware, such as the embodiment illustrated in Fig. 1 (e.g., instruction pointer (IP) address may be the only context information saved in the queue 140), may be alternatively referred to as a "low- overhead thread," "fly-weight thread," "thin thread," or "fiber."
[00042] For at least one embodiment, it is assumed that software in which the user has specified a thread-spawning trigger event is responsible for managing other architectural state information that is not maintained in the queue 140. One will note that, because the thread switch is explicitly programmed by a user, the thread switch occurs based on user program interaction with the hardware; thread creation for such embodiment is not handled by the operation system. For at least one embodiment, for example, it is assumed that the compiler explicitly manages the additional context information for a low-overhead thread via register partitioning. The low-overhead thread switches are transparent to the operating system.
[00043] A side-effect of the user-programmable low-overhead multithreading scheme discussed above is that thread switches may efficiently occur more frequently, and with smaller granularity, than traditional multithreading context switches. The low overhead associated with such a context switch may be amortized and recouped over a relatively small quanta. For example, the granularity for a low-overhead context switch as described herein may be around 200 machine cycles. In contrast, granularity for an operating system-supported context switch for traditional multithreading may be many milliseconds. In terms of computing efficiency, this difference is notable - a millisecond may represent millions of machine cycles.
[00044] Fig. 3 is a timeline illustrating an example sequence of events according to an asynchronous usage model of the programmable low-overhead multithreading scheme discussed above. For the asynchronous usage model illustrated in Fig. 3, a main thread Tl includes a marking instruction to indicate that a thread switch should occur upon an L3 cache miss during execution of the main thread Tl. The marking instruction, x, is executed before time tO, which alerts the trigger-response mechanism 120 (Fig. 1) to monitor for the user-specified thread-switch trigger event (that is, to monitor for an L3 cache miss).
[00045] Fig. 3 illustrates that an L3 cache miss occurs at time tO. The cache miss causes execution of the main thread (Tl) to stall until the missed data is retrieved from memory. Fig. 3 illustrates that this stall occurs from time tO until time t4. [00046] Fig. 3 illustrates that the cache miss at time tO also triggers the trigger- response mechanism 120 (Fig. 1) to initiate a low-overhead context switch such that a helper thread, T2, is asynchronously spawned. The context switch begins at time tO and completes at time tl, at which time the helper thread T2 begins execution. Accordingly, time span A in Fig. 3 illustrates the time it takes to transfer control from the main thread Tl to helper thread T2.
[00047] For the embodiment illustrated in Fig. 3, the helper thread T2 executes a precomputation slice of instructions for a future main thread (Tl) instruction, where the future main thread instruction is anticipated to incur a cache miss. That is, through profiling or other means it has been determined, for example, that the instruction at t6 is anticipated to generate performance loss due to a cache miss on a load instruction during execution of the main thread Tl. Thus, during the stall for the cache miss experienced by the main thread at time tO, the helper thread pre-fetches data into a data cache in hopes to avoid a later anticipated cache miss (at time t6) in the main thread (Tl). [00048] The precomputation slice executed by the helper thread T2 from time tl up to time t2 is the smallest subset of main thread instructions necessary to precompute the address of the target load instruction anticipated to cause a cache miss in the main thread Tl at time t6. After executing the precomputation slice, the helper thread executes the target load instruction. Fig. 3 illustrates that the target load instruction is executed at time t2.
[00049] For at least one embodiment, the user may place a trigger instruction after the target load instruction in the helper thread code in order to indicate that the thread has completed execution and that the main thread Tl may resume control. The trigger instruction may be an asynchronous or synchronous instruction. For at least one embodiment, both a synchronous and asynchronous instruction may be placed at the end of the helper thread T2.
[00050] Fig. 3 illustrates that, at time t2, a context switch is initiated after completion of the target load instruction. (As is stated above, this context switch may be initiated by a trigger instruction placed in the helper thread instruction stream after the target load instruction.) Fig. 3 illustrates that the context switch is completed at time t3. Accordingly, time span B in Fig. 3 illustrates the time it takes to transfer control from the helper thread T2 back to main thread Tl. [00051] Although the context switch has been completed at time t3, the main thread Tl is still stalled waiting for the load data, data1, requested at time timeO. Fig. 3 illustrates that the load data, data1, is returned at time t4, at which time the main thread Tl becomes unstalled and resumes execution of instructions.
[00052] Meanwhile, the helper thread T2 is stalled from the time its target load instruction is issued at time t2 until such load data, data2, is returned from the memory system at time t5.
[00053] After resuming control at time t3, the main thread Tl thus continues execution of its instruction stream, eventually reaching the load instruction at time t6. Because the data for this load instruction, data2, was pre-fetched by the helper thread and placed in the cache at time t5, a cache miss in the main thread Tl is avoided at time t6.
[00054] Fig. 4 illustrates thread switch handler 130 processing during the context switches shown at A and B in Fig. 3. At the time before context switch A is initiated at time tO, main thread Tl is the active thread. Fig. 4 illustrates that main thread Tl is the active thread going into switch handler 130. The switch handler 130 performs the low- overhead context switch by saving context information in the task queue 140. Also, during the context switch the switch handler 130 sets the processor's instruction pointer to the first instruction of the helper thread T2. For example, the switch handler 130 may obtain the T2 instruction pointer value from a pre-designated memory location or from a register. Thereafter, the processor continues execution of the helper thread T2's instructions.
[00055] For context switch B illustrated in Fig. 3, Fig. 4 illustrates that the helper thread T2 is the active thread before the time that context switch B is initiated at time t2. Thus, helper thread T2 is the active thread going into the switch handler 130 at time t2. During context switch B, the switch handler 130 saves the context information for thread T2 in the task queue 140 and restores to the processor's instruction pointer from the Tl context information that was stored in the task queue 140 during the prior context switch. Thereafter, the processor continues execution of the main thread Tl 's instructions.
[00056] Fig. 5 is a flowchart illustrating at least one embodiment of a method 500 for performing user-programmable multithreading. For at least one embodiment, the method is performed without intervention of the operating system and is transparent to the operating system. The capability for a user to directly trigger the processing illustrated in Fig. 5 may be provided by a compiler, which may provide a thread-generation driver as part of a run-time library.
[00057] Fig. 5 illustrates that processing for the method 500 begins at block 502 and proceeds to block 504. At block 504, hardware, such as the trigger-response registers 115 illustrated in Fig. 1, detects a user-specified thread-switch trigger condition. The condition may be synchronous (such as execution of an explicit trigger instruction) or asynchronous (such as a condition indicated by a marking instruction). If no trigger condition is detected, processing loops back to block 502. Responsive to detecting a trigger event at block 504, processing proceeds to block 506.
[00058] At block 506, hardware (such as, for example, switch handler 130 illustrated in Fig. 1) suspends execution of the current thread. The current thread is, for at least one embodiment, a full context main thread. Suspension may include saving minimal context information for the current thread in a task queue, such as task queue 140 illustrated in Fig. 1. The user may program the weight, or amount, of context infoπnation saved at block 506. A compiler or similar tool may maintain additional context information that is not maintained by the hardware (sometimes referred to herein as "excluded" context information).
[00059] Processing then proceeds to block 508, where a low-overhead helper thread is activated. For at least one embodiment, the helper thread is activated by hardware, such as the switch handler 130, that places the beginning instruction pointer address for the helper thread instruction stream into the processor's instruction pointer register. From block 508 processing ends proceeds block 510.
[00060] At block 510 hardware, such as the trigger-response registers 115 illustrated in Fig. 1, detects a user-specified thread-switch trigger condition to cause relinquishment of the helper thread and, thus, resumption of the main thread. The condition may be synchronous (such as execution of an explicit trigger instruction to) or asynchronous (such as a condition indicated by a marking instruction). If no trigger condition is detected, processing loops back to block 510 and the helper thread continues executing. Responsive to detecting a relinquishment trigger event at block 510, processing proceeds to block 512.
[00061] At block 512, the helper thread is suspended. If the condition detected at block 510 indicates that the helper thread should be destroyed, then context information need not be saved for the helper thread. If, however, the helper thread is to be suspended, then context information for the helper thread is saved during suspension at block 512. Processing then proceeds to block 514.
[00062] At block 514, the context for the "current" thread, which was saved at block 506, is restored. Processing for the current thread then resumes, at the restored instruction pointer address. Processing then ends at block 516.
[00063] One should note that, for at least one embodiment, the context switch effected at blocks 506 and 508 and 512 and 514 is performed without intervention of an operating system.
[00064] The foregoing discussion discloses selected embodiments of an apparatus, system and method for user-programmable spawning and managing of one or more low- overhead simultaneous helper threads. The methods described herein may be performed on a processing system such as the processing system 100 illustrated in Fig. 1.
[00065] Fig. 1 illustrates an embodiment of a processing system 100 that may utilize disclosed techniques. System 100 may be used, for example, to execute one or more methods for providing user-programmable multithreading, such as the embodiments described herein. For purposes of this disclosure, a processing system includes any processing system that has a processor, such as, for example; a digital signal processor
(DSP), a microcontroller, an application specific integrated circuit (ASIC), or a microprocessor. System 100 is representative of processing systems based on the Itanium® and Itanium® 2 microprocessors as well as the Pentium®, Pentium® Pro, Pentium® II, Pentium® III, and Pentium® 4 microprocessors, all of which are available from Intel Corporation. Other systems (including personal computers (PCs) having other microprocessors, engineering workstations, personal digital assistants and other hand-held devices, set-top boxes and the like) may also be used. At least one embodiment of system 100 may execute a version of the Windows™ operating system available from Microsoft Corporation, although other operating systems and graphical user interfaces, for example, may also be used. [00066] Processing system 100 includes a memory system 150 and a processor 101. Memory system 150 may store instructions 140 and data 141 for controlling the operation of the processor 101. Memory system 150 is intended as a generalized representation of memory and may include a variety of forms of memory, such as a hard drive, CD-ROM, random access memory (RAM), dynamic random access memory (DRAM), static random access memory (SRAM), flash memory and related circuitry. Memory system 150 may store instructions 140 and/or data 141 represented by data signals that may be executed by the processor 101.
[00067] In the preceding description, various aspects of a method, apparatus and system for implementing user-programmable multithreading are disclosed. For purposes of explanation, specific numbers, examples, systems and configurations were set forth in order to provide a more thorough understanding. However, it is apparent to one skilled in the art that the described method and apparatus may be practiced without the specific details. It will be obvious to those skilled in the art that changes and modifications can be made without departing from the present invention in its broader aspects. For example, the timeline shown in Fig. 3 and the method 500 illustrated in Fig. 5 may be modified to provide for multiple helper threads - a helper thread may itself spawn another helper thread. While particular embodiments of the present invention have been shown and described, the appended claims are to encompass within their scope all such changes and modifications that fall within the true scope of the present invention.

Claims

What is claimed is:
1. An apparatus comprising: a trigger-response mechanism that includes at least one bank of user- programmable registers; and a thread switch handler coupled to the trigger-response mechanism, the thread switch handler to invoke a second instruction stream responsive to an indication from the trigger-response mechanism that a user-defined trigger event has occurred during execution of a first instruction stream.
2. The apparatus of claim 1, wherein the thread switch handler is further to invoke the second instruction stream responsive to an indication from the trigger-response mechanism that a synchronous user-defined trigger event has occurred during execution of the first instruction stream.
3. The apparatus of claim 1 , wherein the thread switch handler is further to invoke the second instruction stream responsive to an indication from the trigger-response mechanism that an asynchronous user-defined trigger event has occurred during execution of the first instruction stream.
4. The apparatus of claim 1, wherein the thread switch handler is to save an instruction pointer address for the first instruction stream before invoking the second instruction stream.
The apparatus of claim 4, further comprising: a task queue to receive the instruction pointer address.
The apparatus of claim 5, wherein: the task queue further comprises a memory location.
The apparatus of claim 5, wherein: the task queue further comprises a register.
8. The apparatus of claim 1, further comprising: a plurality of event counters coupled to the trigger-response mechanism, wherein each event counter is to detect an atomic processor event.
9. The apparatus of claim 8, wherein the thread switch handler is further to invoke the second instruction stream responsive to an indication from the trigger-response mechanism that an asynchronous user-defined trigger event has occurred during execution of the first instruction stream; wherein the asynchronous user-defined trigger event is based on one or more of the atomic processor events.
10. The apparatus of claim 1, wherein the tliread switch handler is to save context information for the first instruction stream before invoking the second instruction stream.
11. The apparatus of claim 10, wherein: the thread switch handler is further to save context for the first instruction stream in a memory location before invoking the second instruction stream.
12. The apparatus of claim 10, wherein: the thread switch handler is further to save context for the first instruction stream in a register before invoking the second instruction stream.
13. The apparatus of claim 1, further comprising: one or more user-programmable control registers coupled to the thread switch handler; the value of the one or more control registers to indicate the weight of context information.
14. A system comprising: a memory to store an instruction; and a single-threaded processor coupled to the memory, wherein the processor provides a thread context; wherein the processor includes a trigger-response mechanism to detect a user- specified trigger event and also includes a switch handler to invoke a helper thread responsive to occurrence of the trigger event.
15. The system of claim 14, wherein: the memory is a DRAM.
16. The system of claim 14, wherein: the instruction is a trigger instruction; and the trigger-response mechanism is further to detect the opcode of the trigger instruction when the trigger instruction reaches an execution phase of an execution pipeline.
17. The system of claim 14, wherein: the instruction is a marking instruction that specifies the trigger event, the trigger event being asynchronous; and the trigger-response mechanism is further to detect the asynchronous trigger event.
18. The system of claim 14, wherein: the switch handler is further to maintain minimal context information for a current thread before invoking the helper thread, wherein the minimal context information excludes traditional context information.
19. The system of claim 18, wherein: the excluded traditional context information further comprises general register values.
20. The system of claim 18, wherein the minimal thread context information comprises an instruction pointer address value.
21. A method comprising: detecting a user-specified trigger condition; suspending execution of a first thread on a single-threaded processor; utilizing hardware to save minimal context information for the current thread without operating system intervention; and invoking a second thread on the single-threaded processor without operating system intervention.
22. The method of claim 21 , wherein: detecting a user-specified trigger condition further comprises determining that a trigger instruction has been encountered.
23. The method of claim 21 , wherein: detecting a user-specified trigger condition further comprises determining that an asynchronous condition specified in a marking instruction has been encountered.
24. The method of claim 21 , wherein: utilizing hardware to save minimal context information further comprises saving an instruction pointer address value.
25. The method of claim 21, further comprising: determining that the first thread should be resumed ; restoring the minimal context information for the first thread; and resuming execution of the first thread without operating system intervention.
26. The method of claim 21 , wherein detecting a user-specified trigger condition further comprises: receiving a marker instruction that specifies the trigger condition; and monitoring a plurality of atomic event indicators to detect the trigger condition.
27. The method of claim 21 , wherein detecting a user-specified trigger condition further comprises: generating an asynchronous response to indicate that the second thread should be invoked.
PCT/US2004/038987 2003-12-05 2004-11-19 User-programmable low-overhead multithreading WO2005062168A2 (en)

Priority Applications (2)

Application Number Priority Date Filing Date Title
DE112004002296T DE112004002296B4 (en) 2003-12-05 2004-11-19 User programmable multithreading with low overhead
CN200480041283.9A CN101218561B (en) 2003-12-05 2004-11-19 Processor, system and method of user-programmable low-overhead multithreading

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
US10/728,649 US7631307B2 (en) 2003-12-05 2003-12-05 User-programmable low-overhead multithreading
US10/728,649 2003-12-05

Publications (2)

Publication Number Publication Date
WO2005062168A2 true WO2005062168A2 (en) 2005-07-07
WO2005062168A3 WO2005062168A3 (en) 2008-01-03

Family

ID=34633761

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/US2004/038987 WO2005062168A2 (en) 2003-12-05 2004-11-19 User-programmable low-overhead multithreading

Country Status (4)

Country Link
US (1) US7631307B2 (en)
CN (1) CN101218561B (en)
DE (1) DE112004002296B4 (en)
WO (1) WO2005062168A2 (en)

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US10877910B2 (en) 2003-02-19 2020-12-29 Intel Corporation Programmable event driven yield mechanism which may activate other threads

Families Citing this family (75)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20050166177A1 (en) * 2004-01-27 2005-07-28 Ylian Saint-Hilaire Thread module chaining
EP1738258A4 (en) 2004-03-13 2009-10-28 Cluster Resources Inc System and method for providing object triggers
US20070266388A1 (en) 2004-06-18 2007-11-15 Cluster Resources, Inc. System and method for providing advanced reservations in a compute environment
EP1622009A1 (en) * 2004-07-27 2006-02-01 Texas Instruments Incorporated JSM architecture and systems
US8176490B1 (en) 2004-08-20 2012-05-08 Adaptive Computing Enterprises, Inc. System and method of interfacing a workload manager and scheduler with an identity manager
CA2586763C (en) 2004-11-08 2013-12-17 Cluster Resources, Inc. System and method of providing system jobs within a compute environment
US7810083B2 (en) * 2004-12-30 2010-10-05 Intel Corporation Mechanism to emulate user-level multithreading on an OS-sequestered sequencer
US7870081B2 (en) * 2004-12-31 2011-01-11 Intel Corporation Parallelization of bayesian network structure learning
US8863143B2 (en) 2006-03-16 2014-10-14 Adaptive Computing Enterprises, Inc. System and method for managing a hybrid compute environment
US9231886B2 (en) 2005-03-16 2016-01-05 Adaptive Computing Enterprises, Inc. Simple integration of an on-demand compute environment
US7950012B2 (en) * 2005-03-16 2011-05-24 Oracle America, Inc. Facilitating communication and synchronization between main and scout threads
EP3203374B1 (en) 2005-04-07 2021-11-24 III Holdings 12, LLC On-demand access to compute resources
US7472256B1 (en) 2005-04-12 2008-12-30 Sun Microsystems, Inc. Software value prediction using pendency records of predicted prefetch values
US20070094213A1 (en) * 2005-07-14 2007-04-26 Chunrong Lai Data partitioning and critical section reduction for Bayesian network structure learning
US20070094214A1 (en) * 2005-07-15 2007-04-26 Li Eric Q Parallelization of bayesian network structure learning
US20070079294A1 (en) * 2005-09-30 2007-04-05 Robert Knight Profiling using a user-level control mechanism
US7774779B2 (en) * 2005-11-18 2010-08-10 At&T Intellectual Property I, L.P. Generating a timeout in a computer software application
US9003421B2 (en) * 2005-11-28 2015-04-07 Intel Corporation Acceleration threads on idle OS-visible thread execution units
US8065690B2 (en) * 2005-12-01 2011-11-22 Cisco Technology, Inc. Method and system for event-based remote procedure call implementation in a distributed computing system
US9754265B2 (en) * 2006-05-01 2017-09-05 At&T Intellectual Property I, L.P. Systems and methods to automatically activate distribution channels provided by business partners
US7502913B2 (en) * 2006-06-16 2009-03-10 Microsoft Corporation Switch prefetch in a multicore computer chip
GB2443507A (en) * 2006-10-24 2008-05-07 Advanced Risc Mach Ltd Debugging parallel programs
US20080141268A1 (en) * 2006-12-12 2008-06-12 Tirumalai Partha P Utility function execution using scout threads
US8819682B2 (en) * 2007-01-23 2014-08-26 Agere Systems Llc Application switching in a single threaded architecture for devices
US8495627B2 (en) * 2007-06-27 2013-07-23 International Business Machines Corporation Resource allocation based on anticipated resource underutilization in a logically partitioned multi-processor environment
US8645974B2 (en) * 2007-08-02 2014-02-04 International Business Machines Corporation Multiple partition adjunct instances interfacing multiple logical partitions to a self-virtualizing input/output device
US8219989B2 (en) * 2007-08-02 2012-07-10 International Business Machines Corporation Partition adjunct with non-native device driver for facilitating access to a physical input/output device
US8574393B2 (en) * 2007-12-21 2013-11-05 Tsinghua University Method for making touch panel
US7996663B2 (en) * 2007-12-27 2011-08-09 Intel Corporation Saving and restoring architectural state for processor cores
US8788795B2 (en) * 2008-02-01 2014-07-22 International Business Machines Corporation Programming idiom accelerator to examine pre-fetched instruction streams for multiple processors
US8640141B2 (en) * 2008-02-01 2014-01-28 International Business Machines Corporation Wake-and-go mechanism with hardware private array
US8127080B2 (en) 2008-02-01 2012-02-28 International Business Machines Corporation Wake-and-go mechanism with system address bus transaction master
US8725992B2 (en) 2008-02-01 2014-05-13 International Business Machines Corporation Programming language exposing idiom calls to a programming idiom accelerator
US8732683B2 (en) * 2008-02-01 2014-05-20 International Business Machines Corporation Compiler providing idiom to idiom accelerator
US8612977B2 (en) * 2008-02-01 2013-12-17 International Business Machines Corporation Wake-and-go mechanism with software save of thread state
US8341635B2 (en) * 2008-02-01 2012-12-25 International Business Machines Corporation Hardware wake-and-go mechanism with look-ahead polling
US8316218B2 (en) 2008-02-01 2012-11-20 International Business Machines Corporation Look-ahead wake-and-go engine with speculative execution
US8516484B2 (en) * 2008-02-01 2013-08-20 International Business Machines Corporation Wake-and-go mechanism for a data processing system
US8880853B2 (en) * 2008-02-01 2014-11-04 International Business Machines Corporation CAM-based wake-and-go snooping engine for waking a thread put to sleep for spinning on a target address lock
US8312458B2 (en) * 2008-02-01 2012-11-13 International Business Machines Corporation Central repository for wake-and-go mechanism
US8225120B2 (en) * 2008-02-01 2012-07-17 International Business Machines Corporation Wake-and-go mechanism with data exclusivity
US8145849B2 (en) 2008-02-01 2012-03-27 International Business Machines Corporation Wake-and-go mechanism with system bus response
US8250396B2 (en) * 2008-02-01 2012-08-21 International Business Machines Corporation Hardware wake-and-go mechanism for a data processing system
US8171476B2 (en) * 2008-02-01 2012-05-01 International Business Machines Corporation Wake-and-go mechanism with prioritization of threads
US8386822B2 (en) * 2008-02-01 2013-02-26 International Business Machines Corporation Wake-and-go mechanism with data monitoring
US8452947B2 (en) 2008-02-01 2013-05-28 International Business Machines Corporation Hardware wake-and-go mechanism and content addressable memory with instruction pre-fetch look-ahead to detect programming idioms
US8886919B2 (en) * 2009-04-16 2014-11-11 International Business Machines Corporation Remote update programming idiom accelerator with allocated processor resources
US8145723B2 (en) * 2009-04-16 2012-03-27 International Business Machines Corporation Complex remote update programming idiom accelerator
US8082315B2 (en) * 2009-04-16 2011-12-20 International Business Machines Corporation Programming idiom accelerator for remote update
US8230201B2 (en) * 2009-04-16 2012-07-24 International Business Machines Corporation Migrating sleeping and waking threads between wake-and-go mechanisms in a multiple processor data processing system
US8327059B2 (en) * 2009-09-30 2012-12-04 Vmware, Inc. System and method to enhance memory protection for programs in a virtual machine environment
US11720290B2 (en) 2009-10-30 2023-08-08 Iii Holdings 2, Llc Memcached server functionality in a cluster of data processing nodes
US8423750B2 (en) * 2010-05-12 2013-04-16 International Business Machines Corporation Hardware assist thread for increasing code parallelism
US8667253B2 (en) 2010-08-04 2014-03-04 International Business Machines Corporation Initiating assist thread upon asynchronous event for processing simultaneously with controlling thread and updating its running status in status register
US8713290B2 (en) 2010-09-20 2014-04-29 International Business Machines Corporation Scaleable status tracking of multiple assist hardware threads
US8793474B2 (en) 2010-09-20 2014-07-29 International Business Machines Corporation Obtaining and releasing hardware threads without hypervisor involvement
US8694832B2 (en) 2011-03-03 2014-04-08 International Business Machines Corporation Assist thread analysis and debug mechanism
US9201689B2 (en) * 2011-04-22 2015-12-01 Cray Inc. Software emulation of massive hardware threading for tolerating remote memory references
US9310875B2 (en) 2011-12-22 2016-04-12 Intel Corporation Instruction that specifies an application thread performance state
EP2831721B1 (en) 2012-03-30 2020-08-26 Intel Corporation Context switching mechanism for a processing core having a general purpose cpu core and a tightly coupled accelerator
US9286081B2 (en) * 2012-06-12 2016-03-15 Apple Inc. Input device event processing
US9582320B2 (en) * 2013-03-14 2017-02-28 Nxp Usa, Inc. Computer systems and methods with resource transfer hint instruction
JP6477216B2 (en) * 2015-05-08 2019-03-06 富士通株式会社 Arithmetic device, thread switching method, and multi-thread program
US10019283B2 (en) * 2015-06-22 2018-07-10 Advanced Micro Devices, Inc. Predicting a context portion to move between a context buffer and registers based on context portions previously used by at least one other thread
CN106980546B (en) * 2016-01-18 2021-08-27 阿里巴巴集团控股有限公司 Task asynchronous execution method, device and system
US10318302B2 (en) 2016-06-03 2019-06-11 Synopsys, Inc. Thread switching in microprocessor without full save and restore of register file
US10558463B2 (en) 2016-06-03 2020-02-11 Synopsys, Inc. Communication between threads of multi-thread processor
US10628320B2 (en) * 2016-06-03 2020-04-21 Synopsys, Inc. Modulization of cache structure utilizing independent tag array and data array in microprocessor
US10613859B2 (en) 2016-08-18 2020-04-07 Synopsys, Inc. Triple-pass execution using a retire queue having a functional unit to independently execute long latency instructions and dependent instructions
US10552158B2 (en) 2016-08-18 2020-02-04 Synopsys, Inc. Reorder buffer scoreboard having multiple valid bits to indicate a location of data
US10210650B1 (en) * 2017-11-30 2019-02-19 Advanced Micro Devices, Inc. Primitive level preemption using discrete non-real-time and real time pipelines
US11513840B2 (en) * 2018-05-07 2022-11-29 Micron Technology, Inc. Thread creation on local or remote compute elements by a multi-threaded, self-scheduling processor
WO2020186630A1 (en) * 2019-03-21 2020-09-24 Huawei Technologies Co., Ltd. Serializing divergent accesses using peeling
US11474861B1 (en) * 2019-11-27 2022-10-18 Meta Platforms Technologies, Llc Methods and systems for managing asynchronous function calls
US11194503B2 (en) * 2020-03-11 2021-12-07 Samsung Electronics Co., Ltd. Storage device having a configurable command response trigger

Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO1999021081A1 (en) * 1997-10-23 1999-04-29 International Business Machines Corporation Method and apparatus for selecting thread switch events in a multithreaded processor
US20020055964A1 (en) * 2000-04-19 2002-05-09 Chi-Keung Luk Software controlled pre-execution in a multithreaded processor
US20030018686A1 (en) * 1999-04-29 2003-01-23 Stavros Kalafatis Method and system to perform a thread switching operation within a multithreaded processor based on detection of a stall condition
US20030061445A1 (en) * 2001-08-29 2003-03-27 Palle Birk Methods and apparatus for improving throughput of cache-based embedded processors

Family Cites Families (22)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US2055964A (en) * 1934-09-26 1936-09-29 Granberg Meter Corp Flow shut-off mechanism
US3061445A (en) * 1959-04-30 1962-10-30 Abbott Lab Effervescent sweetening tablet
US3018686A (en) * 1961-01-10 1962-01-30 Sawyer S Inc Tachistoscope
US4539637A (en) * 1982-08-26 1985-09-03 At&T Bell Laboratories Method and apparatus for handling interprocessor calls in a multiprocessor system
JP3034873B2 (en) * 1988-07-01 2000-04-17 株式会社日立製作所 Information processing device
US5247676A (en) * 1989-06-29 1993-09-21 Digital Equipment Corporation RPC based computer system using transparent callback and associated method
US5179702A (en) * 1989-12-29 1993-01-12 Supercomputer Systems Limited Partnership System and method for controlling a highly parallel multiprocessor using an anarchy based scheduler for parallel execution thread scheduling
US5390329A (en) * 1990-06-11 1995-02-14 Cray Research, Inc. Responding to service requests using minimal system-side context in a multiprocessor environment
US6098169A (en) * 1997-12-23 2000-08-01 Intel Corporation Thread performance analysis by monitoring processor performance event registers at thread switch
US6272520B1 (en) * 1997-12-31 2001-08-07 Intel Corporation Method for detecting thread switch events
US6560626B1 (en) * 1998-04-02 2003-05-06 Microsoft Corporation Thread interruption with minimal resource usage using an asynchronous procedure call
US6401155B1 (en) * 1998-12-22 2002-06-04 Philips Electronics North America Corporation Interrupt/software-controlled thread processing
US7222150B1 (en) * 2000-08-15 2007-05-22 Ikadega, Inc. Network server card and method for handling requests received via a network interface
US20020138706A1 (en) * 2001-03-21 2002-09-26 Littera, Inc. Reader-writer lock method and system
US6928645B2 (en) * 2001-03-30 2005-08-09 Intel Corporation Software-based speculative pre-computation and multithreading
US7047533B2 (en) * 2001-09-10 2006-05-16 Hewlett-Packard Development Company, L.P. Wait utility and method
US7117346B2 (en) * 2002-05-31 2006-10-03 Freescale Semiconductor, Inc. Data processing system having multiple register contexts and method therefor
US7228348B1 (en) * 2002-08-13 2007-06-05 Finisar Corporation System and method for triggering communications data capture
US8176298B2 (en) * 2002-10-08 2012-05-08 Netlogic Microsystems, Inc. Multi-core multi-threaded processing systems with instruction reordering in an in-order pipeline
US7010672B2 (en) * 2002-12-11 2006-03-07 Infineon Technologies Ag Digital processor with programmable breakpoint/watchpoint trigger generation circuit
US7376954B2 (en) * 2003-08-28 2008-05-20 Mips Technologies, Inc. Mechanisms for assuring quality of service for programs executing on a multithreaded processor
US6931354B2 (en) * 2003-11-13 2005-08-16 International Business Machines Corporation Method, apparatus and computer program product for efficient, large counts of per thread performance events

Patent Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO1999021081A1 (en) * 1997-10-23 1999-04-29 International Business Machines Corporation Method and apparatus for selecting thread switch events in a multithreaded processor
US20030018686A1 (en) * 1999-04-29 2003-01-23 Stavros Kalafatis Method and system to perform a thread switching operation within a multithreaded processor based on detection of a stall condition
US20020055964A1 (en) * 2000-04-19 2002-05-09 Chi-Keung Luk Software controlled pre-execution in a multithreaded processor
US20030061445A1 (en) * 2001-08-29 2003-03-27 Palle Birk Methods and apparatus for improving throughput of cache-based embedded processors

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US10877910B2 (en) 2003-02-19 2020-12-29 Intel Corporation Programmable event driven yield mechanism which may activate other threads

Also Published As

Publication number Publication date
US7631307B2 (en) 2009-12-08
DE112004002296B4 (en) 2010-07-08
WO2005062168A3 (en) 2008-01-03
CN101218561A (en) 2008-07-09
CN101218561B (en) 2013-03-06
US20050125802A1 (en) 2005-06-09
DE112004002296T5 (en) 2006-09-28

Similar Documents

Publication Publication Date Title
US7631307B2 (en) User-programmable low-overhead multithreading
US9003421B2 (en) Acceleration threads on idle OS-visible thread execution units
US8607235B2 (en) Mechanism to schedule threads on OS-sequestered sequencers without operating system intervention
JP5415069B2 (en) Primitives for extending thread-level speculative execution
US7127561B2 (en) Coherency techniques for suspending execution of a thread until a specified memory access occurs
US8539485B2 (en) Polling using reservation mechanism
US8689215B2 (en) Structured exception handling for application-managed thread units
US6493741B1 (en) Method and apparatus to quiesce a portion of a simultaneous multithreaded central processing unit
JP3113855B2 (en) Performance monitoring in data processing systems
US7587584B2 (en) Mechanism to exploit synchronization overhead to improve multithreaded performance
US20030126186A1 (en) Method and apparatus for suspending execution of a thread until a specified memory access occurs
US20030046521A1 (en) Apparatus and method for switching threads in multi-threading processors`
US20110119469A1 (en) Balancing workload in a multiprocessor system responsive to programmable adjustments in a syncronization instruction
JPH10275100A (en) Method and system for monitoring performance in multi-thread processor
EP1934749A2 (en) Profiling using a user-level control mechanism
US20030126379A1 (en) Instruction sequences for suspending execution of a thread until a specified memory access occurs
US6499116B1 (en) Performance of data stream touch events
US20110302395A1 (en) Hardware assist thread for dynamic performance profiling
Whay et al. Concurrent Event Handling Through Multithreading

Legal Events

Date Code Title Description
AK Designated states

Kind code of ref document: A2

Designated state(s): AE AG AL AM AT AU AZ BA BB BG BR BW BY BZ CA CH CN CO CR CU CZ DE DK DM DZ EC EE EG ES FI GB GD GE GH GM HR HU ID IL IN IS JP KE KG KP KR KZ LC LK LR LS LT LU LV MA MD MG MK MN MW MX MZ NA NI NO NZ OM PG PH PL PT RO RU SC SD SE SG SK SL SY TJ TM TN TR TT TZ UA UG US UZ VC VN YU ZA ZM ZW

AL Designated countries for regional patents

Kind code of ref document: A2

Designated state(s): GM KE LS MW MZ NA SD SL SZ TZ UG ZM ZW AM AZ BY KG KZ MD RU TJ TM AT BE BG CH CY CZ DE DK EE ES FI FR GB GR HU IE IS IT LU MC NL PL PT RO SE SI SK TR BF BJ CF CG CI CM GA GN GQ GW ML MR NE SN TD TG

121 Ep: the epo has been informed by wipo that ep was designated in this application
WWE Wipo information: entry into national phase

Ref document number: 1120040022967

Country of ref document: DE

WWE Wipo information: entry into national phase

Ref document number: 200480041283.9

Country of ref document: CN

RET De translation (de og part 6b)

Ref document number: 112004002296

Country of ref document: DE

Date of ref document: 20060928

Kind code of ref document: P

WWE Wipo information: entry into national phase

Ref document number: 112004002296

Country of ref document: DE

122 Ep: pct application non-entry in european phase
REG Reference to national code

Ref country code: DE

Ref legal event code: 8607

REG Reference to national code

Ref country code: DE

Ref legal event code: 8607