HomeSort by relevance Sort by last modified time
    Searched refs:nextLIR (Results 1 - 2 of 2) sorted by null

  /dalvik/vm/compiler/codegen/arm/
GlobalOptimizations.cpp 35 ArmLIR *nextLIR = thisLIR;
38 nextLIR = NEXT_LIR(nextLIR);
43 if (nextLIR == (ArmLIR *) thisLIR->generic.target) {
54 if (!isPseudoOpcode(nextLIR->opcode) ||
55 (nextLIR = (ArmLIR *) cUnit->lastLIRInsn))
  /dalvik/vm/compiler/codegen/mips/
GlobalOptimizations.cpp 35 MipsLIR *nextLIR = thisLIR;
38 nextLIR = NEXT_LIR(nextLIR);
43 if (nextLIR == (MipsLIR *) thisLIR->generic.target) {
54 if (!isPseudoOpCode(nextLIR->opcode) ||
55 (nextLIR = (MipsLIR *) cUnit->lastLIRInsn))
81 MipsLIR *nextLIR;
84 for (nextLIR = (MipsLIR *) NEXT_LIR(thisLIR);
85 nextLIR != (MipsLIR *) cUnit->lastLIRInsn;
86 nextLIR = NEXT_LIR(nextLIR))
    [all...]

Completed in 413 milliseconds