Home
last modified time | relevance | path

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

/external/r8/src/main/java/com/android/tools/r8/ir/regalloc/
DLiveIntervals.java7 import static com.android.tools.r8.ir.regalloc.LinearScanRegisterAllocator.NO_REGISTER;
28 private int register = NO_REGISTER;
38 private int maxNonSpilledRegister = NO_REGISTER;
244 assert register == NO_REGISTER || register == n; in setRegister()
250 assert maxNonSpilledRegister == NO_REGISTER; in computeMaxNonSpilledRegister() local
268 if (splitParent.maxNonSpilledRegister != NO_REGISTER) { in getMaxNonSpilledRegister()
282 register = NO_REGISTER; in clearRegisterAssignment()
345 register = NO_REGISTER; in splitBefore()
DRegisterMoveScheduler.java43 if (move.src != LinearScanRegisterAllocator.NO_REGISTER) { in addMove()
73 if (move.src != LinearScanRegisterAllocator.NO_REGISTER) { in schedule()
103 assert src != LinearScanRegisterAllocator.NO_REGISTER; in findMovesWithSrc()
105 if (move.src == LinearScanRegisterAllocator.NO_REGISTER) { in findMovesWithSrc()
DSpillMove.java23 assert to.getRegister() != LinearScanRegisterAllocator.NO_REGISTER; in SpillMove()
24 assert from.getRegister() != LinearScanRegisterAllocator.NO_REGISTER; in SpillMove()
DRegisterMove.java27 this.src = LinearScanRegisterAllocator.NO_REGISTER; in RegisterMove()
43 if (move.src == LinearScanRegisterAllocator.NO_REGISTER) { in isBlocked()
DLinearScanRegisterAllocator.java70 public static final int NO_REGISTER = Integer.MIN_VALUE; field in LinearScanRegisterAllocator
145 private int firstParallelMoveTemporary = NO_REGISTER;
570 assert allocated != NO_REGISTER; in unadjustedRealRegisterFromAllocated() local
604 assert argumentInterval.getRegister() != NO_REGISTER; in performLinearScan()
644 int moveExceptionRegister = NO_REGISTER; in performLinearScan()
654 if (moveExceptionRegister == NO_REGISTER) { in performLinearScan()
688 if (unhandledInterval.getRegister() != NO_REGISTER) { in performLinearScan()
703 assert activeIntervals.getRegister() != NO_REGISTER; in performLinearScan()
717 assert inactiveIntervals.getRegister() != NO_REGISTER; in performLinearScan()
753 if (destIntervals.getRegister() == NO_REGISTER) { in allocateArgumentIntervalsWithSrc()
[all …]