WO1997044732A1 - A multi-threaded microprocessor configured to execute interrupt service routines as a thread - Google Patents

A multi-threaded microprocessor configured to execute interrupt service routines as a thread Download PDF

Info

Publication number
WO1997044732A1
WO1997044732A1 PCT/US1997/008361 US9708361W WO9744732A1 WO 1997044732 A1 WO1997044732 A1 WO 1997044732A1 US 9708361 W US9708361 W US 9708361W WO 9744732 A1 WO9744732 A1 WO 9744732A1
Authority
WO
WIPO (PCT)
Prior art keywords
context
microprocessor
instmction
intermpt
thread
Prior art date
Application number
PCT/US1997/008361
Other languages
French (fr)
Inventor
Drew J. Dutton
David S. Christie
Brian C. Barnes
Original Assignee
Advanced Micro Devices, Inc.
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 Advanced Micro Devices, Inc. filed Critical Advanced Micro Devices, Inc.
Priority to DE69701141T priority Critical patent/DE69701141T2/en
Priority to EP97924753A priority patent/EP0898743B1/en
Publication of WO1997044732A1 publication Critical patent/WO1997044732A1/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/4812Task transfer initiation or dispatching by interrupt, e.g. masked
    • 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/30Arrangements for executing machine instructions, e.g. instruction decode
    • G06F9/38Concurrent instruction execution, e.g. pipeline, look ahead
    • G06F9/3885Concurrent instruction execution, e.g. pipeline, look ahead using a plurality of independent parallel functional units
    • 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/461Saving or restoring of program or task context
    • G06F9/462Saving or restoring of program or task context with multiple register sets

Definitions

  • TITLE A Multi-Threaded Microprocessor Configured To Execute Interrupt Service Routines
  • the present invention is related to the field of microprocessors and, more particularly, to the interrupt handling mechanisms within microprocessors
  • Modem computer systems and the software which runs thereon demand a high performance interrupt structure in order to operate efficiently Interrupts are used to switch between tasks, and so a multi-tasking operating system benefits from a high performance interrupt structure
  • a "multi-tasking" operating system is configured to run multiple programs concurrently Additionally, interrupts provide a means for an electronic device external to the microprocessor to request attention from the operatmg system Modem day computer systems are including increasing numbers of these electronic devices, prompting the need for a high performance interrupt structure
  • Interrupts cause a microprocessor within the computer system to suspend execution of a task in order to execute a specific software routine (referred to as an interrupt service routine) comprising a set of instructions
  • the interrupt is typically unrelated to the instructions being executed by the microprocessor at the time the interrupt is signalled Instead, the interrupt may be caused by an external device requiring software attention For example, a buffer within an input/output device may fill with data to be transferred to another device or to memory
  • interrupt service routine comprising a set of instructions
  • a task may be a portion of a program, an operatmg system routine, or even another interrupt service routine Because the interrupt is normally unrelated to the task being performed by the microprocessor and is asynchronous to the task itself, the interrupt service routine is executed in such a way that the task may be resumed In order to resume the task, the "context" within which the task is executmg may be saved to memory
  • the context of a task is the state of the microprocessor at a particular moment of time in which the task is executing
  • the context may include register values associated with the task when the task is interrupted In other embodiments, context may be defined to mclude other values as well When the context is saved, the register portion of the context may be saved to memory After saving the context, the interrupt service routine may be executed Upon completion of the interrupt service routine, the context may be restored to the microprocessor and the task is resumed Since the restored context is substantially identical to the context when the task was interrupted, the task
  • the x86 architecture defines the context of 32 bit microprocessors to be 104 bytes. Other microprocessor architectures may define contexts having more or fewer bytes. Additionally, when the segment registers (which are part of the context in the x86 architecture) are reloaded, segment reloads are initiated to translate the segments. More bytes are transferred when the reload occurs, and clock cycles are required to translate the extra bytes into a format for storing within the microprocessor.
  • a clock cycle refers to the amount of time required by portions of the microprocessor to perform their functions.
  • the results of each function are stored in a storage location (e.g. a register or memory) and may be used by another function in the next clock cycle.
  • the bus used by a microprocessor to communicate with other electrical devices may operate according to a different clock cycle than the microprocessor itself.
  • the clock cycle associated with the bus is often referred to as the bus clock cycle. If the context is saved by the microprocessor when an interrupt is recognized by the microprocessor, the interrupt is being handled via a "task switch".
  • the interrupt service routine is isolated from the interrupted task such that any modifications the intemipt service routine performs to the microprocessor's context information will not affect the operation of the task when resumed.
  • the context is restored prior to resuming the task.
  • an interrupt service routine will only require access to a few registers within the register set to perform its function, ln this case, a full context save is not necessary since some registers will not be modified by the interrupt service routine. Instead, only those storage locations which must be changed in order to fetch the instructions within the interrupt service routine need be saved prior to beginning execution of the interrupt service routine.
  • the EIP register and CS segment register (which define the address and segment of the instructions to be fetched and executed) and the flags register (which is modified by many of the x86 instructions) are saved. These values are pushed onto the stack defined by the x86 architecture when not using the task switch method of interrupt handling.
  • an interrupt service routine When the task switch method of interrupt handling is not in use, an interrupt service routine must save the values stored within registers which it employs to carry out its intended function. Often, the values are stored on the stack. This method of interrupt handling is referred to as an interrupt gate or trap gate in the x86 architecture, depending on whether or not the interrupt service routine may itself be interrupted. If the interrupt service routine does not use all of the microprocessor's context, then clock cycles may be saved with respect to performing the full context save of a task switch. The interrupt service routine is entered and exited more rapidly since context save and restore is not performed. Unfortunately, at least a few registers must still be stored. Additionally, the interrupt service routines are lengthened by the number of instructions required to save and restore context values used by the interrupt service routines.
  • the computer system provides a mechanism for identifying one of multiple interrupt service routines.
  • the computer system thus provides flexibility to the programmer in that an interrupt service routine may be tailored to the needs of a particular device or interrupt source. Without the interrupt vector approach, all interrupts would fetch an interrupt service routine from the same address in memory. A relatively complicated routine stored at the address would need to be written to perform the handling of all types of interrupts from all electronic devices.
  • fetching refers to transferring the contents of a memory location to a destination.
  • interrupt vector is a number which is indicative of a particular interrupt service routine.
  • the interrupt vector is an index into an interrupt vector table which provides information identifying the address of the associated intemipt service routine.
  • the interrupt vector table is also referred to as an interrupt descriptor table.
  • the interrupt vector is provided via a dedicated bus transaction.
  • a "bus transaction" is a transfer of information across a bus. Bus transactions may include address and data information as well as the type of transfer. Bus transactions may be address-only, in which an address and related control information are broadcast; data-only, in which data and related control information are broadcast; or address-data in which both address and data are involved.
  • a bus transaction dedicated for interrupt processing is an interrupt acknowledge bus transaction.
  • an intemipt acknowledge bus transaction is performed by the microprocessor to acknowledge the existence of an interrupt condition and then a second interrupt acknowledge bus transaction is performed to collect the interrupt vector.
  • many clock cycles are used to perform the two interrupt acknowledge bus transactions. Until the interrupt vector is known, the computer system may not begin fetching the interrupt service routine.
  • the problems outlined above are in large part solved by a microprocessor according to the present invention.
  • the present microprocessor includes a context file configured to store multiple contexts.
  • the microprocessor may execute multiple threads, each thread having its own context within the microprocessor.
  • the present microprocessor is capable of executing at least two threads concurrently: a task and an interrupt service routine.
  • interrupt service routines may be executed without disturbing a task's context and without performing a context save operation (either within the interrupt service routine or prior to entering the interrupt service routine). Instead, the interrupt service routine accesses a context which is independent of the context of the task.
  • the context file of the present microprocessor includes multiple intemipt service routine contexts.
  • ISR context storages allow for nested interrupts to be performed concurrently, advantageously increasing interrupt service performance.
  • intemipt nesting required actions similar to the interruption of a task with respect to the interrupted intemipt service routine. These context saving actions may be eliminated through the use of multiple ISR context storages.
  • the present microprocessor is configured to execute multiple tasks and multiple interrupt service routines concurrently.
  • multiple tasks may be executed concurrently by the present microprocessor in addition to executing multiple intermpt service routines concurrently.
  • the present microprocessor includes a primary context and multiple local context storages coupled to each of its execution units.
  • a given execution unit may execute instmctions referencing the primary context or the local context connected thereto.
  • one or more execution units may be dedicated for executing intemipt service routines (whose context is stored in the local context storage) while other units remain available for executing tasks.
  • the execution units dedicated for executing intermpt service routines may advantageously execute instructions associated with a task.
  • the dedicated unit may switch to executing the intermpt service routine without requiring a context save.
  • the instmctions instead access their individual contexts according to their thread tags, which identify the thread to which an instruction belongs.
  • the present invention contemplates a microprocessor comprising an instruction cache, an instruction decode unit, a plurality of execution units, and a context file.
  • the instruction cache is configured to store a plurality of instruction blocks and a plurality of thread tags. Each of the plurality of thread tags is associated with at least one of the plurality of instruction blocks and identifies a thread to which the associated instruction blocks belong.
  • Coupled to the instruction cache is the instruction decode unit.
  • the instruction decode unit is configured to decode instmctions associated with multiple threads and to transfer the instmctions to the plurality of execution units.
  • the plurality of execution units are coupled to the instruction decode unit and are configured to execute the instmctions, producing a plurality of results.
  • the context file is configured to store the plurality of results. Each of the plurality of results is stored according to the thread tag associated with the instruction producing the result.
  • the present invention still further contemplates a computer system comprising a microprocessor and an intermpt controller.
  • the microprocessor is configured to concurrently execute multiple threads, including intermpt service routines.
  • the microprocessor is further configured to execute an intermpt service routine upon receipt of an intermpt signal.
  • the intemipt controller is coupled to convey the intemipt signal to the microprocessor.
  • FIG. 1 is a block diagram of one embodiment of a computer system including a microprocessor.
  • Fig. 2 is a block diagram of one embodiment of the microprocessor shown in Fig. 1, including a context file.
  • Fig. 2 A is a block diagram of one embodiment of an instruction cache shown in Fig. 2.
  • Fig. 3 is a block diagram of one embodiment of the context file shown in Fig. 2.
  • Fig. 4 is a block diagram of another embodiment of the context file shown in Fig. 2.
  • Fig. 5 is a block diagram of another embodiment of the microprocessor shown in Fig. 1.
  • Fig. 6 is a diagram of one embodiment of a context.
  • FIG. 1 one embodiment of a computer system 10 including a microprocessor 12, an intermpt controller 14, a plurality of input/output (I/O) devices 16A-16N (referred to collectively as I/O devices 16), a bus bridge 18, a main memory 20, and a cache 22 is shown.
  • Microprocessor 12, intermpt controller 14, bus bridge 18, main memory 20, and cache 22 are coupled to a CPU bus 24 which effects high speed, high bandwidth communication between the connected devices. Lower speed, lower bandwidth communication is provided for I/O devices 16 via input/output bus 26.
  • I/O devices 16 are coupled to interrupt controller 14 via an intermpt bus 28.
  • Microprocessor 12 is a high performance microprocessor configured to execute instructions stored in main memory 20.
  • microprocessor 12 implements the x86 microprocessor architecture.
  • Microprocessor 12 includes storage elements configured to store the context of a task being executed by microprocessor 12.
  • microprocessor 12 includes storage elements configured to store alternate context information.
  • this alternate context information includes context information associated with intemipt service routines.
  • Interrupt service routines may be executed concurrently with tasks, and therefore no context save need be performed by microprocessor 12.
  • intermpt service routines may be executed without disturbing a task's context and without performing a context save operation (either within the intermpt service routine or prior to entering the intermpt service routine).
  • Intermpt bus 28 includes at least one intermpt conductor per I/O device 16A-16N.
  • An intermpt request signal conveyed on the associated intermpt conductor is indicative of a request for interrupt of microprocessor 12 by the associated I/O device 16A-16N.
  • Intemipt controller 14 is configured to receive the intermpt request signals and to convey an intermpt signal to microprocessor 12 upon CPU bus 24 in response to the intermpt request signals.
  • intemipt controller 14 is similar to an 8259A interrupt controller used in IBM compatible personal computer systems.
  • intemipt controller 14 includes multiple intemipt controllers similar to the 8259A cascaded to allow a larger number of I/O devices 16 to be connected.
  • Intermpt controller 14 is programmable, and may be enabled to assert the intermpt signal individually for each intermpt request signal. In other words, intermpt controller 14 may be enabled to assert the intemipt signal if the intermpt request signal from I/O device 16A is asserted but not if the intermpt request signal from I/O device 16B is asserted (or vice-versa). In another embodiment, intermpt controller 14 may be programmed with a priority scheme for the intermpt request signals. The priority scheme is devised such that, if multiple intemipt request lines are asserted concurrently: the highest priority intermpt request is serviced first; followed by the next highest priority intermpt request; etc.
  • Intermpt controller 14 provides the intermpt vector which identifies the location of the intermpt service routine associated with the interrupting I/O device 16A-16N.
  • the intermpt vector is transferred across CPU bus 24 after microprocessor 12 acknowledges receipt of the intermpt signal.
  • microprocessor 12 issues an intemipt acknowledge bus transaction on CPU bus 24 when acknowledging the intermpt signal, and then issues a second intermpt acknowledge bus transaction to collect the interrupt vector.
  • Other transactions upon CPU bus 24 are used to transfer data among devices coupled to CPU bus 24.
  • intermpt acknowledge transaction An exemplary bus implementing such an intermpt acknowledge transaction may be found within the publication entitled: "16-bit and 32-bit Microprocessors Architecture, Software and Interfacing Techniques" by Singh, et al, Prentice Hall, Englewood Cliffs, New Jersey, 1991. This publication is inco ⁇ orated herein by reference in its entirety.
  • intermpt acknowledge transactions are received by intermpt controller 14 upon a bus other than CPU bus 24.
  • the intermpt acknowledge bus transaction may be conveyed by bus bridge 18 onto I/O bus 26.
  • Intermpt controller 14 may be coupled to I/O bus 26 in order to receive the intemipt acknowledge bus transaction.
  • Intemipt controller 14 is, however, still coupled to the intermpt conductor of CPU bus 24 (to which microprocessor 12 is coupled). In other embodiments, intermpt controller 14 may receive intermpt acknowledge bus transactions directly from CPU bus 24 or from yet another bus coupled to CPU bus 24 via one or more bus bridges similar to bus bridge 18.
  • Bus bridge 18 is provided to assist in communications (other than interrupt requests) between I/O devices 16 and devices coupled to CPU bus 24. I/O devices 16 typically require longer bus clock cycles than microprocessor 12 and other devices coupled to CPU bus 24. Therefore, bus bridge 18 provides a buffer between CPU bus 24 and input/output bus 26. Additionally, bus bridge 18 translates transactions from one bus protocol to another.
  • input/output bus 26 is an Enhanced Industry Standard Architecture (EISA) bus and bus bridge 18 translates from the CPU bus protocol to the EISA bus protocol.
  • EISA Enhanced Industry Standard Architecture
  • input/output bus 26 is a Peripheral Component Interconnect (PCI) bus and bus bridge 18 translates from the CPU bus protocol to the PCI bus protocol. It is noted that many variations of CPU bus protocols exist.
  • Microprocessor 12 may employ any suitable bus protocol.
  • I/O devices 16 provide an interface between computer system 10 and other devices external to the computer system. Exemplary I/O devices include a modem, a serial or parallel port, a sound card, etc. I/O devices 16 may also be referred to as peripheral devices.
  • Main memory 20 stores data and instmctions for use by microprocessor 12.
  • main memory 20 includes at least one Dynamic Random Access Memory (DRAM) cell and a DRAM memory controller.
  • Cache 22 is a small, high speed memory for temporarily storing data and instmctions from main memory 20. If microprocessor 12 requests an address from main memory 20 and cache 22 is storing data associated with the requested address, then cache 22 provides the data.
  • DRAM Dynamic Random Access Memory
  • Cache 22 is an optional component, computer system 10 is fully functional without it. However, cache 22 may improve the performance of computer system 10. It is noted that cache 22 may also be inserted between microprocessor 12 and CPU bus 24 in other embodiments. It is further noted that microprocessor 12 may incorporate a cache such that cache 22 is a second level cache. Additionally, one embodiment of microprocessor 12 incorporates second level cache 22.
  • a second embodiment of computer system 10 is contemplated in which I/O devices 16 are coupled to CPU bus 24. Intermpt controller 14 and bus bridge 18 may not be included in this embodiment. Instead, each I/O device 16 individually responds to intermpt acknowledge bus transactions in a manner similar to intermpt controller 14. It is noted that although computer system 10 as shown in Fig. 1 includes one microprocessor, other embodiments of computer system 10 may include multiple microprocessors similar to microprocessor 12. It is further noted that the above discussion refers to the assertion of various signals. As used herein, a signal is "asserted" if it conveys a value indicative of a particular piece of information.
  • a signal is "deasserted” if it conveys a value indicative of a lack of a particular piece of information.
  • a signal may be defined to be asserted when it conveys a logical zero value or, conversely, when it conveys a logical one value. It is still further noted that devices attached to CPU bus 24 may also convey interrupt request signals to intermpt controller 14.
  • Microprocessor 12A includes a bus interface unit 44, an instmction cache 30, a data cache 42, and a context file 40.
  • Bus interface unit 44 is coupled to instmction cache 30 via an instmction transfer bus 46.
  • bus interface unit 44 is coupled to data cache 42 via a data transfer bus 48.
  • microprocessor 12A includes a multiple instmction decode unit 50 coupled between instmction cache 30 and a plurality of execution units 52A-52N (referred to collectively as execution units 52).
  • a load/store unit 54 is included to interface between execution units 52 and data cache 42.
  • a reorder buffer 56 is coupled to decode unit 50, execution units 52, and load/store unit 54.
  • microprocessor 12A is configured to execute multiple tasks concurrently.
  • One of the multiple tasks being executed is referred to herein as a "thread".
  • a context storage within context file 40 is allocated. Because each thread has its own context, it may execute along with other threads without interfering with those threads.
  • microprocessor 12A is configured to execute at least two threads concurrently. One thread is the main task being executed by microprocessor 12 A, and the second thread is an intermpt service routine.
  • Instmction cache 30 is a high speed cache memory configured to store instruction blocks.
  • An instmction block is a plurality of instmctions stored within contiguous bytes of main memory 20.
  • an instmction block is the number of instmction bytes stored within a cache line of instmction cache 30.
  • Each instmction block is associated with a thread tag stored within instmction cache 30. The thread tag identifies an instmction block as part of a particular thread executing upon microprocessor 12A, and may be assigned when the instruction block is transferred from main memory to instruction cache 30.
  • instruction cache 30 may be configured into a set-associative, direct mapped, or fully associative configuration. Additionally, instmction cache 30 may detect branches and perform branch prediction. Any branch prediction mechanism may be used.
  • instmctions When instmctions are fetched from instmction cache 30 into instmction decode unit 50, the associated thread tag is conveyed along with each instmction.
  • the thread tag identifies which context storage within context file 40 the instmctions are intended to access.
  • Context values such as register values, are conveyed from context file 40 and stored into context file 40 according to the context value requested and the thread tag associated with the instmction. Therefore, each thread is isolated from other threads executing upon microprocessor 12 A.
  • microprocessor 12A is configured to execute at least two threads.
  • One of the threads is an intermpt service routine.
  • the intermpt service routine is executed when bus interface unit 44 receives an intermpt signal upon CPU bus 24 and performs intemipt acknowledge bus transactions to receive the intemipt vector. Once the address of the intermpt service routine is determined from the received intermpt vector, bus interface unit 44 signals instmction cache 30 to begin thread execution at the intermpt service routine address. If the instructions comprising the intermpt service routine reside within the cache, the thread tag stored with the interrupt service routine is used and the intermpt service routine begins execution.
  • instmction cache 30 assigns a thread tag to the instmctions from thread tags which are not currently in use within microprocessor 12 A.
  • Instmction cache 30 includes a cache, tags, and control unit 110, a context allocation control unit 112, and a free contexts storage 1 14.
  • Instmction transfer bus 46 is coupled to cache, tags, and control unit 1 10. Additionally, cache, tags and control unit 110 is configured to transmit instmctions to instmction decode unit 50.
  • Context allocation control unit 112 is configured to receive an intermpt indication upon an intermpt indication conductor 116, and is further configured to convey an intermpt accept indication upon intermpt accept conductor 1 18. Additionally, context control unit 112 is coupled to an IRET retire bus 120 from reorder buffer 56.
  • Context allocation control unit 1 12 is coupled to cache, tags, and control unit 1 10 and to free contexts storage 1 14.
  • Context allocation control unit 112 is configured to allocate thread tags (and therefore the corresponding context within context file 40) to intermpt service routines. Bus interface unit 44 informs context allocation control unit 112 when an intemipt is signalled from CPU bus 24. If a thread tag is available (i.e. if free contexts storage 114 indicates that a context may be allocated), then context allocation control unit 1 12 allocates die thread tag to the intermpt service routine. Context allocation control unit 1 12 provides the allocated thread tag to cache, tags, and control unit 110.
  • Cache, tags, and control unit 1 10 associates the thread tag with instmctions fetched from the intemipt service routine. Additionally, upon thread tag allocation, context allocation control unit 112 asserts an acceptance indication upon intermpt accept conductor 1 18. Bus interface unit 44, upon receipt of the acceptance indication, acknowledges the intermpt upon CPU bus 24. If a thread tag is not available, context allocation control unit 112 does not assert the acceptance indication. Bus interface unit 44 thereby withholds intermpt acknowledgement until a thread tag becomes available.
  • IRET instmction i.e. an intemipt return instmction indicating that an intermpt service routine has been completed
  • the thread tag associated with the IRET instmction is conveyed upon IRET retire bus 120.
  • context allocation control unit stores an indication of the thread tag into free contexts storage 114. The thread tag is thereby released from association with the intermpt service routine and may be assigned to another thread.
  • Software may also access free contexts storage 114.
  • the software may select a thread tag which is available (as indicated in free contexts storage 1 14) and assign the thread tag to a task being executed by microprocessor 12.
  • the software Upon assigning the thread tag, the software stores an indication of the context allocation into free contexts storage 1 14. Because the context is indicated as allocated, context allocation control unit 1 12 does not allocate the context to an intermpt service routine.
  • the software additionally releases the context when the task has completed by storing an indication of the released thread tag into free contexts storage 1 14.
  • the software may additionally request the total number of contexts available within microprocessor 12 from context allocation control unit 112, to thereby determine thread tag availability.
  • free contexts storage 114 is configured to store a bit corresponding to each context within microprocessor 12. When the bit is set, the corresponding context is free (i.e. available for allocation). When the bit is clear, the corresponding context is in use (i.e. not available for allocation). Context allocation control unit 112 clears the bit when the context is allocated to an intermpt service routine, and sets the bit when the context is released via retirement of an intermpt return instmction. Similarly, software may set and clear the bit when allocating and deallocating the corresponding context.
  • microprocessor 12A is a superscalar microprocessor configured to execute multiple instructions during a clock cycle.
  • Decode unit 50 therefore decodes multiple instmctions during a single clock cycle and dispatches the instmctions to execution units 52 and load/store unit 54.
  • the instmctions decoded and dispatched from decode unit 50 during a clock cycle may be associated with more than one thread.
  • a storage location within reorder buffer 56 is allocated for each decoded and dispatched instruction. The storage locations are allocated to instructions in the order they occur within the thread, so that the results created by executing the instmctions may be recorded in register file 40 or data cache 42 in program order. Storage locations may be allocated in any order with respect to instmctions from different threads.
  • execution units 52 are asymmetrical execution units. Each execution unit 52A- 52N is configured to execute a particular subset of microprocessor 12A's instmction set. The particular subset of the instmction set which execution unit 52A is configured to execute may differ from the particular subset of the instmction set which execution unit 52B is configured to execute. Similarly, other execution units may have differing particular subsets of the instmction set. In another embodiment, execution units 52 are symmetrical execution units. Each execution unit 52A-52N is configured to execute a similar subset of the instruction set. When an execution unit 52 executes an instmction, it produces a result according to the intended operation of the instmction. The result is stored in a destination, which may be a register or a memory location.
  • decode unit 50 is capable of decoding a certain number of instmctions during a clock cycle. When multiple threads are being executed concurrently by microprocessor 12A, the certain number may be allocated among the threads. Although any allocation method may be used, in one embodiment decode unit 50 decodes an equal number of instmctions from each of the multiple threads during a clock cycle. It is further noted that instmctions are considered to be in order with respect to other instmctions within the same thread. Instmctions from different threads have no ordering relationship to each other.
  • Reorder buffer 56 provides dependency checking and result forwarding such that each instmction receives the correct operand values prior to that instmction being executed.
  • Reorder buffer 56 includes temporary storage for the result of each instmction until that instmction is retired. An instmction is retired by storing its result into context file 40 or data cache 42 (if needed) and deleting the instruction from reorder buffer 56. If an instmction decoded by decode unit 50 requires the result of an instmction which has not yet executed, then a tag indicative of which reorder buffer storage location will store that result is forwarded to the execution unit receiving the instmction in lieu of the operand value. The execution unit then monitors the results produced by the execution units for the provided tag.
  • the execution unit generating the result conveys the tag along with the result to reorder buffer 56.
  • the execution unit awaiting the tag captures the result and stores it along with the instmction for later execution. Monitoring for the register tag and capturing the associated result is referred to as "result forwarding". It is noted that any suitable reorder buffer configuration may be employed by microprocessor 12 A. It is further noted that dependency checking involves not only determining which result is needed by an instmction, but also determining which context the results stored within reorder buffer 56 are associated with. A dependency exists if a particular result from a particular context is stored within reorder buffer 56.
  • execution units 52 execute all instmctions within the instmction set of microprocessor 12A except for load and store instmctions.
  • Load/store unit 54 executes the load and store instructions. Additionally, dependencies between load and store instmctions are detected and resolved by load/store unit 54.
  • Data cache 42 is a high speed cache memory configured to store data being manipulated by microprocessor 12A. It is understood that data cache 42 may be configured into a set-associative or direct mapped configuration.
  • Bus interface unit 44 effects communication between microprocessor 12A and other devices coupled to CPU bus 24. For example, instmction code fetches which miss in instmction cache 30 are transferred from main memory 20 (shown in Fig. 1) to instmction cache 30 through bus interface unit 44. Additionally, data memory accesses which miss data cache 42 are transferred from main memory 20 to data cache 42. Data cache 42 may store modified data which must be written back to main memory 20, the transfer of which is also effected by bus interface unit 44. Bus interface unit 44 is adapted to receive the aforementioned intermpt signal upon CPU bus 24 as well. When the interrupt signal is received in a state indicative of a request for intermpt, bus interface unit 44 conveys a signal indicative of intermpt to instmction cache 30.
  • Bus interface unit 44 reads the intermpt vector from intermpt controller 14 and performs the appropriate translation of the intermpt vector into an intermpt address.
  • the intermpt vector is used as an index into an intemipt descriptor table which provides protection information indicative of the privilege level and allowable memory access of the intermpt service routine as well as the intermpt service routine address.
  • the intermpt service routine address is then conveyed to instmction cache 30.
  • Execution units 52 and load/store unit 54 may employ reservation stations to store instmctions dispatched to the unit. An instmction remains in the reservation station until all of its operands are available, and then is executed by the associated execution unit. It is noted that the above mentioned reservation stations may be configured outside of the associated execution unit.
  • microprocessors may be found within the commonly assigned, co- pending patent application entitled “High Performance Superscalar Microprocessor”, Serial No. 08/146,382, filed October 29, 1993 by Witt, et al. Further information regarding microprocessors may be found within the commonly assigned, co-pending patent application entitled “Superscalar Microprocessor Including a High Performance Instmction Alignment Unit", Serial No. 08/377843, filed January 25, 1995 by Witt, et al. The disclosures of these patent applications are incorporated herein by reference in their entirety.
  • Context file 40A includes a primary context storage 60 as well as multiple intemipt service routine (ISR) context storages 62A-62N (collectively referred to as context storages 62).
  • context file 40A includes N ISR context storages 62.
  • Primary context storage 60 stores the context associated with a task being executed by microprocessor 12A.
  • Each ISR context storage stores the context associated with an intermpt service routine.
  • Microprocessor 12A when configured with context file 40 A, may execute a task and multiple intermpt service routines as concurrent threads.
  • Multiple ISR context storages allow for nested interrupts to be performed concurrently, advantageously increasing intermpt service performance.
  • Intermpt nesting occurs when an intermpt service routine is itself interrupted by a second intermpt being signalled by interrupt controller 14.
  • interrupt controller 14 Previously, intemipt nesting required actions similar to the interruption of a task with respect to the interrupted intermpt service routine. These context saving actions may be eliminated through the use of multiple ISR context storages.
  • primary context storage 60 includes a complete context of microprocessor 12A.
  • ISR context storages 62 store a complete context in one embodiment.
  • ISR context storages 62 store a subset of the context of microprocessor 12A.
  • the intermpt service routines which may be executed upon microprocessor 12A are constrained to use that subset.
  • ISR context storages 62 may contain a subset of the registers employed within microprocessor 12A's microprocessor architecture. Intermpt service routines may only encode instmctions utilizing those registers within the subset.
  • Context file 40 A further includes a context control unit 66 coupled to primary context storage 60 and
  • Context storage unit 60 receives the requests for context values from reorder buffer 216 and identifies which context storage is affected.
  • Reorder buffer 216 conveys a value indicative of the context value requested as well as the thread tag associated with the instmction for which the request is performed. The request may be to update a context value with the result of an instmction or a request for a context value to be used as an operand of an instmction.
  • Context control unit 66 conveys a set of control signals to primary context storage 60 and ISR context storages 62. The control signals are indicative of which context storage is selected to respond to the access. It is noted that reorder buffer 216 is configured to convey multiple requests during a clock cycle to context storage 40A.
  • Context file 40B includes a plurality of context storages 70A-70N (collectively referred to as context storages 70). Each context storage 70A-70N may store a full context or a subset of a context. Additionally included in context file 40B is a context control unit 66, similar to context control unit 66 as shown in Fig. 3.
  • Microprocessor 12 A when equipped with context file 40B may execute multiple tasks as well as multiple intermpt service routines as threads. Each task executes with a context storage 70 which includes a full context. Intermpt service routines may execute with a context storage 70 which includes either a full or partial context.
  • multiple tasks may be executed concurrently by microprocessor 12A in addition to executing multiple intermpt service routines concurrently.
  • Microprocessor 12B includes bus interface 44, instmction cache 30, instmction decode unit 50, execution units 52, load/store unit 54, data cache 42, and reorder buffer 56 similar to microprocessor 12A. Additionally, microprocessor 12B includes a primary context file 80 and a plurality of local context files 82A-82N (collectively referred to as context files 82). Primary context file 80 is coupled to reorder buffer 56. Each of local context files 82A-82N is coupled to a respective one of execution units 52A-52N. Additionally, each of local context files 82 are coupled to load/store unit 54.
  • Primary context file 80 includes a full context of microprocessor 12B, and may be used by tasks executing upon microprocessor 12B.
  • Local context files 82 may include full contexts or subsets of contexts. Additionally, when subsets of contexts are embodied in local context files 82, local context files may employ either dissimilar or similar subsets of the context of microprocessor 12B.
  • Instmction decode unit 50 dispatches instmctions in a different manner when included in microprocessor 12B as opposed to microprocessor 12A. Because a particular local context file 82A-82N is coupled to one execution unit 52A-52N, instmctions operating within the context defined by the local context file are executed by the associated execution unit 52A-52N. Therefore, when decode unit 50 decodes an instmction having a thread tag indicative of a local context file, decode unit 50 dispatches that instmction to the execution unit coupled to that local context file.
  • local context files 82 are ISR context files configured to store contexts for intermpt service routines.
  • one or more execution units 82 may be dedicated for executing intermpt service routines while other units remain available for executing tasks.
  • the execution units dedicated for executing intermpt service routines may advantageously execute instmctions associated with a task.
  • the dedicated unit may switch to executing the intermpt service routine without requiring a context save.
  • the instmctions instead access their individual contexts according to their thread tags. It is noted that the terms "full context” and "partial context" have been used in the previous discussion of context files.
  • a full context includes the register set of microprocessor 12. Additionally, a full context may include condition flags indicative of the result of executing an instruction as well as other programmable features of microprocessor 12.
  • a partial context includes a subset of the register set. The term "complete context" is synonymous with full context.
  • Other embodiments of microprocessor 12 may include main memory locations in a full context.
  • FIG. 6 an exemplary context 100 as defined by the x86 microprocessor architecture is shown.
  • Context 100 is depicted as it is stored in memory during a context save operation.
  • bit location numbers indicative of the number of bits shown on a line of context 100.
  • address number indicative (in hexadecimal) of an offset from the beginning of context 100 at which a particular line is stored.
  • Fields within context 100 which are marked "0" are set to a constant zero when context 100 is initialized. Fields with other values are explained below.
  • the value from the task register (TR) is stored.
  • the value stored is associated with a task which originated the task whose context is stored within context 100.
  • the value of the ESP register associated with a privilege level of zero is stored.
  • the x86 architecture defines several privilege levels for tasks.
  • the SS segment register associated with privilege level zero is stored.
  • the ESP and SS register values associated with privilege level one are stored at offsets C and 10, respectively.
  • Offsets 14 and 18 store the ESP and SS register values associated with privilege level two, respectively. Beginning at offset IC and continuing through offset 44 are register values associated with the current context.
  • the CR3, EIP, EFLAGS, EAX, ECX, EDX, EBX, ESP, EBP, ESI, and EDI registers are registers defined by the x86 microprocessor architecture. It is noted that CR3 is used to perform linear to physical translation if paging is enabled. Similarly, offsets 48 through 5C store the segment values from segment registers ES, CS, SS, DS, FS, and GS. At offset 60, a value identifying the local descriptor table (LDT) is stored. The LDT is part of the address translation mechanism of x86 processors, and may contain segmented to linear address translations associated with the current task.
  • LDT local descriptor table
  • a bit map offset and a trap bit are stored at offset 64.
  • the bit map offset indexes into a system input/output permissions table identifying which input/output devices 16 (shown in Fig. 1 ) a particular task is permitted to communicate with.
  • the trap bit is used for debugging purposes. If the trap bit is set when a context restore occurs, then processor 12 interrupts to a debug intermpt vector.
  • the present invention is not limited to the x86 microprocessor architecture. Instead, any microprocessor architecture may be employed.
  • a microprocessor including multiple contexts such that multiple threads may be concurrently executed is described.
  • the microprocessor may execute intermpt service routines concurrently with tasks.
  • performance of a computer system may be increased by incorporating the multi-threaded microprocessor into the computer system. Clock cycles formerly used to perform context save operations are eliminated in cases where an intemipt service routine may be executed concurrently with a task. Additionally, multiple tasks may be executed concurrently according to one embodiment due to the multiple context storages available.

Abstract

A microprocessor including a context file configured to store multiple contexts is provided. The microprocessor may execute multiple threads, each thread having its own context within the microprocessor. In one embodiment, the present microprocessor is capable of executing at least two threads concurrently: a task and an interrupt service routine. Interrupt service routines may be executed without disturbing a task's context and without performing a context save operation. Instead, the interrupt service routine accesses a context which is independent of the context of the task. In another embodiment, the context file includes multiple interrupt service routine contexts. Multiple ISR context storages allow for nested interrupts to be performed concurrently. In yet another embodiment, the microprocessor is configured to execute multiple tasks and multiple interrupt service routines concurrently. Multiple tasks may be executed concurrently by the microprocessor in addition to executing multiple interrupt service routines concurrently. In still another embodiment, the microprocessor includes a primary context and multiple local context storages coupled to each of its execution units. A given execution unit may execute instructions referencing the primary context or the local context connected thereto.

Description

TITLE: A Multi-Threaded Microprocessor Configured To Execute Interrupt Service Routines
As A Thread
BACKGROUND OF THE INVENTION
1 Field of the Invention
The present invention is related to the field of microprocessors and, more particularly, to the interrupt handling mechanisms within microprocessors
2 Descπption of the Relevant Art
Modem computer systems and the software which runs thereon demand a high performance interrupt structure in order to operate efficiently Interrupts are used to switch between tasks, and so a multi-tasking operating system benefits from a high performance interrupt structure A "multi-tasking" operating system is configured to run multiple programs concurrently Additionally, interrupts provide a means for an electronic device external to the microprocessor to request attention from the operatmg system Modem day computer systems are including increasing numbers of these electronic devices, prompting the need for a high performance interrupt structure
Interrupts cause a microprocessor within the computer system to suspend execution of a task in order to execute a specific software routine (referred to as an interrupt service routine) comprising a set of instructions The interrupt is typically unrelated to the instructions being executed by the microprocessor at the time the interrupt is signalled Instead, the interrupt may be caused by an external device requiring software attention For example, a buffer within an input/output device may fill with data to be transferred to another device or to memory Many other sources for interrupts are well-known to the skilled artisan
The instructions being executed by the microprocessor at the tune the interrupt occurs are referred to herein as a "task" A task may be a portion of a program, an operatmg system routine, or even another interrupt service routine Because the interrupt is normally unrelated to the task being performed by the microprocessor and is asynchronous to the task itself, the interrupt service routine is executed in such a way that the task may be resumed In order to resume the task, the "context" within which the task is executmg may be saved to memory The context of a task is the state of the microprocessor at a particular moment of time in which the task is executing The context may include register values associated with the task when the task is interrupted In other embodiments, context may be defined to mclude other values as well When the context is saved, the register portion of the context may be saved to memory After saving the context, the interrupt service routine may be executed Upon completion of the interrupt service routine, the context may be restored to the microprocessor and the task is resumed Since the restored context is substantially identical to the context when the task was interrupted, the task executes normally In other words, the interrupt had no affect on the result of executing the task if the task is unrelated to the interrupt. Instead, only the time required to execute the task is affected.
The x86 architecture defines the context of 32 bit microprocessors to be 104 bytes. Other microprocessor architectures may define contexts having more or fewer bytes. Additionally, when the segment registers (which are part of the context in the x86 architecture) are reloaded, segment reloads are initiated to translate the segments. More bytes are transferred when the reload occurs, and clock cycles are required to translate the extra bytes into a format for storing within the microprocessor.
Unfortunately, storing and retrieving a large number of bytes to memory (as a context save entails) often requires a relatively large number of clock cycles. A clock cycle refers to the amount of time required by portions of the microprocessor to perform their functions. At the end of the clock cycle, the results of each function are stored in a storage location (e.g. a register or memory) and may be used by another function in the next clock cycle. The bus used by a microprocessor to communicate with other electrical devices may operate according to a different clock cycle than the microprocessor itself. The clock cycle associated with the bus is often referred to as the bus clock cycle. If the context is saved by the microprocessor when an interrupt is recognized by the microprocessor, the interrupt is being handled via a "task switch". The interrupt service routine is isolated from the interrupted task such that any modifications the intemipt service routine performs to the microprocessor's context information will not affect the operation of the task when resumed. The context is restored prior to resuming the task. Often, an interrupt service routine will only require access to a few registers within the register set to perform its function, ln this case, a full context save is not necessary since some registers will not be modified by the interrupt service routine. Instead, only those storage locations which must be changed in order to fetch the instructions within the interrupt service routine need be saved prior to beginning execution of the interrupt service routine. For example, in the x86 architecture the EIP register and CS segment register (which define the address and segment of the instructions to be fetched and executed) and the flags register (which is modified by many of the x86 instructions) are saved. These values are pushed onto the stack defined by the x86 architecture when not using the task switch method of interrupt handling.
When the task switch method of interrupt handling is not in use, an interrupt service routine must save the values stored within registers which it employs to carry out its intended function. Often, the values are stored on the stack. This method of interrupt handling is referred to as an interrupt gate or trap gate in the x86 architecture, depending on whether or not the interrupt service routine may itself be interrupted. If the interrupt service routine does not use all of the microprocessor's context, then clock cycles may be saved with respect to performing the full context save of a task switch. The interrupt service routine is entered and exited more rapidly since context save and restore is not performed. Unfortunately, at least a few registers must still be stored. Additionally, the interrupt service routines are lengthened by the number of instructions required to save and restore context values used by the interrupt service routines. Furthermore, an administrative burden is placed on the programmer of the interrupt service routine to update the save and restore portions of the routine when the routine is changed. Since there are multiple sources of interrupts, the computer system provides a mechanism for identifying one of multiple interrupt service routines. The computer system thus provides flexibility to the programmer in that an interrupt service routine may be tailored to the needs of a particular device or interrupt source. Without the interrupt vector approach, all interrupts would fetch an interrupt service routine from the same address in memory. A relatively complicated routine stored at the address would need to be written to perform the handling of all types of interrupts from all electronic devices. As used herein, the term "fetching" refers to transferring the contents of a memory location to a destination.
One method for providing the address of the interrupt service routine for a given interrupt is for the microprocessor to request an interrupt vector from another electronic device in the system. An "interrupt vector" is a number which is indicative of a particular interrupt service routine. In the x86 microprocessor architecture, for example, the interrupt vector is an index into an interrupt vector table which provides information identifying the address of the associated intemipt service routine. The interrupt vector table is also referred to as an interrupt descriptor table.
In many computer systems, the interrupt vector is provided via a dedicated bus transaction. A "bus transaction" is a transfer of information across a bus. Bus transactions may include address and data information as well as the type of transfer. Bus transactions may be address-only, in which an address and related control information are broadcast; data-only, in which data and related control information are broadcast; or address-data in which both address and data are involved. As referred to herein, a bus transaction dedicated for interrupt processing is an interrupt acknowledge bus transaction. Typically, an intemipt acknowledge bus transaction is performed by the microprocessor to acknowledge the existence of an interrupt condition and then a second interrupt acknowledge bus transaction is performed to collect the interrupt vector. Unfortunately, many clock cycles are used to perform the two interrupt acknowledge bus transactions. Until the interrupt vector is known, the computer system may not begin fetching the interrupt service routine.
Current interrupt structures (as described above) require a large number of clock cycles to execute. Clock cycles are used to save and restore a task's context (either within the interrupt routine or prior to fetching it), to fetch the interrupt vector, and to execute the intemipt service routine. The execution time of the interrupted task is lengthened considerably, deleteriously affecting performance. A method for servicing interrupts in a computer system without deleteriously affecting performance of the interrupted task is desired.
SUMMARY OF THE INVENTION
The problems outlined above are in large part solved by a microprocessor according to the present invention. The present microprocessor includes a context file configured to store multiple contexts. The microprocessor may execute multiple threads, each thread having its own context within the microprocessor. In one embodiment, the present microprocessor is capable of executing at least two threads concurrently: a task and an interrupt service routine. Advantageously, interrupt service routines may be executed without disturbing a task's context and without performing a context save operation (either within the interrupt service routine or prior to entering the interrupt service routine). Instead, the interrupt service routine accesses a context which is independent of the context of the task. In another embodiment, the context file of the present microprocessor includes multiple intemipt service routine contexts. Multiple ISR context storages allow for nested interrupts to be performed concurrently, advantageously increasing interrupt service performance. Previously, intemipt nesting required actions similar to the interruption of a task with respect to the interrupted intemipt service routine. These context saving actions may be eliminated through the use of multiple ISR context storages. In yet another embodiment, the present microprocessor is configured to execute multiple tasks and multiple interrupt service routines concurrently. Advantageously, multiple tasks may be executed concurrently by the present microprocessor in addition to executing multiple intermpt service routines concurrently.
In still another embodiment, the present microprocessor includes a primary context and multiple local context storages coupled to each of its execution units. A given execution unit may execute instmctions referencing the primary context or the local context connected thereto. Advantageously, one or more execution units may be dedicated for executing intemipt service routines (whose context is stored in the local context storage) while other units remain available for executing tasks. Furthermore, when no intemipt service routines are executed by the present microprocessor, the execution units dedicated for executing intermpt service routines may advantageously execute instructions associated with a task. When an intermpt is signalled, the dedicated unit may switch to executing the intermpt service routine without requiring a context save. The instmctions instead access their individual contexts according to their thread tags, which identify the thread to which an instruction belongs.
Broadly speaking, the present invention contemplates a microprocessor comprising an instruction cache, an instruction decode unit, a plurality of execution units, and a context file. The instruction cache is configured to store a plurality of instruction blocks and a plurality of thread tags. Each of the plurality of thread tags is associated with at least one of the plurality of instruction blocks and identifies a thread to which the associated instruction blocks belong. Coupled to the instruction cache is the instruction decode unit. The instruction decode unit is configured to decode instmctions associated with multiple threads and to transfer the instmctions to the plurality of execution units. The plurality of execution units are coupled to the instruction decode unit and are configured to execute the instmctions, producing a plurality of results. Coupled to receive the plurality of results, the context file is configured to store the plurality of results. Each of the plurality of results is stored according to the thread tag associated with the instruction producing the result.
The present invention still further contemplates a computer system comprising a microprocessor and an intermpt controller. The microprocessor is configured to concurrently execute multiple threads, including intermpt service routines. The microprocessor is further configured to execute an intermpt service routine upon receipt of an intermpt signal. The intemipt controller is coupled to convey the intemipt signal to the microprocessor.
BRIEF DESCRIPTION OF THE DRAWINGS
Other objects and advantages of the invention will become apparent upon reading the following detailed description and upon reference to the accompanying drawings in which: Fig. 1 is a block diagram of one embodiment of a computer system including a microprocessor.
Fig. 2 is a block diagram of one embodiment of the microprocessor shown in Fig. 1, including a context file.
Fig. 2 A is a block diagram of one embodiment of an instruction cache shown in Fig. 2.
Fig. 3 is a block diagram of one embodiment of the context file shown in Fig. 2.
Fig. 4 is a block diagram of another embodiment of the context file shown in Fig. 2.
Fig. 5 is a block diagram of another embodiment of the microprocessor shown in Fig. 1.
Fig. 6 is a diagram of one embodiment of a context.
While the invention is susceptible to various modifications and alternative forms, specific embodiments thereof are shown by way of example in the drawings and will herein be described in detail. It should be understood, however, that the drawings and detailed description thereto are not intended to limit the invention to the particular form disclosed, but on the contrary, the intention is to cover all modifications, equivalents and alternatives falling within the spirit and scope of the present invention as defined by the appended claims.
DETAILED DESCRIPTION OF THE INVENTION
Turning now to Fig. 1, one embodiment of a computer system 10 including a microprocessor 12, an intermpt controller 14, a plurality of input/output (I/O) devices 16A-16N (referred to collectively as I/O devices 16), a bus bridge 18, a main memory 20, and a cache 22 is shown. Microprocessor 12, intermpt controller 14, bus bridge 18, main memory 20, and cache 22 are coupled to a CPU bus 24 which effects high speed, high bandwidth communication between the connected devices. Lower speed, lower bandwidth communication is provided for I/O devices 16 via input/output bus 26. I/O devices 16 are coupled to interrupt controller 14 via an intermpt bus 28.
Microprocessor 12 is a high performance microprocessor configured to execute instructions stored in main memory 20. In one embodiment, microprocessor 12 implements the x86 microprocessor architecture. Microprocessor 12 includes storage elements configured to store the context of a task being executed by microprocessor 12. ln addition, microprocessor 12 includes storage elements configured to store alternate context information. In one embodiment, this alternate context information includes context information associated with intemipt service routines. Interrupt service routines may be executed concurrently with tasks, and therefore no context save need be performed by microprocessor 12. Advantageously, intermpt service routines may be executed without disturbing a task's context and without performing a context save operation (either within the intermpt service routine or prior to entering the intermpt service routine).
Intermpt bus 28 includes at least one intermpt conductor per I/O device 16A-16N. An intermpt request signal conveyed on the associated intermpt conductor is indicative of a request for interrupt of microprocessor 12 by the associated I/O device 16A-16N. Intemipt controller 14 is configured to receive the intermpt request signals and to convey an intermpt signal to microprocessor 12 upon CPU bus 24 in response to the intermpt request signals. In one embodiment, intemipt controller 14 is similar to an 8259A interrupt controller used in IBM compatible personal computer systems. In another embodiment, intemipt controller 14 includes multiple intemipt controllers similar to the 8259A cascaded to allow a larger number of I/O devices 16 to be connected. Intermpt controller 14 is programmable, and may be enabled to assert the intermpt signal individually for each intermpt request signal. In other words, intermpt controller 14 may be enabled to assert the intemipt signal if the intermpt request signal from I/O device 16A is asserted but not if the intermpt request signal from I/O device 16B is asserted (or vice-versa). In another embodiment, intermpt controller 14 may be programmed with a priority scheme for the intermpt request signals. The priority scheme is devised such that, if multiple intemipt request lines are asserted concurrently: the highest priority intermpt request is serviced first; followed by the next highest priority intermpt request; etc.
Intermpt controller 14 provides the intermpt vector which identifies the location of the intermpt service routine associated with the interrupting I/O device 16A-16N. The intermpt vector is transferred across CPU bus 24 after microprocessor 12 acknowledges receipt of the intermpt signal. In one embodiment, microprocessor 12 issues an intemipt acknowledge bus transaction on CPU bus 24 when acknowledging the intermpt signal, and then issues a second intermpt acknowledge bus transaction to collect the interrupt vector. Other transactions upon CPU bus 24 are used to transfer data among devices coupled to CPU bus 24. An exemplary bus implementing such an intermpt acknowledge transaction may be found within the publication entitled: "16-bit and 32-bit Microprocessors Architecture, Software and Interfacing Techniques" by Singh, et al, Prentice Hall, Englewood Cliffs, New Jersey, 1991. This publication is incoφorated herein by reference in its entirety. Often the intermpt acknowledge transactions are received by intermpt controller 14 upon a bus other than CPU bus 24. For example, the intermpt acknowledge bus transaction may be conveyed by bus bridge 18 onto I/O bus 26. Intermpt controller 14 may be coupled to I/O bus 26 in order to receive the intemipt acknowledge bus transaction. Intemipt controller 14 is, however, still coupled to the intermpt conductor of CPU bus 24 (to which microprocessor 12 is coupled). In other embodiments, intermpt controller 14 may receive intermpt acknowledge bus transactions directly from CPU bus 24 or from yet another bus coupled to CPU bus 24 via one or more bus bridges similar to bus bridge 18.
Bus bridge 18 is provided to assist in communications (other than interrupt requests) between I/O devices 16 and devices coupled to CPU bus 24. I/O devices 16 typically require longer bus clock cycles than microprocessor 12 and other devices coupled to CPU bus 24. Therefore, bus bridge 18 provides a buffer between CPU bus 24 and input/output bus 26. Additionally, bus bridge 18 translates transactions from one bus protocol to another. In one embodiment, input/output bus 26 is an Enhanced Industry Standard Architecture (EISA) bus and bus bridge 18 translates from the CPU bus protocol to the EISA bus protocol. In another embodiment, input/output bus 26 is a Peripheral Component Interconnect (PCI) bus and bus bridge 18 translates from the CPU bus protocol to the PCI bus protocol. It is noted that many variations of CPU bus protocols exist. Microprocessor 12 may employ any suitable bus protocol. I/O devices 16 provide an interface between computer system 10 and other devices external to the computer system. Exemplary I/O devices include a modem, a serial or parallel port, a sound card, etc. I/O devices 16 may also be referred to as peripheral devices. Main memory 20 stores data and instmctions for use by microprocessor 12. In one embodiment, main memory 20 includes at least one Dynamic Random Access Memory (DRAM) cell and a DRAM memory controller. Cache 22 is a small, high speed memory for temporarily storing data and instmctions from main memory 20. If microprocessor 12 requests an address from main memory 20 and cache 22 is storing data associated with the requested address, then cache 22 provides the data. Cache 22 is an optional component, computer system 10 is fully functional without it. However, cache 22 may improve the performance of computer system 10. It is noted that cache 22 may also be inserted between microprocessor 12 and CPU bus 24 in other embodiments. It is further noted that microprocessor 12 may incorporate a cache such that cache 22 is a second level cache. Additionally, one embodiment of microprocessor 12 incorporates second level cache 22.
A second embodiment of computer system 10 is contemplated in which I/O devices 16 are coupled to CPU bus 24. Intermpt controller 14 and bus bridge 18 may not be included in this embodiment. Instead, each I/O device 16 individually responds to intermpt acknowledge bus transactions in a manner similar to intermpt controller 14. It is noted that although computer system 10 as shown in Fig. 1 includes one microprocessor, other embodiments of computer system 10 may include multiple microprocessors similar to microprocessor 12. It is further noted that the above discussion refers to the assertion of various signals. As used herein, a signal is "asserted" if it conveys a value indicative of a particular piece of information. Conversely, a signal is "deasserted" if it conveys a value indicative of a lack of a particular piece of information. A signal may be defined to be asserted when it conveys a logical zero value or, conversely, when it conveys a logical one value. It is still further noted that devices attached to CPU bus 24 may also convey interrupt request signals to intermpt controller 14.
Turning now to Fig. 2, a block diagram of one embodiment of microprocessor 12 (microprocessor 12 A) is shown. Microprocessor 12A includes a bus interface unit 44, an instmction cache 30, a data cache 42, and a context file 40. Bus interface unit 44 is coupled to instmction cache 30 via an instmction transfer bus 46. Similarly, bus interface unit 44 is coupled to data cache 42 via a data transfer bus 48. Additionally, microprocessor 12A includes a multiple instmction decode unit 50 coupled between instmction cache 30 and a plurality of execution units 52A-52N (referred to collectively as execution units 52). A load/store unit 54 is included to interface between execution units 52 and data cache 42. Finally, a reorder buffer 56 is coupled to decode unit 50, execution units 52, and load/store unit 54.
Generally speaking, microprocessor 12A is configured to execute multiple tasks concurrently. One of the multiple tasks being executed is referred to herein as a "thread". For each thread being executed, a context storage within context file 40 is allocated. Because each thread has its own context, it may execute along with other threads without interfering with those threads. In one embodiment, microprocessor 12A is configured to execute at least two threads concurrently. One thread is the main task being executed by microprocessor 12 A, and the second thread is an intermpt service routine.
Instmction cache 30 is a high speed cache memory configured to store instruction blocks. An instmction block is a plurality of instmctions stored within contiguous bytes of main memory 20. In one embodiment, an instmction block is the number of instmction bytes stored within a cache line of instmction cache 30. Each instmction block is associated with a thread tag stored within instmction cache 30. The thread tag identifies an instmction block as part of a particular thread executing upon microprocessor 12A, and may be assigned when the instruction block is transferred from main memory to instruction cache 30. It is noted that instruction cache 30 may be configured into a set-associative, direct mapped, or fully associative configuration. Additionally, instmction cache 30 may detect branches and perform branch prediction. Any branch prediction mechanism may be used.
When instmctions are fetched from instmction cache 30 into instmction decode unit 50, the associated thread tag is conveyed along with each instmction. The thread tag identifies which context storage within context file 40 the instmctions are intended to access. Context values, such as register values, are conveyed from context file 40 and stored into context file 40 according to the context value requested and the thread tag associated with the instmction. Therefore, each thread is isolated from other threads executing upon microprocessor 12 A.
In one embodiment, microprocessor 12A is configured to execute at least two threads. One of the threads is an intermpt service routine. The intermpt service routine is executed when bus interface unit 44 receives an intermpt signal upon CPU bus 24 and performs intemipt acknowledge bus transactions to receive the intemipt vector. Once the address of the intermpt service routine is determined from the received intermpt vector, bus interface unit 44 signals instmction cache 30 to begin thread execution at the intermpt service routine address. If the instructions comprising the intermpt service routine reside within the cache, the thread tag stored with the interrupt service routine is used and the intermpt service routine begins execution. If the intermpt service routine is not stored within instmction cache 30, then the instmctions are transferred from main memory 20 to instmction cache 30. Instmction cache 30 assigns a thread tag to the instmctions from thread tags which are not currently in use within microprocessor 12 A.
Turning to Fig. 2 A, a block diagram of one embodiment of instmction cache 30 is shown. Instmction cache 30 includes a cache, tags, and control unit 110, a context allocation control unit 112, and a free contexts storage 1 14. Instmction transfer bus 46 is coupled to cache, tags, and control unit 1 10. Additionally, cache, tags and control unit 110 is configured to transmit instmctions to instmction decode unit 50. Context allocation control unit 112 is configured to receive an intermpt indication upon an intermpt indication conductor 116, and is further configured to convey an intermpt accept indication upon intermpt accept conductor 1 18. Additionally, context control unit 112 is coupled to an IRET retire bus 120 from reorder buffer 56. When an IRET instruction is retired, the thread tag corresponding to the instmction is conveyed upon IRET retire bus 120. Context allocation control unit 1 12 is coupled to cache, tags, and control unit 1 10 and to free contexts storage 1 14. Context allocation control unit 112 is configured to allocate thread tags (and therefore the corresponding context within context file 40) to intermpt service routines. Bus interface unit 44 informs context allocation control unit 112 when an intemipt is signalled from CPU bus 24. If a thread tag is available (i.e. if free contexts storage 114 indicates that a context may be allocated), then context allocation control unit 1 12 allocates die thread tag to the intermpt service routine. Context allocation control unit 1 12 provides the allocated thread tag to cache, tags, and control unit 110. Cache, tags, and control unit 1 10 associates the thread tag with instmctions fetched from the intemipt service routine. Additionally, upon thread tag allocation, context allocation control unit 112 asserts an acceptance indication upon intermpt accept conductor 1 18. Bus interface unit 44, upon receipt of the acceptance indication, acknowledges the intermpt upon CPU bus 24. If a thread tag is not available, context allocation control unit 112 does not assert the acceptance indication. Bus interface unit 44 thereby withholds intermpt acknowledgement until a thread tag becomes available.
When reorder buffer 56 retires an IRET instmction (i.e. an intemipt return instmction indicating that an intermpt service routine has been completed), the thread tag associated with the IRET instmction is conveyed upon IRET retire bus 120. Upon receipt of the thread tag, context allocation control unit stores an indication of the thread tag into free contexts storage 114. The thread tag is thereby released from association with the intermpt service routine and may be assigned to another thread.
Software (e.g. the operating system executing within computer system 10) may also access free contexts storage 114. The software may select a thread tag which is available (as indicated in free contexts storage 1 14) and assign the thread tag to a task being executed by microprocessor 12. Upon assigning the thread tag, the software stores an indication of the context allocation into free contexts storage 1 14. Because the context is indicated as allocated, context allocation control unit 1 12 does not allocate the context to an intermpt service routine. The software additionally releases the context when the task has completed by storing an indication of the released thread tag into free contexts storage 1 14. The software may additionally request the total number of contexts available within microprocessor 12 from context allocation control unit 112, to thereby determine thread tag availability.
In one embodiment, free contexts storage 114 is configured to store a bit corresponding to each context within microprocessor 12. When the bit is set, the corresponding context is free (i.e. available for allocation). When the bit is clear, the corresponding context is in use (i.e. not available for allocation). Context allocation control unit 112 clears the bit when the context is allocated to an intermpt service routine, and sets the bit when the context is released via retirement of an intermpt return instmction. Similarly, software may set and clear the bit when allocating and deallocating the corresponding context.
Returning now to Fig. 2, microprocessor 12A is a superscalar microprocessor configured to execute multiple instructions during a clock cycle. Decode unit 50 therefore decodes multiple instmctions during a single clock cycle and dispatches the instmctions to execution units 52 and load/store unit 54. The instmctions decoded and dispatched from decode unit 50 during a clock cycle may be associated with more than one thread. Additionally, a storage location within reorder buffer 56 is allocated for each decoded and dispatched instruction. The storage locations are allocated to instructions in the order they occur within the thread, so that the results created by executing the instmctions may be recorded in register file 40 or data cache 42 in program order. Storage locations may be allocated in any order with respect to instmctions from different threads.
By including reorder buffer 56, instructions may be speculatively executed out of order by execution units 52. In one embodiment, execution units 52 are asymmetrical execution units. Each execution unit 52A- 52N is configured to execute a particular subset of microprocessor 12A's instmction set. The particular subset of the instmction set which execution unit 52A is configured to execute may differ from the particular subset of the instmction set which execution unit 52B is configured to execute. Similarly, other execution units may have differing particular subsets of the instmction set. In another embodiment, execution units 52 are symmetrical execution units. Each execution unit 52A-52N is configured to execute a similar subset of the instruction set. When an execution unit 52 executes an instmction, it produces a result according to the intended operation of the instmction. The result is stored in a destination, which may be a register or a memory location.
It is noted that decode unit 50 is capable of decoding a certain number of instmctions during a clock cycle. When multiple threads are being executed concurrently by microprocessor 12A, the certain number may be allocated among the threads. Although any allocation method may be used, in one embodiment decode unit 50 decodes an equal number of instmctions from each of the multiple threads during a clock cycle. It is further noted that instmctions are considered to be in order with respect to other instmctions within the same thread. Instmctions from different threads have no ordering relationship to each other.
Reorder buffer 56 provides dependency checking and result forwarding such that each instmction receives the correct operand values prior to that instmction being executed. Reorder buffer 56 includes temporary storage for the result of each instmction until that instmction is retired. An instmction is retired by storing its result into context file 40 or data cache 42 (if needed) and deleting the instruction from reorder buffer 56. If an instmction decoded by decode unit 50 requires the result of an instmction which has not yet executed, then a tag indicative of which reorder buffer storage location will store that result is forwarded to the execution unit receiving the instmction in lieu of the operand value. The execution unit then monitors the results produced by the execution units for the provided tag. When the result is generated, the execution unit generating the result conveys the tag along with the result to reorder buffer 56. The execution unit awaiting the tag captures the result and stores it along with the instmction for later execution. Monitoring for the register tag and capturing the associated result is referred to as "result forwarding". It is noted that any suitable reorder buffer configuration may be employed by microprocessor 12 A. It is further noted that dependency checking involves not only determining which result is needed by an instmction, but also determining which context the results stored within reorder buffer 56 are associated with. A dependency exists if a particular result from a particular context is stored within reorder buffer 56.
In one embodiment, execution units 52 execute all instmctions within the instmction set of microprocessor 12A except for load and store instmctions. Load/store unit 54 executes the load and store instructions. Additionally, dependencies between load and store instmctions are detected and resolved by load/store unit 54. Data cache 42 is a high speed cache memory configured to store data being manipulated by microprocessor 12A. It is understood that data cache 42 may be configured into a set-associative or direct mapped configuration.
Bus interface unit 44 effects communication between microprocessor 12A and other devices coupled to CPU bus 24. For example, instmction code fetches which miss in instmction cache 30 are transferred from main memory 20 (shown in Fig. 1) to instmction cache 30 through bus interface unit 44. Additionally, data memory accesses which miss data cache 42 are transferred from main memory 20 to data cache 42. Data cache 42 may store modified data which must be written back to main memory 20, the transfer of which is also effected by bus interface unit 44. Bus interface unit 44 is adapted to receive the aforementioned intermpt signal upon CPU bus 24 as well. When the interrupt signal is received in a state indicative of a request for intermpt, bus interface unit 44 conveys a signal indicative of intermpt to instmction cache 30. Bus interface unit 44 reads the intermpt vector from intermpt controller 14 and performs the appropriate translation of the intermpt vector into an intermpt address. For example, in the x86 architecture the intermpt vector is used as an index into an intemipt descriptor table which provides protection information indicative of the privilege level and allowable memory access of the intermpt service routine as well as the intermpt service routine address. The intermpt service routine address is then conveyed to instmction cache 30.
Execution units 52 and load/store unit 54 may employ reservation stations to store instmctions dispatched to the unit. An instmction remains in the reservation station until all of its operands are available, and then is executed by the associated execution unit. It is noted that the above mentioned reservation stations may be configured outside of the associated execution unit.
Additional information regarding microprocessors may be found within the commonly assigned, co- pending patent application entitled "High Performance Superscalar Microprocessor", Serial No. 08/146,382, filed October 29, 1993 by Witt, et al. Further information regarding microprocessors may be found within the commonly assigned, co-pending patent application entitled "Superscalar Microprocessor Including a High Performance Instmction Alignment Unit", Serial No. 08/377843, filed January 25, 1995 by Witt, et al. The disclosures of these patent applications are incorporated herein by reference in their entirety.
Turning now to Fig. 3, a first embodiment of context file 40 (context file 40A) is shown. Context file 40A includes a primary context storage 60 as well as multiple intemipt service routine (ISR) context storages 62A-62N (collectively referred to as context storages 62). In one embodiment, context file 40A includes N ISR context storages 62. Primary context storage 60 stores the context associated with a task being executed by microprocessor 12A. Each ISR context storage stores the context associated with an intermpt service routine.
Microprocessor 12A, when configured with context file 40 A, may execute a task and multiple intermpt service routines as concurrent threads. Multiple ISR context storages allow for nested interrupts to be performed concurrently, advantageously increasing intermpt service performance. Intermpt nesting occurs when an intermpt service routine is itself interrupted by a second intermpt being signalled by interrupt controller 14. Previously, intemipt nesting required actions similar to the interruption of a task with respect to the interrupted intermpt service routine. These context saving actions may be eliminated through the use of multiple ISR context storages.
It is noted that, in one embodiment, primary context storage 60 includes a complete context of microprocessor 12A. Similarly, ISR context storages 62 store a complete context in one embodiment. In another embodiment, ISR context storages 62 store a subset of the context of microprocessor 12A. When a subset of the context is stored by ISR context storages 62, then the intermpt service routines which may be executed upon microprocessor 12A are constrained to use that subset. For example, ISR context storages 62 may contain a subset of the registers employed within microprocessor 12A's microprocessor architecture. Intermpt service routines may only encode instmctions utilizing those registers within the subset. Context file 40 A further includes a context control unit 66 coupled to primary context storage 60 and
ISR context storages 62. Context storage unit 60 receives the requests for context values from reorder buffer 216 and identifies which context storage is affected. Reorder buffer 216 conveys a value indicative of the context value requested as well as the thread tag associated with the instmction for which the request is performed. The request may be to update a context value with the result of an instmction or a request for a context value to be used as an operand of an instmction. Context control unit 66 conveys a set of control signals to primary context storage 60 and ISR context storages 62. The control signals are indicative of which context storage is selected to respond to the access. It is noted that reorder buffer 216 is configured to convey multiple requests during a clock cycle to context storage 40A. Each request is treated independently and in parallel by context control unit 66. Turning now to Fig. 4, a second embodiment of context file 40 (context file 40B) is shown. Context file 40B includes a plurality of context storages 70A-70N (collectively referred to as context storages 70). Each context storage 70A-70N may store a full context or a subset of a context. Additionally included in context file 40B is a context control unit 66, similar to context control unit 66 as shown in Fig. 3.
Microprocessor 12 A, when equipped with context file 40B may execute multiple tasks as well as multiple intermpt service routines as threads. Each task executes with a context storage 70 which includes a full context. Intermpt service routines may execute with a context storage 70 which includes either a full or partial context. Advantageously, multiple tasks may be executed concurrently by microprocessor 12A in addition to executing multiple intermpt service routines concurrently.
Turning now to Fig. 5, a second embodiment of microprocessor 12 (microprocessor 12B) is shown. Microprocessor 12B includes bus interface 44, instmction cache 30, instmction decode unit 50, execution units 52, load/store unit 54, data cache 42, and reorder buffer 56 similar to microprocessor 12A. Additionally, microprocessor 12B includes a primary context file 80 and a plurality of local context files 82A-82N (collectively referred to as context files 82). Primary context file 80 is coupled to reorder buffer 56. Each of local context files 82A-82N is coupled to a respective one of execution units 52A-52N. Additionally, each of local context files 82 are coupled to load/store unit 54.
Primary context file 80 includes a full context of microprocessor 12B, and may be used by tasks executing upon microprocessor 12B. Local context files 82 may include full contexts or subsets of contexts. Additionally, when subsets of contexts are embodied in local context files 82, local context files may employ either dissimilar or similar subsets of the context of microprocessor 12B.
Instmction decode unit 50 dispatches instmctions in a different manner when included in microprocessor 12B as opposed to microprocessor 12A. Because a particular local context file 82A-82N is coupled to one execution unit 52A-52N, instmctions operating within the context defined by the local context file are executed by the associated execution unit 52A-52N. Therefore, when decode unit 50 decodes an instmction having a thread tag indicative of a local context file, decode unit 50 dispatches that instmction to the execution unit coupled to that local context file.
In one embodiment, local context files 82 are ISR context files configured to store contexts for intermpt service routines. Advantageously, one or more execution units 82 may be dedicated for executing intermpt service routines while other units remain available for executing tasks. Furthermore, when no intermpt service routines are executed by microprocessor 12B, the execution units dedicated for executing intermpt service routines may advantageously execute instmctions associated with a task. When an intermpt is signalled by bus interface unit 44, the dedicated unit may switch to executing the intermpt service routine without requiring a context save. The instmctions instead access their individual contexts according to their thread tags. It is noted that the terms "full context" and "partial context" have been used in the previous discussion of context files. As used in those discussions, a full context includes the register set of microprocessor 12. Additionally, a full context may include condition flags indicative of the result of executing an instruction as well as other programmable features of microprocessor 12. A partial context includes a subset of the register set. The term "complete context" is synonymous with full context. Other embodiments of microprocessor 12 may include main memory locations in a full context.
Turning now to Fig. 6, an exemplary context 100 as defined by the x86 microprocessor architecture is shown. Context 100 is depicted as it is stored in memory during a context save operation. Across the top of Fig. 6 are bit location numbers indicative of the number of bits shown on a line of context 100. Down the right side of context 100 is an address number indicative (in hexadecimal) of an offset from the beginning of context 100 at which a particular line is stored. Fields within context 100 which are marked "0" are set to a constant zero when context 100 is initialized. Fields with other values are explained below.
At offset zero, the value from the task register (TR) is stored. The value stored is associated with a task which originated the task whose context is stored within context 100. At offset 4, the value of the ESP register associated with a privilege level of zero is stored. As will be appreciated by those skilled in the art, the x86 architecture defines several privilege levels for tasks. At offset 8, the SS segment register associated with privilege level zero is stored. Similarly, the ESP and SS register values associated with privilege level one are stored at offsets C and 10, respectively. Offsets 14 and 18 store the ESP and SS register values associated with privilege level two, respectively. Beginning at offset IC and continuing through offset 44 are register values associated with the current context. As will be appreciated by those skilled in the art, the CR3, EIP, EFLAGS, EAX, ECX, EDX, EBX, ESP, EBP, ESI, and EDI registers are registers defined by the x86 microprocessor architecture. It is noted that CR3 is used to perform linear to physical translation if paging is enabled. Similarly, offsets 48 through 5C store the segment values from segment registers ES, CS, SS, DS, FS, and GS. At offset 60, a value identifying the local descriptor table (LDT) is stored. The LDT is part of the address translation mechanism of x86 processors, and may contain segmented to linear address translations associated with the current task. A bit map offset and a trap bit are stored at offset 64. The bit map offset indexes into a system input/output permissions table identifying which input/output devices 16 (shown in Fig. 1 ) a particular task is permitted to communicate with. The trap bit is used for debugging purposes. If the trap bit is set when a context restore occurs, then processor 12 interrupts to a debug intermpt vector.
Although the above discussion mentions the x86 microprocessor architecture and a microprocessor implementing that microprocessor architecture, the present invention is not limited to the x86 microprocessor architecture. Instead, any microprocessor architecture may be employed.
In accordance with the above disclosure, a microprocessor including multiple contexts such that multiple threads may be concurrently executed is described. The microprocessor may execute intermpt service routines concurrently with tasks. Advantageously, performance of a computer system may be increased by incorporating the multi-threaded microprocessor into the computer system. Clock cycles formerly used to perform context save operations are eliminated in cases where an intemipt service routine may be executed concurrently with a task. Additionally, multiple tasks may be executed concurrently according to one embodiment due to the multiple context storages available.
Numerous variations and modifications will become apparent to those skilled in the art once the above disclosure is fully appreciated. It is intended that the following claims be interpreted to embrace all such variations and modifications.

Claims

WHAT IS CLAIMED IS:
1. A microprocessor comprising:
an instmction cache configured to store a plurality of instmction blocks and a plurality of thread tags wherein each of said plurality of thread tags is associated with at least one of said plurality of instmction blocks, and wherein said thread tag identifies a thread to which said associated instmction blocks belong;
an instmction decode unit coupled to said instmction cache wherein said instmction decode unit is configured to decode instmctions associated with multiple threads and to transfer said instmctions to a plurality of execution units;
said plurality of execution units coupled to said instmction decode unit wherein said plurality of execution units are configured to execute said instructions, producing a plurality of results; and
a context file coupled to receive said plurality of results wherein said context file is configured to store said plurality of results, and wherein each of said plurality of results is stored according to said thread tag associated with the instmction producing said each of said plurality of results.
2. The microprocessor as recited in claim 1 wherein said context file comprises a plurality of context storages.
3. The microprocessor as recited in claim 2 wherein one of said plurality of context storages is configured to store a primary context associated with a task being executed by said microprocessor.
4. The microprocessor as recited in claim 2 wherein at least one of said plurality of context storages is configured to store an intermpt context associated with an intermpt service routine.
5. The microprocessor as recited in claim 4 wherein said at least one of said plurality of context storages is configured to store a subset of the context of said microprocessor.
6. The microprocessor as recited in claim 2 wherein said context file further comprises a context control unit coupled to said plurality of context storages wherein said context control unit is configured to cause each of said plurality of results to be stored into one of said plurality of context storages.
7 The microprocessor as recited in claim 6 wherem said context control unit is configured to cause a particular context storage to store a particular result, and wherem said particular context storage is identified by said thread tag associated with said result
8 The microprocessor as recited in claim 1 wherem said context file comprises a primary context file coupled to receive a first portion of said plurality of results
9 The microprocessor as recited in claim 8 wherem said first portion of said plurality of results compπses results associated with a task, and wherem instmctions associated with said task are executed by said plurality of execution units
10 The microprocessor as recited in claim 8 wherem said context file further compπses a plurality of local context storages configured to store a second portion of said plurality of results
1 1 The microprocessor as recited in claim 10 wherein said second portion of said plurality of results comprises results associated with a particular thread, and wherem instmctions associated with said particular thread are executed by one of said plurality of execution units
12 The microprocessor as recited in claim 10 wherem each one of said plurality of local context storages is coupled to a respective one of said plurality of execution units
13 The microprocessor as recited in claun 10 wherem each one of said plurality of local context storages is configured to store a subset of the context of said microprocessor
14 The microprocessor as recited in claun 13 wherem one of said plurality of local context storages is configured to store a particular subset of the context of said microprocessor, and wherem said particular subset is dissimilar to subsets of the context stored by other ones of said plurality of local context storages
15 The microprocessor as recited in claim 13 wherem each of said plurality of local context storages is configured to store a similar subset of the context of said microprocessor
16 The microprocessor as recited m claim 1 wherem said instmction cache comprises
a storage configured to store an mdication of each available thread tag, and
a control unit configured to remove said mdication when said available thread tag is assigned to an intermpt service routine, and configured to restore said indication when said interrupt service routine is completed
17. The microprocessor as recited in claim 16 wherein said storage is accessible to instruction code executing upon said microprocessor, such that said instruction code may remove and restore said indication, thereby allowing assignment of said available thread tag to a task.
18. The microprocessor as recited in claim 17 wherein said control unit is configured to indicate, responsive to said instmction code, a total number of thread tags.
19. A computer system comprising:
a microprocessor configured to concurrently execute multiple threads, wherein said multiple threads include intermpt service routines, and wherein said microprocessor is configured to execute an intermpt service routine upon receipt of an interrupt signal; and
an intermpt controller coupled to convey said intemipt signal to said microprocessor.
20. The computer system as recited in claim 19 wherein said intermpt controller is coupled to receive a plurality of intermpt request signals, and wherein said intemipt controller is configured to convey said intemipt signal upon receipt of at least one of said plurality of intermpt request signals.
21. The computer system as recited in claim 20 further comprising a plurality of input/output devices coupled to said intemipt controller, wherein each one of said plurality of input/output devices is configured to convey a respective one of said plurality of intermpt request signals.
22. The computer system as recited in claim 19 wherein said microprocessor comprises:
an instmction cache configured to store a plurality of instmction blocks and a plurality of thread tags wherein each of said plurality of thread tags is associated with at least one of said plurality of instmction blocks, and wherein said thread tag identifies a thread to which said associated instmction blocks belong;
an instmction decode unit coupled to said instmction cache wherein said instmction decode unit is configured to decode instmctions associated with multiple threads and to transfer said instmctions to a plurality of execution units;
said plurality of execution units coupled to said instmction decode unit wherein said plurality of execution units are configured to execute said instructions, producing a plurality of results; and a context file coupled to receive said plurality of results wherein said context file is configured to store said plurality of results, and wherein each of said plurality of results is stored according to said thread tag associated with the instruction producing said each of said plurality of results.
PCT/US1997/008361 1996-05-17 1997-05-16 A multi-threaded microprocessor configured to execute interrupt service routines as a thread WO1997044732A1 (en)

Priority Applications (2)

Application Number Priority Date Filing Date Title
DE69701141T DE69701141T2 (en) 1996-05-17 1997-05-16 MULTITHREADED MICROPROCESSOR DESIGNED TO EXECUTE INTERRUPT PROCESSING ROUTINES AS THREADS
EP97924753A EP0898743B1 (en) 1996-05-17 1997-05-16 A multi-threaded microprocessor configured to execute interrupt service routines as a thread

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
US08/649,809 1996-05-17
US08/649,809 US5944816A (en) 1996-05-17 1996-05-17 Microprocessor configured to execute multiple threads including interrupt service routines

Publications (1)

Publication Number Publication Date
WO1997044732A1 true WO1997044732A1 (en) 1997-11-27

Family

ID=24606316

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/US1997/008361 WO1997044732A1 (en) 1996-05-17 1997-05-16 A multi-threaded microprocessor configured to execute interrupt service routines as a thread

Country Status (5)

Country Link
US (1) US5944816A (en)
EP (1) EP0898743B1 (en)
DE (1) DE69701141T2 (en)
ES (1) ES2143866T3 (en)
WO (1) WO1997044732A1 (en)

Cited By (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
EP0947926A2 (en) * 1998-04-03 1999-10-06 MMC Networks, Inc. System and method for multi-tasking, resource sharing, and execution of computer instructions
US6493781B1 (en) 1999-08-19 2002-12-10 Koninklijke Philips Electronics N.V. Servicing of interrupts with stored and restored flags
WO2007002415A1 (en) * 2005-06-23 2007-01-04 Qualcomm Incorporated Shared translation look-aside buffer and method
EP2093662A1 (en) 2008-02-25 2009-08-26 Fujitsu Siemens Computers GmbH Method for processing interrupt requests in a processor
US8219789B2 (en) 2007-03-14 2012-07-10 XMOS Ltd. Interface processor

Families Citing this family (63)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6405234B2 (en) * 1997-09-11 2002-06-11 International Business Machines Corporation Full time operating system
US6061710A (en) * 1997-10-29 2000-05-09 International Business Machines Corporation Multithreaded processor incorporating a thread latch register for interrupt service new pending threads
US6161166A (en) * 1997-11-10 2000-12-12 International Business Machines Corporation Instruction cache for multithreaded processor
US6163839A (en) * 1998-09-30 2000-12-19 Intel Corporation Non-stalling circular counterflow pipeline processor with reorder buffer
US6401155B1 (en) * 1998-12-22 2002-06-04 Philips Electronics North America Corporation Interrupt/software-controlled thread processing
JP3778246B2 (en) * 1999-03-23 2006-05-24 セイコーエプソン株式会社 Interrupt controller, ASIC, and electronic device
US7546444B1 (en) 1999-09-01 2009-06-09 Intel Corporation Register set used in multithreaded parallel processor architecture
US7318090B1 (en) * 1999-10-20 2008-01-08 Sony Corporation Method for utilizing concurrent context switching to support isochronous processes
DE19955776C1 (en) 1999-11-19 2001-07-19 Infineon Technologies Ag Multitasking processor system
US7925869B2 (en) 1999-12-22 2011-04-12 Ubicom, Inc. Instruction-level multithreading according to a predetermined fixed schedule in an embedded processor using zero-time context switching
US7308686B1 (en) 1999-12-22 2007-12-11 Ubicom Inc. Software input/output using hard real time threads
US7120783B2 (en) * 1999-12-22 2006-10-10 Ubicom, Inc. System and method for reading and writing a thread state in a multithreaded central processing unit
DE10000960C1 (en) * 2000-01-12 2001-12-20 Infineon Technologies Ag Data processing device
US7093109B1 (en) 2000-04-04 2006-08-15 International Business Machines Corporation Network processor which makes thread execution control decisions based on latency event lengths
US6931641B1 (en) 2000-04-04 2005-08-16 International Business Machines Corporation Controller for multiple instruction thread processors
US6676044B2 (en) * 2000-04-07 2004-01-13 Siemens Automotive Corporation Modular fuel injector and method of assembling the modular fuel injector
US6848043B1 (en) * 2000-04-27 2005-01-25 Intel Corporation Optimal redundant arithmetic for microprocessors design
US7010612B1 (en) 2000-06-22 2006-03-07 Ubicom, Inc. Universal serializer/deserializer
US7047396B1 (en) 2000-06-22 2006-05-16 Ubicom, Inc. Fixed length memory to memory arithmetic and architecture for a communications embedded processor system
US6684342B1 (en) 2000-06-22 2004-01-27 Ubicom, Inc. Apparatus and method of dynamic and deterministic changes in clock frequency for lower power consumption while maintaining fast interrupt handling
US7681018B2 (en) 2000-08-31 2010-03-16 Intel Corporation Method and apparatus for providing large register address space while maximizing cycletime performance for a multi-threaded register file set
US6829719B2 (en) * 2001-03-30 2004-12-07 Transmeta Corporation Method and apparatus for handling nested faults
US7320065B2 (en) 2001-04-26 2008-01-15 Eleven Engineering Incorporated Multithread embedded processor with input/output capability
US6845959B2 (en) * 2001-05-04 2005-01-25 Hydril Company, L.P. Quick release blowout preventer bonnet
US20020184566A1 (en) 2001-06-01 2002-12-05 Michael Catherwood Register pointer trap
US20030065855A1 (en) * 2001-07-12 2003-04-03 Webster Steve R. Imbedded interrupt
US7011288B1 (en) 2001-12-05 2006-03-14 Microstar Technologies Llc Microelectromechanical device with perpendicular motion
US6856953B1 (en) 2001-12-19 2005-02-15 Globespanvirata, Inc. Method and system for testing algorithm compliancy
JP2004102324A (en) * 2002-09-04 2004-04-02 Oki Electric Ind Co Ltd Interrupt program module, recording medium storing the module and computer capable of interrupt processing
US20050033889A1 (en) * 2002-10-08 2005-02-10 Hass David T. Advanced processor with interrupt delivery mechanism for multi-threaded multi-CPU system on a chip
WO2004049152A1 (en) * 2002-11-26 2004-06-10 Mplicity Ltd. A processor capable of multi-threaded execution of a plurality of instruction-sets
US7822950B1 (en) 2003-01-22 2010-10-26 Ubicom, Inc. Thread cancellation and recirculation in a computer processor for avoiding pipeline stalls
US20040215937A1 (en) * 2003-04-23 2004-10-28 International Business Machines Corporation Dynamically share interrupt handling logic among multiple threads
US7496915B2 (en) * 2003-04-24 2009-02-24 International Business Machines Corporation Dynamic switching of multithreaded processor between single threaded and simultaneous multithreaded modes
US8266379B2 (en) * 2003-06-02 2012-09-11 Infineon Technologies Ag Multithreaded processor with multiple caches
US9032404B2 (en) 2003-08-28 2015-05-12 Mips Technologies, Inc. Preemptive multitasking employing software emulation of directed exceptions in a multithreading processor
US7321965B2 (en) * 2003-08-28 2008-01-22 Mips Technologies, Inc. Integrated mechanism for suspension and deallocation of computational threads of execution in a processor
US7836450B2 (en) 2003-08-28 2010-11-16 Mips Technologies, Inc. Symmetric multiprocessor operating system for execution on non-independent lightweight thread contexts
US7376954B2 (en) * 2003-08-28 2008-05-20 Mips Technologies, Inc. Mechanisms for assuring quality of service for programs executing on a multithreaded processor
US7418585B2 (en) * 2003-08-28 2008-08-26 Mips Technologies, Inc. Symmetric multiprocessor operating system for execution on non-independent lightweight thread contexts
US7594089B2 (en) * 2003-08-28 2009-09-22 Mips Technologies, Inc. Smart memory based synchronization controller for a multi-threaded multiprocessor SoC
US7711931B2 (en) * 2003-08-28 2010-05-04 Mips Technologies, Inc. Synchronized storage providing multiple synchronization semantics
US7870553B2 (en) * 2003-08-28 2011-01-11 Mips Technologies, Inc. Symmetric multiprocessor operating system for execution on non-independent lightweight thread contexts
US7849297B2 (en) * 2003-08-28 2010-12-07 Mips Technologies, Inc. Software emulation of directed exceptions in a multithreading processor
US20050050305A1 (en) * 2003-08-28 2005-03-03 Kissell Kevin D. Integrated mechanism for suspension and deallocation of computational threads of execution in a processor
JP4204522B2 (en) * 2004-07-07 2009-01-07 株式会社東芝 Microprocessor
US7487503B2 (en) 2004-08-12 2009-02-03 International Business Machines Corporation Scheduling threads in a multiprocessor computer
JP2006172316A (en) * 2004-12-17 2006-06-29 Nec Corp Context maintenance method, information processor and interruption generator
US7676604B2 (en) * 2005-11-22 2010-03-09 Intel Corporation Task context direct indexing in a protocol engine
US7971205B2 (en) * 2005-12-01 2011-06-28 International Business Machines Corporation Handling of user mode thread using no context switch attribute to designate near interrupt disabled priority status
US7734897B2 (en) * 2005-12-21 2010-06-08 Arm Limited Allocation of memory access operations to memory access capable pipelines in a superscalar data processing apparatus and method having a plurality of execution threads
US8884972B2 (en) 2006-05-25 2014-11-11 Qualcomm Incorporated Graphics processor with arithmetic and elementary function units
US8869147B2 (en) * 2006-05-31 2014-10-21 Qualcomm Incorporated Multi-threaded processor with deferred thread output control
US7870372B2 (en) * 2006-08-14 2011-01-11 Marvell World Trade Ltd. Interrupt handling
US9880842B2 (en) * 2013-03-15 2018-01-30 Intel Corporation Using control flow data structures to direct and track instruction execution
US10031773B2 (en) 2014-02-20 2018-07-24 Nxp Usa, Inc. Method to communicate task context information and device therefor
US10298668B2 (en) 2014-03-24 2019-05-21 Square Enix Co., Ltd. Interactive system, terminal apparatus, server apparatus, control method, program, and recording medium
US10942748B2 (en) * 2015-07-16 2021-03-09 Nxp B.V. Method and system for processing interrupts with shadow units in a microcontroller
KR20170065845A (en) * 2015-12-04 2017-06-14 삼성전자주식회사 Processor and controlling method thereof
US9703603B1 (en) 2016-04-25 2017-07-11 Nxp Usa, Inc. System and method for executing accelerator call
US10761970B2 (en) * 2017-10-20 2020-09-01 International Business Machines Corporation Computerized method and systems for performing deferred safety check operations
US11188340B2 (en) * 2018-12-20 2021-11-30 International Business Machines Corporation Multiple streams execution for hard-to-predict branches in a microprocessor
US11169812B2 (en) 2019-09-26 2021-11-09 Advanced Micro Devices, Inc. Throttling while managing upstream resources

Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US4905190A (en) * 1986-08-20 1990-02-27 Nec Corporation Multiprogram control information processing system with process roll-in from main memory
EP0538817A2 (en) * 1991-10-21 1993-04-28 Kabushiki Kaisha Toshiba High-speed processor capable of handling multiple interrupts

Family Cites Families (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5421014A (en) * 1990-07-13 1995-05-30 I-Tech Corporation Method for controlling multi-thread operations issued by an initiator-type device to one or more target-type peripheral devices
US5546593A (en) * 1992-05-18 1996-08-13 Matsushita Electric Industrial Co., Ltd. Multistream instruction processor able to reduce interlocks by having a wait state for an instruction stream
US5515538A (en) * 1992-05-29 1996-05-07 Sun Microsystems, Inc. Apparatus and method for interrupt handling in a multi-threaded operating system kernel
US5649225A (en) * 1994-06-01 1997-07-15 Advanced Micro Devices, Inc. Resynchronization of a superscalar processor
JP3569014B2 (en) * 1994-11-25 2004-09-22 富士通株式会社 Processor and processing method supporting multiple contexts
US5724565A (en) * 1995-02-03 1998-03-03 International Business Machines Corporation Method and system for processing first and second sets of instructions by first and second types of processing systems

Patent Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US4905190A (en) * 1986-08-20 1990-02-27 Nec Corporation Multiprogram control information processing system with process roll-in from main memory
EP0538817A2 (en) * 1991-10-21 1993-04-28 Kabushiki Kaisha Toshiba High-speed processor capable of handling multiple interrupts

Non-Patent Citations (3)

* Cited by examiner, † Cited by third party
Title
"REGISTER BANKING FOR IBM SYSTEM/370", IBM TECHNICAL DISCLOSURE BULLETIN, vol. 34, no. 4B, 1 September 1991 (1991-09-01), pages 372 - 373, XP000189622 *
G. BYRD & M. HOLLIDAY: "Multithreaded Processor Architectures", IEEE SPECTRUM, vol. 32, no. 8, August 1995 (1995-08-01), NEW YORK US, pages 38 - 46, XP000524855 *
HIROAKI HIRATA ET AL: "AN ELEMENTARY PROCESSOR ARCHITECTURE WITH SIMULTANEOUS INSTRUCTION ISSUING FROM MULTIPLE THREADS", COMPUTER ARCHITECTURE NEWS, vol. 20, no. 2, 1 May 1992 (1992-05-01), pages 136 - 145, XP000277761 *

Cited By (9)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
EP0947926A2 (en) * 1998-04-03 1999-10-06 MMC Networks, Inc. System and method for multi-tasking, resource sharing, and execution of computer instructions
EP0947926A3 (en) * 1998-04-03 2006-10-11 Applied Micro Circuits Corporation System and method for multi-tasking, resource sharing, and execution of computer instructions
US6493781B1 (en) 1999-08-19 2002-12-10 Koninklijke Philips Electronics N.V. Servicing of interrupts with stored and restored flags
WO2007002415A1 (en) * 2005-06-23 2007-01-04 Qualcomm Incorporated Shared translation look-aside buffer and method
US7398371B2 (en) 2005-06-23 2008-07-08 Qualcomm Incorporated Shared translation look-aside buffer and method
US8219789B2 (en) 2007-03-14 2012-07-10 XMOS Ltd. Interface processor
EP2137616B1 (en) * 2007-03-14 2013-10-30 Xmos Ltd Interface processor
EP2093662A1 (en) 2008-02-25 2009-08-26 Fujitsu Siemens Computers GmbH Method for processing interrupt requests in a processor
US8924697B2 (en) 2008-02-25 2014-12-30 Fujitsu Siemens Computers Gmbh Method for processing interrupt requests in a processor

Also Published As

Publication number Publication date
DE69701141D1 (en) 2000-02-17
EP0898743B1 (en) 2000-01-12
ES2143866T3 (en) 2000-05-16
US5944816A (en) 1999-08-31
EP0898743A1 (en) 1999-03-03
DE69701141T2 (en) 2000-09-21

Similar Documents

Publication Publication Date Title
US5944816A (en) Microprocessor configured to execute multiple threads including interrupt service routines
US6044430A (en) Real time interrupt handling for superscalar processors
US5727227A (en) Interrupt coprocessor configured to process interrupts in a computer system
KR100303673B1 (en) Forwarding store instruction result to load instruction with reduced stall or flushing by effective/real data address bytes matching
US5933627A (en) Thread switch on blocked load or store using instruction thread field
US6205467B1 (en) Microprocessor having a context save unit for saving context independent from interrupt requests
US5682492A (en) Computer processor with distributed pipeline control that allows functional units to complete operations out of order while maintaining precise interrupts
US5517651A (en) Method and apparatus for loading a segment register in a microprocessor capable of operating in multiple modes
US6442707B1 (en) Alternate fault handler
US5721855A (en) Method for pipeline processing of instructions by controlling access to a reorder buffer using a register file outside the reorder buffer
US9575754B2 (en) Zero cycle move
US6230259B1 (en) Transparent extended state save
US6076156A (en) Instruction redefinition using model specific registers
US6378023B1 (en) Interrupt descriptor cache for a microprocessor
US7676654B2 (en) Extended register space apparatus and methods for processors
US11068271B2 (en) Zero cycle move using free list counts
AU2015238517B2 (en) Dispatching multiple threads in a computer
US5987600A (en) Exception handling in a processor that performs speculative out-of-order instruction execution
JPH0215369A (en) Method and apparatus for executing instruction of vector processing system
US9213569B2 (en) Exiting multiple threads in a computer
US20080282251A1 (en) Thread de-emphasis instruction for multithreaded processor
US5687381A (en) Microprocessor including an interrupt polling unit configured to poll external devices for interrupts using interrupt acknowledge bus transactions
US20060149940A1 (en) Implementation to save and restore processor registers on a context switch
US5948093A (en) Microprocessor including an interrupt polling unit configured to poll external devices for interrupts when said microprocessor is in a task switch state
US20010005880A1 (en) Information-processing device that executes general-purpose processing and transaction processing

Legal Events

Date Code Title Description
AK Designated states

Kind code of ref document: A1

Designated state(s): JP KR

AL Designated countries for regional patents

Kind code of ref document: A1

Designated state(s): AT BE CH DE DK ES FI FR GB GR IE IT LU MC NL PT SE

DFPE Request for preliminary examination filed prior to expiration of 19th month from priority date (pct application filed before 20040101)
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: 1997924753

Country of ref document: EP

WWP Wipo information: published in national office

Ref document number: 1997924753

Country of ref document: EP

NENP Non-entry into the national phase

Ref country code: JP

Ref document number: 97542592

Format of ref document f/p: F

WWG Wipo information: grant in national office

Ref document number: 1997924753

Country of ref document: EP