Statistics
| Branch: | Revision:

root / qemu-tech.texi @ 5fafdf24

History | View | Annotate | Download (20.1 kB)

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