Lines Matching +full:qemu +full:- +full:x86_64
1 TCG Interpreter (TCI) - Copyright (c) 2011 Stefan Weil.
9 targets supported by QEMU) to a code representation which
12 QEMU can create native code for some hosts (arm, i386, ia64, ppc, ppc64,
13 s390, sparc, x86_64). For others, unofficial host support was written.
24 tcg-target.c.inc, tcg-target.h. Both files are in directory tcg/tci.
30 to six arguments packed into a 32-bit integer. See comments in tci.c
37 configure --enable-tcg-interpreter
39 If configure is called without --enable-tcg-interpreter, it will
46 configure --enable-tcg-interpreter
48 The only difference from running QEMU with TCI to running without TCI
50 useful to compare runs with and without TCI. Create /tmp/qemu.log by
52 qemu-system-i386 -d in_asm,op_opt,cpu -D /tmp/qemu.log -accel tcg,one-insn-per-tb=on
55 qemu.log files. This is also useful to see the effects of additional
61 configure --cpu=unknown --enable-tcg-interpreter
74 ------------+------------------------------------------------------------
99 u1 = linux-user-test works
103 * TCI is not widely tested. It was written and tested on a x86_64 host
104 running i386 and x86_64 system emulation and Linux user mode.
105 A cross compiled QEMU for i386 host also works with the same basic tests.
106 A cross compiled QEMU for mipsel host works, too. It is terribly slow
109 A cross compiled QEMU for arm host works (tested with pc bios).
110 A cross compiled QEMU for ppc host works at least partially:
111 i386-linux-user/qemu-i386 can run a simple hello-world program
119 or TCI, so QEMU would have to include two TCGs. Today, selecting TCI
120 is a configure option, so you need two compilations of QEMU.