Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dcritical_native_abi_fixup_arm.cc46 bool is_double = (input_type == DataType::Type::kFloat64); in FixUpArguments() local
47 DataType::Type converted_type = is_double ? DataType::Type::kInt64 : DataType::Type::kInt32; in FixUpArguments()
48 jmethodID known_method = is_double ? WellKnownClasses::java_lang_Double_doubleToRawLongBits in FixUpArguments()
Dcode_generator_x86.h343 void GenerateFPCompare(Location lhs, Location rhs, HInstruction* insn, bool is_double);
Dintrinsics_arm64.cc548 static void GenMathRound(HInvoke* invoke, bool is_double, vixl::aarch64::MacroAssembler* masm) { in GenMathRound() argument
563 VRegister in_reg = is_double ? DRegisterFrom(l->InAt(0)) : SRegisterFrom(l->InAt(0)); in GenMathRound()
564 VRegister tmp_fp = is_double ? DRegisterFrom(l->GetTemp(0)) : SRegisterFrom(l->GetTemp(0)); in GenMathRound()
565 Register out_reg = is_double ? XRegisterFrom(l->Out()) : WRegisterFrom(l->Out()); in GenMathRound()
Dcode_generator_x86.cc1797 bool is_double) { in GenerateFPCompare() argument
1799 if (is_double) { in GenerateFPCompare()