Searched refs:cmov (Results 1 – 4 of 4) sorted by relevance
/art/compiler/utils/x86_64/ |
D | assembler_x86_64.h | 336 void cmov(Condition c, CpuRegister dst, CpuRegister src); // This is the 64b version. 337 void cmov(Condition c, CpuRegister dst, CpuRegister src, bool is64bit);
|
D | assembler_x86_64.cc | 198 void X86_64Assembler::cmov(Condition c, CpuRegister dst, CpuRegister src) { in cmov() function in art::x86_64::X86_64Assembler 199 cmov(c, dst, src, true); in cmov() 202 void X86_64Assembler::cmov(Condition c, CpuRegister dst, CpuRegister src, bool is64bit) { in cmov() function in art::x86_64::X86_64Assembler
|
/art/compiler/optimizing/ |
D | intrinsics_x86_64.cc | 544 __ cmov(is_min ? Condition::kGreater : Condition::kLess, out, op2, is_long); in GenMinMax() local 968 __ cmov(kGreater, counter, start_index, false); // 32-bit copy is enough. in GenerateStringIndexOf() local
|
D | code_generator_x86_64.cc | 2521 __ cmov(kGreaterEqual, tmp, numerator); in DivByPowerOfTwo() local 2537 __ cmov(kGreaterEqual, rdx, numerator); in DivByPowerOfTwo() local
|