Home
last modified time | relevance | path

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

/art/test/1978-regular-obsolete-then-structural-obsolescence/
Dexpected.txt2 Not doing anything here - op1
3 Running after op1 using normal definition
10 Running after op1 using non-structural redefinition
16 Not doing anything here - op1
/art/compiler/optimizing/
Dcodegen_test.cc621 HInstruction* op1; in TestComparison() local
624 op1 = graph->GetIntConstant(i); in TestComparison()
628 op1 = graph->GetLongConstant(i); in TestComparison()
638 comparison = new (GetAllocator()) HEqual(op1, op2); in TestComparison()
642 comparison = new (GetAllocator()) HNotEqual(op1, op2); in TestComparison()
646 comparison = new (GetAllocator()) HLessThan(op1, op2); in TestComparison()
650 comparison = new (GetAllocator()) HLessThanOrEqual(op1, op2); in TestComparison()
654 comparison = new (GetAllocator()) HGreaterThan(op1, op2); in TestComparison()
658 comparison = new (GetAllocator()) HGreaterThanOrEqual(op1, op2); in TestComparison()
662 comparison = new (GetAllocator()) HBelow(op1, op2); in TestComparison()
[all …]
Dcode_generator_arm_vixl.cc4521 vixl32::Register op1 = RegisterFrom(op1_loc); in GenerateMinMaxInt() local
4525 __ Cmp(op1, op2); in GenerateMinMaxInt()
4533 __ mov(is_min ? lt : gt, out, op1); in GenerateMinMaxInt()
4589 vixl32::SRegister op1 = SRegisterFrom(op1_loc); in GenerateMinMaxFloat() local
4599 DCHECK(op1.Is(out)); in GenerateMinMaxFloat()
4601 __ Vcmp(op1, op2); in GenerateMinMaxFloat()
4618 __ Vmov(temp1, op1); in GenerateMinMaxFloat()
4650 vixl32::DRegister op1 = DRegisterFrom(op1_loc); in GenerateMinMaxDouble() local
4656 DCHECK(op1.Is(out)); in GenerateMinMaxDouble()
4658 __ Vcmp(op1, op2); in GenerateMinMaxDouble()
[all …]