1. 9dac77f KVM: x86 emulator: fold decode_cache into x86_emulate_ctxt by Avi Kivity · 14 years ago
  2. 36dd9bb KVM: x86 emulator: rename decode_cache::eip to _eip by Avi Kivity · 14 years ago
  3. f411e6c KVM: x86 emulator: Use opcode::execute for CLI/STI(FA/FB) by Takuya Yoshikawa · 14 years ago
  4. d06e03a KVM: x86 emulator: Use opcode::execute for LOOP/JCXZ by Takuya Yoshikawa · 14 years ago
  5. 5c5df76 KVM: x86 emulator: Clean up INT n/INTO/INT 3(CC/CD/CE) by Takuya Yoshikawa · 14 years ago
  6. 1bd5f46 KVM: x86 emulator: Use opcode::execute for MOV(8C/8E) by Takuya Yoshikawa · 14 years ago
  7. ebda02c KVM: x86 emulator: Use opcode::execute for RET(C3) by Takuya Yoshikawa · 14 years ago
  8. e4f973a KVM: x86 emulator: Use opcode::execute for XCHG(86/87) by Takuya Yoshikawa · 14 years ago
  9. 9f21ca5 KVM: x86 emulator: Use opcode::execute for TEST(84/85, A8/A9) by Takuya Yoshikawa · 14 years ago
  10. db5b076 KVM: x86 emulator: Use opcode::execute for some instructions by Takuya Yoshikawa · 14 years ago
  11. e01991e KVM: x86 emulator: Rename emulate_xxx() to em_xxx() by Takuya Yoshikawa · 14 years ago
  12. 9d74191 KVM: x86 emulator: Use the pointers ctxt and c consistently by Takuya Yoshikawa · 14 years ago
  13. 1249b96 KVM: fix uninitialized warning by Xiao Guangrong · 14 years ago
  14. 7b105ca KVM: x86 emulator: Stop passing ctxt->ops as arg of emul functions by Takuya Yoshikawa · 14 years ago
  15. ef5d75c KVM: x86 emulator: Stop passing ctxt->ops as arg of decode helpers by Takuya Yoshikawa · 14 years ago
  16. 67cbc90 KVM: x86 emulator: Place insn_fetch helpers together by Takuya Yoshikawa · 14 years ago
  17. cb16c34 KVM: x86 emulator: fix %rip-relative addressing with immediate source operand by Avi Kivity · 14 years ago
  18. 221192b KVM: x86: use proper port value when checking io instruction permission by Marcelo Tosatti · 14 years ago
  19. d2f6276 KVM: x86 emulator: Make jmp far emulation into a separate function by Takuya Yoshikawa · 14 years ago
  20. 5118768 KVM: x86 emulator: Rename emulate_grpX() to em_grpX() by Takuya Yoshikawa · 14 years ago
  21. 3b9be3b KVM: x86 emulator: Remove unused arg from emulate_pop() by Takuya Yoshikawa · 14 years ago
  22. adddcec KVM: x86 emulator: Remove unused arg from writeback() by Takuya Yoshikawa · 14 years ago
  23. 509cf9f KVM: x86 emulator: Remove unused arg from read_descriptor() by Takuya Yoshikawa · 14 years ago
  24. c1ed6de KVM: x86 emulator: Remove unused arg from seg_override() by Takuya Yoshikawa · 14 years ago
  25. 1aa3661 KVM: x86 emulator: consolidate segment accessors by Avi Kivity · 14 years ago
  26. 4947e7cd KVM: emulator: Propagate fault in far jump emulation by Gleb Natapov · 14 years ago
  27. 4656164 KVM: x86 emulator: consolidate group handling by Avi Kivity · 14 years ago
  28. 62aaa2f KVM: x86 emulator: Use opcode::execute for PUSHF/POPF (9C/9D) by Takuya Yoshikawa · 14 years ago
  29. b96a7fa KVM: x86 emulator: Use opcode::execute for PUSHA/POPA (60/61) by Takuya Yoshikawa · 14 years ago
  30. c54fe50 KVM: x86 emulator: Use opcode::execute for POP reg (58-5F) by Takuya Yoshikawa · 14 years ago
  31. d67fc27 KVM: x86 emulator: Use opcode::execute for Group 1, CMPS and SCAS by Takuya Yoshikawa · 14 years ago
  32. 5ef39c7 KVM: x86 emulator: Use opcode::execute for 0F 01 opcode by Avi Kivity · 14 years ago
  33. 68152d8 KVM: x86 emulator: Don't force #UD for 0F 01 /5 by Avi Kivity · 14 years ago
  34. 26d05cc KVM: x86 emulator: move 0F 01 sub-opcodes into their own functions by Avi Kivity · 14 years ago
  35. d422444 KVM: x86 emulator: fix const value warning on i386 in svm insn RAX check by Randy Dunlap · 14 years ago
  36. cfb2237 KVM: x86 emulator: avoid calling wbinvd() macro by Clemens Noss · 14 years ago
  37. bcaf5cc KVM: x86 emulator: add new ->wbinvd() callback by Avi Kivity · 14 years ago
  38. d6aa100 KVM: x86 emulator: add ->fix_hypercall() callback by Avi Kivity · 14 years ago
  39. 6c3287f KVM: x86 emulator: add new ->halt() callback by Avi Kivity · 14 years ago
  40. 3cb16fe KVM: x86 emulator: make emulate_invlpg() an emulator callback by Avi Kivity · 14 years ago
  41. 2d04a05 KVM: x86 emulator: emulate CLTS internally by Avi Kivity · 14 years ago
  42. fd72c41 KVM: x86 emulator: Replace calls to is_pae() and is_paging with ->get_cr() by Avi Kivity · 14 years ago
  43. c2ad2bb KVM: x86 emulator: drop use of is_long_mode() by Avi Kivity · 14 years ago
  44. 1ac9d0c KVM: x86 emulator: add and use new callbacks set_idt(), set_gdt() by Avi Kivity · 14 years ago
  45. fe870ab KVM: x86 emulator: avoid using ctxt->vcpu in check_perm() callbacks by Avi Kivity · 14 years ago
  46. 2953538 KVM: x86 emulator: drop vcpu argument from intercept callback by Avi Kivity · 14 years ago
  47. 717746e KVM: x86 emulator: drop vcpu argument from cr/dr/cpl/msr callbacks by Avi Kivity · 14 years ago
  48. 4bff1e86 KVM: x86 emulator: drop vcpu argument from segment/gdt/idt callbacks by Avi Kivity · 14 years ago
  49. ca1d4a9 KVM: x86 emulator: drop vcpu argument from pio callbacks by Avi Kivity · 14 years ago
  50. 0f65dd7 KVM: x86 emulator: drop vcpu argument from memory read/write callbacks by Avi Kivity · 14 years ago
  51. 7295261 KVM: x86 emulator: whitespace cleanups by Avi Kivity · 14 years ago
  52. 3d9b938 KVM: emulator: Use linearize() when fetching instructions by Nelson Elhage · 14 years ago
  53. 0521e4c KVM: x86 emulator: Handle wraparound in (cs_base + offset) when fetching insns by Nelson Elhage · 14 years ago
  54. 4487b3b KVM: x86 emulator: Use em_push() instead of emulate_push() by Takuya Yoshikawa · 14 years ago
  55. 4179bb0 KVM: x86 emulator: Make emulate_push() store the value directly by Takuya Yoshikawa · 14 years ago
  56. 575e7c1 KVM: x86 emulator: Disable writeback for CMP emulation by Takuya Yoshikawa · 14 years ago
  57. 618ff15 KVM: x86 emulator: implement segment permission checks by Avi Kivity · 14 years ago
  58. 5669768 KVM: x86 emulator: move desc_limit_scaled() by Avi Kivity · 14 years ago
  59. 52fd8b4 KVM: x86 emulator: move linearize() downwards by Avi Kivity · 14 years ago
  60. 83b8795 KVM: x86 emulator: pass access size and read/write intent to linearize() by Avi Kivity · 14 years ago
  61. 9fa088f KVM: x86 emulator: change address linearization to return an error code by Avi Kivity · 14 years ago
  62. 3850391 KVM: x86 emulator: move invlpg emulation into a function by Avi Kivity · 14 years ago
  63. 3ca3ac4 KVM: x86 emulator: Add helpers for memory access using segmented addresses by Avi Kivity · 14 years ago
  64. bfeed29 KVM: x86 emulator: Drop EFER.SVME requirement from VMMCALL by Avi Kivity · 14 years ago
  65. 8b18bc3 KVM: x86 emulator: Re-add VendorSpecific tag to VMMCALL insn by Avi Kivity · 14 years ago
  66. a0c0ab2 KVM: x86 emulator: do not open code return values from the emulator by Gleb Natapov · 14 years ago
  67. f651193 KVM: SVM: Add checks for IO instructions by Joerg Roedel · 14 years ago
  68. bf608f8 KVM: SVM: Add intercept checks for one-byte instructions by Joerg Roedel · 14 years ago
  69. 8061252 KVM: SVM: Add intercept checks for remaining twobyte instructions by Joerg Roedel · 14 years ago
  70. d7eb820 KVM: SVM: Add intercept checks for remaining group7 instructions by Joerg Roedel · 14 years ago
  71. 01de8b0 KVM: SVM: Add intercept checks for SVM instructions by Joerg Roedel · 14 years ago
  72. dee6bb7 KVM: SVM: Add intercept checks for descriptor table accesses by Joerg Roedel · 14 years ago
  73. 3b88e41 KVM: SVM: Add intercept check for accessing dr registers by Joerg Roedel · 14 years ago
  74. cfec82c KVM: SVM: Add intercept check for emulated cr accesses by Joerg Roedel · 14 years ago
  75. 8a76d7f KVM: x86: Add x86 callback for intercept check by Joerg Roedel · 14 years ago
  76. 8ea7d6a KVM: x86 emulator: Add flag to check for protected mode instructions by Joerg Roedel · 14 years ago
  77. d09beab KVM: x86 emulator: Add check_perm callback by Joerg Roedel · 14 years ago
  78. 775fde8 KVM: x86 emulator: Don't write-back cpu-state on X86EMUL_INTERCEPTED by Joerg Roedel · 14 years ago
  79. 3c6e276 KVM: x86 emulator: add SVM intercepts by Avi Kivity · 14 years ago
  80. c4f035c KVM: x86 emulator: add framework for instruction intercepts by Avi Kivity · 14 years ago
  81. aa97bb4 KVM: x86 emulator: implement movdqu instruction (f3 0f 6f, f3 0f 7f) by Avi Kivity · 15 years ago
  82. 1253791 KVM: x86 emulator: SSE support by Avi Kivity · 14 years ago
  83. 0d7cdee KVM: x86 emulator: Specialize decoding for insns with 66/f2/f3 prefixes by Avi Kivity · 14 years ago
  84. 1d6b114 KVM: x86 emulator: do not munge rep prefix by Avi Kivity · 15 years ago
  85. 399a40c KVM: emulator: Fix permission checking in io permission bitmap by Gleb Natapov · 14 years ago
  86. 5601d05 KVM: emulator: Fix io permission checking for 64bit guest by Gleb Natapov · 14 years ago
  87. d867162 KVM: x86 emulator: vendor specific instructions by Avi Kivity · 14 years ago
  88. dc25e89 KVM: SVM: copy instruction bytes from VMCB by Andre Przywara · 14 years ago
  89. 35d3d4a KVM: x86 emulator: simplify exception generation by Avi Kivity · 14 years ago
  90. db297e3 KVM: x86 emulator: tighen up ->read_std() and ->write_std() error checks by Avi Kivity · 14 years ago
  91. 42438e3 KVM: x86 emulator: drop dead pf injection in emulate_popf() by Avi Kivity · 14 years ago
  92. bcc55cb KVM: x86 emulator: make emulator memory callbacks return full exception by Avi Kivity · 14 years ago
  93. da9cb57 KVM: x86 emulator: introduce struct x86_exception to communicate faults by Avi Kivity · 14 years ago
  94. 30b31ab KVM: x86 emulator: do not perform address calculations on linear addresses by Avi Kivity · 14 years ago
  95. 90de84f KVM: x86 emulator: preserve an operand's segment identity by Avi Kivity · 14 years ago
  96. d53db5e KVM: x86 emulator: drop DPRINTF() by Avi Kivity · 14 years ago
  97. 8a6bcaa KVM: x86 emulator: drop unused #ifndef __KERNEL__ by Avi Kivity · 14 years ago
  98. 9611c18 KVM: fix typo in copyright notice by Nicolas Kaiser · 14 years ago
  99. 7129eec KVM: x86 emulator: Eliminate compilation warning in x86_decode_insn() by Sheng Yang · 14 years ago
  100. d47f00a KVM: X86: Propagate fetch faults by Joerg Roedel · 14 years ago