]> git.proxmox.com Git - qemu.git/blame - qemu-tech.texi
Set initial value of AFSR register properly (Robert Reif)
[qemu.git] / qemu-tech.texi
CommitLineData
1f673135 1\input texinfo @c -*- texinfo -*-
debc7065
FB
2@c %**start of header
3@setfilename qemu-tech.info
4@settitle QEMU Internals
5@exampleindent 0
6@paragraphindent 0
7@c %**end of header
1f673135
FB
8
9@iftex
1f673135
FB
10@titlepage
11@sp 7
12@center @titlefont{QEMU Internals}
13@sp 3
14@end titlepage
15@end iftex
16
debc7065
FB
17@ifnottex
18@node Top
19@top
20
21@menu
22* Introduction::
23* QEMU Internals::
24* Regression Tests::
25* Index::
26@end menu
27@end ifnottex
28
29@contents
30
31@node Introduction
1f673135
FB
32@chapter Introduction
33
debc7065
FB
34@menu
35* intro_features:: Features
36* intro_x86_emulation:: x86 emulation
37* intro_arm_emulation:: ARM emulation
24d4de45 38* intro_mips_emulation:: MIPS emulation
debc7065
FB
39* intro_ppc_emulation:: PowerPC emulation
40* intro_sparc_emulation:: SPARC emulation
41@end menu
42
43@node intro_features
1f673135
FB
44@section Features
45
46QEMU is a FAST! processor emulator using a portable dynamic
47translator.
48
49QEMU has two operating modes:
50
51@itemize @minus
52
5fafdf24 53@item
1f673135 54Full system emulation. In this mode, QEMU emulates a full system
b671f9ed 55(usually a PC), including a processor and various peripherals. It can
1f673135
FB
56be used to launch an different Operating System without rebooting the
57PC or to debug system code.
58
5fafdf24 59@item
1f673135
FB
60User mode emulation (Linux host only). In this mode, QEMU can launch
61Linux processes compiled for one CPU on another CPU. It can be used to
62launch the Wine Windows API emulator (@url{http://www.winehq.org}) or
63to ease cross-compilation and cross-debugging.
64
65@end itemize
66
67As QEMU requires no host kernel driver to run, it is very safe and
68easy to use.
69
70QEMU generic features:
71
5fafdf24 72@itemize
1f673135
FB
73
74@item User space only or full system emulation.
75
debc7065 76@item Using dynamic translation to native code for reasonable speed.
1f673135
FB
77
78@item Working on x86 and PowerPC hosts. Being tested on ARM, Sparc32, Alpha and S390.
79
80@item Self-modifying code support.
81
82@item Precise exceptions support.
83
5fafdf24 84@item The virtual CPU is a library (@code{libqemu}) which can be used
ad6a4837
FB
85in other projects (look at @file{qemu/tests/qruncom.c} to have an
86example of user mode @code{libqemu} usage).
1f673135
FB
87
88@end itemize
89
90QEMU user mode emulation features:
5fafdf24 91@itemize
1f673135
FB
92@item Generic Linux system call converter, including most ioctls.
93
94@item clone() emulation using native CPU clone() to use Linux scheduler for threads.
95
5fafdf24 96@item Accurate signal handling by remapping host signals to target signals.
1f673135 97@end itemize
1f673135
FB
98
99QEMU full system emulation features:
5fafdf24 100@itemize
1f673135
FB
101@item QEMU can either use a full software MMU for maximum portability or use the host system call mmap() to simulate the target MMU.
102@end itemize
103
debc7065 104@node intro_x86_emulation
1f673135
FB
105@section x86 emulation
106
107QEMU x86 target features:
108
5fafdf24 109@itemize
1f673135 110
5fafdf24 111@item The virtual x86 CPU supports 16 bit and 32 bit addressing with segmentation.
1f673135
FB
112LDT/GDT and IDT are emulated. VM86 mode is also supported to run DOSEMU.
113
114@item Support of host page sizes bigger than 4KB in user mode emulation.
115
116@item QEMU can emulate itself on x86.
117
5fafdf24 118@item An extensive Linux x86 CPU test program is included @file{tests/test-i386}.
1f673135
FB
119It can be used to test other x86 virtual CPUs.
120
121@end itemize
122
123Current QEMU limitations:
124
5fafdf24 125@itemize
1f673135
FB
126
127@item No SSE/MMX support (yet).
128
129@item No x86-64 support.
130
131@item IPC syscalls are missing.
132
5fafdf24 133@item The x86 segment limits and access rights are not tested at every
1f673135
FB
134memory access (yet). Hopefully, very few OSes seem to rely on that for
135normal use.
136
5fafdf24 137@item On non x86 host CPUs, @code{double}s are used instead of the non standard
1f673135
FB
13810 byte @code{long double}s of x86 for floating point emulation to get
139maximum performances.
140
141@end itemize
142
debc7065 143@node intro_arm_emulation
1f673135
FB
144@section ARM emulation
145
146@itemize
147
148@item Full ARM 7 user emulation.
149
150@item NWFPE FPU support included in user Linux emulation.
151
152@item Can run most ARM Linux binaries.
153
154@end itemize
155
24d4de45
TS
156@node intro_mips_emulation
157@section MIPS emulation
158
159@itemize
160
161@item The system emulation allows full MIPS32/MIPS64 Release 2 emulation,
162including privileged instructions, FPU and MMU, in both little and big
163endian modes.
164
165@item The Linux userland emulation can run many 32 bit MIPS Linux binaries.
166
167@end itemize
168
169Current QEMU limitations:
170
171@itemize
172
173@item Self-modifying code is not always handled correctly.
174
175@item 64 bit userland emulation is not implemented.
176
177@item The system emulation is not complete enough to run real firmware.
178
b1f45238
TS
179@item The watchpoint debug facility is not implemented.
180
24d4de45
TS
181@end itemize
182
debc7065 183@node intro_ppc_emulation
1f673135
FB
184@section PowerPC emulation
185
186@itemize
187
5fafdf24 188@item Full PowerPC 32 bit emulation, including privileged instructions,
1f673135
FB
189FPU and MMU.
190
191@item Can run most PowerPC Linux binaries.
192
193@end itemize
194
debc7065 195@node intro_sparc_emulation
1f673135
FB
196@section SPARC emulation
197
198@itemize
199
f6b647cd 200@item Full SPARC V8 emulation, including privileged
3475187d 201instructions, FPU and MMU. SPARC V9 emulation includes most privileged
a785e42e 202and VIS instructions, FPU and I/D MMU. Alignment is fully enforced.
1f673135 203
a785e42e
BS
204@item Can run most 32-bit SPARC Linux binaries, SPARC32PLUS Linux binaries and
205some 64-bit SPARC Linux binaries.
3475187d
FB
206
207@end itemize
208
209Current QEMU limitations:
210
5fafdf24 211@itemize
3475187d 212
3475187d
FB
213@item IPC syscalls are missing.
214
215@item 128-bit floating point operations are not supported, though none of the
a785e42e 216real CPUs implement them either. Floating point exception support is untested.
3475187d
FB
217
218@item Atomic instructions are not correctly implemented.
219
220@item Sparc64 emulators are not usable for anything yet.
1f673135
FB
221
222@end itemize
223
debc7065 224@node QEMU Internals
1f673135
FB
225@chapter QEMU Internals
226
debc7065
FB
227@menu
228* QEMU compared to other emulators::
229* Portable dynamic translation::
230* Register allocation::
231* Condition code optimisations::
232* CPU state optimisations::
233* Translation cache::
234* Direct block chaining::
235* Self-modifying code and translated code invalidation::
236* Exception support::
237* MMU emulation::
238* Hardware interrupts::
239* User emulation specific details::
240* Bibliography::
241@end menu
242
243@node QEMU compared to other emulators
1f673135
FB
244@section QEMU compared to other emulators
245
246Like bochs [3], QEMU emulates an x86 CPU. But QEMU is much faster than
247bochs as it uses dynamic compilation. Bochs is closely tied to x86 PC
248emulation while QEMU can emulate several processors.
249
250Like Valgrind [2], QEMU does user space emulation and dynamic
251translation. Valgrind is mainly a memory debugger while QEMU has no
252support for it (QEMU could be used to detect out of bound memory
253accesses as Valgrind, but it has no support to track uninitialised data
254as Valgrind does). The Valgrind dynamic translator generates better code
255than QEMU (in particular it does register allocation) but it is closely
256tied to an x86 host and target and has no support for precise exceptions
257and system emulation.
258
259EM86 [4] is the closest project to user space QEMU (and QEMU still uses
260some of its code, in particular the ELF file loader). EM86 was limited
261to an alpha host and used a proprietary and slow interpreter (the
262interpreter part of the FX!32 Digital Win32 code translator [5]).
263
264TWIN [6] is a Windows API emulator like Wine. It is less accurate than
265Wine but includes a protected mode x86 interpreter to launch x86 Windows
36d54d15 266executables. Such an approach has greater potential because most of the
1f673135
FB
267Windows API is executed natively but it is far more difficult to develop
268because all the data structures and function parameters exchanged
269between the API and the x86 code must be converted.
270
271User mode Linux [7] was the only solution before QEMU to launch a
272Linux kernel as a process while not needing any host kernel
273patches. However, user mode Linux requires heavy kernel patches while
274QEMU accepts unpatched Linux kernels. The price to pay is that QEMU is
275slower.
276
277The new Plex86 [8] PC virtualizer is done in the same spirit as the
278qemu-fast system emulator. It requires a patched Linux kernel to work
279(you cannot launch the same kernel on your PC), but the patches are
280really small. As it is a PC virtualizer (no emulation is done except
281for some priveledged instructions), it has the potential of being
282faster than QEMU. The downside is that a complicated (and potentially
283unsafe) host kernel patch is needed.
284
285The commercial PC Virtualizers (VMWare [9], VirtualPC [10], TwoOStwo
286[11]) are faster than QEMU, but they all need specific, proprietary
287and potentially unsafe host drivers. Moreover, they are unable to
288provide cycle exact simulation as an emulator can.
289
debc7065 290@node Portable dynamic translation
1f673135
FB
291@section Portable dynamic translation
292
293QEMU is a dynamic translator. When it first encounters a piece of code,
294it converts it to the host instruction set. Usually dynamic translators
295are very complicated and highly CPU dependent. QEMU uses some tricks
296which make it relatively easily portable and simple while achieving good
297performances.
298
299The basic idea is to split every x86 instruction into fewer simpler
300instructions. Each simple instruction is implemented by a piece of C
301code (see @file{target-i386/op.c}). Then a compile time tool
302(@file{dyngen}) takes the corresponding object file (@file{op.o})
303to generate a dynamic code generator which concatenates the simple
304instructions to build a function (see @file{op.h:dyngen_code()}).
305
306In essence, the process is similar to [1], but more work is done at
5fafdf24 307compile time.
1f673135
FB
308
309A key idea to get optimal performances is that constant parameters can
310be passed to the simple operations. For that purpose, dummy ELF
311relocations are generated with gcc for each constant parameter. Then,
312the tool (@file{dyngen}) can locate the relocations and generate the
313appriopriate C code to resolve them when building the dynamic code.
314
315That way, QEMU is no more difficult to port than a dynamic linker.
316
317To go even faster, GCC static register variables are used to keep the
318state of the virtual CPU.
319
debc7065 320@node Register allocation
1f673135
FB
321@section Register allocation
322
323Since QEMU uses fixed simple instructions, no efficient register
324allocation can be done. However, because RISC CPUs have a lot of
325register, most of the virtual CPU state can be put in registers without
326doing complicated register allocation.
327
debc7065 328@node Condition code optimisations
1f673135
FB
329@section Condition code optimisations
330
331Good CPU condition codes emulation (@code{EFLAGS} register on x86) is a
332critical point to get good performances. QEMU uses lazy condition code
333evaluation: instead of computing the condition codes after each x86
334instruction, it just stores one operand (called @code{CC_SRC}), the
335result (called @code{CC_DST}) and the type of operation (called
336@code{CC_OP}).
337
338@code{CC_OP} is almost never explicitely set in the generated code
339because it is known at translation time.
340
341In order to increase performances, a backward pass is performed on the
342generated simple instructions (see
343@code{target-i386/translate.c:optimize_flags()}). When it can be proved that
344the condition codes are not needed by the next instructions, no
345condition codes are computed at all.
346
debc7065 347@node CPU state optimisations
1f673135
FB
348@section CPU state optimisations
349
350The x86 CPU has many internal states which change the way it evaluates
351instructions. In order to achieve a good speed, the translation phase
352considers that some state information of the virtual x86 CPU cannot
353change in it. For example, if the SS, DS and ES segments have a zero
354base, then the translator does not even generate an addition for the
355segment base.
356
357[The FPU stack pointer register is not handled that way yet].
358
debc7065 359@node Translation cache
1f673135
FB
360@section Translation cache
361
15a34c63 362A 16 MByte cache holds the most recently used translations. For
1f673135
FB
363simplicity, it is completely flushed when it is full. A translation unit
364contains just a single basic block (a block of x86 instructions
365terminated by a jump or by a virtual CPU state change which the
366translator cannot deduce statically).
367
debc7065 368@node Direct block chaining
1f673135
FB
369@section Direct block chaining
370
371After each translated basic block is executed, QEMU uses the simulated
372Program Counter (PC) and other cpu state informations (such as the CS
373segment base value) to find the next basic block.
374
375In order to accelerate the most common cases where the new simulated PC
376is known, QEMU can patch a basic block so that it jumps directly to the
377next one.
378
379The most portable code uses an indirect jump. An indirect jump makes
380it easier to make the jump target modification atomic. On some host
381architectures (such as x86 or PowerPC), the @code{JUMP} opcode is
382directly patched so that the block chaining has no overhead.
383
debc7065 384@node Self-modifying code and translated code invalidation
1f673135
FB
385@section Self-modifying code and translated code invalidation
386
387Self-modifying code is a special challenge in x86 emulation because no
388instruction cache invalidation is signaled by the application when code
389is modified.
390
391When translated code is generated for a basic block, the corresponding
392host page is write protected if it is not already read-only (with the
393system call @code{mprotect()}). Then, if a write access is done to the
394page, Linux raises a SEGV signal. QEMU then invalidates all the
395translated code in the page and enables write accesses to the page.
396
397Correct translated code invalidation is done efficiently by maintaining
398a linked list of every translated block contained in a given page. Other
5fafdf24 399linked lists are also maintained to undo direct block chaining.
1f673135
FB
400
401Although the overhead of doing @code{mprotect()} calls is important,
402most MSDOS programs can be emulated at reasonnable speed with QEMU and
403DOSEMU.
404
405Note that QEMU also invalidates pages of translated code when it detects
406that memory mappings are modified with @code{mmap()} or @code{munmap()}.
407
408When using a software MMU, the code invalidation is more efficient: if
409a given code page is invalidated too often because of write accesses,
410then a bitmap representing all the code inside the page is
411built. Every store into that page checks the bitmap to see if the code
412really needs to be invalidated. It avoids invalidating the code when
413only data is modified in the page.
414
debc7065 415@node Exception support
1f673135
FB
416@section Exception support
417
418longjmp() is used when an exception such as division by zero is
5fafdf24 419encountered.
1f673135
FB
420
421The host SIGSEGV and SIGBUS signal handlers are used to get invalid
422memory accesses. The exact CPU state can be retrieved because all the
423x86 registers are stored in fixed host registers. The simulated program
424counter is found by retranslating the corresponding basic block and by
425looking where the host program counter was at the exception point.
426
427The virtual CPU cannot retrieve the exact @code{EFLAGS} register because
428in some cases it is not computed because of condition code
429optimisations. It is not a big concern because the emulated code can
430still be restarted in any cases.
431
debc7065 432@node MMU emulation
1f673135
FB
433@section MMU emulation
434
435For system emulation, QEMU uses the mmap() system call to emulate the
436target CPU MMU. It works as long the emulated OS does not use an area
437reserved by the host OS (such as the area above 0xc0000000 on x86
438Linux).
439
440In order to be able to launch any OS, QEMU also supports a soft
441MMU. In that mode, the MMU virtual to physical address translation is
442done at every memory access. QEMU uses an address translation cache to
443speed up the translation.
444
445In order to avoid flushing the translated code each time the MMU
446mappings change, QEMU uses a physically indexed translation cache. It
5fafdf24 447means that each basic block is indexed with its physical address.
1f673135
FB
448
449When MMU mappings change, only the chaining of the basic blocks is
450reset (i.e. a basic block can no longer jump directly to another one).
451
debc7065 452@node Hardware interrupts
1f673135
FB
453@section Hardware interrupts
454
455In order to be faster, QEMU does not check at every basic block if an
456hardware interrupt is pending. Instead, the user must asynchrously
457call a specific function to tell that an interrupt is pending. This
458function resets the chaining of the currently executing basic
459block. It ensures that the execution will return soon in the main loop
460of the CPU emulator. Then the main loop can test if the interrupt is
461pending and handle it.
462
debc7065 463@node User emulation specific details
1f673135
FB
464@section User emulation specific details
465
466@subsection Linux system call translation
467
468QEMU includes a generic system call translator for Linux. It means that
469the parameters of the system calls can be converted to fix the
470endianness and 32/64 bit issues. The IOCTLs are converted with a generic
471type description system (see @file{ioctls.h} and @file{thunk.c}).
472
473QEMU supports host CPUs which have pages bigger than 4KB. It records all
474the mappings the process does and try to emulated the @code{mmap()}
475system calls in cases where the host @code{mmap()} call would fail
476because of bad page alignment.
477
478@subsection Linux signals
479
480Normal and real-time signals are queued along with their information
481(@code{siginfo_t}) as it is done in the Linux kernel. Then an interrupt
482request is done to the virtual CPU. When it is interrupted, one queued
483signal is handled by generating a stack frame in the virtual CPU as the
484Linux kernel does. The @code{sigreturn()} system call is emulated to return
485from the virtual signal handler.
486
487Some signals (such as SIGALRM) directly come from the host. Other
488signals are synthetized from the virtual CPU exceptions such as SIGFPE
489when a division by zero is done (see @code{main.c:cpu_loop()}).
490
491The blocked signal mask is still handled by the host Linux kernel so
492that most signal system calls can be redirected directly to the host
493Linux kernel. Only the @code{sigaction()} and @code{sigreturn()} system
494calls need to be fully emulated (see @file{signal.c}).
495
496@subsection clone() system call and threads
497
498The Linux clone() system call is usually used to create a thread. QEMU
499uses the host clone() system call so that real host threads are created
500for each emulated thread. One virtual CPU instance is created for each
501thread.
502
503The virtual x86 CPU atomic operations are emulated with a global lock so
504that their semantic is preserved.
505
506Note that currently there are still some locking issues in QEMU. In
507particular, the translated cache flush is not protected yet against
508reentrancy.
509
510@subsection Self-virtualization
511
512QEMU was conceived so that ultimately it can emulate itself. Although
513it is not very useful, it is an important test to show the power of the
514emulator.
515
516Achieving self-virtualization is not easy because there may be address
517space conflicts. QEMU solves this problem by being an executable ELF
518shared object as the ld-linux.so ELF interpreter. That way, it can be
519relocated at load time.
520
debc7065 521@node Bibliography
1f673135
FB
522@section Bibliography
523
524@table @asis
525
5fafdf24 526@item [1]
1f673135
FB
527@url{http://citeseer.nj.nec.com/piumarta98optimizing.html}, Optimizing
528direct threaded code by selective inlining (1998) by Ian Piumarta, Fabio
529Riccardi.
530
531@item [2]
532@url{http://developer.kde.org/~sewardj/}, Valgrind, an open-source
533memory debugger for x86-GNU/Linux, by Julian Seward.
534
535@item [3]
536@url{http://bochs.sourceforge.net/}, the Bochs IA-32 Emulator Project,
537by Kevin Lawton et al.
538
539@item [4]
540@url{http://www.cs.rose-hulman.edu/~donaldlf/em86/index.html}, the EM86
541x86 emulator on Alpha-Linux.
542
543@item [5]
debc7065 544@url{http://www.usenix.org/publications/library/proceedings/usenix-nt97/@/full_papers/chernoff/chernoff.pdf},
1f673135
FB
545DIGITAL FX!32: Running 32-Bit x86 Applications on Alpha NT, by Anton
546Chernoff and Ray Hookway.
547
548@item [6]
549@url{http://www.willows.com/}, Windows API library emulation from
550Willows Software.
551
552@item [7]
5fafdf24 553@url{http://user-mode-linux.sourceforge.net/},
1f673135
FB
554The User-mode Linux Kernel.
555
556@item [8]
5fafdf24 557@url{http://www.plex86.org/},
1f673135
FB
558The new Plex86 project.
559
560@item [9]
5fafdf24 561@url{http://www.vmware.com/},
1f673135
FB
562The VMWare PC virtualizer.
563
564@item [10]
5fafdf24 565@url{http://www.microsoft.com/windowsxp/virtualpc/},
1f673135
FB
566The VirtualPC PC virtualizer.
567
568@item [11]
5fafdf24 569@url{http://www.twoostwo.org/},
1f673135
FB
570The TwoOStwo PC virtualizer.
571
572@end table
573
debc7065 574@node Regression Tests
1f673135
FB
575@chapter Regression Tests
576
577In the directory @file{tests/}, various interesting testing programs
b1f45238 578are available. They are used for regression testing.
1f673135 579
debc7065
FB
580@menu
581* test-i386::
582* linux-test::
583* qruncom.c::
584@end menu
585
586@node test-i386
1f673135
FB
587@section @file{test-i386}
588
589This program executes most of the 16 bit and 32 bit x86 instructions and
590generates a text output. It can be compared with the output obtained with
591a real CPU or another emulator. The target @code{make test} runs this
592program and a @code{diff} on the generated output.
593
594The Linux system call @code{modify_ldt()} is used to create x86 selectors
595to test some 16 bit addressing and 32 bit with segmentation cases.
596
597The Linux system call @code{vm86()} is used to test vm86 emulation.
598
599Various exceptions are raised to test most of the x86 user space
600exception reporting.
601
debc7065 602@node linux-test
1f673135
FB
603@section @file{linux-test}
604
605This program tests various Linux system calls. It is used to verify
606that the system call parameters are correctly converted between target
607and host CPUs.
608
debc7065 609@node qruncom.c
15a34c63 610@section @file{qruncom.c}
1f673135 611
15a34c63 612Example of usage of @code{libqemu} to emulate a user mode i386 CPU.
debc7065
FB
613
614@node Index
615@chapter Index
616@printindex cp
617
618@bye