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