Searched refs:currentLIR (Results 1 - 3 of 3) sorted by relevance

/dalvik/vm/compiler/
H A DIntermediateRep.cpp99 * prevLIR <-> newLIR <-> currentLIR
101 void dvmCompilerInsertLIRBefore(LIR *currentLIR, LIR *newLIR) argument
103 assert(currentLIR->prev != NULL);
104 LIR *prevLIR = currentLIR->prev;
108 newLIR->next = currentLIR;
109 currentLIR->prev = newLIR;
116 * currentLIR -> newLIR -> oldNext
118 void dvmCompilerInsertLIRAfter(LIR *currentLIR, LIR *newLIR) argument
120 newLIR->prev = currentLIR;
121 newLIR->next = currentLIR
[all...]
H A DCompilerIR.h293 void dvmCompilerInsertLIRBefore(LIR *currentLIR, LIR *newLIR);
295 void dvmCompilerInsertLIRAfter(LIR *currentLIR, LIR *newLIR);
/dalvik/vm/compiler/codegen/arm/
H A DCodegenDriver.cpp208 static void selfVerificationBranchInsert(LIR *currentLIR, ArmOpcode opcode, argument
216 dvmCompilerInsertLIRBefore(currentLIR, (LIR *) insn);

Completed in 222 milliseconds