| Commit message (Expand) | Author | Age | Files | Lines |
* | KVM: x86 emulator: Fix handling of VMMCALL instruction | Amit Shah | 2008-12-31 | 1 | -1/+1 |
* | KVM: x86 emulator: add the emulation of shld and shrd instructions | Guillaume Thouvenin | 2008-12-31 | 1 | -2/+15 |
* | KVM: x86 emulator: add the assembler code for three operands | Guillaume Thouvenin | 2008-12-31 | 1 | -0/+39 |
* | KVM: x86 emulator: add a new "implied 1" Src decode type | Guillaume Thouvenin | 2008-12-31 | 1 | -0/+5 |
* | KVM: x86 emulator: add Src2 decode set | Guillaume Thouvenin | 2008-12-31 | 1 | -0/+29 |
* | KVM: x86 emulator: Extend the opcode descriptor | Guillaume Thouvenin | 2008-12-31 | 1 | -4/+4 |
* | KVM: Remove extraneous semicolon after do/while | Avi Kivity | 2008-12-31 | 1 | -1/+1 |
* | KVM: x86 emulator: fix popf emulation | Avi Kivity | 2008-12-31 | 1 | -0/+2 |
* | KVM: x86 emulator: fix ret emulation | Avi Kivity | 2008-12-31 | 1 | -0/+2 |
* | KVM: x86 emulator: switch 'pop reg' instruction to emulate_pop() | Avi Kivity | 2008-12-31 | 1 | -7/+4 |
* | KVM: x86 emulator: allow pop from mmio | Avi Kivity | 2008-12-31 | 1 | -3/+3 |
* | KVM: x86 emulator: Extract 'pop' sequence into a function | Avi Kivity | 2008-12-31 | 1 | -4/+17 |
* | KVM: x86 emulator: consolidate emulation of two operand instructions | Avi Kivity | 2008-12-31 | 1 | -51/+28 |
* | KVM: x86 emulator: reduce duplication in one operand emulation thunks | Avi Kivity | 2008-12-31 | 1 | -43/+23 |
* | KVM: allow emulator to adjust rip for emulated pio instructions | Guillaume Thouvenin | 2008-12-31 | 1 | -1/+1 |
* | KVM: x86 emulator: Add decode entries for 0x04 and 0x05 opcodes (add acc, imm) | Guillaume Thouvenin | 2008-12-31 | 1 | -1/+1 |
* | KVM: x86 emulator: consolidate push reg | Guillaume Thouvenin | 2008-12-31 | 1 | -7/+1 |
* | KVM: x86 emulator: Use DstAcc for 'and' | Guillaume Thouvenin | 2008-10-15 | 1 | -19/+2 |
* | KVM: x86 emulator: Add cmp al, imm and cmp ax, imm instructions (ocodes 3c, 3d) | Guillaume Thouvenin | 2008-10-15 | 1 | -1/+2 |
* | KVM: x86 emulator: Add DstAcc operand type | Guillaume Thouvenin | 2008-10-15 | 1 | -16/+34 |
* | KVM: x86 emulator: fix jmp r/m64 instruction | Avi Kivity | 2008-10-15 | 1 | -1/+1 |
* | KVM: x86 emulator: Add call near absolute instruction (opcode 0xff/2) | Mohammed Gamal | 2008-10-15 | 1 | -1/+10 |
* | KVM: x86 emulator: Add in/out instructions (opcodes 0xe4-0xe7, 0xec-0xef) | Mohammed Gamal | 2008-10-15 | 1 | -2/+33 |
* | KVM: x86 emulator: Add std and cld instructions (opcodes 0xfc-0xfd) | Mohammed Gamal | 2008-10-15 | 1 | -1/+9 |
* | KVM: x86 emulator: Add mov r, imm instructions (opcodes 0xb0-0xbf) | Mohammed Gamal | 2008-10-15 | 1 | -4/+11 |
* | KVM: x86 emulator: remove bad ByteOp specifier from NEG descriptor | Avi Kivity | 2008-10-15 | 1 | -1/+1 |
* | KVM: x86 emulator: remove duplicate SrcImm | roel kluin | 2008-10-15 | 1 | -1/+1 |
* | KVM: x86: accessors for guest registers | Marcelo Tosatti | 2008-10-15 | 1 | -9/+10 |
* | KVM: x86 emulator: emulate clflush | Glauber Costa | 2008-07-20 | 1 | -1/+3 |
* | KVM: x86 emulator: Fix HLT instruction | Mohammed Gamal | 2008-07-20 | 1 | -1/+1 |
* | KVM: x86 emulator: lazily evaluate segment registers | Avi Kivity | 2008-07-20 | 1 | -39/+57 |
* | KVM: x86 emulator: avoid segment base adjust for lea | Avi Kivity | 2008-07-20 | 1 | -1/+1 |
* | KVM: x86 emulator: simplify rip relative decoding | Avi Kivity | 2008-07-20 | 1 | -18/+5 |
* | KVM: x86 emulator: simplify r/m decoding | Avi Kivity | 2008-07-20 | 1 | -13/+4 |
* | KVM: x86 emulator: simplify sib decoding | Avi Kivity | 2008-07-20 | 1 | -16/+4 |
* | KVM: x86 emulator: handle undecoded rex.b with r/m = 5 in certain cases | Avi Kivity | 2008-07-20 | 1 | -0/+2 |
* | KVM: x86 emulator: emulate nop and xchg reg, acc (opcodes 0x90 - 0x97) | Mohammed Gamal | 2008-07-20 | 1 | -2/+15 |
* | KVM: x86 emulator: implement 'push imm' (opcode 0x68) | Avi Kivity | 2008-07-20 | 1 | -1/+2 |
* | KVM: x86 emulator: simplify push imm8 emulation | Avi Kivity | 2008-07-20 | 1 | -3/+1 |
* | KVM: x86 emulator: Add support for mov r, sreg (0x8c) instruction | Guillaume Thouvenin | 2008-07-20 | 1 | -1/+14 |
* | KVM: x86 emulator: Add support for mov seg, r (0x8e) instruction | Guillaume Thouvenin | 2008-07-20 | 1 | -1/+24 |
* | KVM: x86 emulator: adds support to mov r,imm (opcode 0xb8) instruction | Guillaume Thouvenin | 2008-07-20 | 1 | -1/+4 |
* | KVM: x86 emulator: add support for jmp far 0xea | Guillaume Thouvenin | 2008-07-20 | 1 | -2/+29 |
* | KVM: x86 emulator: Update c->dst.bytes in decode instruction | Guillaume Thouvenin | 2008-07-20 | 1 | -0/+1 |
* | KVM: x86 emulator: fix hypercall return value on AMD | Avi Kivity | 2008-06-06 | 1 | -1/+2 |
* | KVM: x86 emulator: fix writes to registers with modrm encodings | Avi Kivity | 2008-05-18 | 1 | -2/+5 |
* | KVM: x86 emulator: disable writeback on lmsw | Avi Kivity | 2008-05-04 | 1 | -0/+1 |
* | KVM: x86 emulator: fix lea to really get the effective address | Avi Kivity | 2008-04-27 | 1 | -1/+1 |
* | KVM: x86 emulator: fix smsw and lmsw with a memory operand | Avi Kivity | 2008-04-27 | 1 | -12/+17 |
* | KVM: x86 emulator: initialize src.val and dst.val for register operands | Avi Kivity | 2008-04-27 | 1 | -0/+2 |