blob: 52560dcf964340fd90143afb68e4f91a92746ca7 [file] [log] [blame]
bellard1f673132004-04-04 15:21:17 +00001\input texinfo @c -*- texinfo -*-
bellarddebc7062006-04-30 21:58:41 +00002@c %**start of header
3@setfilename qemu-tech.info
4@settitle QEMU Internals
5@exampleindent 0
6@paragraphindent 0
7@c %**end of header
bellard1f673132004-04-04 15:21:17 +00008
Stefan Weila1a32b02010-02-05 23:51:59 +01009@ifinfo
10@direntry
11* QEMU Internals: (qemu-tech). The QEMU Emulator Internals.
12@end direntry
13@end ifinfo
14
bellard1f673132004-04-04 15:21:17 +000015@iftex
bellard1f673132004-04-04 15:21:17 +000016@titlepage
17@sp 7
18@center @titlefont{QEMU Internals}
19@sp 3
20@end titlepage
21@end iftex
22
bellarddebc7062006-04-30 21:58:41 +000023@ifnottex
24@node Top
25@top
26
27@menu
28* Introduction::
29* QEMU Internals::
30* Regression Tests::
31* Index::
32@end menu
33@end ifnottex
34
35@contents
36
37@node Introduction
bellard1f673132004-04-04 15:21:17 +000038@chapter Introduction
39
bellarddebc7062006-04-30 21:58:41 +000040@menu
41* intro_features:: Features
blueswir1998a0502008-10-09 18:52:04 +000042* intro_x86_emulation:: x86 and x86-64 emulation
bellarddebc7062006-04-30 21:58:41 +000043* intro_arm_emulation:: ARM emulation
ths24d4de42007-07-11 10:24:28 +000044* intro_mips_emulation:: MIPS emulation
bellarddebc7062006-04-30 21:58:41 +000045* intro_ppc_emulation:: PowerPC emulation
blueswir1998a0502008-10-09 18:52:04 +000046* intro_sparc_emulation:: Sparc32 and Sparc64 emulation
47* intro_other_emulation:: Other CPU emulation
bellarddebc7062006-04-30 21:58:41 +000048@end menu
49
50@node intro_features
bellard1f673132004-04-04 15:21:17 +000051@section Features
52
53QEMU is a FAST! processor emulator using a portable dynamic
54translator.
55
56QEMU has two operating modes:
57
58@itemize @minus
59
ths5fafdf22007-09-16 21:08:06 +000060@item
blueswir1998a0502008-10-09 18:52:04 +000061Full system emulation. In this mode (full platform virtualization),
62QEMU emulates a full system (usually a PC), including a processor and
63various peripherals. It can be used to launch several different
64Operating Systems at once without rebooting the host machine or to
65debug system code.
bellard1f673132004-04-04 15:21:17 +000066
ths5fafdf22007-09-16 21:08:06 +000067@item
blueswir1998a0502008-10-09 18:52:04 +000068User mode emulation. In this mode (application level virtualization),
69QEMU can launch processes compiled for one CPU on another CPU, however
70the Operating Systems must match. This can be used for example to ease
71cross-compilation and cross-debugging.
bellard1f673132004-04-04 15:21:17 +000072@end itemize
73
74As QEMU requires no host kernel driver to run, it is very safe and
75easy to use.
76
77QEMU generic features:
78
ths5fafdf22007-09-16 21:08:06 +000079@itemize
bellard1f673132004-04-04 15:21:17 +000080
81@item User space only or full system emulation.
82
bellarddebc7062006-04-30 21:58:41 +000083@item Using dynamic translation to native code for reasonable speed.
bellard1f673132004-04-04 15:21:17 +000084
blueswir1998a0502008-10-09 18:52:04 +000085@item
86Working on x86, x86_64 and PowerPC32/64 hosts. Being tested on ARM,
87HPPA, Sparc32 and Sparc64. Previous versions had some support for
88Alpha and S390 hosts, but TCG (see below) doesn't support those yet.
bellard1f673132004-04-04 15:21:17 +000089
90@item Self-modifying code support.
91
92@item Precise exceptions support.
93
ths5fafdf22007-09-16 21:08:06 +000094@item The virtual CPU is a library (@code{libqemu}) which can be used
bellardad6a4832004-04-24 00:16:28 +000095in other projects (look at @file{qemu/tests/qruncom.c} to have an
96example of user mode @code{libqemu} usage).
bellard1f673132004-04-04 15:21:17 +000097
blueswir1998a0502008-10-09 18:52:04 +000098@item
99Floating point library supporting both full software emulation and
100native host FPU instructions.
101
bellard1f673132004-04-04 15:21:17 +0000102@end itemize
103
104QEMU user mode emulation features:
ths5fafdf22007-09-16 21:08:06 +0000105@itemize
bellard1f673132004-04-04 15:21:17 +0000106@item Generic Linux system call converter, including most ioctls.
107
108@item clone() emulation using native CPU clone() to use Linux scheduler for threads.
109
ths5fafdf22007-09-16 21:08:06 +0000110@item Accurate signal handling by remapping host signals to target signals.
bellard1f673132004-04-04 15:21:17 +0000111@end itemize
bellard1f673132004-04-04 15:21:17 +0000112
blueswir1998a0502008-10-09 18:52:04 +0000113Linux user emulator (Linux host only) can be used to launch the Wine
114Windows API emulator (@url{http://www.winehq.org}). A Darwin user
115emulator (Darwin hosts only) exists and a BSD user emulator for BSD
116hosts is under development. It would also be possible to develop a
117similar user emulator for Solaris.
118
bellard1f673132004-04-04 15:21:17 +0000119QEMU full system emulation features:
ths5fafdf22007-09-16 21:08:06 +0000120@itemize
blueswir1998a0502008-10-09 18:52:04 +0000121@item
122QEMU uses a full software MMU for maximum portability.
123
124@item
Anthony Liguori4a1418e2009-08-10 17:07:24 -0500125QEMU can optionally use an in-kernel accelerator, like kvm. The accelerators
126execute some of the guest code natively, while
blueswir1998a0502008-10-09 18:52:04 +0000127continuing to emulate the rest of the machine.
128
129@item
130Various hardware devices can be emulated and in some cases, host
131devices (e.g. serial and parallel ports, USB, drives) can be used
132transparently by the guest Operating System. Host device passthrough
133can be used for talking to external physical peripherals (e.g. a
134webcam, modem or tape drive).
135
136@item
137Symmetric multiprocessing (SMP) even on a host with a single CPU. On a
138SMP host system, QEMU can use only one CPU fully due to difficulty in
139implementing atomic memory accesses efficiently.
140
bellard1f673132004-04-04 15:21:17 +0000141@end itemize
142
bellarddebc7062006-04-30 21:58:41 +0000143@node intro_x86_emulation
blueswir1998a0502008-10-09 18:52:04 +0000144@section x86 and x86-64 emulation
bellard1f673132004-04-04 15:21:17 +0000145
146QEMU x86 target features:
147
ths5fafdf22007-09-16 21:08:06 +0000148@itemize
bellard1f673132004-04-04 15:21:17 +0000149
ths5fafdf22007-09-16 21:08:06 +0000150@item The virtual x86 CPU supports 16 bit and 32 bit addressing with segmentation.
blueswir1998a0502008-10-09 18:52:04 +0000151LDT/GDT and IDT are emulated. VM86 mode is also supported to run
152DOSEMU. There is some support for MMX/3DNow!, SSE, SSE2, SSE3, SSSE3,
153and SSE4 as well as x86-64 SVM.
bellard1f673132004-04-04 15:21:17 +0000154
155@item Support of host page sizes bigger than 4KB in user mode emulation.
156
157@item QEMU can emulate itself on x86.
158
ths5fafdf22007-09-16 21:08:06 +0000159@item An extensive Linux x86 CPU test program is included @file{tests/test-i386}.
bellard1f673132004-04-04 15:21:17 +0000160It can be used to test other x86 virtual CPUs.
161
162@end itemize
163
164Current QEMU limitations:
165
ths5fafdf22007-09-16 21:08:06 +0000166@itemize
bellard1f673132004-04-04 15:21:17 +0000167
blueswir1998a0502008-10-09 18:52:04 +0000168@item Limited x86-64 support.
bellard1f673132004-04-04 15:21:17 +0000169
170@item IPC syscalls are missing.
171
ths5fafdf22007-09-16 21:08:06 +0000172@item The x86 segment limits and access rights are not tested at every
bellard1f673132004-04-04 15:21:17 +0000173memory access (yet). Hopefully, very few OSes seem to rely on that for
174normal use.
175
bellard1f673132004-04-04 15:21:17 +0000176@end itemize
177
bellarddebc7062006-04-30 21:58:41 +0000178@node intro_arm_emulation
bellard1f673132004-04-04 15:21:17 +0000179@section ARM emulation
180
181@itemize
182
183@item Full ARM 7 user emulation.
184
185@item NWFPE FPU support included in user Linux emulation.
186
187@item Can run most ARM Linux binaries.
188
189@end itemize
190
ths24d4de42007-07-11 10:24:28 +0000191@node intro_mips_emulation
192@section MIPS emulation
193
194@itemize
195
196@item The system emulation allows full MIPS32/MIPS64 Release 2 emulation,
197including privileged instructions, FPU and MMU, in both little and big
198endian modes.
199
200@item The Linux userland emulation can run many 32 bit MIPS Linux binaries.
201
202@end itemize
203
204Current QEMU limitations:
205
206@itemize
207
208@item Self-modifying code is not always handled correctly.
209
210@item 64 bit userland emulation is not implemented.
211
212@item The system emulation is not complete enough to run real firmware.
213
thsb1f45232007-07-12 09:03:30 +0000214@item The watchpoint debug facility is not implemented.
215
ths24d4de42007-07-11 10:24:28 +0000216@end itemize
217
bellarddebc7062006-04-30 21:58:41 +0000218@node intro_ppc_emulation
bellard1f673132004-04-04 15:21:17 +0000219@section PowerPC emulation
220
221@itemize
222
ths5fafdf22007-09-16 21:08:06 +0000223@item Full PowerPC 32 bit emulation, including privileged instructions,
bellard1f673132004-04-04 15:21:17 +0000224FPU and MMU.
225
226@item Can run most PowerPC Linux binaries.
227
228@end itemize
229
bellarddebc7062006-04-30 21:58:41 +0000230@node intro_sparc_emulation
blueswir1998a0502008-10-09 18:52:04 +0000231@section Sparc32 and Sparc64 emulation
bellard1f673132004-04-04 15:21:17 +0000232
233@itemize
234
blueswir1f6b647c2007-04-05 18:40:23 +0000235@item Full SPARC V8 emulation, including privileged
bellard34751872005-07-02 14:31:34 +0000236instructions, FPU and MMU. SPARC V9 emulation includes most privileged
blueswir1a785e422007-10-20 08:09:05 +0000237and VIS instructions, FPU and I/D MMU. Alignment is fully enforced.
bellard1f673132004-04-04 15:21:17 +0000238
blueswir1a785e422007-10-20 08:09:05 +0000239@item Can run most 32-bit SPARC Linux binaries, SPARC32PLUS Linux binaries and
240some 64-bit SPARC Linux binaries.
bellard34751872005-07-02 14:31:34 +0000241
242@end itemize
243
244Current QEMU limitations:
245
ths5fafdf22007-09-16 21:08:06 +0000246@itemize
bellard34751872005-07-02 14:31:34 +0000247
bellard34751872005-07-02 14:31:34 +0000248@item IPC syscalls are missing.
249
blueswir11f587322007-11-25 18:40:20 +0000250@item Floating point exception support is buggy.
bellard34751872005-07-02 14:31:34 +0000251
252@item Atomic instructions are not correctly implemented.
253
blueswir1998a0502008-10-09 18:52:04 +0000254@item There are still some problems with Sparc64 emulators.
bellard1f673132004-04-04 15:21:17 +0000255
256@end itemize
257
blueswir1998a0502008-10-09 18:52:04 +0000258@node intro_other_emulation
259@section Other CPU emulation
260
261In addition to the above, QEMU supports emulation of other CPUs with
262varying levels of success. These are:
263
264@itemize
265
266@item
267Alpha
268@item
269CRIS
270@item
271M68k
272@item
273SH4
274@end itemize
275
bellarddebc7062006-04-30 21:58:41 +0000276@node QEMU Internals
bellard1f673132004-04-04 15:21:17 +0000277@chapter QEMU Internals
278
bellarddebc7062006-04-30 21:58:41 +0000279@menu
280* QEMU compared to other emulators::
281* Portable dynamic translation::
bellarddebc7062006-04-30 21:58:41 +0000282* Condition code optimisations::
283* CPU state optimisations::
284* Translation cache::
285* Direct block chaining::
286* Self-modifying code and translated code invalidation::
287* Exception support::
288* MMU emulation::
blueswir1998a0502008-10-09 18:52:04 +0000289* Device emulation::
bellarddebc7062006-04-30 21:58:41 +0000290* Hardware interrupts::
291* User emulation specific details::
292* Bibliography::
293@end menu
294
295@node QEMU compared to other emulators
bellard1f673132004-04-04 15:21:17 +0000296@section QEMU compared to other emulators
297
298Like bochs [3], QEMU emulates an x86 CPU. But QEMU is much faster than
299bochs as it uses dynamic compilation. Bochs is closely tied to x86 PC
300emulation while QEMU can emulate several processors.
301
302Like Valgrind [2], QEMU does user space emulation and dynamic
303translation. Valgrind is mainly a memory debugger while QEMU has no
304support for it (QEMU could be used to detect out of bound memory
305accesses as Valgrind, but it has no support to track uninitialised data
306as Valgrind does). The Valgrind dynamic translator generates better code
307than QEMU (in particular it does register allocation) but it is closely
308tied to an x86 host and target and has no support for precise exceptions
309and system emulation.
310
311EM86 [4] is the closest project to user space QEMU (and QEMU still uses
312some of its code, in particular the ELF file loader). EM86 was limited
313to an alpha host and used a proprietary and slow interpreter (the
314interpreter part of the FX!32 Digital Win32 code translator [5]).
315
316TWIN [6] is a Windows API emulator like Wine. It is less accurate than
317Wine but includes a protected mode x86 interpreter to launch x86 Windows
bellard36d54d12004-09-05 16:04:16 +0000318executables. Such an approach has greater potential because most of the
bellard1f673132004-04-04 15:21:17 +0000319Windows API is executed natively but it is far more difficult to develop
320because all the data structures and function parameters exchanged
321between the API and the x86 code must be converted.
322
323User mode Linux [7] was the only solution before QEMU to launch a
324Linux kernel as a process while not needing any host kernel
325patches. However, user mode Linux requires heavy kernel patches while
326QEMU accepts unpatched Linux kernels. The price to pay is that QEMU is
327slower.
328
blueswir1998a0502008-10-09 18:52:04 +0000329The Plex86 [8] PC virtualizer is done in the same spirit as the now
330obsolete qemu-fast system emulator. It requires a patched Linux kernel
331to work (you cannot launch the same kernel on your PC), but the
332patches are really small. As it is a PC virtualizer (no emulation is
333done except for some privileged instructions), it has the potential of
334being faster than QEMU. The downside is that a complicated (and
335potentially unsafe) host kernel patch is needed.
bellard1f673132004-04-04 15:21:17 +0000336
337The commercial PC Virtualizers (VMWare [9], VirtualPC [10], TwoOStwo
338[11]) are faster than QEMU, but they all need specific, proprietary
339and potentially unsafe host drivers. Moreover, they are unable to
340provide cycle exact simulation as an emulator can.
341
blueswir1998a0502008-10-09 18:52:04 +0000342VirtualBox [12], Xen [13] and KVM [14] are based on QEMU. QEMU-SystemC
343[15] uses QEMU to simulate a system where some hardware devices are
344developed in SystemC.
345
bellarddebc7062006-04-30 21:58:41 +0000346@node Portable dynamic translation
bellard1f673132004-04-04 15:21:17 +0000347@section Portable dynamic translation
348
349QEMU is a dynamic translator. When it first encounters a piece of code,
350it converts it to the host instruction set. Usually dynamic translators
351are very complicated and highly CPU dependent. QEMU uses some tricks
352which make it relatively easily portable and simple while achieving good
353performances.
354
blueswir1998a0502008-10-09 18:52:04 +0000355After the release of version 0.9.1, QEMU switched to a new method of
356generating code, Tiny Code Generator or TCG. TCG relaxes the
357dependency on the exact version of the compiler used. The basic idea
358is to split every target instruction into a couple of RISC-like TCG
359ops (see @code{target-i386/translate.c}). Some optimizations can be
360performed at this stage, including liveness analysis and trivial
361constant expression evaluation. TCG ops are then implemented in the
362host CPU back end, also known as TCG target (see
363@code{tcg/i386/tcg-target.c}). For more information, please take a
364look at @code{tcg/README}.
bellard1f673132004-04-04 15:21:17 +0000365
bellarddebc7062006-04-30 21:58:41 +0000366@node Condition code optimisations
bellard1f673132004-04-04 15:21:17 +0000367@section Condition code optimisations
368
blueswir1998a0502008-10-09 18:52:04 +0000369Lazy evaluation of CPU condition codes (@code{EFLAGS} register on x86)
370is important for CPUs where every instruction sets the condition
371codes. It tends to be less important on conventional RISC systems
Blue Swirlf0f26a02009-05-10 18:23:46 +0000372where condition codes are only updated when explicitly requested. On
373Sparc64, costly update of both 32 and 64 bit condition codes can be
374avoided with lazy evaluation.
blueswir1998a0502008-10-09 18:52:04 +0000375
376Instead of computing the condition codes after each x86 instruction,
377QEMU just stores one operand (called @code{CC_SRC}), the result
378(called @code{CC_DST}) and the type of operation (called
379@code{CC_OP}). When the condition codes are needed, the condition
380codes can be calculated using this information. In addition, an
381optimized calculation can be performed for some instruction types like
382conditional branches.
bellard1f673132004-04-04 15:21:17 +0000383
ths1235fc02008-06-03 19:51:57 +0000384@code{CC_OP} is almost never explicitly set in the generated code
bellard1f673132004-04-04 15:21:17 +0000385because it is known at translation time.
386
Blue Swirlf0f26a02009-05-10 18:23:46 +0000387The lazy condition code evaluation is used on x86, m68k, cris and
388Sparc. ARM uses a simplified variant for the N and Z flags.
bellard1f673132004-04-04 15:21:17 +0000389
bellarddebc7062006-04-30 21:58:41 +0000390@node CPU state optimisations
bellard1f673132004-04-04 15:21:17 +0000391@section CPU state optimisations
392
blueswir1998a0502008-10-09 18:52:04 +0000393The target CPUs have many internal states which change the way it
394evaluates instructions. In order to achieve a good speed, the
395translation phase considers that some state information of the virtual
396CPU cannot change in it. The state is recorded in the Translation
397Block (TB). If the state changes (e.g. privilege level), a new TB will
398be generated and the previous TB won't be used anymore until the state
399matches the state recorded in the previous TB. For example, if the SS,
400DS and ES segments have a zero base, then the translator does not even
401generate an addition for the segment base.
bellard1f673132004-04-04 15:21:17 +0000402
403[The FPU stack pointer register is not handled that way yet].
404
bellarddebc7062006-04-30 21:58:41 +0000405@node Translation cache
bellard1f673132004-04-04 15:21:17 +0000406@section Translation cache
407
bellard15a34c62004-07-08 21:26:26 +0000408A 16 MByte cache holds the most recently used translations. For
bellard1f673132004-04-04 15:21:17 +0000409simplicity, it is completely flushed when it is full. A translation unit
410contains just a single basic block (a block of x86 instructions
411terminated by a jump or by a virtual CPU state change which the
412translator cannot deduce statically).
413
bellarddebc7062006-04-30 21:58:41 +0000414@node Direct block chaining
bellard1f673132004-04-04 15:21:17 +0000415@section Direct block chaining
416
417After each translated basic block is executed, QEMU uses the simulated
418Program Counter (PC) and other cpu state informations (such as the CS
419segment base value) to find the next basic block.
420
421In order to accelerate the most common cases where the new simulated PC
422is known, QEMU can patch a basic block so that it jumps directly to the
423next one.
424
425The most portable code uses an indirect jump. An indirect jump makes
426it easier to make the jump target modification atomic. On some host
427architectures (such as x86 or PowerPC), the @code{JUMP} opcode is
428directly patched so that the block chaining has no overhead.
429
bellarddebc7062006-04-30 21:58:41 +0000430@node Self-modifying code and translated code invalidation
bellard1f673132004-04-04 15:21:17 +0000431@section Self-modifying code and translated code invalidation
432
433Self-modifying code is a special challenge in x86 emulation because no
434instruction cache invalidation is signaled by the application when code
435is modified.
436
437When translated code is generated for a basic block, the corresponding
blueswir1998a0502008-10-09 18:52:04 +0000438host page is write protected if it is not already read-only. Then, if
439a write access is done to the page, Linux raises a SEGV signal. QEMU
440then invalidates all the translated code in the page and enables write
441accesses to the page.
bellard1f673132004-04-04 15:21:17 +0000442
443Correct translated code invalidation is done efficiently by maintaining
444a linked list of every translated block contained in a given page. Other
ths5fafdf22007-09-16 21:08:06 +0000445linked lists are also maintained to undo direct block chaining.
bellard1f673132004-04-04 15:21:17 +0000446
blueswir1998a0502008-10-09 18:52:04 +0000447On RISC targets, correctly written software uses memory barriers and
448cache flushes, so some of the protection above would not be
449necessary. However, QEMU still requires that the generated code always
450matches the target instructions in memory in order to handle
451exceptions correctly.
bellard1f673132004-04-04 15:21:17 +0000452
bellarddebc7062006-04-30 21:58:41 +0000453@node Exception support
bellard1f673132004-04-04 15:21:17 +0000454@section Exception support
455
456longjmp() is used when an exception such as division by zero is
ths5fafdf22007-09-16 21:08:06 +0000457encountered.
bellard1f673132004-04-04 15:21:17 +0000458
459The host SIGSEGV and SIGBUS signal handlers are used to get invalid
blueswir1998a0502008-10-09 18:52:04 +0000460memory accesses. The simulated program counter is found by
461retranslating the corresponding basic block and by looking where the
462host program counter was at the exception point.
bellard1f673132004-04-04 15:21:17 +0000463
464The virtual CPU cannot retrieve the exact @code{EFLAGS} register because
465in some cases it is not computed because of condition code
466optimisations. It is not a big concern because the emulated code can
467still be restarted in any cases.
468
bellarddebc7062006-04-30 21:58:41 +0000469@node MMU emulation
bellard1f673132004-04-04 15:21:17 +0000470@section MMU emulation
471
blueswir1998a0502008-10-09 18:52:04 +0000472For system emulation QEMU supports a soft MMU. In that mode, the MMU
473virtual to physical address translation is done at every memory
474access. QEMU uses an address translation cache to speed up the
475translation.
bellard1f673132004-04-04 15:21:17 +0000476
477In order to avoid flushing the translated code each time the MMU
478mappings change, QEMU uses a physically indexed translation cache. It
ths5fafdf22007-09-16 21:08:06 +0000479means that each basic block is indexed with its physical address.
bellard1f673132004-04-04 15:21:17 +0000480
481When MMU mappings change, only the chaining of the basic blocks is
482reset (i.e. a basic block can no longer jump directly to another one).
483
blueswir1998a0502008-10-09 18:52:04 +0000484@node Device emulation
485@section Device emulation
486
487Systems emulated by QEMU are organized by boards. At initialization
488phase, each board instantiates a number of CPUs, devices, RAM and
489ROM. Each device in turn can assign I/O ports or memory areas (for
490MMIO) to its handlers. When the emulation starts, an access to the
491ports or MMIO memory areas assigned to the device causes the
492corresponding handler to be called.
493
494RAM and ROM are handled more optimally, only the offset to the host
495memory needs to be added to the guest address.
496
497The video RAM of VGA and other display cards is special: it can be
498read or written directly like RAM, but write accesses cause the memory
499to be marked with VGA_DIRTY flag as well.
500
501QEMU supports some device classes like serial and parallel ports, USB,
502drives and network devices, by providing APIs for easier connection to
503the generic, higher level implementations. The API hides the
504implementation details from the devices, like native device use or
505advanced block device formats like QCOW.
506
507Usually the devices implement a reset method and register support for
508saving and loading of the device state. The devices can also use
509timers, especially together with the use of bottom halves (BHs).
510
bellarddebc7062006-04-30 21:58:41 +0000511@node Hardware interrupts
bellard1f673132004-04-04 15:21:17 +0000512@section Hardware interrupts
513
514In order to be faster, QEMU does not check at every basic block if an
515hardware interrupt is pending. Instead, the user must asynchrously
516call a specific function to tell that an interrupt is pending. This
517function resets the chaining of the currently executing basic
518block. It ensures that the execution will return soon in the main loop
519of the CPU emulator. Then the main loop can test if the interrupt is
520pending and handle it.
521
bellarddebc7062006-04-30 21:58:41 +0000522@node User emulation specific details
bellard1f673132004-04-04 15:21:17 +0000523@section User emulation specific details
524
525@subsection Linux system call translation
526
527QEMU includes a generic system call translator for Linux. It means that
528the parameters of the system calls can be converted to fix the
529endianness and 32/64 bit issues. The IOCTLs are converted with a generic
530type description system (see @file{ioctls.h} and @file{thunk.c}).
531
532QEMU supports host CPUs which have pages bigger than 4KB. It records all
533the mappings the process does and try to emulated the @code{mmap()}
534system calls in cases where the host @code{mmap()} call would fail
535because of bad page alignment.
536
537@subsection Linux signals
538
539Normal and real-time signals are queued along with their information
540(@code{siginfo_t}) as it is done in the Linux kernel. Then an interrupt
541request is done to the virtual CPU. When it is interrupted, one queued
542signal is handled by generating a stack frame in the virtual CPU as the
543Linux kernel does. The @code{sigreturn()} system call is emulated to return
544from the virtual signal handler.
545
546Some signals (such as SIGALRM) directly come from the host. Other
547signals are synthetized from the virtual CPU exceptions such as SIGFPE
548when a division by zero is done (see @code{main.c:cpu_loop()}).
549
550The blocked signal mask is still handled by the host Linux kernel so
551that most signal system calls can be redirected directly to the host
552Linux kernel. Only the @code{sigaction()} and @code{sigreturn()} system
553calls need to be fully emulated (see @file{signal.c}).
554
555@subsection clone() system call and threads
556
557The Linux clone() system call is usually used to create a thread. QEMU
558uses the host clone() system call so that real host threads are created
559for each emulated thread. One virtual CPU instance is created for each
560thread.
561
562The virtual x86 CPU atomic operations are emulated with a global lock so
563that their semantic is preserved.
564
565Note that currently there are still some locking issues in QEMU. In
566particular, the translated cache flush is not protected yet against
567reentrancy.
568
569@subsection Self-virtualization
570
571QEMU was conceived so that ultimately it can emulate itself. Although
572it is not very useful, it is an important test to show the power of the
573emulator.
574
575Achieving self-virtualization is not easy because there may be address
blueswir1998a0502008-10-09 18:52:04 +0000576space conflicts. QEMU user emulators solve this problem by being an
577executable ELF shared object as the ld-linux.so ELF interpreter. That
578way, it can be relocated at load time.
bellard1f673132004-04-04 15:21:17 +0000579
bellarddebc7062006-04-30 21:58:41 +0000580@node Bibliography
bellard1f673132004-04-04 15:21:17 +0000581@section Bibliography
582
583@table @asis
584
ths5fafdf22007-09-16 21:08:06 +0000585@item [1]
bellard1f673132004-04-04 15:21:17 +0000586@url{http://citeseer.nj.nec.com/piumarta98optimizing.html}, Optimizing
587direct threaded code by selective inlining (1998) by Ian Piumarta, Fabio
588Riccardi.
589
590@item [2]
591@url{http://developer.kde.org/~sewardj/}, Valgrind, an open-source
592memory debugger for x86-GNU/Linux, by Julian Seward.
593
594@item [3]
595@url{http://bochs.sourceforge.net/}, the Bochs IA-32 Emulator Project,
596by Kevin Lawton et al.
597
598@item [4]
599@url{http://www.cs.rose-hulman.edu/~donaldlf/em86/index.html}, the EM86
600x86 emulator on Alpha-Linux.
601
602@item [5]
bellarddebc7062006-04-30 21:58:41 +0000603@url{http://www.usenix.org/publications/library/proceedings/usenix-nt97/@/full_papers/chernoff/chernoff.pdf},
bellard1f673132004-04-04 15:21:17 +0000604DIGITAL FX!32: Running 32-Bit x86 Applications on Alpha NT, by Anton
605Chernoff and Ray Hookway.
606
607@item [6]
608@url{http://www.willows.com/}, Windows API library emulation from
609Willows Software.
610
611@item [7]
ths5fafdf22007-09-16 21:08:06 +0000612@url{http://user-mode-linux.sourceforge.net/},
bellard1f673132004-04-04 15:21:17 +0000613The User-mode Linux Kernel.
614
615@item [8]
ths5fafdf22007-09-16 21:08:06 +0000616@url{http://www.plex86.org/},
bellard1f673132004-04-04 15:21:17 +0000617The new Plex86 project.
618
619@item [9]
ths5fafdf22007-09-16 21:08:06 +0000620@url{http://www.vmware.com/},
bellard1f673132004-04-04 15:21:17 +0000621The VMWare PC virtualizer.
622
623@item [10]
ths5fafdf22007-09-16 21:08:06 +0000624@url{http://www.microsoft.com/windowsxp/virtualpc/},
bellard1f673132004-04-04 15:21:17 +0000625The VirtualPC PC virtualizer.
626
627@item [11]
ths5fafdf22007-09-16 21:08:06 +0000628@url{http://www.twoostwo.org/},
bellard1f673132004-04-04 15:21:17 +0000629The TwoOStwo PC virtualizer.
630
blueswir1998a0502008-10-09 18:52:04 +0000631@item [12]
632@url{http://virtualbox.org/},
633The VirtualBox PC virtualizer.
634
635@item [13]
636@url{http://www.xen.org/},
637The Xen hypervisor.
638
639@item [14]
640@url{http://kvm.qumranet.com/kvmwiki/Front_Page},
641Kernel Based Virtual Machine (KVM).
642
643@item [15]
644@url{http://www.greensocs.com/projects/QEMUSystemC},
645QEMU-SystemC, a hardware co-simulator.
646
bellard1f673132004-04-04 15:21:17 +0000647@end table
648
bellarddebc7062006-04-30 21:58:41 +0000649@node Regression Tests
bellard1f673132004-04-04 15:21:17 +0000650@chapter Regression Tests
651
652In the directory @file{tests/}, various interesting testing programs
thsb1f45232007-07-12 09:03:30 +0000653are available. They are used for regression testing.
bellard1f673132004-04-04 15:21:17 +0000654
bellarddebc7062006-04-30 21:58:41 +0000655@menu
656* test-i386::
657* linux-test::
658* qruncom.c::
659@end menu
660
661@node test-i386
bellard1f673132004-04-04 15:21:17 +0000662@section @file{test-i386}
663
664This program executes most of the 16 bit and 32 bit x86 instructions and
665generates a text output. It can be compared with the output obtained with
666a real CPU or another emulator. The target @code{make test} runs this
667program and a @code{diff} on the generated output.
668
669The Linux system call @code{modify_ldt()} is used to create x86 selectors
670to test some 16 bit addressing and 32 bit with segmentation cases.
671
672The Linux system call @code{vm86()} is used to test vm86 emulation.
673
674Various exceptions are raised to test most of the x86 user space
675exception reporting.
676
bellarddebc7062006-04-30 21:58:41 +0000677@node linux-test
bellard1f673132004-04-04 15:21:17 +0000678@section @file{linux-test}
679
680This program tests various Linux system calls. It is used to verify
681that the system call parameters are correctly converted between target
682and host CPUs.
683
bellarddebc7062006-04-30 21:58:41 +0000684@node qruncom.c
bellard15a34c62004-07-08 21:26:26 +0000685@section @file{qruncom.c}
bellard1f673132004-04-04 15:21:17 +0000686
bellard15a34c62004-07-08 21:26:26 +0000687Example of usage of @code{libqemu} to emulate a user mode i386 CPU.
bellarddebc7062006-04-30 21:58:41 +0000688
689@node Index
690@chapter Index
691@printindex cp
692
693@bye