US20120240116A1 - Performance In A Virtualization Architecture With A Processor Abstraction Layer - Google Patents

Performance In A Virtualization Architecture With A Processor Abstraction Layer Download PDF

Info

Publication number
US20120240116A1
US20120240116A1 US13/483,307 US201213483307A US2012240116A1 US 20120240116 A1 US20120240116 A1 US 20120240116A1 US 201213483307 A US201213483307 A US 201213483307A US 2012240116 A1 US2012240116 A1 US 2012240116A1
Authority
US
United States
Prior art keywords
processor
pal
virtualization
service
vmm
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Abandoned
Application number
US13/483,307
Inventor
Hin L. Leung
Amy L. Santoni
Gary N. Hammond
William R. Greene
Kushagra V. Vaid
Dale Morris
Jonathan Ross
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Individual
Original Assignee
Individual
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 Individual filed Critical Individual
Priority to US13/483,307 priority Critical patent/US20120240116A1/en
Publication of US20120240116A1 publication Critical patent/US20120240116A1/en
Abandoned legal-status Critical Current

Links

Images

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/44Arrangements for executing specific programs
    • G06F9/455Emulation; Interpretation; Software simulation, e.g. virtualisation or emulation of application or operating system execution engines
    • G06F9/45533Hypervisors; Virtual machine monitors

Definitions

  • the present disclosure pertains to the field of data processing, and more particularly, to the field of virtualizing resources in data processing apparatuses.
  • virtualization allows multiple instances of one or more operating systems (each, an “OS”) to run on a single data processing apparatus, even though each OS is designed to have complete, direct control over the apparatus and its resources.
  • Virtualization is typically implemented by using software (e.g., a virtual machine monitor, or a “VMM”) to present to each OS a “virtual machine” having virtual resources that the OS may completely and directly control, while the VMM maintains a system environment for implementing virtualization policies such as sharing and/or allocating the physical resources among the virtual machines (the “virtualization environment”).
  • software e.g., a virtual machine monitor, or a “VMM”
  • VMM virtual machine monitor
  • Each OS, and any other software, that runs on a virtual machine, unaware of the virtualization environment, is referred to as a “guest” or as “guest software,” while a “host” or “host software” is software, such as a VMM, that runs outside of, and may or may not be aware of, the virtualization environment.
  • a processor in a data processing apparatus may support virtualization, for example, by supporting an instruction to enter a virtualization environment to run a guest on a virtual processor.
  • certain events, operations, and situations such as external interrupts or attempts to access privileged registers or resources, may be “intercepted,” i.e., cause the processor to exit the virtualization environment so that a VMM may operate, for example, to implement virtualization policies.
  • a processor may also support other instructions for maintaining a virtualization environment, and may include register bits that indicate or control virtualization capabilities of the processor.
  • FIG. 1 illustrates an architecture for supporting virtualization according to an embodiment of the present invention.
  • FIG. 2 illustrates a method for calling a processor abstraction layer service according to an embodiment of the present invention.
  • FIG. 3 illustrates an embodiment of the present invention using shadow registers to support virtualization.
  • FIG. 4 illustrates a method for shadow register synchronization according to an embodiment of the present invention.
  • FIG. 5 illustrates another method for shadow register synchronization according to an embodiment of the present invention.
  • FIG. 6 illustrates another method for shadow register synchronization according to an embodiment of the present invention.
  • FIG. 7A illustrate an embodiment of the present invention using an optimization template.
  • FIG. 7B illustrates a method of handling a virtualization event according to an embodiment of the invention.
  • FIG. 7C illustrates a method of handling a virtualization event according to another embodiment of the invention.
  • FIG. 8 illustrates a system supporting virtualization according to an embodiment of the present invention.
  • PAL processor abstraction layer
  • Embodiments of the present invention include techniques for improving performance in a virtualization architecture, and may be applied to any data processing apparatus having a processor and a PAL.
  • the techniques may be applied to an apparatus having a single processor and a single PAL supporting a single or multiple virtualization environments, each having its own VMM, to an apparatus having multiple processors and multiple PALs supporting a single or multiple virtualization environments, and to an apparatus having one or more multicore processors and one or more PALs supporting one or more virtualization environments.
  • FIG. 1 illustrates an architecture for supporting virtualization according to an embodiment of the present invention.
  • Processor 100 may be any of a variety of different types of processors that may be used in a virtualization architecture.
  • the processor may be a general purpose processor such as a processor in the Pentium® Processor Family, the Itanium® Processor Family, or other processor family from Intel Corporation, or another processor from another company.
  • PAL 110 is code for accessing processor hardware and creating and managing virtualization data structures, and may be implemented in firmware, microcode, or any other form of non-volatile or persistent memory, but may be copied to dynamic or any other form of memory. PAL 110 may also include code unrelated to virtualization.
  • VMM 120 is software for creating and managing virtual processors and implementing virtualization policies within one or more virtualization environments.
  • VMM 120 has created virtual processor 130 - 1 for running OS 140 - 1 and application software 145 - 1 , 145 - 3 , and 145 - 5 , and virtual processor 130 - 2 for running OS 140 - 2 and application software 145 - 2 , 145 - 4 , and 145 - 6 .
  • FIG. 1 shows only two virtual processors and eight guests, any number of virtual processors may be created, any number of guests may be run on each virtual processor, and any guest may run on more than one virtual processor within the scope of the present invention.
  • PAL 110 may be used to provide a consistent software interface for VMM 120 to access processor hardware.
  • PAL 110 may be modified to access the enhanced hardware of a new processor, such as the next generation of processor 100 , or to account for hardware features that have been removed from a new processor, with no change to VMM 120 or any guest.
  • PAL 110 may be implemented to include PAL procedures 111 and PAL services 112 .
  • PAL procedures 111 are known functions, typically called to manipulate processor-specific settings, such as settings in a machine specific register. Therefore, a caller typically preserves some architectural state before calling a PAL procedure 111 , and PAL procedures 111 include checks to be performed at entry to ensure that the input parameters and the calling environment conform to the architecture. Also, PAL procedures 111 are called by jumping to a single entry point of PAL code that includes a decode operation to determine the function to be performed.
  • PAL services 112 are low latency, low overhead functions that do not include any input parameter or processor state checking, and do not include a decode operation. Input parameter and processor state checking may be avoided by assuming that the caller is responsible for the integrity of the input parameters to PAL services 112 .
  • the decode operations necessary for PAL procedures 111 may be avoided by passing to a caller, at initialization, a base address for PAL service code.
  • An entry point for each PAL service is defined as an offset in jump table 113 , which is stored in memory accessible to the caller. Therefore, the caller may branch directly to the offset from the base address corresponding to the desired PAL service, and no decode is required.
  • the preservation of architectural state by a caller may be avoided or minimized.
  • PAL services are called by a VMM while the VMM is executing an interrupt handler.
  • certain architectural state information may have been saved upon entry to the interrupt handler. For example, in a processor in the Itanium® Processor Family, sixteen of the static registers are automatically saved by hardware when an interrupt occurs. By using some of these static registers to pass parameters to a PAL service, no additional architectural state needs to be saved by the VMM when calling the PAL service.
  • FIG. 2 illustrates a method for calling a PAL service according to an embodiment of the present invention.
  • a virtualization environment is initialized.
  • a base address is passed to a caller.
  • the caller sets up input parameters for the PAL service.
  • the caller sets up a return address to which the PAL service will branch when it is complete.
  • the offset for the PAL service is obtained from a jump table.
  • the address of the entry point to the PAL service is determined by adding the offset to the base address.
  • the caller invokes the PAL service by branching to the address determined in block 226 .
  • the PAL service executes the PAL function.
  • the PAL service sets up one or more return values, if any.
  • the PAL service transfers control to the address specified in block 220 .
  • performance may be improved by implementing virtualization functions, or any other functions, as PAL services instead of as PAL procedures.
  • functions that are not invoked frequently may be implemented as PAL procedures, whereas functions that are invoked frequently during run-time may be implemented as PAL services.
  • lower latency may be achieved by designing the interface to the PAL service to exactly match the state that the processor will be in when the caller calls the procedure.
  • VPD 135 - 1 and 135 - 2 are data structures encapsulating the performance-critical architectural state of the associated virtual processors.
  • VPD 135 - 1 and 135 - 2 may include, respectively, virtual copies 136 - 1 and 136 - 2 of interrupt control register 136 .
  • VPDs 135 - 1 and 135 - 2 may also include any additional state or other information related to a virtual processor, such as configuration options specific to a virtual processor to allow performance tuning. For example, different interrupt handlers may be used depending on the OS.
  • an access to interrupt control register 136 may be intercepted, such that the virtual copy of the interrupt control register in that virtual processor's VPD is accessed by VMM 120 without interfering with the architectural state of processor 100 or of the other virtual processors supported by processor 100 .
  • a VPD may be stored anywhere in the memory accessible to processor 100 through PAL 110 and VMM 120 .
  • processor 300 may include one or more shadow registers 305 for supporting virtualization.
  • one shadow register 305 may be used to shadow interrupt control register 336 .
  • an access to interrupt control register 336 by a guest is directed, through processor 300 , to shadow register 305 . Therefore, performance may be improved by eliminating the software overhead associated with exiting the virtualization environment to allow a VMM to access the VPD of the running guest, then re-entering the virtualization environment to continue executing the guest.
  • the performance improvement may be significant because every access to a virtualized register may otherwise result in a separate exit from and entry into the virtualization environment.
  • PAL 310 includes synchronization code 315 , which has a SYNC_READ routine 315 - 1 and a SYNC_WRITE routine 315 - 2 , to support hardware shadowing.
  • SYNC_READ routine 315 - 1 and SYNC_WRITE routine 315 - 2 may be implemented as PAL services, as described above.
  • a guest runs with hardware shadowing enabled on processor 300 .
  • hardware shadowing is enabled, as described above, an attempt by the guest to write to a register that is shadowed with shadow register 305 may result in modification of the value in shadow register 305 but not the corresponding value in the VPD for that guest. Therefore, as follows, the VMM uses SYNC_READ routine 315 - 1 to ensure that the latest values that should be in the virtual register for that guest are available to the VMM.
  • guest execution is completed, suspended, or otherwise terminated such that control is passed to a VMM.
  • the VMM calls SYNC_READ routine 315 - 1 .
  • SYNC_READ routine 315 - 1 copies the values from the shadow registers 305 to the corresponding entries in the VPD.
  • the VMM reads the latest values from the VPD.
  • the VMM calls SYNC_WRITE routine 315 - 2 .
  • SYNC_WRITE routine 315 - 2 copies the values from the VPD of the guest into shadow registers 305 , to ensure that the latest values are available to that guest.
  • the VMM starts execution of the guest with hardware shadowing enabled on processor 300 .
  • the guest reads the latest value of its virtual register from shadow register 305 .
  • FIG. 6 Another embodiment, where a guest is running, the VMM is called, then the VMM returns control to the guest, is illustrated in FIG. 6 .
  • This sequence may occur, for example, where a guest is not permitted to write to a certain register (a “privileged” register), even if it is shadowed in hardware.
  • a guest attempts to write to a privileged register.
  • an intercept to a VMM is raised.
  • the VMM performs the write to memory.
  • the VMM calls a SYNC_WRITE routine.
  • the SYNC_WRITE routine copies the value from memory to a shadow register.
  • the VMM returns control to the guest.
  • the guest reads the latest value of its virtual copy of the privileged register from the shadow register.
  • any other architectural registers of processor 300 may be shadowed instead of or in addition to interrupt control register 336 , and any number of shadow registers may be provided to shadow one or more architectural registers.
  • architectural register means any register or processor state information that is visible to or accessible through software. Therefore, the implementation of synchronization code 315 depends on the hardware shadowing provided by processor 300 . However, as described above, PAL 310 may provide a consistent software interface regardless of the hardware implementation.
  • PAL 310 may be written to directly access the appropriate shadow register in processor 300 when a shadowed architectural register is accessed by a guest and hardware shadowing is enabled, but to access the appropriate memory location when an architectural register is not shadowed in hardware or hardware shadowing is disabled. Then, synchronization code 315 is written to synchronize only those registers that may actually be shadowed in hardware (i.e., hardware shadowing is provided and enabled).
  • PAL 310 also handles the case of VMM enabling hardware shadowing of a register that is not shadowed in hardware. For example, a processor may provide no shadow registers, but PAL 310 may nevertheless provide for a VMM to enable shadowing of certain architectural registers in anticipation of support for hardware shadowing in future generations of the processor. In this case, PAL 310 handles a virtualization event caused by a register access instead of passing it to the VMM as an intercept, because the VMM is operating under the assumption that hardware shadowing of the register is provided.
  • PAL 310 provide for the shadowing of certain hardware resources even before any processor is designed to support such shadowing may be desirable because it allows VMM software to be written in advance, such that the VMM software may be compatible with earlier processors that do not provide such shadowing and may also take advantage of shadowing capabilities provided by later processors.
  • PAL 310 may check if hardware shadowing is enabled to determine whether to handle the event or pass it to the VMM. Although this approach has been described with respect to hardware shadowing, it may be used for virtualization events related to any other optimizations that PAL 310 and/or processor 300 may provide.
  • performance may be improved by eliminating the overhead associated with PAL 710 checking whether an optimization is enabled every time a corresponding virtualization event occurs. Instead of such checking, a predetermination of whether PAL 710 handles the virtualization event or passes it to a VMM is provided by an optimization template 720 .
  • Optimization template 720 made available by PAL 710 , is chosen from a number of optimization templates when the virtualization environment is initialized. The choice of optimization template 720 may be based on optimization settings selected by the VMM and the hardware capabilities of the processor.
  • optimization template 720 may provide for the VMM to handle all virtualization events corresponding to optimizations (a “VMM-optimized template”). If a VMM-optimized template is chosen at initialization, PAL 710 will transfer control to the VMM immediately upon detecting a virtualization event corresponding to an optimization. Another embodiment of optimization template 720 may provide for PAL 710 to handle all virtualization events corresponding to optimizations (a “generic template”). A generic template may be used to avoid modifying a VMM for different implementations of processors, and/or to provide for the use of optimizations of which a VMM may not be aware.
  • optimization templates 720 Any number of different optimization templates 720 is possible within the scope of the present invention, because, among other reasons, a different template may be used depending on what optimizations are supported or contemplated. For example, backward compatibility to previous processor generations may be supported by providing, in PAL 710 , a choice of VMM-optimized templates corresponding those previous processor generations.
  • the PAL handles all events related to optimizations for which hardware is provided to accelerate the optimization.
  • the VMM handles all events related to optimizations for which no hardware is provided to accelerate the optimization because no performance advantage may be gained by allowing the PAL to handle these events.
  • FIG. 7B illustrates a method of handling a virtualization event according to an embodiment of the present invention.
  • a virtualization environment is initialized.
  • an optimization template is loaded.
  • a virtualization event relating to an optimization occurs.
  • an indicator in the optimization template determines whether the event is to be handled by a VMM. If so, then in block 770 , control is transferred to the VMM. If not, then in block 780 , execution continues with no transfer of control to the VMM.
  • FIG. 7C illustrates an alternate embodiment where an optimization template is not used.
  • a virtualization environment is initialized.
  • a virtualization event relating to an optimization occurs.
  • the PAL checks whether the optimization is enabled. If the optimization is enabled, then in block 771 , control is transferred to the VMM. If not, then in block 781 , execution continues with no transfer of control to the VMM.
  • FIG. 8 illustrates a system 800 supporting virtualization in accordance with an embodiment of the present invention.
  • System 800 includes processor 810 and PAL 815 from FIG. 1 , implemented according to the embodiment of FIG. 1 and coupled to memory 820 through bus 825 , or through any other buses or components, such as a memory controller or system logic.
  • Memory 820 may be any type of memory capable of storing data to be operated on by processor 810 , such as static or dynamic random access memory, semiconductor-based read only or flash memory, or a magnetic or optical disk memory. VMM, operating system, application, and any other type of software may be stored in memory 820 .
  • System 800 may also include any other buses, such as a peripheral bus, or components, such as input/output devices, in addition to processor 810 , PAL 815 , memory 820 , and bus 825 .
  • Processor 100 , processor 810 , or any other component or portion of a component designed according to an embodiment of the present invention may be designed in various stages, from creation to simulation to fabrication.
  • Data representing a design may represent the design in a number of manners.
  • the hardware may be represented using a hardware description language or another functional description language.
  • a circuit level model with logic and/or transistor gates may be produced at some stages of the design process.
  • most designs, at some stage reach a level where they may be modeled with data representing the physical placement of various devices.
  • the data representing the device placement model may be the data specifying the presence or absence of various features on different mask layers for masks used to produce an integrated circuit.
  • the data may be stored in any form of a machine-readable medium.
  • An optical or electrical wave modulated or otherwise generated to transmit such information, a memory, or a magnetic or optical storage medium, such as a disc, may be the machine-readable medium. Any of these media may “carry” or “indicate” the design, or other information used in an embodiment of the present invention, such as the instructions in an error recovery routine.
  • an electrical carrier wave indicating or carrying the information is transmitted, to the extent that copying, buffering, or re-transmission of the electrical signal is performed, a new copy is made.
  • the actions of a communication provider or a network provider may be making copies of an article, e.g., a carrier wave, embodying techniques of the present invention.

Abstract

Embodiments of apparatuses and methods for improving performance in a virtualization architecture are disclosed. In one embodiment, an apparatus includes a processor and a processor abstraction layer. The processor abstraction layer includes instructions that, when executed by the processor, support techniques to improve the performance of the apparatus in a virtualization architecture.

Description

  • This application is a continuation of U.S. patent application Ser. No. 11/041,061, filed Jan. 19, 2005, the content of which is hereby incorporated by reference.
  • BACKGROUND
  • 1. Field
  • The present disclosure pertains to the field of data processing, and more particularly, to the field of virtualizing resources in data processing apparatuses.
  • 2. Description of Related Art
  • Generally, the concept of virtualization of resources in data processing apparatuses allows multiple instances of one or more operating systems (each, an “OS”) to run on a single data processing apparatus, even though each OS is designed to have complete, direct control over the apparatus and its resources. Virtualization is typically implemented by using software (e.g., a virtual machine monitor, or a “VMM”) to present to each OS a “virtual machine” having virtual resources that the OS may completely and directly control, while the VMM maintains a system environment for implementing virtualization policies such as sharing and/or allocating the physical resources among the virtual machines (the “virtualization environment”). Each OS, and any other software, that runs on a virtual machine, unaware of the virtualization environment, is referred to as a “guest” or as “guest software,” while a “host” or “host software” is software, such as a VMM, that runs outside of, and may or may not be aware of, the virtualization environment.
  • A processor in a data processing apparatus may support virtualization, for example, by supporting an instruction to enter a virtualization environment to run a guest on a virtual processor. In the virtualization environment, certain events, operations, and situations, such as external interrupts or attempts to access privileged registers or resources, may be “intercepted,” i.e., cause the processor to exit the virtualization environment so that a VMM may operate, for example, to implement virtualization policies. A processor may also support other instructions for maintaining a virtualization environment, and may include register bits that indicate or control virtualization capabilities of the processor.
  • BRIEF DESCRIPTION OF THE FIGURES
  • The present invention is illustrated by way of example and not limitation in the accompanying figures.
  • FIG. 1 illustrates an architecture for supporting virtualization according to an embodiment of the present invention.
  • FIG. 2 illustrates a method for calling a processor abstraction layer service according to an embodiment of the present invention.
  • FIG. 3 illustrates an embodiment of the present invention using shadow registers to support virtualization.
  • FIG. 4 illustrates a method for shadow register synchronization according to an embodiment of the present invention.
  • FIG. 5 illustrates another method for shadow register synchronization according to an embodiment of the present invention.
  • FIG. 6 illustrates another method for shadow register synchronization according to an embodiment of the present invention.
  • FIG. 7A illustrate an embodiment of the present invention using an optimization template.
  • FIG. 7B illustrates a method of handling a virtualization event according to an embodiment of the invention.
  • FIG. 7C illustrates a method of handling a virtualization event according to another embodiment of the invention.
  • FIG. 8 illustrates a system supporting virtualization according to an embodiment of the present invention.
  • DETAILED DESCRIPTION
  • The following description describes embodiments of techniques for improving performance in a virtualization architecture with a processor abstraction layer (“PAL”). In the following description, numerous specific details, such as component and system configurations, may be set forth in order to provide a more thorough understanding of the present invention. It will be appreciated, however, by one skilled in the art, that the invention may be practiced without such specific details. Additionally, some well known structures, circuits, and the like have not been shown in detail, to avoid unnecessarily obscuring the present invention.
  • Embodiments of the present invention include techniques for improving performance in a virtualization architecture, and may be applied to any data processing apparatus having a processor and a PAL. For example, the techniques may be applied to an apparatus having a single processor and a single PAL supporting a single or multiple virtualization environments, each having its own VMM, to an apparatus having multiple processors and multiple PALs supporting a single or multiple virtualization environments, and to an apparatus having one or more multicore processors and one or more PALs supporting one or more virtualization environments.
  • FIG. 1 illustrates an architecture for supporting virtualization according to an embodiment of the present invention. Processor 100 may be any of a variety of different types of processors that may be used in a virtualization architecture. For example, the processor may be a general purpose processor such as a processor in the Pentium® Processor Family, the Itanium® Processor Family, or other processor family from Intel Corporation, or another processor from another company.
  • PAL 110 is code for accessing processor hardware and creating and managing virtualization data structures, and may be implemented in firmware, microcode, or any other form of non-volatile or persistent memory, but may be copied to dynamic or any other form of memory. PAL 110 may also include code unrelated to virtualization.
  • VMM 120 is software for creating and managing virtual processors and implementing virtualization policies within one or more virtualization environments. In the embodiment of FIG. 1, VMM 120 has created virtual processor 130-1 for running OS 140-1 and application software 145-1, 145-3, and 145-5, and virtual processor 130-2 for running OS 140-2 and application software 145-2, 145-4, and 145-6. Although FIG. 1 shows only two virtual processors and eight guests, any number of virtual processors may be created, any number of guests may be run on each virtual processor, and any guest may run on more than one virtual processor within the scope of the present invention.
  • PAL 110 may be used to provide a consistent software interface for VMM 120 to access processor hardware. For example, PAL 110 may be modified to access the enhanced hardware of a new processor, such as the next generation of processor 100, or to account for hardware features that have been removed from a new processor, with no change to VMM 120 or any guest.
  • PAL 110 may be implemented to include PAL procedures 111 and PAL services 112. PAL procedures 111 are known functions, typically called to manipulate processor-specific settings, such as settings in a machine specific register. Therefore, a caller typically preserves some architectural state before calling a PAL procedure 111, and PAL procedures 111 include checks to be performed at entry to ensure that the input parameters and the calling environment conform to the architecture. Also, PAL procedures 111 are called by jumping to a single entry point of PAL code that includes a decode operation to determine the function to be performed.
  • In contrast, PAL services 112 are low latency, low overhead functions that do not include any input parameter or processor state checking, and do not include a decode operation. Input parameter and processor state checking may be avoided by assuming that the caller is responsible for the integrity of the input parameters to PAL services 112.
  • The decode operations necessary for PAL procedures 111 may be avoided by passing to a caller, at initialization, a base address for PAL service code. An entry point for each PAL service is defined as an offset in jump table 113, which is stored in memory accessible to the caller. Therefore, the caller may branch directly to the offset from the base address corresponding to the desired PAL service, and no decode is required.
  • Furthermore, in some embodiments, the preservation of architectural state by a caller may be avoided or minimized. Typically, PAL services are called by a VMM while the VMM is executing an interrupt handler. To allow the interrupt handler access to certain hardware resources, certain architectural state information may have been saved upon entry to the interrupt handler. For example, in a processor in the Itanium® Processor Family, sixteen of the static registers are automatically saved by hardware when an interrupt occurs. By using some of these static registers to pass parameters to a PAL service, no additional architectural state needs to be saved by the VMM when calling the PAL service.
  • FIG. 2 illustrates a method for calling a PAL service according to an embodiment of the present invention. In block 200, a virtualization environment is initialized. In block 205, a base address is passed to a caller. In block 210, the caller sets up input parameters for the PAL service. In block 220, the caller sets up a return address to which the PAL service will branch when it is complete. In block 225, the offset for the PAL service is obtained from a jump table. In block 226, the address of the entry point to the PAL service is determined by adding the offset to the base address. In block 230, the caller invokes the PAL service by branching to the address determined in block 226. In block 240, the PAL service executes the PAL function. In block 250, the PAL service sets up one or more return values, if any. In block 260, the PAL service transfers control to the address specified in block 220.
  • Therefore, performance may be improved by implementing virtualization functions, or any other functions, as PAL services instead of as PAL procedures. For example, functions that are not invoked frequently, perhaps only at boot time, may be implemented as PAL procedures, whereas functions that are invoked frequently during run-time may be implemented as PAL services. In some embodiments, such as those described for PAL services to virtualization, lower latency may be achieved by designing the interface to the PAL service to exactly match the state that the processor will be in when the caller calls the procedure.
  • Returning to FIG. 1, associated with virtual processors 130-1 and 130-2, respectively, are virtual processor descriptor (“VPD”) 135-1 and 135-2, which are data structures encapsulating the performance-critical architectural state of the associated virtual processors. For example, VPD 135-1 and 135-2 may include, respectively, virtual copies 136-1 and 136-2 of interrupt control register 136. VPDs 135-1 and 135-2 may also include any additional state or other information related to a virtual processor, such as configuration options specific to a virtual processor to allow performance tuning. For example, different interrupt handlers may be used depending on the OS.
  • In one embodiment, when a guest is running on processor 100, an access to interrupt control register 136 may be intercepted, such that the virtual copy of the interrupt control register in that virtual processor's VPD is accessed by VMM 120 without interfering with the architectural state of processor 100 or of the other virtual processors supported by processor 100. A VPD may be stored anywhere in the memory accessible to processor 100 through PAL 110 and VMM 120.
  • In another embodiment, for example, as shown in FIG. 3, processor 300 may include one or more shadow registers 305 for supporting virtualization. For example, one shadow register 305 may be used to shadow interrupt control register 336. In this embodiment, an access to interrupt control register 336 by a guest is directed, through processor 300, to shadow register 305. Therefore, performance may be improved by eliminating the software overhead associated with exiting the virtualization environment to allow a VMM to access the VPD of the running guest, then re-entering the virtualization environment to continue executing the guest. The performance improvement may be significant because every access to a virtualized register may otherwise result in a separate exit from and entry into the virtualization environment.
  • In the embodiment of FIG. 3, PAL 310 includes synchronization code 315, which has a SYNC_READ routine 315-1 and a SYNC_WRITE routine 315-2, to support hardware shadowing. SYNC_READ routine 315-1 and SYNC_WRITE routine 315-2 may be implemented as PAL services, as described above.
  • For example, in block 410 of FIG. 4, a guest runs with hardware shadowing enabled on processor 300. Because hardware shadowing is enabled, as described above, an attempt by the guest to write to a register that is shadowed with shadow register 305 may result in modification of the value in shadow register 305 but not the corresponding value in the VPD for that guest. Therefore, as follows, the VMM uses SYNC_READ routine 315-1 to ensure that the latest values that should be in the virtual register for that guest are available to the VMM.
  • In block 420, guest execution is completed, suspended, or otherwise terminated such that control is passed to a VMM. Then, in block 430, before the VMM reads the VPD for that guest, the VMM calls SYNC_READ routine 315-1. In block 440, SYNC_READ routine 315-1 copies the values from the shadow registers 305 to the corresponding entries in the VPD. Then, in block 450, the VMM reads the latest values from the VPD.
  • Similarly, in block 510 of FIG. 5, before a VMM starts the execution of a guest with hardware shadowing enabled on processor 300, the VMM calls SYNC_WRITE routine 315-2. In block 520, SYNC_WRITE routine 315-2 copies the values from the VPD of the guest into shadow registers 305, to ensure that the latest values are available to that guest. In block 530, the VMM starts execution of the guest with hardware shadowing enabled on processor 300. In block 540, the guest reads the latest value of its virtual register from shadow register 305.
  • Another embodiment, where a guest is running, the VMM is called, then the VMM returns control to the guest, is illustrated in FIG. 6. This sequence may occur, for example, where a guest is not permitted to write to a certain register (a “privileged” register), even if it is shadowed in hardware. In block 610, a guest attempts to write to a privileged register. In block 620, an intercept to a VMM is raised. In block 630, the VMM performs the write to memory. In block 640, the VMM calls a SYNC_WRITE routine. In block 650, the SYNC_WRITE routine copies the value from memory to a shadow register. In block 660, the VMM returns control to the guest. In block 670, the guest reads the latest value of its virtual copy of the privileged register from the shadow register.
  • Although the embodiment of FIG. 3 illustrates shadowing of interrupt control register 336, any other architectural registers of processor 300 may be shadowed instead of or in addition to interrupt control register 336, and any number of shadow registers may be provided to shadow one or more architectural registers. Here, “architectural register” means any register or processor state information that is visible to or accessible through software. Therefore, the implementation of synchronization code 315 depends on the hardware shadowing provided by processor 300. However, as described above, PAL 310 may provide a consistent software interface regardless of the hardware implementation.
  • For example, PAL 310 may be written to directly access the appropriate shadow register in processor 300 when a shadowed architectural register is accessed by a guest and hardware shadowing is enabled, but to access the appropriate memory location when an architectural register is not shadowed in hardware or hardware shadowing is disabled. Then, synchronization code 315 is written to synchronize only those registers that may actually be shadowed in hardware (i.e., hardware shadowing is provided and enabled).
  • PAL 310 also handles the case of VMM enabling hardware shadowing of a register that is not shadowed in hardware. For example, a processor may provide no shadow registers, but PAL 310 may nevertheless provide for a VMM to enable shadowing of certain architectural registers in anticipation of support for hardware shadowing in future generations of the processor. In this case, PAL 310 handles a virtualization event caused by a register access instead of passing it to the VMM as an intercept, because the VMM is operating under the assumption that hardware shadowing of the register is provided. Having PAL 310 provide for the shadowing of certain hardware resources even before any processor is designed to support such shadowing may be desirable because it allows VMM software to be written in advance, such that the VMM software may be compatible with earlier processors that do not provide such shadowing and may also take advantage of shadowing capabilities provided by later processors.
  • Therefore, in one embodiment, upon detecting the virtualization event related to hardware shadowing, PAL 310 may check if hardware shadowing is enabled to determine whether to handle the event or pass it to the VMM. Although this approach has been described with respect to hardware shadowing, it may be used for virtualization events related to any other optimizations that PAL 310 and/or processor 300 may provide.
  • In another embodiment, illustrated in FIG. 7A, performance may be improved by eliminating the overhead associated with PAL 710 checking whether an optimization is enabled every time a corresponding virtualization event occurs. Instead of such checking, a predetermination of whether PAL 710 handles the virtualization event or passes it to a VMM is provided by an optimization template 720. Optimization template 720, made available by PAL 710, is chosen from a number of optimization templates when the virtualization environment is initialized. The choice of optimization template 720 may be based on optimization settings selected by the VMM and the hardware capabilities of the processor.
  • One embodiment of optimization template 720 may provide for the VMM to handle all virtualization events corresponding to optimizations (a “VMM-optimized template”). If a VMM-optimized template is chosen at initialization, PAL 710 will transfer control to the VMM immediately upon detecting a virtualization event corresponding to an optimization. Another embodiment of optimization template 720 may provide for PAL 710 to handle all virtualization events corresponding to optimizations (a “generic template”). A generic template may be used to avoid modifying a VMM for different implementations of processors, and/or to provide for the use of optimizations of which a VMM may not be aware.
  • Any number of different optimization templates 720 is possible within the scope of the present invention, because, among other reasons, a different template may be used depending on what optimizations are supported or contemplated. For example, backward compatibility to previous processor generations may be supported by providing, in PAL 710, a choice of VMM-optimized templates corresponding those previous processor generations.
  • In yet another embodiment of an optimization template, the PAL handles all events related to optimizations for which hardware is provided to accelerate the optimization. Conversely, the VMM handles all events related to optimizations for which no hardware is provided to accelerate the optimization because no performance advantage may be gained by allowing the PAL to handle these events.
  • FIG. 7B illustrates a method of handling a virtualization event according to an embodiment of the present invention. In block 730, a virtualization environment is initialized. In block 740, an optimization template is loaded. In block 750, a virtualization event relating to an optimization occurs. In block 760, an indicator in the optimization template determines whether the event is to be handled by a VMM. If so, then in block 770, control is transferred to the VMM. If not, then in block 780, execution continues with no transfer of control to the VMM.
  • FIG. 7C illustrates an alternate embodiment where an optimization template is not used. In block 731, a virtualization environment is initialized. In block 751, a virtualization event relating to an optimization occurs. In block 761, the PAL checks whether the optimization is enabled. If the optimization is enabled, then in block 771, control is transferred to the VMM. If not, then in block 781, execution continues with no transfer of control to the VMM.
  • FIG. 8 illustrates a system 800 supporting virtualization in accordance with an embodiment of the present invention. System 800 includes processor 810 and PAL 815 from FIG. 1, implemented according to the embodiment of FIG. 1 and coupled to memory 820 through bus 825, or through any other buses or components, such as a memory controller or system logic. Memory 820 may be any type of memory capable of storing data to be operated on by processor 810, such as static or dynamic random access memory, semiconductor-based read only or flash memory, or a magnetic or optical disk memory. VMM, operating system, application, and any other type of software may be stored in memory 820. System 800 may also include any other buses, such as a peripheral bus, or components, such as input/output devices, in addition to processor 810, PAL 815, memory 820, and bus 825.
  • Processor 100, processor 810, or any other component or portion of a component designed according to an embodiment of the present invention may be designed in various stages, from creation to simulation to fabrication. Data representing a design may represent the design in a number of manners. First, as is useful in simulations, the hardware may be represented using a hardware description language or another functional description language. Additionally or alternatively, a circuit level model with logic and/or transistor gates may be produced at some stages of the design process. Furthermore, most designs, at some stage, reach a level where they may be modeled with data representing the physical placement of various devices. In the case where conventional semiconductor fabrication techniques are used, the data representing the device placement model may be the data specifying the presence or absence of various features on different mask layers for masks used to produce an integrated circuit.
  • In any representation of the design, the data may be stored in any form of a machine-readable medium. An optical or electrical wave modulated or otherwise generated to transmit such information, a memory, or a magnetic or optical storage medium, such as a disc, may be the machine-readable medium. Any of these media may “carry” or “indicate” the design, or other information used in an embodiment of the present invention, such as the instructions in an error recovery routine. When an electrical carrier wave indicating or carrying the information is transmitted, to the extent that copying, buffering, or re-transmission of the electrical signal is performed, a new copy is made. Thus, the actions of a communication provider or a network provider may be making copies of an article, e.g., a carrier wave, embodying techniques of the present invention.
  • Thus, techniques for improving performance in a virtual architecture with a PAL been disclosed. While certain embodiments have been described, and shown in the accompanying drawings, it is to be understood that such embodiments are merely illustrative of and not restrictive on the broad invention, and that this invention not be limited to the specific constructions and arrangements shown and described, since various other modifications may occur to those ordinarily skilled in the art upon studying this disclosure. In an area of technology such as this, where growth is fast and further advancements are not easily foreseen, the disclosed embodiments may be readily modifiable in arrangement and detail as facilitated by enabling technological advancements without departing from the principles of the present disclosure or the scope of the accompanying claims.

Claims (19)

1. An apparatus comprising:
a processor including a storage to store a processor abstraction layer (“PAL”) including service instructions, accessible to the processor as a PAL service without a decode operation, to determine a function to be performed without performance of a parameter checking operation and a processor state checking operation.
2. The apparatus of claim 1, wherein the storage is to further store PAL procedure instructions, accessible to the processor as a PAL procedure with a decode operation, to determine a first function to be performed with the parameter checking operation and with the processor state checking operation.
3. The apparatus of claim 1, wherein the PAL service instructions, when executed by the processor, support at least one technique to improve performance of the apparatus in a virtualization architecture.
4. The apparatus of claim 1, wherein the storage is also to store a PAL service jump table.
5. The apparatus of claim 4, wherein the PAL service jump table includes an offset value, and the PAL service is accessible to the processor by execution of an instruction to branch to a memory location addressable as a base address plus the offset value.
6. The apparatus of claim 1, wherein the processor includes circuitry to support virtualization of a hardware resource.
7. The apparatus of claim 6, wherein the circuitry comprises a shadow register to shadow attempts to access an architectural register.
8. The apparatus of claim 7, wherein the storage is to store synchronization instructions that, when executed by the processor, synchronize the values in the shadow register with the values in a virtual register corresponding to the architectural register.
9. A method comprising:
initializing a virtualization environment in a virtualization architecture;
performing a parameter checking operation and a processor state checking operation in connection with calling a procedure instruction in a processor executing instructions of a processor abstraction layer (“PAL”) stored in a storage;
performing a decode operation, in response to calling the procedure instruction, to determine a first function to be performed; and
calling a service instruction in the PAL without a decode operation to determine a second function to be performed without the parameter checking operation and without the processor state checking operation.
10. The method of claim 9, further comprising passing a base address to a caller of the procedure instruction.
11. The method of claim 9, further comprising executing the service instruction to synchronize a hardware resource to support virtualization with a virtual resource.
12. The method of claim 11, wherein the hardware resource is a shadow register and the virtual resource is a virtualized copy of an architectural register.
13. The method of claim 9, further comprising determining whether the service instruction is to be executed based on an indicator.
14. The method of claim 13, wherein the indicator is based on an enable indicator that indicates whether a virtualization technique is enabled.
15. The method of claim 14, wherein the indicator is based on a selection indicator that indicates whether the service instruction is selected.
16. An apparatus comprising:
a processor to load an optimization template made available via a processor abstraction layer (“PAL”), the optimization template including an indicator to indicate whether a virtualization event is to be handled by a virtual machine monitor (VMM) of a virtualization environment and if so to transfer control to the VMM, and otherwise to continue execution via the PAL, wherein the execution is continue via the PAL without the control transfer to the VMM.
17. The apparatus of claim 16, wherein the processor is to perform a parameter checking operation and a processor state checking operation in connection with a call to a procedure instruction.
18. The apparatus of claim 17, wherein the processor is to perform a decode operation, in response to the call to the procedure instruction, to determine a first function to be performed.
19. The apparatus of claim 18, wherein the processor is to call a service instruction in the PAL without a decode operation to determine a second function to be performed without the parameter checking operation and without the processor state checking operation.
US13/483,307 2005-01-19 2012-05-30 Performance In A Virtualization Architecture With A Processor Abstraction Layer Abandoned US20120240116A1 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
US13/483,307 US20120240116A1 (en) 2005-01-19 2012-05-30 Performance In A Virtualization Architecture With A Processor Abstraction Layer

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
US11/041,061 US8214830B2 (en) 2005-01-19 2005-01-19 Performance in a virtualization architecture with a processor abstraction layer
US13/483,307 US20120240116A1 (en) 2005-01-19 2012-05-30 Performance In A Virtualization Architecture With A Processor Abstraction Layer

Related Parent Applications (1)

Application Number Title Priority Date Filing Date
US11/041,061 Continuation US8214830B2 (en) 2005-01-19 2005-01-19 Performance in a virtualization architecture with a processor abstraction layer

Publications (1)

Publication Number Publication Date
US20120240116A1 true US20120240116A1 (en) 2012-09-20

Family

ID=36685439

Family Applications (2)

Application Number Title Priority Date Filing Date
US11/041,061 Expired - Fee Related US8214830B2 (en) 2005-01-19 2005-01-19 Performance in a virtualization architecture with a processor abstraction layer
US13/483,307 Abandoned US20120240116A1 (en) 2005-01-19 2012-05-30 Performance In A Virtualization Architecture With A Processor Abstraction Layer

Family Applications Before (1)

Application Number Title Priority Date Filing Date
US11/041,061 Expired - Fee Related US8214830B2 (en) 2005-01-19 2005-01-19 Performance in a virtualization architecture with a processor abstraction layer

Country Status (1)

Country Link
US (2) US8214830B2 (en)

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20130132556A1 (en) * 2011-10-04 2013-05-23 International Business Machines Corporation Providing status information for virtual resource images in a networked computing environment
US20150172106A1 (en) * 2008-03-17 2015-06-18 Microsoft Technology Licensing, Llc Virtualization of groups of devices

Families Citing this family (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US8312452B2 (en) * 2005-06-30 2012-11-13 Intel Corporation Method and apparatus for a guest to access a privileged register
US7941803B2 (en) * 2007-01-15 2011-05-10 International Business Machines Corporation Controlling an operational mode for a logical partition on a computing system
WO2009058042A1 (en) * 2007-10-29 2009-05-07 Intel Corporation A method of external performance monitoring for virtualized environments
US8255604B2 (en) * 2010-04-06 2012-08-28 International Business Machines Corporation Interrupt vector piggybacking
US10248595B2 (en) * 2017-08-10 2019-04-02 Infineon Technologies Ag Virtual machine monitor interrupt support for computer processing unit (CPU)

Citations (32)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US4974159A (en) * 1988-09-13 1990-11-27 Microsoft Corporation Method of transferring control in a multitasking computer system
US5983017A (en) * 1996-11-12 1999-11-09 Lsi Logic Corporation Virtual monitor debugging method and apparatus
US6230118B1 (en) * 1997-06-30 2001-05-08 Cirrus Logic, Inc. DOS based application supports for a controllerless modem
US20030093579A1 (en) * 2001-11-15 2003-05-15 Zimmer Vincent J. Method and system for concurrent handler execution in an SMI and PMI-based dispatch-execution framework
US20030208643A1 (en) * 2002-03-28 2003-11-06 Ferguson Patrick Lee Extension of USB functionality through shadowing of a remote USB host controller
US20030229775A1 (en) * 2002-06-11 2003-12-11 Schelling Todd A. System and method to filter processors by health during early firmware for split recovery architecture
US6668372B1 (en) * 1999-10-13 2003-12-23 Intel Corporation Software profiling method and apparatus
US20040003324A1 (en) * 2002-06-29 2004-01-01 Richard Uhlig Handling faults associated with operation of guest software in the virtual-machine architecture
US20040003323A1 (en) * 2002-06-29 2004-01-01 Steve Bennett Control over faults occurring during the operation of guest software in the virtual-machine architecture
US20040049669A1 (en) * 2002-09-09 2004-03-11 Schelling Todd A. Firmware architecture supporting safe updates and multiple processor types
US20040064674A1 (en) * 2002-09-30 2004-04-01 International Business Machines Corporation Apparatus and method for generating memory access signals, and memory accessed using said signals
US20040117593A1 (en) * 2002-12-12 2004-06-17 Richard Uhlig Reclaiming existing fields in address translation data structures to extend control over memory acceses
US20040123066A1 (en) * 2002-12-23 2004-06-24 Oded Liron Apparatus and method for reduction of power consumption in OS that use flat segmentation memory model
US20040268347A1 (en) * 2003-06-26 2004-12-30 Knauerhase Robert C. Virtual machine management using processor state information
US20050080965A1 (en) * 2003-09-30 2005-04-14 Bennett Steven M. Mechanism to control hardware interrupt acknowledgement in a virtual machine system
US20050120348A1 (en) * 2003-11-17 2005-06-02 Infineon Technologies Ag Method of determining information about the processes which run in a program-controlled unit during the execution of a program by the program-controlled unit
US20050132160A1 (en) * 2003-12-15 2005-06-16 Everett Gerald L. Platform independent method for establishing a run-time data area
US20050188374A1 (en) * 2004-02-20 2005-08-25 Magenheimer Daniel J. Flexible operating system operable as either native or as virtualized
US20050210224A1 (en) * 2001-10-23 2005-09-22 Ip-First Llc Processor including fallback branch prediction mechanism for far jump and far call instructions
US20050216920A1 (en) * 2004-03-24 2005-09-29 Vijay Tewari Use of a virtual machine to emulate a hardware device
US20050240819A1 (en) * 2004-03-30 2005-10-27 Bennett Steven M Providing support for single stepping a virtual machine in a virtual machine environment
US20050283586A1 (en) * 2004-06-22 2005-12-22 Sanjoy Mondal Stepping a virtual machine guest
US20050289542A1 (en) * 2004-06-28 2005-12-29 Volkmar Uhlig Support for transitioning to a virtual machine monitor based upon the privilege level of guest software
US20060010440A1 (en) * 2004-07-07 2006-01-12 Anderson Andrew V Optimizing system behavior in a virtual machine environment
US20060021029A1 (en) * 2004-06-29 2006-01-26 Brickell Ernie F Method of improving computer security through sandboxing
US20060026384A1 (en) * 2004-07-30 2006-02-02 Brandt Jason W Maintaining processor resources during architectural events
US20060026385A1 (en) * 2004-07-31 2006-02-02 Dinechin Christophe D Method for patching virtually aliased pages by a virtual-machine monitor
US20060075402A1 (en) * 2004-09-30 2006-04-06 Gilbert Neiger Providing support for a timer associated with a virtual machine monitor
US20060161719A1 (en) * 2005-01-14 2006-07-20 Bennett Steven M Virtualizing physical memory in a virtual machine system
US7131020B2 (en) * 2003-10-14 2006-10-31 Broadcom Corporation Distributed copies of configuration information using token ring
US7177967B2 (en) * 2003-09-30 2007-02-13 Intel Corporation Chipset support for managing hardware interrupts in a virtual machine system
US7281102B1 (en) * 2004-08-12 2007-10-09 Vmware, Inc. Restricting memory access to protect data when sharing a common address space

Family Cites Families (26)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5142677A (en) * 1989-05-04 1992-08-25 Texas Instruments Incorporated Context switching devices, systems and methods
US6513156B2 (en) * 1997-06-30 2003-01-28 Sun Microsystems, Inc. Interpreting functions utilizing a hybrid of virtual and native machine instructions
US6161166A (en) * 1997-11-10 2000-12-12 International Business Machines Corporation Instruction cache for multithreaded processor
US6496847B1 (en) * 1998-05-15 2002-12-17 Vmware, Inc. System and method for virtualizing computer systems
US6327704B1 (en) * 1998-08-06 2001-12-04 Hewlett-Packard Company System, method, and product for multi-branch backpatching in a dynamic translator
US7516453B1 (en) * 1998-10-26 2009-04-07 Vmware, Inc. Binary translator with precise exception synchronization mechanism
US6081890A (en) * 1998-11-30 2000-06-27 Intel Corporation Method of communication between firmware written for different instruction set architectures
US6199159B1 (en) * 1998-12-22 2001-03-06 Intel Corporation Booting an operating system
US6587947B1 (en) * 1999-04-01 2003-07-01 Intel Corporation System and method for verification of off-chip processor code
US6438671B1 (en) * 1999-07-01 2002-08-20 International Business Machines Corporation Generating partition corresponding real address in partitioned mode supporting system
US6594756B1 (en) * 1999-09-08 2003-07-15 Intel Corporation Multi-processor system for selecting a processor which has successfully written it's ID into write-once register after system reset as the boot-strap processor
US6622260B1 (en) * 1999-12-30 2003-09-16 Suresh Marisetty System abstraction layer, processor abstraction layer, and operating system error handling
US6763327B1 (en) * 2000-02-17 2004-07-13 Tensilica, Inc. Abstraction of configurable processor functionality for operating systems portability
US7028305B2 (en) * 2001-05-16 2006-04-11 Softricity, Inc. Operating system abstraction and protection layer
US20020184287A1 (en) * 2001-06-01 2002-12-05 Patrick Nunally Method and device for executing network-centric program code with reduced memory
US7272832B2 (en) * 2001-10-25 2007-09-18 Hewlett-Packard Development Company, L.P. Method of protecting user process data in a secure platform inaccessible to the operating system and other tasks on top of the secure platform
US7228543B2 (en) * 2003-01-24 2007-06-05 Arm Limited Technique for reaching consistent state in a multi-threaded data processing system
US6959262B2 (en) * 2003-02-27 2005-10-25 Hewlett-Packard Development Company, L.P. Diagnostic monitor for use with an operating system and methods therefor
US7512956B1 (en) * 2003-08-14 2009-03-31 Hewlett-Packard Development Company, L.P. System and method for supporting non-standard procedure calls
US20050044301A1 (en) * 2003-08-20 2005-02-24 Vasilevsky Alexander David Method and apparatus for providing virtual computing services
US7222203B2 (en) * 2003-12-08 2007-05-22 Intel Corporation Interrupt redirection for virtual partitioning
US7823161B2 (en) * 2004-01-29 2010-10-26 Klingman Edwin E Intelligent memory device with variable size task architecture
US7847800B2 (en) * 2004-04-16 2010-12-07 Apple Inc. System for emulating graphics operations
US7373446B2 (en) * 2004-11-05 2008-05-13 Microsoft Corporation Method and system for dynamically patching an operating system's interrupt mechanism
US7810083B2 (en) * 2004-12-30 2010-10-05 Intel Corporation Mechanism to emulate user-level multithreading on an OS-sequestered sequencer
WO2006069493A1 (en) * 2004-12-31 2006-07-06 Intel Corporation An apparatus and method for cooperative guest firmware

Patent Citations (32)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US4974159A (en) * 1988-09-13 1990-11-27 Microsoft Corporation Method of transferring control in a multitasking computer system
US5983017A (en) * 1996-11-12 1999-11-09 Lsi Logic Corporation Virtual monitor debugging method and apparatus
US6230118B1 (en) * 1997-06-30 2001-05-08 Cirrus Logic, Inc. DOS based application supports for a controllerless modem
US6668372B1 (en) * 1999-10-13 2003-12-23 Intel Corporation Software profiling method and apparatus
US20050210224A1 (en) * 2001-10-23 2005-09-22 Ip-First Llc Processor including fallback branch prediction mechanism for far jump and far call instructions
US20030093579A1 (en) * 2001-11-15 2003-05-15 Zimmer Vincent J. Method and system for concurrent handler execution in an SMI and PMI-based dispatch-execution framework
US20030208643A1 (en) * 2002-03-28 2003-11-06 Ferguson Patrick Lee Extension of USB functionality through shadowing of a remote USB host controller
US20030229775A1 (en) * 2002-06-11 2003-12-11 Schelling Todd A. System and method to filter processors by health during early firmware for split recovery architecture
US20040003323A1 (en) * 2002-06-29 2004-01-01 Steve Bennett Control over faults occurring during the operation of guest software in the virtual-machine architecture
US20040003324A1 (en) * 2002-06-29 2004-01-01 Richard Uhlig Handling faults associated with operation of guest software in the virtual-machine architecture
US20040049669A1 (en) * 2002-09-09 2004-03-11 Schelling Todd A. Firmware architecture supporting safe updates and multiple processor types
US20040064674A1 (en) * 2002-09-30 2004-04-01 International Business Machines Corporation Apparatus and method for generating memory access signals, and memory accessed using said signals
US20040117593A1 (en) * 2002-12-12 2004-06-17 Richard Uhlig Reclaiming existing fields in address translation data structures to extend control over memory acceses
US20040123066A1 (en) * 2002-12-23 2004-06-24 Oded Liron Apparatus and method for reduction of power consumption in OS that use flat segmentation memory model
US20040268347A1 (en) * 2003-06-26 2004-12-30 Knauerhase Robert C. Virtual machine management using processor state information
US20050080965A1 (en) * 2003-09-30 2005-04-14 Bennett Steven M. Mechanism to control hardware interrupt acknowledgement in a virtual machine system
US7177967B2 (en) * 2003-09-30 2007-02-13 Intel Corporation Chipset support for managing hardware interrupts in a virtual machine system
US7131020B2 (en) * 2003-10-14 2006-10-31 Broadcom Corporation Distributed copies of configuration information using token ring
US20050120348A1 (en) * 2003-11-17 2005-06-02 Infineon Technologies Ag Method of determining information about the processes which run in a program-controlled unit during the execution of a program by the program-controlled unit
US20050132160A1 (en) * 2003-12-15 2005-06-16 Everett Gerald L. Platform independent method for establishing a run-time data area
US20050188374A1 (en) * 2004-02-20 2005-08-25 Magenheimer Daniel J. Flexible operating system operable as either native or as virtualized
US20050216920A1 (en) * 2004-03-24 2005-09-29 Vijay Tewari Use of a virtual machine to emulate a hardware device
US20050240819A1 (en) * 2004-03-30 2005-10-27 Bennett Steven M Providing support for single stepping a virtual machine in a virtual machine environment
US20050283586A1 (en) * 2004-06-22 2005-12-22 Sanjoy Mondal Stepping a virtual machine guest
US20050289542A1 (en) * 2004-06-28 2005-12-29 Volkmar Uhlig Support for transitioning to a virtual machine monitor based upon the privilege level of guest software
US20060021029A1 (en) * 2004-06-29 2006-01-26 Brickell Ernie F Method of improving computer security through sandboxing
US20060010440A1 (en) * 2004-07-07 2006-01-12 Anderson Andrew V Optimizing system behavior in a virtual machine environment
US20060026384A1 (en) * 2004-07-30 2006-02-02 Brandt Jason W Maintaining processor resources during architectural events
US20060026385A1 (en) * 2004-07-31 2006-02-02 Dinechin Christophe D Method for patching virtually aliased pages by a virtual-machine monitor
US7281102B1 (en) * 2004-08-12 2007-10-09 Vmware, Inc. Restricting memory access to protect data when sharing a common address space
US20060075402A1 (en) * 2004-09-30 2006-04-06 Gilbert Neiger Providing support for a timer associated with a virtual machine monitor
US20060161719A1 (en) * 2005-01-14 2006-07-20 Bennett Steven M Virtualizing physical memory in a virtual machine system

Cited By (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20150172106A1 (en) * 2008-03-17 2015-06-18 Microsoft Technology Licensing, Llc Virtualization of groups of devices
US20130132556A1 (en) * 2011-10-04 2013-05-23 International Business Machines Corporation Providing status information for virtual resource images in a networked computing environment
US9215153B2 (en) * 2011-10-04 2015-12-15 International Business Machines Corporation Providing status information for virtual resource computing environment

Also Published As

Publication number Publication date
US8214830B2 (en) 2012-07-03
US20060161917A1 (en) 2006-07-20

Similar Documents

Publication Publication Date Title
US9442868B2 (en) Delivering interrupts directly to a virtual processor
US10289435B2 (en) Instruction set emulation for guest operating systems
US8312452B2 (en) Method and apparatus for a guest to access a privileged register
US20120240116A1 (en) Performance In A Virtualization Architecture With A Processor Abstraction Layer
KR102255767B1 (en) Systems and methods for virtual machine auditing
US7424709B2 (en) Use of multiple virtual machine monitors to handle privileged events
US10592434B2 (en) Hypervisor-enforced self encrypting memory in computing fabric
US9454676B2 (en) Technologies for preventing hook-skipping attacks using processor virtualization features
US8151264B2 (en) Injecting virtualization events in a layered virtualization architecture
US20060117325A1 (en) System and method for interrupt handling
US8291410B2 (en) Controlling virtual machines based on activity state
US20050204357A1 (en) Mechanism to protect extensible firmware interface runtime services utilizing virtualization technology
US8370559B2 (en) Executing a protected device model in a virtual machine
US11163597B2 (en) Persistent guest and software-defined storage in computing fabric
JP4980416B2 (en) Provision of multiple virtual device controllers by redirecting interrupts from physical device controllers
US8473945B2 (en) Enabling system management mode in a secure system
US20100169884A1 (en) Injecting transactions to support the virtualization of a physical device controller
US20100174841A1 (en) Providing multiple virtual device controllers by redirecting an interrupt from a physical device controller
US20040122834A1 (en) Apparatus and method for switching mode in a computer system
EP2941694B1 (en) Capability based device driver framework
US9747118B2 (en) Guest-specific microcode
WO2022022708A1 (en) Inter-process communication method and apparatus, and computer storage medium
WO2023071786A1 (en) Inter-process function calling method and related device

Legal Events

Date Code Title Description
STCB Information on status: application discontinuation

Free format text: ABANDONED -- FAILURE TO RESPOND TO AN OFFICE ACTION