Home
last modified time | relevance | path

Searched refs:is64Bit (Results 1 – 3 of 3) sorted by relevance

/art/compiler/dex/quick/x86/
Dutility_x86.cc202 bool is64Bit = r_dest_src1.Is64Bit(); in OpRegReg() local
221 case kOpSub: opcode = is64Bit ? kX86Sub64RR : kX86Sub32RR; break; in OpRegReg()
222 case kOpSbc: opcode = is64Bit ? kX86Sbb64RR : kX86Sbb32RR; break; in OpRegReg()
223 case kOpLsl: opcode = is64Bit ? kX86Sal64RC : kX86Sal32RC; src2_must_be_cx = true; break; in OpRegReg()
224 case kOpLsr: opcode = is64Bit ? kX86Shr64RC : kX86Shr32RC; src2_must_be_cx = true; break; in OpRegReg()
225 case kOpAsr: opcode = is64Bit ? kX86Sar64RC : kX86Sar32RC; src2_must_be_cx = true; break; in OpRegReg()
226 case kOpMov: opcode = is64Bit ? kX86Mov64RR : kX86Mov32RR; break; in OpRegReg()
227 case kOpCmp: opcode = is64Bit ? kX86Cmp64RR : kX86Cmp32RR; break; in OpRegReg()
228 case kOpAdd: opcode = is64Bit ? kX86Add64RR : kX86Add32RR; break; in OpRegReg()
229 case kOpAdc: opcode = is64Bit ? kX86Adc64RR : kX86Adc32RR; break; in OpRegReg()
[all …]
Dint_x86.cc2730 bool is64Bit = cu_->target64; in GetOpcode() local
2736 return is64Bit ? kX86Add64MR : is_high_op ? kX86Adc32MR : kX86Add32MR; in GetOpcode()
2738 return is64Bit ? kX86Add64RM : is_high_op ? kX86Adc32RM : kX86Add32RM; in GetOpcode()
2740 return is64Bit ? kX86Add64RR : is_high_op ? kX86Adc32RR : kX86Add32RR; in GetOpcode()
2744 return is64Bit ? kX86Sub64MR : is_high_op ? kX86Sbb32MR : kX86Sub32MR; in GetOpcode()
2746 return is64Bit ? kX86Sub64RM : is_high_op ? kX86Sbb32RM : kX86Sub32RM; in GetOpcode()
2748 return is64Bit ? kX86Sub64RR : is_high_op ? kX86Sbb32RR : kX86Sub32RR; in GetOpcode()
2752 return is64Bit ? kX86And64MR : kX86And32MR; in GetOpcode()
2754 if (is64Bit) { in GetOpcode()
2761 return is64Bit ? kX86Or64MR : kX86Or32MR; in GetOpcode()
[all …]
/art/runtime/native/
Ddalvik_system_VMRuntime.cc625 NATIVE_METHOD(VMRuntime, is64Bit, "!()Z"),