Home
last modified time | relevance | path

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

/dalvik/vm/compiler/codegen/arm/
DGlobalOptimizations.c31 thisLIR = NEXT_LIR(thisLIR)) { in applyRedundantBranchElimination()
38 nextLIR = NEXT_LIR(nextLIR); in applyRedundantBranchElimination()
DLocalOptimizations.c56 thisLIR = NEXT_LIR(thisLIR)) { in applyLoadStoreElimination()
67 for (checkLIR = NEXT_LIR(thisLIR); in applyLoadStoreElimination()
69 checkLIR = NEXT_LIR(checkLIR)) { in applyLoadStoreElimination()
DAssemble.c507 dataLIR = NEXT_LIR(dataLIR); in installDataContent()
528 for (lir = (ArmLIR *) cUnit->firstLIRInsn; lir; lir = NEXT_LIR(lir)) { in assembleInstructions()
590 assert(NEXT_LIR(lir)->opCode == THUMB_BLX_2); in assembleInstructions()
603 NEXT_LIR(lir)->operands[0] = (delta>> 1) & 0x7ff; in assembleInstructions()
721 armLIR = NEXT_LIR(armLIR)) { in dvmCompilerAssembleLIR()
DArchUtility.c149 int offset_2 = NEXT_LIR(lir)->operands[0]; in buildInsnString()
DArmLIR.h387 #define NEXT_LIR(lir) ((ArmLIR *) lir->generic.next) macro