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

/dalvik/vm/compiler/
H A DIntermediateRep.c96 * prevLIR <-> newLIR <-> currentLIR
98 void dvmCompilerInsertLIRBefore(LIR *currentLIR, LIR *newLIR) argument
100 assert(currentLIR->prev != NULL);
101 LIR *prevLIR = currentLIR->prev;
105 newLIR->next = currentLIR;
106 currentLIR->prev = newLIR;
113 * currentLIR -> newLIR -> oldNext
115 void dvmCompilerInsertLIRAfter(LIR *currentLIR, LIR *newLIR) argument
117 newLIR->prev = currentLIR;
118 newLIR->next = currentLIR
[all...]
H A DCompilerIR.h234 void dvmCompilerInsertLIRBefore(LIR *currentLIR, LIR *newLIR);
236 void dvmCompilerInsertLIRAfter(LIR *currentLIR, LIR *newLIR);
/dalvik/vm/compiler/codegen/arm/
H A DCodegenDriver.c206 static void selfVerificationBranchInsert(LIR *currentLIR, ArmOpCode opCode, argument
214 dvmCompilerInsertLIRBefore(currentLIR, (LIR *) insn);

Completed in 3861 milliseconds