Lines Matching refs:Mod
128 inline static unsigned char ModRMByte(unsigned Mod, unsigned RegOpcode,
130 assert(Mod < 4 && RegOpcode < 8 && RM < 8 && "ModRM Fields out of range!");
131 return RM | (RegOpcode << 3) | (Mod << 6);
415 // Since an immediate can follow the mod/rm byte for an instruction, this
553 // MOD=0, BASE=5, to JUST get the index, scale, and displacement.
590 else // Examples: [ESP+1*<noreg>+4] or [scaled idx]+disp32 (MOD=0,BASE=5)