Lines Matching refs:VEX_5M
646 uint8_t VEX_5M; in EmitVEXOpcodePrefix() local
649 case X86II::TB: VEX_5M = 0x1; break; // 0F in EmitVEXOpcodePrefix()
650 case X86II::T8: VEX_5M = 0x2; break; // 0F 38 in EmitVEXOpcodePrefix()
651 case X86II::TA: VEX_5M = 0x3; break; // 0F 3A in EmitVEXOpcodePrefix()
652 case X86II::XOP8: VEX_5M = 0x8; break; in EmitVEXOpcodePrefix()
653 case X86II::XOP9: VEX_5M = 0x9; break; in EmitVEXOpcodePrefix()
654 case X86II::XOPA: VEX_5M = 0xA; break; in EmitVEXOpcodePrefix()
909 if (Encoding == X86II::VEX && VEX_B && VEX_X && !VEX_W && (VEX_5M == 1)) { in EmitVEXOpcodePrefix()
917 EmitByte(VEX_R << 7 | VEX_X << 6 | VEX_B << 5 | VEX_5M, CurByte, OS); in EmitVEXOpcodePrefix()
926 assert((VEX_5M & 0x3) == VEX_5M in EmitVEXOpcodePrefix()
934 VEX_5M, CurByte, OS); in EmitVEXOpcodePrefix()