Searched defs:getGRegCount (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/VMM/testcase/Instructions/
H A DInstructionTestGen.py381 def getGRegCount(self, cbEffBytes = 4): member in class:TargetEnv
391 iReg = randU16() % self.getGRegCount(cbEffBytes);
393 iReg = randU16() % self.getGRegCount(cbEffBytes);
788 oGen.iSibBaseReg = (oGen.iSibBaseReg + 1) % oGen.oTarget.getGRegCount(cAddrBits / 8);
794 oGen.iSibIndexReg = (oGen.iSibIndexReg + 1) % oGen.oTarget.getGRegCount(cAddrBits / 8);
837 oOp2Range = range(oGen.oTarget.getGRegCount(cbEffOp));
842 for iOp1 in range(oGen.oTarget.getGRegCount(cbEffOp)):
871 oGen.iModReg = (oGen.iModReg + 1) % oGen.oTarget.getGRegCount(cbEffOp);
879 oGen.iModRm = (oGen.iModRm + 1) % oGen.oTarget.getGRegCount(cAddrBits * 8);
1152 oOp2Range = range(oGen.oTarget.getGRegCount(cbEffO
[all...]

Completed in 48 milliseconds