aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kvm/emulate.c
Commit message (Expand)AuthorAgeFilesLines
* KVM: x86 emulator: implement CWD (opcode 99)Avi Kivity2010-10-241-1/+14
* KVM: x86 emulator: implement IMUL REG, R/M, IMM (opcode 69)Avi Kivity2010-10-241-1/+2
* KVM: x86 emulator: add Src2Imm decodingAvi Kivity2010-10-241-0/+4
* KVM: x86 emulator: consolidate immediate decode into a functionAvi Kivity2010-10-241-45/+64
* KVM: x86 emulator: implement RDTSC (opcode 0F 31)Avi Kivity2010-10-241-1/+18
* KVM: x86 emulator: remove SrcImplicitAvi Kivity2010-10-241-2/+1
* KVM: x86 emulator: implement IMUL REG, R/M (opcode 0F AF)Avi Kivity2010-10-241-3/+10
* KVM: x86 emulator: implement IMUL REG, R/M, imm8 (opcode 6B)Avi Kivity2010-10-241-1/+11
* KVM: x86 emulator: implement RET imm16 (opcode C2)Avi Kivity2010-10-241-1/+18
* KVM: x86 emulator: add SrcImmU16 operand typeAvi Kivity2010-10-241-3/+9
* KVM: x86 emulator: implement CALL FAR (FF /3)Avi Kivity2010-10-241-1/+36
* KVM: x86 emulator: implement DAS (opcode 2F)Avi Kivity2010-10-241-1/+41
* KVM: x86 emulator: Use a register for ____emulate_2op() destinationAvi Kivity2010-10-241-1/+1
* KVM: x86 emulator: pass destination type to ____emulate_2op()Avi Kivity2010-10-241-6/+6
* KVM: x86 emulator: add LOOP/LOOPcc instruction emulationWei Yongjun2010-10-241-1/+7
* KVM: x86 emulator: add CBW/CWDE/CDQE instruction emulationWei Yongjun2010-10-241-1/+8
* KVM: x86 emulator: fix REPZ/REPNZ termination conditionAvi Kivity2010-10-241-21/+20
* KVM: x86 emulator: implement SCAS (opcodes AE, AF)Avi Kivity2010-10-241-3/+2
* KVM: x86 emulator: fix INTn emulation not pushing EFLAGS and CSAvi Kivity2010-10-241-1/+12
* KVM: x86 emulator: remove dup code of in/out instructionWei Yongjun2010-10-241-20/+4
* KVM: x86 emulator: change OUT instruction to use dst instead of srcWei Yongjun2010-10-241-7/+8
* KVM: x86 emulator: introduce DstImmUByte for dst operand decodeWei Yongjun2010-10-241-0/+7
* KVM: x86 emulator: remove useless label from x86_emulate_insn()Wei Yongjun2010-10-241-5/+1
* KVM: x86 emulator: add setcc instruction emulationWei Yongjun2010-10-241-1/+4
* KVM: x86 emulator: add XADD instruction emulationWei Yongjun2010-10-241-1/+8
* KVM: x86 emulator: put register operand write back to a functionWei Yongjun2010-10-241-32/+23
* KVM: x86 emulator: add bsf/bsr instruction emulationWei Yongjun2010-10-241-2/+26
* KVM: x86 emulator: Fix emulate_grp3 return valuesMohammed Gamal2010-10-241-3/+3
* KVM: x86 emulator: Add unary mul, imul, div, and idiv instructionsMohammed Gamal2010-10-241-1/+40
* KVM: x86 emulator: mask group 8 instruction as BitOpWei Yongjun2010-10-241-7/+4
* KVM: x86 emulator: do not adjust the address for immediate sourceWei Yongjun2010-10-241-1/+1
* KVM: x86 emulator: fix negative bit offset BitOp instruction emulationWei Yongjun2010-10-241-6/+18
* KVM: x86 emulator: Add stc instruction (opcode 0xf9)Mohammed Gamal2010-10-241-1/+4
* KVM: x86 emulator: using SrcOne for instruction d0/d1 decodingWei Yongjun2010-10-241-2/+1
* KVM: x86 emulator: disable writeback when decode dest operandWei Yongjun2010-10-241-17/+6
* KVM: x86 emulator: use SrcAcc to simplify stos decodingWei Yongjun2010-10-241-3/+2
* KVM: x86 emulator: Add into, int, and int3 instructions (opcodes 0xcc-0xce)Mohammed Gamal2010-10-241-0/+78
* KVM: x86 emulator: simplify two-byte opcode checkWei Yongjun2010-10-241-7/+5
* KVM: x86 emulator: Fix nop emulationMohammed Gamal2010-10-241-1/+1
* KVM: x86 emulator: Decode memory operands directly into a 'struct operand'Avi Kivity2010-10-241-68/+57
* KVM: x86 emulator: change invlpg emulation to use src.mem.addrAvi Kivity2010-10-241-1/+1
* KVM: x86 emulator: switch LEA to use SrcMem decodingAvi Kivity2010-10-241-2/+2
* KVM: x86 emulator: add NoAccess flag for memory instructions that skip accessAvi Kivity2010-10-241-2/+4
* KVM: x86 emulator: use struct operand for mov reg,dr and mov dr,reg for reg opAvi Kivity2010-10-241-5/+4
* KVM: x86 emulator: use struct operand for mov reg,cr and mov cr,reg for reg opAvi Kivity2010-10-241-5/+4
* KVM: x86 emulator: mark mov cr and mov dr as 64-bit instructions in long modeAvi Kivity2010-10-241-2/+2
* KVM: x86 emulator: introduce Op3264 for mov cr and mov dr instructionsAvi Kivity2010-10-241-0/+8
* KVM: x86 emulator: simplify REX.W checkAvi Kivity2010-10-241-3/+2
* KVM: x86 emulator: drop use_modrm_eaAvi Kivity2010-10-241-1/+0
* KVM: x86 emulator: put register operand fetch into a functionAvi Kivity2010-10-241-40/+21