Changeset 73027 in vbox
- Timestamp:
- Jul 10, 2018 10:04:51 AM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 123579
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAllCImpl.cpp.h
r72896 r73027 6196 6196 } 6197 6197 6198 /** @todo Implement RDPMC for the regular guest execution case (the above only 6199 * handles nested-guest intercepts). */ 6200 RT_NOREF(cbInstr); 6201 return VERR_IEM_INSTR_NOT_IMPLEMENTED; 6198 /** @todo Emulate performance counters, for now just return 0. */ 6199 pVCpu->cpum.GstCtx.rax = 0; 6200 pVCpu->cpum.GstCtx.rdx = 0; 6201 pVCpu->cpum.GstCtx.fExtrn &= ~(CPUMCTX_EXTRN_RAX | CPUMCTX_EXTRN_RDX); 6202 /** @todo We should trigger a \#GP here if the CPU doesn't support the index in 6203 * ecx but see @bugref{3472}! */ 6204 6205 iemRegAddToRipAndClearRF(pVCpu, cbInstr); 6206 return VINF_SUCCESS; 6202 6207 } 6203 6208
Note:
See TracChangeset
for help on using the changeset viewer.