Home
last modified time | relevance | path

Searched refs:identicalAfterRegisterAllocation (Results 1 – 8 of 8) sorted by relevance

/external/r8/src/main/java/com/android/tools/r8/ir/code/
DArrayLength.java58 public boolean identicalAfterRegisterAllocation(Instruction other, RegisterAllocator allocator) { in identicalAfterRegisterAllocation() method in ArrayLength
59 if (super.identicalAfterRegisterAllocation(other, allocator)) { in identicalAfterRegisterAllocation()
DInstruction.java224 private boolean identicalAfterRegisterAllocation( in identicalAfterRegisterAllocation() method in Instruction
246 public boolean identicalAfterRegisterAllocation(Instruction other, RegisterAllocator allocator) { in identicalAfterRegisterAllocation() method in Instruction
260 if (!identicalAfterRegisterAllocation( in identicalAfterRegisterAllocation()
274 if (!identicalAfterRegisterAllocation(in0, getNumber(), in1, other.getNumber(), allocator)) { in identicalAfterRegisterAllocation()
DArrayGet.java75 public boolean identicalAfterRegisterAllocation(Instruction other, RegisterAllocator allocator) { in identicalAfterRegisterAllocation() method in ArrayGet
DArrayPut.java112 public boolean identicalAfterRegisterAllocation(Instruction other, RegisterAllocator allocator) { in identicalAfterRegisterAllocation() method in ArrayPut
/external/r8/src/main/java/com/android/tools/r8/ir/optimize/
DInstructionEquivalence.java20 return a.identicalAfterRegisterAllocation(b, allocator) in doEquivalent()
DBasicBlockInstructionsEquivalence.java32 if (!i0.identicalAfterRegisterAllocation(i1, allocator)) { in hasIdenticalInstructions()
DPeepholeOptimizer.java142 if (!i0.identicalAfterRegisterAllocation(i1, allocator)) { in sharedSuffixSizeExcludingExit()
/external/r8/src/test/java/com/android/tools/r8/ir/regalloc/
DIdenticalAfterRegisterAllocationTest.java68 assertFalse(add0.identicalAfterRegisterAllocation(add1, allocator)); in equalityOfConstantOperands()