1. 120df89 KVM: x86 emulator: allow specifying group directly in opcode by Avi Kivity · 14 years ago
  2. 793d5a8 KVM: x86 emulator: reserve group code 0 by Avi Kivity · 14 years ago
  3. 42a1c52 KVM: x86 emulator: move group tables to top by Avi Kivity · 14 years ago
  4. fd85331 KVM: x86 emulator: Add wrappers for easily defining opcodes by Avi Kivity · 14 years ago
  5. d65b1de KVM: x86 emulator: introduce 'struct opcode' by Avi Kivity · 14 years ago
  6. ea9ef04 KVM: x86 emulator: drop parentheses in repreat macros by Avi Kivity · 14 years ago
  7. 62bd430 KVM: x86 emulator: Add IRET instruction by Mohammed Gamal · 14 years ago
  8. e071edd KVM: x86 emulator: unify the two Group 3 variants by Avi Kivity · 14 years ago
  9. dfe1148 KVM: x86 emulator: Allow LOCK prefix for NEG and NOT by Avi Kivity · 14 years ago
  10. 4968ec4 KVM: x86 emulator: simplify Group 1 decoding by Avi Kivity · 14 years ago
  11. 52811d7 KVM: x86 emulator: mix decode bits from opcode and group decode tables by Avi Kivity · 14 years ago
  12. 047a481 KVM: x86 emulator: add Undefined decode flag by Avi Kivity · 14 years ago
  13. 2ce4953 KVM: x86 emulator: Make group storage bits separate from operand bits by Avi Kivity · 14 years ago
  14. 880a188 KVM: x86 emulator: consolidate Jcc rel32 decoding by Avi Kivity · 14 years ago
  15. be8eacd KVM: x86 emulator: consolidate CMOVcc decoding by Avi Kivity · 14 years ago
  16. b6e6153 KVM: x86 emulator: consolidate MOV reg, imm decoding by Avi Kivity · 14 years ago
  17. b3ab340 KVM: x86 emulator: consolidate Jcc rel8 decoding by Avi Kivity · 14 years ago
  18. 3849186 KVM: x86 emulator: consolidate push/pop reg decoding by Avi Kivity · 14 years ago
  19. 749358a KVM: x86 emulator: consolidate inc/dec reg decoding by Avi Kivity · 14 years ago
  20. 83babbc KVM: x86 emulator: add macros for repetitive instructions by Avi Kivity · 14 years ago
  21. 91269b8 KVM: x86 emulator: fix handling for unemulated instructions by Avi Kivity · 14 years ago
  22. 16518d5 KVM: x86 emulator: fix regression with cmpxchg8b on i386 hosts by Avi Kivity · 14 years ago
  23. c0e0608 KVM: x86: emulator: inc/dec can have lock prefix by Gleb Natapov · 14 years ago
  24. 5d55f29 KVM: x86 emulator: re-implementing 'mov AL,moffs' instruction decoding by Wei Yongjun · 14 years ago
  25. 07cbc6c KVM: x86 emulator: fix cli/sti instruction emulation by Wei Yongjun · 14 years ago
  26. b16b2b7 KVM: x86 emulator: fix 'mov rm,sreg' instruction decoding by Wei Yongjun · 14 years ago
  27. e97e883 KVM: x86 emulator: fix 'and AL,imm8' instruction decoding by Wei Yongjun · 14 years ago
  28. ce7a0ad KVM: x86 emulator: fix the comment of out instruction by Wei Yongjun · 14 years ago
  29. a5046e6 KVM: x86 emulator: fix 'mov sreg,rm16' instruction decoding by Wei Yongjun · 14 years ago
  30. f5f48ee KVM: VMX: Execute WBINVD to keep data consistency with assigned devices by Sheng Yang · 14 years ago
  31. 7d5993d KVM: x86 emulator: fix group3 instruction decoding by Wei Yongjun · 14 years ago
  32. c37eda1 KVM: x86 emulator: fix pusha instruction emulation by Wei Yongjun · 14 years ago
  33. 221d059 KVM: Update Red Hat copyrights by Avi Kivity · 14 years ago
  34. 222b7c5 KVM: x86 emulator: Add missing decoder flags for xor instructions by Mohammed Gamal · 15 years ago
  35. abc1908 KVM: x86 emulator: Add missing decoder flags for sub instruction by Mohammed Gamal · 15 years ago
  36. dfb507c KVM: x86 emulator: Add test acc, imm instruction (opcodes 0xA8 - 0xA9) by Mohammed Gamal · 15 years ago
  37. 54b8486 KVM: x86 emulator: do not inject exception directly into vcpu by Gleb Natapov · 15 years ago
  38. 95cb229 KVM: x86 emulator: move interruptibility state tracking out of emulator by Gleb Natapov · 15 years ago
  39. 4d2179e KVM: x86 emulator: handle shadowed registers outside emulator by Gleb Natapov · 15 years ago
  40. bdb475a KVM: x86 emulator: use shadowed register in emulate_sysexit() by Gleb Natapov · 15 years ago
  41. ef050dc KVM: x86 emulator: set RFLAGS outside x86 emulator code by Gleb Natapov · 15 years ago
  42. 95c5588 KVM: x86 emulator: advance RIP outside x86 emulator code by Gleb Natapov · 15 years ago
  43. 8fe681e KVM: do not inject #PF in (read|write)_emulated() callbacks by Gleb Natapov · 15 years ago
  44. 338dbc9 KVM: x86 emulator: make (get|set)_dr() callback return error if it fails by Gleb Natapov · 15 years ago
  45. 0f12244 KVM: x86 emulator: make set_cr() callback return error if it fails by Gleb Natapov · 15 years ago
  46. 79168fd KVM: x86 emulator: cleanup some direct calls into kvm to use existing callbacks by Gleb Natapov · 15 years ago
  47. 5951c44 KVM: x86 emulator: add get_cached_segment_base() callback to x86_emulate_ops by Gleb Natapov · 15 years ago
  48. 3fb1b5d KVM: x86 emulator: add (set|get)_msr callbacks to x86_emulate_ops by Gleb Natapov · 15 years ago
  49. 35aa537 KVM: x86 emulator: add (set|get)_dr callbacks to x86_emulate_ops by Gleb Natapov · 15 years ago
  50. 414e627 KVM: x86 emulator: handle "far address" source operand by Gleb Natapov · 15 years ago
  51. b8a9894 KVM: x86 emulator: cleanup nop emulation by Gleb Natapov · 15 years ago
  52. f0c13ef KVM: x86 emulator: cleanup xchg emulation by Gleb Natapov · 15 years ago
  53. 054fe9f KVM: x86 emulator: fix Move r/m16 to segment register decoding by Gleb Natapov · 15 years ago
  54. 9de4157 KVM: x86 emulator: introduce read cache by Gleb Natapov · 15 years ago
  55. 19d0443 KVM: fix emulator_task_switch() return value. by Gleb Natapov · 15 years ago
  56. e269fb2 KVM: x86: Push potential exception error code on task switches by Jan Kiszka · 15 years ago
  57. 0760d44 KVM: x86: Terminate early if task_switch_16/32 failed by Jan Kiszka · 15 years ago
  58. 2fb53ad KVM: x86 emulator: Don't overwrite decode cache by Avi Kivity · 15 years ago
  59. de3e648 KVM: x86 emulator: fix unlocked CMPXCHG8B emulation by Gleb Natapov · 15 years ago
  60. 6550e1f KVM: x86 emulator: add decoding of CMPXCHG8B dst operand by Gleb Natapov · 15 years ago
  61. 482ac18 KVM: x86 emulator: commit rflags as part of registers commit by Gleb Natapov · 15 years ago
  62. 7b262e9 KVM: x86 emulator: introduce pio in string read ahead. by Gleb Natapov · 15 years ago
  63. 5cd2191 KVM: x86 emulator: restart string instruction without going back to a guest. by Gleb Natapov · 15 years ago
  64. cb404fe KVM: x86 emulator: remove saved_eip by Gleb Natapov · 15 years ago
  65. 7972995 KVM: x86 emulator: Move string pio emulation into emulator.c by Gleb Natapov · 15 years ago
  66. cf8f70b KVM: x86 emulator: fix in/out emulation. by Gleb Natapov · 15 years ago
  67. d927112 KVM: x86 emulator: during rep emulation decrement ECX only if emulation succeeded by Gleb Natapov · 15 years ago
  68. a682e35 KVM: x86 emulator: add decoding of X,Y parameters from Intel SDM by Gleb Natapov · 15 years ago
  69. 69f55cb KVM: x86 emulator: populate OP_MEM operand during decoding. by Gleb Natapov · 15 years ago
  70. ceffb45 KVM: Use task switch from emulator.c by Gleb Natapov · 15 years ago
  71. 2e87302 KVM: x86 emulator: Use load_segment_descriptor() instead of kvm_load_segment_descriptor() by Gleb Natapov · 15 years ago
  72. 38ba30b KVM: x86 emulator: Emulate task switch in emulator.c by Gleb Natapov · 15 years ago
  73. aca06a8 KVM: x86 emulator: cleanup grp3 return value by Gleb Natapov · 15 years ago
  74. a41ffb75 KVM: x86 emulator: If LOCK prefix is used dest arg should be memory. by Gleb Natapov · 15 years ago
  75. fd52536 KVM: x86 emulator: do not call writeback if msr access fails. by Gleb Natapov · 15 years ago
  76. 2e901c4 KVM: x86 emulator: fix return values of syscall/sysenter/sysexit emulations by Gleb Natapov · 15 years ago
  77. 1e470be KVM: x86 emulator: fix mov dr to inject #UD when needed. by Gleb Natapov · 15 years ago
  78. 6aebfa6 KVM: x86 emulator: inject #UD on access to non-existing CR by Gleb Natapov · 15 years ago
  79. ab8557b KVM: x86 emulator: 0f (20|21|22|23) ignore mod bits. by Gleb Natapov · 15 years ago
  80. 6e1e5ff KVM: x86 emulator: fix 0f 01 /5 emulation by Gleb Natapov · 15 years ago
  81. 5e3ae6c KVM: x86 emulator: fix mov r/m, sreg emulation. by Gleb Natapov · 15 years ago
  82. 063db06 KVM: Provide current eip as part of emulator context. by Gleb Natapov · 15 years ago
  83. 9c53724 KVM: Provide x86_emulate_ctxt callback to get current cpl by Gleb Natapov · 15 years ago
  84. 93a152b KVM: remove realmode_lmsw function. by Gleb Natapov · 15 years ago
  85. 52a4661 KVM: Provide callback to get/set control registers in emulator ops. by Gleb Natapov · 15 years ago
  86. 49c6799 KVM: Remove pointer to rflags from realmode_set_cr parameters. by Gleb Natapov · 15 years ago
  87. af5b4f7 KVM: x86 emulator: check return value against correct define by Gleb Natapov · 15 years ago
  88. c73e197 KVM: x86 emulator: fix RCX access during rep emulation by Gleb Natapov · 15 years ago
  89. d6d367d KVM: x86 emulator: Fix DstAcc decoding. by Gleb Natapov · 15 years ago
  90. 835e6b8 KVM: x86 emulator mark VMMCALL and LMSW as privileged by Gleb Natapov · 15 years ago
  91. ea79849d KVM: x86 emulator: Implement jmp far opcode ff/5 by Gleb Natapov · 15 years ago
  92. e35b7b9 KVM: x86 emulator: Add decoding of 16bit second in memory argument by Gleb Natapov · 15 years ago
  93. 48005f6 KVM: x86: Save&restore interrupt shadow mask by Jan Kiszka · 15 years ago
  94. 0e4176a KVM: x86 emulator: Fix x86_emulate_insn() not to use the variable rc for non-X86EMUL values by Takuya Yoshikawa · 15 years ago
  95. 1b30eaa KVM: x86 emulator: X86EMUL macro replacements: x86_emulate_insn() and its helpers by Takuya Yoshikawa · 15 years ago
  96. 3e2815e KVM: x86 emulator: X86EMUL macro replacements: from do_fetch_insn_byte() to x86_decode_insn() by Takuya Yoshikawa · 15 years ago
  97. 1161624 KVM: inject #UD in 64bit mode from instruction that are not valid there by Gleb Natapov · 15 years ago
  98. e54cfa9 KVM: Fix emulate_sys[call, enter, exit]()'s fault handling by Takuya Yoshikawa · 15 years ago
  99. c697518 KVM: Fix segment descriptor loading by Gleb Natapov · 15 years ago
  100. 8b9f441 KVM: x86 emulator: Forbid modifying CS segment register by mov instruction by Gleb Natapov · 15 years ago