]> git.proxmox.com Git - qemu.git/blame - qemu-tech.texi
Version 1.0.1
[qemu.git] / qemu-tech.texi
CommitLineData
1f673135 1\input texinfo @c -*- texinfo -*-
debc7065
FB
2@c %**start of header
3@setfilename qemu-tech.info
e080e785
SW
4
5@documentlanguage en
6@documentencoding UTF-8
7
debc7065
FB
8@settitle QEMU Internals
9@exampleindent 0
10@paragraphindent 0
11@c %**end of header
1f673135 12
a1a32b05
SW
13@ifinfo
14@direntry
15* QEMU Internals: (qemu-tech). The QEMU Emulator Internals.
16@end direntry
17@end ifinfo
18
1f673135 19@iftex
1f673135
FB
20@titlepage
21@sp 7
22@center @titlefont{QEMU Internals}
23@sp 3
24@end titlepage
25@end iftex
26
debc7065
FB
27@ifnottex
28@node Top
29@top
30
31@menu
32* Introduction::
33* QEMU Internals::
34* Regression Tests::
35* Index::
36@end menu
37@end ifnottex
38
39@contents
40
41@node Introduction
1f673135
FB
42@chapter Introduction
43
debc7065 44@menu
3aeaea65
MF
45* intro_features:: Features
46* intro_x86_emulation:: x86 and x86-64 emulation
47* intro_arm_emulation:: ARM emulation
48* intro_mips_emulation:: MIPS emulation
49* intro_ppc_emulation:: PowerPC emulation
50* intro_sparc_emulation:: Sparc32 and Sparc64 emulation
51* intro_xtensa_emulation:: Xtensa emulation
52* intro_other_emulation:: Other CPU emulation
debc7065
FB
53@end menu
54
55@node intro_features
1f673135
FB
56@section Features
57
58QEMU is a FAST! processor emulator using a portable dynamic
59translator.
60
61QEMU has two operating modes:
62
63@itemize @minus
64
5fafdf24 65@item
998a0501
BS
66Full system emulation. In this mode (full platform virtualization),
67QEMU emulates a full system (usually a PC), including a processor and
68various peripherals. It can be used to launch several different
69Operating Systems at once without rebooting the host machine or to
70debug system code.
1f673135 71
5fafdf24 72@item
998a0501
BS
73User mode emulation. In this mode (application level virtualization),
74QEMU can launch processes compiled for one CPU on another CPU, however
75the Operating Systems must match. This can be used for example to ease
76cross-compilation and cross-debugging.
1f673135
FB
77@end itemize
78
79As QEMU requires no host kernel driver to run, it is very safe and
80easy to use.
81
82QEMU generic features:
83
5fafdf24 84@itemize
1f673135
FB
85
86@item User space only or full system emulation.
87
debc7065 88@item Using dynamic translation to native code for reasonable speed.
1f673135 89
998a0501
BS
90@item
91Working on x86, x86_64 and PowerPC32/64 hosts. Being tested on ARM,
92HPPA, Sparc32 and Sparc64. Previous versions had some support for
93Alpha and S390 hosts, but TCG (see below) doesn't support those yet.
1f673135
FB
94
95@item Self-modifying code support.
96
97@item Precise exceptions support.
98
5fafdf24 99@item The virtual CPU is a library (@code{libqemu}) which can be used
ad6a4837
FB
100in other projects (look at @file{qemu/tests/qruncom.c} to have an
101example of user mode @code{libqemu} usage).
1f673135 102
998a0501
BS
103@item
104Floating point library supporting both full software emulation and
105native host FPU instructions.
106
1f673135
FB
107@end itemize
108
109QEMU user mode emulation features:
5fafdf24 110@itemize
1f673135
FB
111@item Generic Linux system call converter, including most ioctls.
112
113@item clone() emulation using native CPU clone() to use Linux scheduler for threads.
114
5fafdf24 115@item Accurate signal handling by remapping host signals to target signals.
1f673135 116@end itemize
1f673135 117
998a0501
BS
118Linux user emulator (Linux host only) can be used to launch the Wine
119Windows API emulator (@url{http://www.winehq.org}). A Darwin user
120emulator (Darwin hosts only) exists and a BSD user emulator for BSD
121hosts is under development. It would also be possible to develop a
122similar user emulator for Solaris.
123
1f673135 124QEMU full system emulation features:
5fafdf24 125@itemize
998a0501
BS
126@item
127QEMU uses a full software MMU for maximum portability.
128
129@item
4a1418e0
AL
130QEMU can optionally use an in-kernel accelerator, like kvm. The accelerators
131execute some of the guest code natively, while
998a0501
BS
132continuing to emulate the rest of the machine.
133
134@item
135Various hardware devices can be emulated and in some cases, host
136devices (e.g. serial and parallel ports, USB, drives) can be used
137transparently by the guest Operating System. Host device passthrough
138can be used for talking to external physical peripherals (e.g. a
139webcam, modem or tape drive).
140
141@item
142Symmetric multiprocessing (SMP) even on a host with a single CPU. On a
143SMP host system, QEMU can use only one CPU fully due to difficulty in
144implementing atomic memory accesses efficiently.
145
1f673135
FB
146@end itemize
147
debc7065 148@node intro_x86_emulation
998a0501 149@section x86 and x86-64 emulation
1f673135
FB
150
151QEMU x86 target features:
152
5fafdf24 153@itemize
1f673135 154
5fafdf24 155@item The virtual x86 CPU supports 16 bit and 32 bit addressing with segmentation.
998a0501
BS
156LDT/GDT and IDT are emulated. VM86 mode is also supported to run
157DOSEMU. There is some support for MMX/3DNow!, SSE, SSE2, SSE3, SSSE3,
158and SSE4 as well as x86-64 SVM.
1f673135
FB
159
160@item Support of host page sizes bigger than 4KB in user mode emulation.
161
162@item QEMU can emulate itself on x86.
163
5fafdf24 164@item An extensive Linux x86 CPU test program is included @file{tests/test-i386}.
1f673135
FB
165It can be used to test other x86 virtual CPUs.
166
167@end itemize
168
169Current QEMU limitations:
170
5fafdf24 171@itemize
1f673135 172
998a0501 173@item Limited x86-64 support.
1f673135
FB
174
175@item IPC syscalls are missing.
176
5fafdf24 177@item The x86 segment limits and access rights are not tested at every
1f673135
FB
178memory access (yet). Hopefully, very few OSes seem to rely on that for
179normal use.
180
1f673135
FB
181@end itemize
182
debc7065 183@node intro_arm_emulation
1f673135
FB
184@section ARM emulation
185
186@itemize
187
188@item Full ARM 7 user emulation.
189
190@item NWFPE FPU support included in user Linux emulation.
191
192@item Can run most ARM Linux binaries.
193
194@end itemize
195
24d4de45
TS
196@node intro_mips_emulation
197@section MIPS emulation
198
199@itemize
200
201@item The system emulation allows full MIPS32/MIPS64 Release 2 emulation,
202including privileged instructions, FPU and MMU, in both little and big
203endian modes.
204
205@item The Linux userland emulation can run many 32 bit MIPS Linux binaries.
206
207@end itemize
208
209Current QEMU limitations:
210
211@itemize
212
213@item Self-modifying code is not always handled correctly.
214
215@item 64 bit userland emulation is not implemented.
216
217@item The system emulation is not complete enough to run real firmware.
218
b1f45238
TS
219@item The watchpoint debug facility is not implemented.
220
24d4de45
TS
221@end itemize
222
debc7065 223@node intro_ppc_emulation
1f673135
FB
224@section PowerPC emulation
225
226@itemize
227
5fafdf24 228@item Full PowerPC 32 bit emulation, including privileged instructions,
1f673135
FB
229FPU and MMU.
230
231@item Can run most PowerPC Linux binaries.
232
233@end itemize
234
debc7065 235@node intro_sparc_emulation
998a0501 236@section Sparc32 and Sparc64 emulation
1f673135
FB
237
238@itemize
239
f6b647cd 240@item Full SPARC V8 emulation, including privileged
3475187d 241instructions, FPU and MMU. SPARC V9 emulation includes most privileged
a785e42e 242and VIS instructions, FPU and I/D MMU. Alignment is fully enforced.
1f673135 243
a785e42e
BS
244@item Can run most 32-bit SPARC Linux binaries, SPARC32PLUS Linux binaries and
245some 64-bit SPARC Linux binaries.
3475187d
FB
246
247@end itemize
248
249Current QEMU limitations:
250
5fafdf24 251@itemize
3475187d 252
3475187d
FB
253@item IPC syscalls are missing.
254
1f587329 255@item Floating point exception support is buggy.
3475187d
FB
256
257@item Atomic instructions are not correctly implemented.
258
998a0501
BS
259@item There are still some problems with Sparc64 emulators.
260
261@end itemize
262
3aeaea65
MF
263@node intro_xtensa_emulation
264@section Xtensa emulation
265
266@itemize
267
268@item Core Xtensa ISA emulation, including most options: code density,
269loop, extended L32R, 16- and 32-bit multiplication, 32-bit division,
270MAC16, miscellaneous operations, boolean, multiprocessor synchronization,
271conditional store, exceptions, relocatable vectors, unaligned exception,
272interrupts (including high priority and timer), hardware alignment,
273region protection, region translation, MMU, windowed registers, thread
274pointer, processor ID.
275
276@item Not implemented options: FP coprocessor, coprocessor context,
277data/instruction cache (including cache prefetch and locking), XLMI,
278processor interface, debug. Also options not covered by the core ISA
279(e.g. FLIX, wide branches) are not implemented.
280
281@item Can run most Xtensa Linux binaries.
282
283@item New core configuration that requires no additional instructions
284may be created from overlay with minimal amount of hand-written code.
285
286@end itemize
287
998a0501
BS
288@node intro_other_emulation
289@section Other CPU emulation
1f673135 290
998a0501
BS
291In addition to the above, QEMU supports emulation of other CPUs with
292varying levels of success. These are:
293
294@itemize
295
296@item
297Alpha
298@item
299CRIS
300@item
301M68k
302@item
303SH4
1f673135
FB
304@end itemize
305
debc7065 306@node QEMU Internals
1f673135
FB
307@chapter QEMU Internals
308
debc7065
FB
309@menu
310* QEMU compared to other emulators::
311* Portable dynamic translation::
debc7065
FB
312* Condition code optimisations::
313* CPU state optimisations::
314* Translation cache::
315* Direct block chaining::
316* Self-modifying code and translated code invalidation::
317* Exception support::
318* MMU emulation::
998a0501 319* Device emulation::
debc7065
FB
320* Hardware interrupts::
321* User emulation specific details::
322* Bibliography::
323@end menu
324
325@node QEMU compared to other emulators
1f673135
FB
326@section QEMU compared to other emulators
327
328Like bochs [3], QEMU emulates an x86 CPU. But QEMU is much faster than
329bochs as it uses dynamic compilation. Bochs is closely tied to x86 PC
330emulation while QEMU can emulate several processors.
331
332Like Valgrind [2], QEMU does user space emulation and dynamic
333translation. Valgrind is mainly a memory debugger while QEMU has no
334support for it (QEMU could be used to detect out of bound memory
335accesses as Valgrind, but it has no support to track uninitialised data
336as Valgrind does). The Valgrind dynamic translator generates better code
337than QEMU (in particular it does register allocation) but it is closely
338tied to an x86 host and target and has no support for precise exceptions
339and system emulation.
340
341EM86 [4] is the closest project to user space QEMU (and QEMU still uses
342some of its code, in particular the ELF file loader). EM86 was limited
343to an alpha host and used a proprietary and slow interpreter (the
344interpreter part of the FX!32 Digital Win32 code translator [5]).
345
346TWIN [6] is a Windows API emulator like Wine. It is less accurate than
347Wine but includes a protected mode x86 interpreter to launch x86 Windows
36d54d15 348executables. Such an approach has greater potential because most of the
1f673135
FB
349Windows API is executed natively but it is far more difficult to develop
350because all the data structures and function parameters exchanged
351between the API and the x86 code must be converted.
352
353User mode Linux [7] was the only solution before QEMU to launch a
354Linux kernel as a process while not needing any host kernel
355patches. However, user mode Linux requires heavy kernel patches while
356QEMU accepts unpatched Linux kernels. The price to pay is that QEMU is
357slower.
358
998a0501
BS
359The Plex86 [8] PC virtualizer is done in the same spirit as the now
360obsolete qemu-fast system emulator. It requires a patched Linux kernel
361to work (you cannot launch the same kernel on your PC), but the
362patches are really small. As it is a PC virtualizer (no emulation is
363done except for some privileged instructions), it has the potential of
364being faster than QEMU. The downside is that a complicated (and
365potentially unsafe) host kernel patch is needed.
1f673135
FB
366
367The commercial PC Virtualizers (VMWare [9], VirtualPC [10], TwoOStwo
368[11]) are faster than QEMU, but they all need specific, proprietary
369and potentially unsafe host drivers. Moreover, they are unable to
370provide cycle exact simulation as an emulator can.
371
998a0501
BS
372VirtualBox [12], Xen [13] and KVM [14] are based on QEMU. QEMU-SystemC
373[15] uses QEMU to simulate a system where some hardware devices are
374developed in SystemC.
375
debc7065 376@node Portable dynamic translation
1f673135
FB
377@section Portable dynamic translation
378
379QEMU is a dynamic translator. When it first encounters a piece of code,
380it converts it to the host instruction set. Usually dynamic translators
381are very complicated and highly CPU dependent. QEMU uses some tricks
382which make it relatively easily portable and simple while achieving good
383performances.
384
998a0501
BS
385After the release of version 0.9.1, QEMU switched to a new method of
386generating code, Tiny Code Generator or TCG. TCG relaxes the
387dependency on the exact version of the compiler used. The basic idea
388is to split every target instruction into a couple of RISC-like TCG
389ops (see @code{target-i386/translate.c}). Some optimizations can be
390performed at this stage, including liveness analysis and trivial
391constant expression evaluation. TCG ops are then implemented in the
392host CPU back end, also known as TCG target (see
393@code{tcg/i386/tcg-target.c}). For more information, please take a
394look at @code{tcg/README}.
1f673135 395
debc7065 396@node Condition code optimisations
1f673135
FB
397@section Condition code optimisations
398
998a0501
BS
399Lazy evaluation of CPU condition codes (@code{EFLAGS} register on x86)
400is important for CPUs where every instruction sets the condition
401codes. It tends to be less important on conventional RISC systems
f0f26a06
BS
402where condition codes are only updated when explicitly requested. On
403Sparc64, costly update of both 32 and 64 bit condition codes can be
404avoided with lazy evaluation.
998a0501
BS
405
406Instead of computing the condition codes after each x86 instruction,
407QEMU just stores one operand (called @code{CC_SRC}), the result
408(called @code{CC_DST}) and the type of operation (called
409@code{CC_OP}). When the condition codes are needed, the condition
410codes can be calculated using this information. In addition, an
411optimized calculation can be performed for some instruction types like
412conditional branches.
1f673135 413
1235fc06 414@code{CC_OP} is almost never explicitly set in the generated code
1f673135
FB
415because it is known at translation time.
416
f0f26a06
BS
417The lazy condition code evaluation is used on x86, m68k, cris and
418Sparc. ARM uses a simplified variant for the N and Z flags.
1f673135 419
debc7065 420@node CPU state optimisations
1f673135
FB
421@section CPU state optimisations
422
998a0501
BS
423The target CPUs have many internal states which change the way it
424evaluates instructions. In order to achieve a good speed, the
425translation phase considers that some state information of the virtual
426CPU cannot change in it. The state is recorded in the Translation
427Block (TB). If the state changes (e.g. privilege level), a new TB will
428be generated and the previous TB won't be used anymore until the state
429matches the state recorded in the previous TB. For example, if the SS,
430DS and ES segments have a zero base, then the translator does not even
431generate an addition for the segment base.
1f673135
FB
432
433[The FPU stack pointer register is not handled that way yet].
434
debc7065 435@node Translation cache
1f673135
FB
436@section Translation cache
437
27c8efcb 438A 32 MByte cache holds the most recently used translations. For
1f673135
FB
439simplicity, it is completely flushed when it is full. A translation unit
440contains just a single basic block (a block of x86 instructions
441terminated by a jump or by a virtual CPU state change which the
442translator cannot deduce statically).
443
debc7065 444@node Direct block chaining
1f673135
FB
445@section Direct block chaining
446
447After each translated basic block is executed, QEMU uses the simulated
448Program Counter (PC) and other cpu state informations (such as the CS
449segment base value) to find the next basic block.
450
451In order to accelerate the most common cases where the new simulated PC
452is known, QEMU can patch a basic block so that it jumps directly to the
453next one.
454
455The most portable code uses an indirect jump. An indirect jump makes
456it easier to make the jump target modification atomic. On some host
457architectures (such as x86 or PowerPC), the @code{JUMP} opcode is
458directly patched so that the block chaining has no overhead.
459
debc7065 460@node Self-modifying code and translated code invalidation
1f673135
FB
461@section Self-modifying code and translated code invalidation
462
463Self-modifying code is a special challenge in x86 emulation because no
464instruction cache invalidation is signaled by the application when code
465is modified.
466
467When translated code is generated for a basic block, the corresponding
998a0501
BS
468host page is write protected if it is not already read-only. Then, if
469a write access is done to the page, Linux raises a SEGV signal. QEMU
470then invalidates all the translated code in the page and enables write
471accesses to the page.
1f673135
FB
472
473Correct translated code invalidation is done efficiently by maintaining
474a linked list of every translated block contained in a given page. Other
5fafdf24 475linked lists are also maintained to undo direct block chaining.
1f673135 476
998a0501
BS
477On RISC targets, correctly written software uses memory barriers and
478cache flushes, so some of the protection above would not be
479necessary. However, QEMU still requires that the generated code always
480matches the target instructions in memory in order to handle
481exceptions correctly.
1f673135 482
debc7065 483@node Exception support
1f673135
FB
484@section Exception support
485
486longjmp() is used when an exception such as division by zero is
5fafdf24 487encountered.
1f673135
FB
488
489The host SIGSEGV and SIGBUS signal handlers are used to get invalid
998a0501
BS
490memory accesses. The simulated program counter is found by
491retranslating the corresponding basic block and by looking where the
492host program counter was at the exception point.
1f673135
FB
493
494The virtual CPU cannot retrieve the exact @code{EFLAGS} register because
495in some cases it is not computed because of condition code
496optimisations. It is not a big concern because the emulated code can
497still be restarted in any cases.
498
debc7065 499@node MMU emulation
1f673135
FB
500@section MMU emulation
501
998a0501
BS
502For system emulation QEMU supports a soft MMU. In that mode, the MMU
503virtual to physical address translation is done at every memory
504access. QEMU uses an address translation cache to speed up the
505translation.
1f673135
FB
506
507In order to avoid flushing the translated code each time the MMU
508mappings change, QEMU uses a physically indexed translation cache. It
5fafdf24 509means that each basic block is indexed with its physical address.
1f673135
FB
510
511When MMU mappings change, only the chaining of the basic blocks is
512reset (i.e. a basic block can no longer jump directly to another one).
513
998a0501
BS
514@node Device emulation
515@section Device emulation
516
517Systems emulated by QEMU are organized by boards. At initialization
518phase, each board instantiates a number of CPUs, devices, RAM and
519ROM. Each device in turn can assign I/O ports or memory areas (for
520MMIO) to its handlers. When the emulation starts, an access to the
521ports or MMIO memory areas assigned to the device causes the
522corresponding handler to be called.
523
524RAM and ROM are handled more optimally, only the offset to the host
525memory needs to be added to the guest address.
526
527The video RAM of VGA and other display cards is special: it can be
528read or written directly like RAM, but write accesses cause the memory
529to be marked with VGA_DIRTY flag as well.
530
531QEMU supports some device classes like serial and parallel ports, USB,
532drives and network devices, by providing APIs for easier connection to
533the generic, higher level implementations. The API hides the
534implementation details from the devices, like native device use or
535advanced block device formats like QCOW.
536
537Usually the devices implement a reset method and register support for
538saving and loading of the device state. The devices can also use
539timers, especially together with the use of bottom halves (BHs).
540
debc7065 541@node Hardware interrupts
1f673135
FB
542@section Hardware interrupts
543
544In order to be faster, QEMU does not check at every basic block if an
e8dc0938 545hardware interrupt is pending. Instead, the user must asynchronously
1f673135
FB
546call a specific function to tell that an interrupt is pending. This
547function resets the chaining of the currently executing basic
548block. It ensures that the execution will return soon in the main loop
549of the CPU emulator. Then the main loop can test if the interrupt is
550pending and handle it.
551
debc7065 552@node User emulation specific details
1f673135
FB
553@section User emulation specific details
554
555@subsection Linux system call translation
556
557QEMU includes a generic system call translator for Linux. It means that
558the parameters of the system calls can be converted to fix the
559endianness and 32/64 bit issues. The IOCTLs are converted with a generic
560type description system (see @file{ioctls.h} and @file{thunk.c}).
561
562QEMU supports host CPUs which have pages bigger than 4KB. It records all
563the mappings the process does and try to emulated the @code{mmap()}
564system calls in cases where the host @code{mmap()} call would fail
565because of bad page alignment.
566
567@subsection Linux signals
568
569Normal and real-time signals are queued along with their information
570(@code{siginfo_t}) as it is done in the Linux kernel. Then an interrupt
571request is done to the virtual CPU. When it is interrupted, one queued
572signal is handled by generating a stack frame in the virtual CPU as the
573Linux kernel does. The @code{sigreturn()} system call is emulated to return
574from the virtual signal handler.
575
576Some signals (such as SIGALRM) directly come from the host. Other
e8dc0938 577signals are synthesized from the virtual CPU exceptions such as SIGFPE
1f673135
FB
578when a division by zero is done (see @code{main.c:cpu_loop()}).
579
580The blocked signal mask is still handled by the host Linux kernel so
581that most signal system calls can be redirected directly to the host
582Linux kernel. Only the @code{sigaction()} and @code{sigreturn()} system
583calls need to be fully emulated (see @file{signal.c}).
584
585@subsection clone() system call and threads
586
587The Linux clone() system call is usually used to create a thread. QEMU
588uses the host clone() system call so that real host threads are created
589for each emulated thread. One virtual CPU instance is created for each
590thread.
591
592The virtual x86 CPU atomic operations are emulated with a global lock so
593that their semantic is preserved.
594
595Note that currently there are still some locking issues in QEMU. In
596particular, the translated cache flush is not protected yet against
597reentrancy.
598
599@subsection Self-virtualization
600
601QEMU was conceived so that ultimately it can emulate itself. Although
602it is not very useful, it is an important test to show the power of the
603emulator.
604
605Achieving self-virtualization is not easy because there may be address
998a0501
BS
606space conflicts. QEMU user emulators solve this problem by being an
607executable ELF shared object as the ld-linux.so ELF interpreter. That
608way, it can be relocated at load time.
1f673135 609
debc7065 610@node Bibliography
1f673135
FB
611@section Bibliography
612
613@table @asis
614
5fafdf24 615@item [1]
1f673135
FB
616@url{http://citeseer.nj.nec.com/piumarta98optimizing.html}, Optimizing
617direct threaded code by selective inlining (1998) by Ian Piumarta, Fabio
618Riccardi.
619
620@item [2]
621@url{http://developer.kde.org/~sewardj/}, Valgrind, an open-source
622memory debugger for x86-GNU/Linux, by Julian Seward.
623
624@item [3]
625@url{http://bochs.sourceforge.net/}, the Bochs IA-32 Emulator Project,
626by Kevin Lawton et al.
627
628@item [4]
629@url{http://www.cs.rose-hulman.edu/~donaldlf/em86/index.html}, the EM86
630x86 emulator on Alpha-Linux.
631
632@item [5]
debc7065 633@url{http://www.usenix.org/publications/library/proceedings/usenix-nt97/@/full_papers/chernoff/chernoff.pdf},
1f673135
FB
634DIGITAL FX!32: Running 32-Bit x86 Applications on Alpha NT, by Anton
635Chernoff and Ray Hookway.
636
637@item [6]
638@url{http://www.willows.com/}, Windows API library emulation from
639Willows Software.
640
641@item [7]
5fafdf24 642@url{http://user-mode-linux.sourceforge.net/},
1f673135
FB
643The User-mode Linux Kernel.
644
645@item [8]
5fafdf24 646@url{http://www.plex86.org/},
1f673135
FB
647The new Plex86 project.
648
649@item [9]
5fafdf24 650@url{http://www.vmware.com/},
1f673135
FB
651The VMWare PC virtualizer.
652
653@item [10]
5fafdf24 654@url{http://www.microsoft.com/windowsxp/virtualpc/},
1f673135
FB
655The VirtualPC PC virtualizer.
656
657@item [11]
5fafdf24 658@url{http://www.twoostwo.org/},
1f673135
FB
659The TwoOStwo PC virtualizer.
660
998a0501
BS
661@item [12]
662@url{http://virtualbox.org/},
663The VirtualBox PC virtualizer.
664
665@item [13]
666@url{http://www.xen.org/},
667The Xen hypervisor.
668
669@item [14]
670@url{http://kvm.qumranet.com/kvmwiki/Front_Page},
671Kernel Based Virtual Machine (KVM).
672
673@item [15]
674@url{http://www.greensocs.com/projects/QEMUSystemC},
675QEMU-SystemC, a hardware co-simulator.
676
1f673135
FB
677@end table
678
debc7065 679@node Regression Tests
1f673135
FB
680@chapter Regression Tests
681
682In the directory @file{tests/}, various interesting testing programs
b1f45238 683are available. They are used for regression testing.
1f673135 684
debc7065
FB
685@menu
686* test-i386::
687* linux-test::
688* qruncom.c::
689@end menu
690
691@node test-i386
1f673135
FB
692@section @file{test-i386}
693
694This program executes most of the 16 bit and 32 bit x86 instructions and
695generates a text output. It can be compared with the output obtained with
696a real CPU or another emulator. The target @code{make test} runs this
697program and a @code{diff} on the generated output.
698
699The Linux system call @code{modify_ldt()} is used to create x86 selectors
700to test some 16 bit addressing and 32 bit with segmentation cases.
701
702The Linux system call @code{vm86()} is used to test vm86 emulation.
703
704Various exceptions are raised to test most of the x86 user space
705exception reporting.
706
debc7065 707@node linux-test
1f673135
FB
708@section @file{linux-test}
709
710This program tests various Linux system calls. It is used to verify
711that the system call parameters are correctly converted between target
712and host CPUs.
713
debc7065 714@node qruncom.c
15a34c63 715@section @file{qruncom.c}
1f673135 716
15a34c63 717Example of usage of @code{libqemu} to emulate a user mode i386 CPU.
debc7065
FB
718
719@node Index
720@chapter Index
721@printindex cp
722
723@bye