Changeset 42373 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Jul 25, 2012 7:18:33 AM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 79455
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/HWACCM.cpp
r42186 r42373 1 1 /* $Id$ */ 2 2 /** @file 3 * HWACCM - Intel/AMD VM Hardware Support Manager 3 * HWACCM - Intel/AMD VM Hardware Support Manager. 4 4 */ 5 5 … … 73 73 EXIT_REASON(VMX_EXIT_HLT , 12, "Guest software attempted to execute HLT."), 74 74 EXIT_REASON(VMX_EXIT_INVD , 13, "Guest software attempted to execute INVD."), 75 EXIT_REASON(VMX_EXIT_INV PG , 14, "Guest software attempted to execute INVPG."),75 EXIT_REASON(VMX_EXIT_INVLPG , 14, "Guest software attempted to execute INVLPG."), 76 76 EXIT_REASON(VMX_EXIT_RDPMC , 15, "Guest software attempted to execute RDPMC."), 77 77 EXIT_REASON(VMX_EXIT_RDTSC , 16, "Guest software attempted to execute RDTSC."), … … 510 510 HWACCM_REG_COUNTER(&pVCpu->hwaccm.s.StatExitGuestXF, "/HWACCM/CPU%d/Exit/Trap/Gst/#XF"); 511 511 HWACCM_REG_COUNTER(&pVCpu->hwaccm.s.StatExitGuestXcpUnk, "/HWACCM/CPU%d/Exit/Trap/Gst/Other"); 512 HWACCM_REG_COUNTER(&pVCpu->hwaccm.s.StatExitInv pg,"/HWACCM/CPU%d/Exit/Instr/Invlpg");512 HWACCM_REG_COUNTER(&pVCpu->hwaccm.s.StatExitInvlpg, "/HWACCM/CPU%d/Exit/Instr/Invlpg"); 513 513 HWACCM_REG_COUNTER(&pVCpu->hwaccm.s.StatExitInvd, "/HWACCM/CPU%d/Exit/Instr/Invd"); 514 514 HWACCM_REG_COUNTER(&pVCpu->hwaccm.s.StatExitCpuid, "/HWACCM/CPU%d/Exit/Instr/Cpuid");
Note:
See TracChangeset
for help on using the changeset viewer.