Searched defs:newLIR (Results 1 - 1 of 1) sorted by relevance

/dalvik/vm/compiler/
H A DIntermediateRep.c96 * prevLIR <-> newLIR <-> currentLIR
98 void dvmCompilerInsertLIRBefore(LIR *currentLIR, LIR *newLIR) argument
103 prevLIR->next = newLIR;
104 newLIR->prev = prevLIR;
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
[all...]

Completed in 54 milliseconds