Home | History | Annotate | Download | only in compiler

Lines Matching refs:newLIR

99  * prevLIR <-> newLIR <-> currentLIR
101 void dvmCompilerInsertLIRBefore(LIR *currentLIR, LIR *newLIR)
106 prevLIR->next = newLIR;
107 newLIR->prev = prevLIR;
108 newLIR->next = currentLIR;
109 currentLIR->prev = newLIR;
116 * currentLIR -> newLIR -> oldNext
118 void dvmCompilerInsertLIRAfter(LIR *currentLIR, LIR *newLIR)
120 newLIR->prev = currentLIR;
121 newLIR->next = currentLIR->next;
122 currentLIR->next = newLIR;
123 newLIR->next->prev = newLIR;