Lines Matching refs:group_1_prefix_
294 group_1_prefix_(0), in DisassemblerX64()
322 byte group_1_prefix_; // 0xF2, 0xF3, or (if no group 1 prefix is present) 0. member in disasm::DisassemblerX64
1941 } else if (group_1_prefix_ == 0xF2) { in TwoByteOpcodeInstruction()
2030 } else if (group_1_prefix_ == 0xF3) { in TwoByteOpcodeInstruction()
2281 return (group_1_prefix_ == 0xF2) ? "cvtsi2sd" : "cvtsi2ss"; in TwoByteMnemonic()
2283 return (group_1_prefix_ == 0xF2) ? "sqrtsd" : "sqrtss"; in TwoByteMnemonic()
2285 return (group_1_prefix_ == 0xF2) ? "addsd" : "addss"; in TwoByteMnemonic()
2287 return (group_1_prefix_ == 0xF2) ? "mulsd" : "mulss"; in TwoByteMnemonic()
2289 return (group_1_prefix_ == 0xF2) ? "cvtsd2ss" : "cvtss2sd"; in TwoByteMnemonic()
2291 return (group_1_prefix_ == 0xF2) ? "minsd" : "minss"; in TwoByteMnemonic()
2293 return (group_1_prefix_ == 0xF2) ? "subsd" : "subss"; in TwoByteMnemonic()
2295 return (group_1_prefix_ == 0xF2) ? "divsd" : "divss"; in TwoByteMnemonic()
2297 return (group_1_prefix_ == 0xF2) ? "maxsd" : "maxss"; in TwoByteMnemonic()
2347 group_1_prefix_ = current; in InstructionDecode()
2380 if (group_1_prefix_ == REP_PREFIX) { in InstructionDecode()
2608 if (group_1_prefix_ == 0xF3 && *data == 0x90) { in InstructionDecode()