Open main menu
Home
Random
Recent changes
Special pages
Community portal
Preferences
About Wikipedia
Disclaimers
Incubator escapee wiki
Search
User menu
Talk
Dark mode
Contributions
Create account
Log in
Editing
Virtual machine
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
{{Short description|Software that emulates an entire computer}} {{Use dmy dates|date=June 2019|cs1-dates=y}} [[File:Virt-manager_3.2.0_QEMU_KVM_screenshot.png|thumb|upright=1.35|''[[virt-manager]]'' running the [[Haiku (operating system)|Haiku]] operating system in a window]] {{Program execution}} In [[computing]], a '''virtual machine''' ('''VM''') is the [[virtualization]] or [[emulator|emulation]] of a [[computer system]]. Virtual machines are based on [[computer architecture]]s and provide the functionality of a physical computer. Their implementations may involve specialized hardware, software, or a combination of the two. Virtual machines differ and are organized by their function, shown here: * ''[[System virtual machine]]s'' (also called [[full virtualization]] VMs, or SysVMs,<ref>{{cite thesis |last=Dittamo |first=Cristian |title=On Expressing Different Concurrency Paradigms on Virtual Execution Systems |type=Ph.D. thesis |publisher=University of Pisa |date=2010 |url=https://www.researchgate.net/publication/221028529_On_Expressing_Different_Concurrency_Paradigms_on_Virtual_Execution_Systems |access-date=12 May 2025}}</ref> provide a substitute for a real machine. They provide the functionality needed to execute entire [[operating system]]s. A [[hypervisor]] uses [[native code|native execution]] to share and manage hardware, allowing for multiple environments that are isolated from one another yet exist on the same physical machine. Modern hypervisors use [[hardware-assisted virtualization]], with virtualization-specific hardware features on the host [[CPU]]s providing assistance to hypervisors. * ''[[Process virtual machine]]s'' are designed to execute computer programs in a platform-independent environment. Some virtual machine emulators, such as [[QEMU]] and [[video game console emulator]]s, are designed to also emulate (or "virtually imitate") different system architectures, thus allowing execution of software applications and operating systems written for another CPU or architecture. [[OS-level virtualization]] allows the resources of a computer to be partitioned via the [[Kernel (operating system)|kernel]]. The terms are not universally interchangeable. == Definitions == === System virtual machines === {{main|System virtual machine}} {{See also|Hardware virtualization|comparison of platform virtualization software}} A 'virtual machine' was originally defined by [[Popek and Goldberg virtualization requirements|Popek and Goldberg]] as "an efficient, isolated duplicate of a real computer machine."<ref name="Popek"/> Current use includes virtual machines that have no direct correspondence to any real hardware.<ref name="Smith_Nair_05"/> The physical, "real-world" hardware running the VM is generally referred to as the 'host', and the virtual machine emulated on that machine is generally referred to as the 'guest'. A host can emulate several guests, each of which can emulate different [[Operating system|operating systems]] and hardware platforms. The desire to run multiple operating systems was the initial motive for virtual machines, so as to allow time-sharing among several single-tasking operating systems. In some respects, a system virtual machine can be considered a generalization of the concept of [[virtual memory]] that historically preceded it. IBM's [[CP/CMS]], the first systems to allow [[full virtualization]], implemented [[time sharing]] by providing each user with a single-user operating system, the [[Conversational Monitor System]] (CMS). Unlike virtual memory, a system virtual machine entitled the user to write privileged instructions in their code. This approach had certain advantages, such as adding input/output devices not allowed by the standard system.<ref name="Smith_Nair_05"/> As technology evolves virtual memory for purposes of virtualization, new systems of [[memory overcommitment]] may be applied to manage memory sharing among multiple virtual machines on one computer operating system. It may be possible to share ''memory pages'' that have identical contents among multiple virtual machines that run on the same physical machine, what may result in mapping them to the same physical page by a technique termed [[kernel same-page merging]] (KSM). This is especially useful for read-only pages, such as those holding code segments, which is the case for multiple virtual machines running the same or similar software, software libraries, web servers, [[middleware]] components, etc. The guest operating systems do not need to be compliant with the host hardware, thus making it possible to run different operating systems on the same computer (e.g., [[Microsoft Windows|Windows]], [[Linux]], or prior versions of an operating system) to support future software.<ref name="Oliphant"/> The use of virtual machines to support separate guest operating systems is popular in regard to [[embedded system]]s. A typical use would be to run a [[real-time operating system]] simultaneously with a preferred complex operating system, such as Linux or Windows. Another use would be for novel and unproven software still in the developmental stage, so it runs inside a [[Sandbox (software development)|sandbox]]. Virtual machines have other advantages for operating system development and may include improved debugging access and faster reboots.<ref name="vmwarez_2006"/> Multiple VMs running their own guest operating system are frequently engaged for server consolidation.<ref name="vmware_2007"/> === Process virtual machines === <!-- This section is linked from [[.NET Framework]] --> {{Redirect-distinguish|Application virtual machine|application virtualization}} {{See also|Comparison of application virtualization software}} A '''process virtual machine''', sometimes called an ''application virtual machine'', or ''Managed Runtime Environment'' (MRE), runs as a normal application inside a host OS and supports a single process. It is created when that process is started and deleted when it is closed. Its purpose is to provide a [[system platform|platform]]-independent programming environment that abstracts away details of the underlying hardware or operating system and allows a program to execute in the same way on any platform.{{Citation needed|date=November 2015}} A process VM provides a high-level abstraction{{snd}} that of a [[high-level programming language]] (compared to the low-level ISA abstraction of the system VM). Process VMs are implemented using an [[Interpreter (computing)|interpreter]]; performance comparable to compiled programming languages can be achieved by the use of [[just-in-time compilation]].{{Citation needed|date=November 2015}} This type of VM has become popular with the [[Java (programming language)|Java programming language]], which is implemented using the [[Java virtual machine]]. Other examples include the [[Parrot virtual machine]] and the [[.NET Framework]], which runs on a VM called the [[Common Language Runtime]]. All of them can serve as an [[abstraction layer]] for any computer language.{{Citation needed|date=November 2015}} A special case of process VMs are systems that abstract over the communication mechanisms of a (potentially heterogeneous) [[computer cluster]]. Such a VM does not consist of a single process, but one process per physical machine in the cluster. They are designed to ease the task of programming concurrent applications by letting the programmer focus on algorithms rather than the communication mechanisms provided by the interconnect and the OS. They do not hide the fact that communication takes place, and as such do not attempt to present the cluster as a single machine.{{Citation needed|date=March 2013}} Unlike other process VMs, these systems do not provide a specific programming language, but are embedded in an existing language; typically such a system provides bindings for several languages (e.g., [[C (programming language)|C]] and [[Fortran]]).{{Citation needed|date=March 2013}} Examples are [[Parallel Virtual Machine]] (PVM) and [[Message Passing Interface]] (MPI). == History == {{See also|History of CP/CMS|timeline of virtualization development}} {{More citations needed section|date=July 2015}} Both system virtual machines and process virtual machines date to the 1960s and remain areas of active development. ''System virtual machines'' grew out of [[time-sharing]], as notably implemented in the [[Compatible Time-Sharing System]] (CTSS). Time-sharing allowed multiple users to use a computer [[Concurrent computing|concurrently]]: each program appeared to have full access to the machine, but only one program was executed at the time, with the system switching between programs in time slices, saving and restoring state each time. This evolved into virtual machines, notably via IBM's research systems: the [[IBM M44/44X|M44/44X]], which used [[partial virtualization]], and the [[IBM CP-40|CP-40]] and [[SIMMON]], which used [[full virtualization]], and were early examples of [[hypervisor]]s. The first widely available virtual machine architecture was the [[CP-67]]/CMS (see [[History of CP/CMS]] for details). An important distinction was between using multiple virtual machines on one host system for time-sharing, as in M44/44X and CP-40, and using one virtual machine on a host system for prototyping, as in SIMMON. [[Emulator]]s, with hardware emulation of earlier systems for compatibility, date back to the [[IBM System/360]] in 1963,<ref name="Pugh_1995"/><ref name="Pugh_1991"/> while the software emulation (then-called "simulation") predates it. ''Process virtual machines'' arose originally as abstract platforms for an [[intermediate language]] used as the [[intermediate representation]] of a program by a [[compiler]]; early examples date to around 1964 with the [[META II]] compiler-writing system using it for both syntax description and target code generation. A notable 1966 example was the [[O-code machine]], a virtual machine that executes [[O-code]] (object code) emitted by the [[Compiler#Front end|front end]] of the [[BCPL]] compiler. This abstraction allowed the compiler to be easily ported to a new architecture by implementing a new [[Compiler#Back end|back end]] that took the existing O-code and compiled it to machine code for the underlying physical machine. The [[Euler (programming language)|Euler]] language used a similar design, with the intermediate language named ''P'' (portable).<ref name="Wirth_1966"/> This was popularized around 1970 by [[Pascal (programming language)|Pascal]], notably in the [[Pascal-P]] system (1973) and [[Pascal-S]] compiler (1975), in which it was termed [[p-code machine|p-code]] and the resulting machine as a [[p-code machine]]. This has been influential, and virtual machines in this sense have been often generally called p-code machines. In addition to being an intermediate language, Pascal p-code was also executed directly by an interpreter implementing the virtual machine, notably in [[UCSD Pascal]] (1978); this influenced later interpreters, notably the [[Java virtual machine]] (JVM). Another early example was [[SNOBOL4]] (1967), which was written in the SNOBOL Implementation Language (SIL), an assembly language for a virtual machine, which was then targeted to physical machines by transpiling to their native assembler via a [[macro assembler]].<ref name="Griswold_1972"/> Macros have since fallen out of favor, however, so this approach has been less influential. Process virtual machines were a popular approach to implementing early microcomputer software, including [[Tiny BASIC#Implementation in a virtual machine|Tiny BASIC]] and adventure games, from one-off implementations such as [[Pyramid 2000]] to a general-purpose engine like [[Infocom]]'s [[z-machine]], which [[Graham Nelson]] argues is "possibly the most portable virtual machine ever created".<ref name="inform-interpreters"/> Significant advances occurred in the implementation of [[Smalltalk]]-80,<ref name="Goldberg_1983"/> particularly the Deutsch/Schiffmann implementation<ref name="Deutsch_1984"/> which pushed [[just-in-time compilation|just-in-time (JIT) compilation]] forward as an implementation approach that uses process virtual machine.<ref name="Aycock_2003"/> Later notable Smalltalk VMs were [[VisualWorks]], the [[Squeak Virtual Machine]],<ref name="Ingalls_1997"/> and [[Strongtalk]].<ref name="Griswold_1993"/> A related language that produced a lot of virtual machine innovation was the [[Self (programming language)|Self]] programming language,<ref name="Ungar_1987"/> which pioneered [[adaptive optimization]]<ref name="Hoelzle"/> and [[Tracing garbage collection#Generational GC (ephemeral GC)|generational garbage collection]]. These techniques proved commercially successful in 1999 in the [[HotSpot (virtual machine)|HotSpot]] Java virtual machine.<ref name="Paleczny_2001"/> Other innovations include a register-based virtual machine, to better match the underlying hardware, rather than a stack-based virtual machine, which is a closer match for the programming language; in 1995, this was pioneered by the [[Dis virtual machine]] for the [[Limbo (programming language)|Limbo]] language. == Virtualization techniques == {{Main|Full virtualization}} [[File:Hardware Virtualization (copy).svg|thumb|Logical diagram of full virtualization]] === Full virtualization === In full virtualization, the virtual machine simulates enough hardware to allow an unmodified "guest" OS (one designed for the same [[instruction set]]) to be run in isolation. This approach was pioneered in 1966 with the IBM [[CP-40]] and [[CP-67]], predecessors of the [[VM (Operating system)|VM]] family. Examples outside the mainframe field include [[Parallels Workstation]], [[Parallels Desktop for Mac]], [[VirtualBox]], [[Virtual Iron]], [[Oracle VM]], [[Microsoft Virtual PC|Virtual PC]], [[Microsoft Virtual Server|Virtual Server]], [[Hyper-V]], [[VMware Fusion]], [[VMware Workstation]], [[VMware Server]] (discontinued, formerly called GSX Server), [[VMware ESXi]], [[QEMU]], [[Adaptive Domain Environment for Operating Systems|Adeos]], Mac-on-Linux, Win4BSD, [[Win4Lin|Win4Lin Pro]], and Egenera vBlade technology. ==== Hardware-assisted virtualization ==== {{Main|Hardware-assisted virtualization}} In hardware-assisted virtualization, the hardware provides architectural support that facilitates building a virtual machine monitor and allows guest OSes to be run in isolation.<ref name="Uhlig_2005"/> Hardware-assisted virtualization was first introduced on the IBM System/370 in 1972, for use with [[VM (operating system)|VM/370]], the first virtual machine operating system offered by IBM as an official product.<ref>Randal, A. (2019). The Ideal Versus the Real: Revisiting the History of Virtual Machines and Containers.</ref> In 2005 and 2006, [[Intel]] and [[Advanced Micro Devices|AMD]] provided additional hardware to support virtualization. Sun Microsystems (now [[Oracle Corporation]]) added similar features in their [[SPARC T3|UltraSPARC T-Series]] processors in 2005. Examples of virtualization platforms adapted to such hardware include [[Kernel-based Virtual Machine|KVM]], [[VMware Workstation]], [[VMware Fusion]], [[Hyper-V]], [[Windows Virtual PC]], [[Xen]], [[Parallels Desktop for Mac]], [[Oracle VM Server for SPARC]], [[VirtualBox]] and [[Parallels Workstation]]. In 2006, first-generation 32- and 64-bit x86 hardware support was found to rarely offer performance advantages over software virtualization.<ref name="Adams_2006"/> === OS-level virtualization === {{Main|OS-level virtualization}} In OS-level virtualization, a physical server is virtualized at the operating system level, enabling multiple isolated and secure virtualized servers to run on a single physical server. The "guest" operating system environments share the same running instance of the operating system as the host system. Thus, the same [[operating system kernel]] is also used to implement the "guest" environments, and applications running in a given "guest" environment view it as a stand-alone system. The pioneer implementation was [[FreeBSD jail]]s; other examples include [[Docker (software)|Docker]], [[Solaris Containers]], [[OpenVZ]], [[Linux-VServer]], [[LXC]], AIX [[Workload Partitions]], Parallels Virtuozzo Containers, and iCore Virtual Accounts. == Snapshots == {{Main|Snapshot (computer storage)}} A ''snapshot'' is a state of a virtual machine, and generally its storage devices, at an exact point in time. A snapshot enables the virtual machine's state at the time of the snapshot to be restored later, effectively undoing any changes that occurred afterwards. This capability is useful as a [[backup]] technique, for example, prior to performing a risky operation.{{Citation needed|date=June 2023}} Virtual machines frequently use [[Disk image#Virtualization|virtual disks]] for their storage; in a very simple example, a 10-[[gigabyte]] [[hard disk drive]] is simulated with a 10-gigabyte [[flat file]]. Any requests by the VM for a location on its physical disk are transparently translated into an operation on the corresponding file. Once such a translation layer is present, however, it is possible to intercept the operations and send them to different files, depending on various criteria. Every time a snapshot is taken, a new file is created, and used as an overlay for its predecessors. New data is written to the topmost overlay; reading existing data, however, needs the overlay hierarchy to be scanned, resulting in accessing the most recent version. Thus, the entire stack of snapshots is virtually a single coherent disk; in that sense, creating snapshots works similarly to the [[incremental backup]] technique.{{Citation needed|date=June 2023}} Other components of a virtual machine can also be included in a snapshot, such as the contents of its [[random-access memory]] (RAM), [[BIOS]] settings, or its configuration settings. "[[Save state]]" feature in [[Video game console emulator|video game console emulators]] is an example of such snapshots.{{Citation needed|date=June 2023}} Restoring a snapshot consists of discarding or disregarding all overlay layers that are added after that snapshot, and directing all new changes to a new overlay.{{Citation needed|date=June 2023}} == Migration == {{Main|Migration (virtualization)}} The snapshots described above can be moved to another host machine with its own hypervisor; when the VM is temporarily stopped, snapshotted, moved, and then resumed on the new host, this is known as migration. If the older snapshots are kept in sync regularly, this operation can be quite fast, and allow the VM to provide uninterrupted service while its prior physical host is, for example, taken down for physical maintenance.{{Citation needed|date=June 2023}} == Failover == {{Main|Failover}} Similar to the migration mechanism described above, failover allows the VM to continue operations if the host fails. Generally it occurs if the migration has stopped working. However, in this case, the VM continues operation from the ''last-known'' coherent state, rather than the ''current'' state, based on whatever materials the backup server was last provided with.{{Citation needed|date=June 2023}} == Nested virtualization == Nested virtualization refers to the ability of running a virtual machine within another, having this general concept extendable to an arbitrary depth. In other words, nested virtualization refers to running one or more [[Hypervisor|hypervisors]] inside another hypervisor. The nature of a nested guest virtual machine does not need to be homogeneous with its host virtual machine; for example, [[application virtualization]] can be deployed within a virtual machine created by using [[hardware virtualization]].<ref>{{Cite web |author=Orit Wasserman, [[Red Hat]] |year=2013 |title=Nested virtualization: Shadow turtles |url=https://www.linux-kvm.org/images/e/e9/Kvm-forum-2013-nested-virtualization-shadow-turtles.pdf |access-date=2021-05-07 |publisher=KVM forum}}</ref> Nested virtualization becomes more necessary as widespread operating systems gain built-in hypervisor functionality, which in a virtualized environment can be used only if the surrounding hypervisor supports nested virtualization; for example, [[Windows 7]] is capable of running [[Windows XP]] applications inside a built-in virtual machine. Furthermore, moving already existing virtualized environments into a cloud, following the [[Infrastructure as a Service]] (IaaS) approach, is much more complicated if the destination IaaS platform does not support nested virtualization.<ref name="usenix-turtles">{{Cite web |author1=Muli Ben-Yehuda |author2=Michael D. Day |author3=Zvi Dubitzky |author4=Michael Factor |author5=Nadav Har’El |author6=Abel Gordon |author7=Anthony Liguori |author8=Orit Wasserman |author9=Ben-Ami Yassour |date=2010-09-23 |title=The Turtles Project: Design and Implementation of Nested Virtualization |url=https://www.usenix.org/legacy/event/osdi10/tech/full_papers/Ben-Yehuda.pdf |access-date=2014-12-16 |website=usenix.org}}</ref><ref>{{Cite web |author1=Alex Fishman |author2=Mike Rapoport |author3=Evgeny Budilovsky |author4=Izik Eidus |date=2013-06-25 |title=HVX: Virtualizing the Cloud |url=http://0b4af6cdc2f0c5998459-c0245c5c937c5dedcca3f1764ecc9b2f.r43.cf2.rackcdn.com/11552-hotcloud13-fishman.pdf |access-date=2014-12-16 |website=rackcdn.com}}</ref> The way nested virtualization can be implemented on a particular [[computer architecture]] depends on supported [[hardware-assisted virtualization]] capabilities. If a particular architecture does not provide hardware support required for nested virtualization, various software techniques are employed to enable it.<ref name="usenix-turtles" /> Over time, more architectures gain required hardware support; for example, since the [[Haswell (microarchitecture)|Haswell]] microarchitecture (announced in 2013), Intel started to include [[VMCS shadowing]] as a technology that accelerates nested virtualization.<ref>{{cite web |year=2013 |title=4th-Gen Intel Core vPro Processors with Intel VMCS Shadowing |url=https://www-ssl.intel.com/content/dam/www/public/us/en/documents/white-papers/intel-vmcs-shadowing-paper.pdf |access-date=2014-12-16 |publisher=[[Intel]]}}</ref> == See also == {{Div col|colwidth=22em}} * [[Amazon Machine Image]] * [[Desktop virtualization]] * [[Linux containers]] * [[Native development kit]] * [[Paravirtualization]] * [[Storage hypervisor]] * [[Universal Turing machine]] * [[Virtual appliance]] * [[Virtual backup appliance]] * [[Virtual disk image]] * [[Virtual DOS machine]] (VDM) * [[Virtual machine escape]] * [[Virtual private server]] {{Div col end}} == References == {{Reflist|refs= <ref name="Popek">{{cite journal |author-last1=Popek |author-first1=Gerald J. |author-link1=Gerald J. Popek |author-last2=Goldberg |author-first2=Robert P. |author-link2=Robert P. Goldberg |title=Formal requirements for virtualizable third generation architectures |journal=[[Communications of the ACM]] |volume=17 |issue=7 |pages=412–421 |url=https://www.cse.iitb.ac.in/~puru/courses/spring12/cs695/downloads/popekgoldberg.pdf |date=1974 |doi=10.1145/361011.361073|s2cid=12680060 }}</ref> <ref name="Smith_Nair_05">{{cite journal |author-last1=Smith |author-first1=James E. |author-last2=Nair |author-first2=Ravi |title=The Architecture of Virtual Machines |journal=[[Computer (magazine)|Computer]] |volume=38 |issue=5 |pages=32–38, 395–396 |doi=10.1109/MC.2005.173 |date=2005|s2cid=6578280 |url=http://digital.library.wisc.edu/1793/11154 }}</ref> <ref name="Oliphant">{{cite web |author-last1=Oliphant |author-first1=Patrick |title=Virtual Machines |url=http://www.virtualcomputing.net/virtual-machines |publisher=VirtualComputing |access-date=2015-09-23 |quote=Some people use that capability to set up a separate virtual machine running Windows on a Mac, giving them access to the full range of applications available for both platforms. |archive-url=https://web.archive.org/web/20160729182221/http://www.virtualcomputing.net/virtual-machines |archive-date=2016-07-29 |url-status=dead}}</ref> <ref name="vmwarez_2006">{{cite web |archive-url=https://web.archive.org/web/20060614120104/http://www.vmwarez.com/2006/05/super-fast-server-reboots-another.html |archive-date=2006-06-14 |title=Super Fast Server Reboots – Another reason Virtualization rocks |website=vmwarez.com |date=2006-05-09 |access-date=2013-06-14 |url=http://www.vmwarez.com/2006/05/super-fast-server-reboots-another.html |url-status=dead}}</ref> <ref name="vmware_2007">{{cite web |url=http://www.vmware.com/pdf/server_consolidation.pdf |title=Server Consolidation and Containment With Virtual Infrastructure |date=2007 |access-date=2015-09-29 |publisher=[[VMware]] |url-status =live |archive-url=https://web.archive.org/web/20131228142508/http://www.vmware.com/pdf/server_consolidation.pdf |archive-date=2013-12-28}}</ref> <ref name="Pugh_1995">{{cite book |author-last=Pugh |author-first=Emerson W. |author-link=Emerson W. Pugh |title=Building IBM: Shaping an Industry and Its Technology |url=https://archive.org/details/buildingibmshapi00pugh |url-access=limited |publisher=MIT |date=1995 |isbn=978-0-262-16147-3 |page=[https://archive.org/details/buildingibmshapi00pugh/page/n280 274]}}</ref> <ref name="Pugh_1991">{{cite book |author-last=Pugh |author-first=Emerson W. |author-link=Emerson W. Pugh |title=IBM's 360 and Early 370 Systems |url=https://archive.org/details/ibms360early370s0000pugh |url-access=registration |publisher=MIT |date=1991 |isbn=978-0-262-16123-7 |display-authors=etal |pages=[https://archive.org/details/ibms360early370s0000pugh/page/160 160–161]}}</ref> <ref name="Wirth_1966">{{cite book |title=EULER: a generalization of ALGOL, and its formal definition: Part II, Communications of the Association for Computing Machinery |volume=9 |number=2 |pages=89–99 |url=http://dl.acm.org/citation.cfm?doid=365170.365202, |author-last1=Wirth |author-first1=Niklaus Emil |author-link1=Niklaus Emil Wirth |author-last2=Weber |author-first2=Helmut |publisher=[[Association for Computing Machinery|ACM]] |location=New York |date=1966}}</ref> <ref name="Griswold_1972">[[Ralph E. Griswold|Griswold, Ralph E.]] ''The Macro Implementation of SNOBOL4''. San Francisco, CA: W. H. Freeman and Company, 1972 ({{ISBN|0-7167-0447-1}}), Chapter 1.</ref> <ref name="inform-interpreters">{{cite web |url=http://www.inform-fiction.org/zmachine/interpreters.html |author-first=Graham A. |author-last=Nelson |author-link=Graham A. Nelson |title=About Interpreters |work=Inform website |access-date=2009-11-07 |url-status=live |archive-url=https://web.archive.org/web/20091203031858/http://www.inform-fiction.org/zmachine/interpreters.html |archive-date=2009-12-03}}</ref> <ref name="Goldberg_1983">{{Cite book |publisher=[[Addison-Wesley]] |isbn=978-0-201-11371-6 |author-last1=Goldberg |author-first1=Adele |author-link1=Adele Goldberg (computer scientist) |author-last2=Robson |author-first2=David |title=Smalltalk-80: The Language and its Implementation |series=Addison-Wesley Series in Computer Science |date=1983 |url-access=registration |url=https://archive.org/details/smalltalk80langu00gold }}</ref> <ref name="Deutsch_1984">{{Cite conference |publisher=ACM |doi=10.1145/800017.800542 |isbn=0-89791-125-3 |author-last1=Deutsch |author-first1=L. Peter |author-link1=L. Peter Deutsch |author-last2=Schiffman |author-first2=Allan M. |title=Efficient implementation of the Smalltalk-80 system |book-title= POPL |location= Salt Lake City, Utah |date=1984 |url=http://portal.acm.org/citation.cfm?id=800017.800542|url-access=subscription }}</ref> <ref name="Aycock_2003">{{cite journal |doi=10.1145/857076.857077 |volume=35 |issue=2 |pages=97–113 |last=Aycock |first=John |title=A brief history of just-in-time |journal=[[ACM Comput. Surv.]] |date= 2003 |s2cid=15345671 }}</ref> <ref name="Ingalls_1997">{{Cite conference |publisher=ACM Press |doi=10.1145/263698.263754 |isbn=0-89791-908-4 |pages=318–326 |author-last1=Ingalls Jr. |author-first1=Daniel "Dan" Henry Holmes |author-link1=Daniel Henry Holmes Ingalls Jr. |author-last2=Kaehler |author-first2=Ted |author-last3=Maloney |author-first3=John |author-last4=Wallace |author-first4=Scott |author-last5=Kay |author-first5=Alan Curtis |author-link5=Alan Curtis Kay |title=Back to the future: the story of Squeak, a practical Smalltalk written in itself |book-title=OOPSLA '97: Proceedings of the 12th ACM SIGPLAN conference on Object-oriented programming, systems, languages, and applications |location=New York, NY, US |date=1997|doi-access=free }}</ref> <ref name="Griswold_1993">{{Cite conference |publisher=ACM |doi=10.1145/165854.165893 |isbn=978-0-89791-587-8 |pages=215–230 |author-last1=Bracha |author-first1=Gilad |author-link1=Gilad Bracha |author-last2=Griswold |author-first2=David |title=Strongtalk: Typechecking Smalltalk in a Production Environment |book-title=Proceedings of the Eighth Annual Conference on Object-oriented Programming Systems, Languages, and Applications |location=New York, NY, US |series=OOPSLA '93 |date=1993|doi-access=free }}</ref> <ref name="Ungar_1987">{{Cite journal |doi=10.1145/38807.38828 |issn=0362-1340 |volume=22 |issue=12 |pages=227–242 |author-last1=Ungar |author-first1=David Michael |author-link1=David Michael Ungar |author-last2=Smith |author-first2=Randall B. |title=Self: The power of simplicity |journal=ACM SIGPLAN Notices |date=December 1987}}</ref> <ref name="Hoelzle">{{Cite conference |publisher=ACM |doi=10.1145/178243.178478 |isbn=0-89791-662-X |pages=326–336 |author-last1=Hölzle |author-first1=Urs |author-link1=Urs Hölzle |author-last2=Ungar |author-first2=David Michael |author-link2=David Michael Ungar |title=Optimizing dynamically-dispatched calls with run-time type feedback |book-title=PLDI |location=Orlando, Florida, United States |date=1994 |url=http://portal.acm.org/citation.cfm?id=178243.178478}}</ref> <ref name="Paleczny_2001">{{Cite conference |publisher=USENIX Association |author-last1=Paleczny |author-first1=Michael |author-last2=Vick |author-first2=Christopher |author-last3=Click |author-first3=Cliff |title=The Java HotSpot server compiler |book-title=Proceedings of the Java Virtual Machine Research and Technology Symposium on Java Virtual Machine Research and Technology Symposium |volume=1 |location=Monterey, California |date=2001 |url=http://portal.acm.org/citation.cfm?id=1267848}}</ref> <ref name="Uhlig_2005">{{cite journal |author-first1=Rich |author-last1=Uhlig |author-first2=Gil |author-last2=Neiger |author-first3=Dion |author-last3=Rodgers |author-first4=Amy L. |author-last4=Santoni |author-first5=Fernando C. M. |author-last5=Martins |author-first6=Andrew V. |author-last6=Anderson |author-first7=Steven M. |author-last7=Bennett |author-link7=Steve Bennett (software entrepreneur) |author-first8=Alain |author-last8=Kägi |author-first9=Felix H. |author-last9=Leung |author-first10=Larry |author-last10=Smith |title=Intel virtualization technology |journal=Computer |volume=38 |issue=5 |pages=48–56 |date=May 2005 |doi=10.1109/MC.2005.163|s2cid=18514555 }}</ref> <ref name="Adams_2006">{{cite conference |url=http://www.vmware.com/pdf/asplos235_adams.pdf |title=A Comparison of Software and Hardware Techniques for x86 Virtualization |author-first1=Keith |author-last1=Adams |author-first2=Ole |author-last2=Agesen |conference=ASPLOS’06 21–25 October 2006 |date=2006-10-21 |location=San Jose, California, US |archive-url=https://web.archive.org/web/20100820201944/http://www.vmware.com/pdf/asplos235_adams.pdf |archive-date=2010-08-20 |url-status=live |quote=Surprisingly, we find that the first-generation hardware support rarely offers performance advantages over existing software techniques. We ascribe this situation to high VMM/guest transition costs and a rigid programming model that leaves little room for software flexibility in managing either the frequency or cost of these transitions.}}</ref> }} == Further reading == * James E. Smith, Ravi Nair, ''Virtual Machines: Versatile Platforms For Systems And Processes'', Morgan Kaufmann, May 2005, {{ISBN|1-55860-910-5}}, 656 pages (covers both process and system virtual machines) * Craig, Iain D. ''Virtual Machines''. [[Springer Science+Business Media|Springer]], 2006, {{ISBN|1-85233-969-1}}, 269 pages (covers only process virtual machines) ==External links== *{{cite magazine|url=https://queue.acm.org/detail.cfm?id=1017000|title=The Reincarnation of Virtual Machines|author=Mendel Rosenblum|magazine=[[ACM Queue]]|volume=2|issue=5|date=August 31, 2004}} *[http://www.net-security.org/secworld.php?id=7837 Sandia National Laboratories Runs 1 Million Linux Kernels as Virtual Machines] *[http://doc.cat-v.org/inferno/4th_edition/dis_VM_design The design of the Inferno virtual machine by Phil Winterbottom and Rob Pike] {{Virtualization software}} {{Computer_science}} {{Authority control}} {{DEFAULTSORT:Virtual Machine}} [[Category:Virtual machines| ]] [[Category:Operating system technology]] [[Category:Programming language implementation]]
Edit summary
(Briefly describe your changes)
By publishing changes, you agree to the
Terms of Use
, and you irrevocably agree to release your contribution under the
CC BY-SA 4.0 License
and the
GFDL
. You agree that a hyperlink or URL is sufficient attribution under the Creative Commons license.
Cancel
Editing help
(opens in new window)
Pages transcluded onto the current version of this page
(
help
)
:
Template:Authority control
(
edit
)
Template:Citation needed
(
edit
)
Template:Cite magazine
(
edit
)
Template:Cite thesis
(
edit
)
Template:Cite web
(
edit
)
Template:Computer science
(
edit
)
Template:Div col
(
edit
)
Template:Div col end
(
edit
)
Template:ISBN
(
edit
)
Template:Main
(
edit
)
Template:More citations needed section
(
edit
)
Template:Program execution
(
edit
)
Template:Redirect-distinguish
(
edit
)
Template:Reflist
(
edit
)
Template:See also
(
edit
)
Template:Short description
(
edit
)
Template:Snd
(
edit
)
Template:Use dmy dates
(
edit
)
Template:Virtualization software
(
edit
)