Home
last modified time | relevance | path

Searched refs:op1 (Results 1 – 5 of 5) sorted by relevance

/art/runtime/arch/mips64/
Dentrypoints_init_mips64.cc78 extern "C" int32_t __fixsfsi(float op1); // FLOAT_TO_INT
79 extern "C" int32_t __fixdfsi(double op1); // DOUBLE_TO_INT
80 extern "C" float __floatdisf(int64_t op1); // LONG_TO_FLOAT
81 extern "C" double __floatdidf(int64_t op1); // LONG_TO_DOUBLE
82 extern "C" int64_t __fixsfdi(float op1); // FLOAT_TO_LONG
83 extern "C" int64_t __fixdfdi(double op1); // DOUBLE_TO_LONG
/art/compiler/optimizing/
Dcodegen_test.cc624 HInstruction* op1; in TestComparison() local
627 op1 = graph->GetIntConstant(i); in TestComparison()
631 op1 = graph->GetLongConstant(i); in TestComparison()
641 comparison = new (GetAllocator()) HEqual(op1, op2); in TestComparison()
645 comparison = new (GetAllocator()) HNotEqual(op1, op2); in TestComparison()
649 comparison = new (GetAllocator()) HLessThan(op1, op2); in TestComparison()
653 comparison = new (GetAllocator()) HLessThanOrEqual(op1, op2); in TestComparison()
657 comparison = new (GetAllocator()) HGreaterThan(op1, op2); in TestComparison()
661 comparison = new (GetAllocator()) HGreaterThanOrEqual(op1, op2); in TestComparison()
665 comparison = new (GetAllocator()) HBelow(op1, op2); in TestComparison()
[all …]
Dintrinsics_arm_vixl.cc524 vixl32::SRegister op1 = SRegisterFrom(op1_loc); in GenMinMaxFloat() local
533 DCHECK(op1.Is(out)); in GenMinMaxFloat()
535 __ Vcmp(op1, op2); in GenMinMaxFloat()
552 __ Vmov(temp1, op1); in GenMinMaxFloat()
610 vixl32::DRegister op1 = DRegisterFrom(op1_loc); in GenMinMaxDouble() local
616 DCHECK(op1.Is(out)); in GenMinMaxDouble()
618 __ Vcmp(op1, op2); in GenMinMaxDouble()
636 __ Vand(F64, out, op1, op2); in GenMinMaxDouble()
642 __ Vorr(F64, out, op1, op2); // assemble op1/-0.0/NaN. in GenMinMaxDouble()
729 vixl32::Register op1 = InputRegisterAt(invoke, 0); in GenMinMax() local
[all …]
Dintrinsics_arm64.cc598 Location op1 = locations->InAt(0); in GenMinMaxFP() local
602 FPRegister op1_reg = is_double ? DRegisterFrom(op1) : SRegisterFrom(op1); in GenMinMaxFP()
657 Location op1 = locations->InAt(0); in GenMinMax() local
661 Register op1_reg = is_long ? XRegisterFrom(op1) : WRegisterFrom(op1); in GenMinMax()
/art/runtime/arch/mips/
Dentrypoints_init_mips.cc79 extern "C" int32_t __fixsfsi(float op1); // FLOAT_TO_INT
80 extern "C" int32_t __fixdfsi(double op1); // DOUBLE_TO_INT
81 extern "C" float __floatdisf(int64_t op1); // LONG_TO_FLOAT
82 extern "C" double __floatdidf(int64_t op1); // LONG_TO_DOUBLE
83 extern "C" int64_t __fixsfdi(float op1); // FLOAT_TO_LONG
84 extern "C" int64_t __fixdfdi(double op1); // DOUBLE_TO_LONG