Home
last modified time | relevance | path

Searched refs:cmov (Results 1 – 4 of 4) sorted by relevance

/art/compiler/utils/x86_64/
Dassembler_x86_64.h389 void cmov(Condition c, CpuRegister dst, CpuRegister src); // This is the 64b version.
390 void cmov(Condition c, CpuRegister dst, CpuRegister src, bool is64bit);
391 void cmov(Condition c, CpuRegister dst, const Address& src, bool is64bit);
Dassembler_x86_64.cc241 void X86_64Assembler::cmov(Condition c, CpuRegister dst, CpuRegister src) { in cmov() function in art::x86_64::X86_64Assembler
242 cmov(c, dst, src, true); in cmov()
245 void X86_64Assembler::cmov(Condition c, CpuRegister dst, CpuRegister src, bool is64bit) { in cmov() function in art::x86_64::X86_64Assembler
254 void X86_64Assembler::cmov(Condition c, CpuRegister dst, const Address& src, bool is64bit) { in cmov() function in art::x86_64::X86_64Assembler
/art/compiler/optimizing/
Dintrinsics_x86_64.cc494 __ cmov(is_min ? Condition::kGreater : Condition::kLess, out, op2, is_long); in GenMinMax() local
1752 __ cmov(kGreater, counter, start_index, /* is64bit */ false); // 32-bit copy is enough. in GenerateStringIndexOf() local
Dcode_generator_x86_64.cc1838 __ cmov(cond, value_false, value_true_loc.AsRegister<CpuRegister>(), is_64_bit); in VisitSelect() local
1840 __ cmov(cond, in VisitSelect() local
3494 __ cmov(kGreaterEqual, tmp, numerator); in DivByPowerOfTwo() local
3510 __ cmov(kGreaterEqual, rdx, numerator); in DivByPowerOfTwo() local