Searched refs:iGReg (Results 1 - 5 of 5) sorted by relevance

/vbox/include/VBox/vmm/
H A Diem.h84 VMM_INT_DECL(VBOXSTRICTRC) IEMExecDecodedMovCRxWrite(PVMCPU pVCpu, uint8_t cbInstr, uint8_t iCrReg, uint8_t iGReg);
85 VMM_INT_DECL(VBOXSTRICTRC) IEMExecDecodedMovCRxRead(PVMCPU pVCpu, uint8_t cbInstr, uint8_t iGReg, uint8_t iCrReg);
/vbox/src/VBox/VMM/VMMAll/
H A DIEMAllCImpl.cpp.h4099 uint8_t, iGReg,
4116 *(uint16_t *)iemGRegRef(pIemCpu, iGReg) = offSeg;
4119 *(uint64_t *)iemGRegRef(pIemCpu, iGReg) = offSeg;
4122 *(uint64_t *)iemGRegRef(pIemCpu, iGReg) = offSeg;
4730 * @param iGReg The general register to store the CRx value in.
4733 IEM_CIMPL_DEF_2(iemCImpl_mov_Rd_Cd, uint8_t, iGReg, uint8_t, iCrReg)
4763 *(uint64_t *)iemGRegRef(pIemCpu, iGReg) = crX;
4765 *(uint64_t *)iemGRegRef(pIemCpu, iGReg) = (uint32_t)crX;
5079 * @param iGReg The general register to load the DRx value from.
5081 IEM_CIMPL_DEF_2(iemCImpl_mov_Cd_Rd, uint8_t, iCrReg, uint8_t, iGReg)
[all...]
H A DIEMAll.cpp11275 * @param iGReg The general purpose register number (source).
11279 VMM_INT_DECL(VBOXSTRICTRC) IEMExecDecodedMovCRxWrite(PVMCPU pVCpu, uint8_t cbInstr, uint8_t iCrReg, uint8_t iGReg)
11283 Assert(iGReg < 16);
11287 VBOXSTRICTRC rcStrict = IEM_CIMPL_CALL_2(iemCImpl_mov_Cd_Rd, iCrReg, iGReg);
11298 * @param iGReg The general purpose register number (destination).
11303 VMM_INT_DECL(VBOXSTRICTRC) IEMExecDecodedMovCRxRead(PVMCPU pVCpu, uint8_t cbInstr, uint8_t iGReg, uint8_t iCrReg)
11307 Assert(iGReg < 16);
11311 VBOXSTRICTRC rcStrict = IEM_CIMPL_CALL_2(iemCImpl_mov_Rd_Cd, iGReg, iCrReg);
H A DIEMAllInstructions.cpp.h5384 uint8_t const iGReg = ((bRm >> X86_MODRM_REG_SHIFT) & X86_MODRM_REG_SMASK) | pIemCpu->uRexReg; local
5393 IEM_MC_ARG_CONST(uint8_t, iGRegArg, /*=*/iGReg, 3);
5409 IEM_MC_ARG_CONST(uint8_t, iGRegArg, /*=*/iGReg, 3);
5425 IEM_MC_ARG_CONST(uint8_t, iGRegArg, /*=*/iGReg, 3);
/vbox/src/VBox/VMM/testcase/Instructions/
H A DInstructionTestGen.py411 def is8BitHighGReg(self, cbEffOp, iGReg):
415 if iGReg >= 16:
417 if iGReg >= 4 and not self.is64Bit():

Completed in 151 milliseconds