Searched refs:op2 (Results 1 – 2 of 2) sorted by relevance
/art/compiler/optimizing/ |
D | codegen_test.cc | 630 HInstruction* op2; in TestComparison() local 633 op2 = graph->GetIntConstant(j); in TestComparison() 637 op2 = graph->GetLongConstant(j); in TestComparison() 646 comparison = new (GetAllocator()) HEqual(op1, op2); in TestComparison() 650 comparison = new (GetAllocator()) HNotEqual(op1, op2); in TestComparison() 654 comparison = new (GetAllocator()) HLessThan(op1, op2); in TestComparison() 658 comparison = new (GetAllocator()) HLessThanOrEqual(op1, op2); in TestComparison() 662 comparison = new (GetAllocator()) HGreaterThan(op1, op2); in TestComparison() 666 comparison = new (GetAllocator()) HGreaterThanOrEqual(op1, op2); in TestComparison() 670 comparison = new (GetAllocator()) HBelow(op1, op2); in TestComparison() [all …]
|
D | code_generator_arm_vixl.cc | 4345 vixl32::Register op2 = RegisterFrom(op2_loc); in GenerateMinMaxInt() local 4348 __ Cmp(op1, op2); in GenerateMinMaxInt() 4357 __ mov(is_min ? ge : le, out, op2); in GenerateMinMaxInt() 4413 vixl32::SRegister op2 = SRegisterFrom(op2_loc); in GenerateMinMaxFloat() local 4424 __ Vcmp(op1, op2); in GenerateMinMaxFloat() 4435 __ vmov(cond, F32, out, op2); in GenerateMinMaxFloat() 4442 __ Vmov(temp2, op2); in GenerateMinMaxFloat() 4474 vixl32::DRegister op2 = DRegisterFrom(op2_loc); in GenerateMinMaxDouble() local 4481 __ Vcmp(op1, op2); in GenerateMinMaxDouble() 4492 __ vmov(cond, F64, out, op2); in GenerateMinMaxDouble() [all …]
|