Searched refs:newLIR (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
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) argument
120 newLIR->prev = currentLIR;
121 newLIR
[all...]
H A DCompilerIR.h299 void dvmCompilerInsertLIRBefore(LIR *currentLIR, LIR *newLIR);
301 void dvmCompilerInsertLIRAfter(LIR *currentLIR, LIR *newLIR);
/dalvik/vm/compiler/codegen/mips/
H A DGlobalOptimizations.cpp261 MipsLIR *newLIR = (MipsLIR *) dvmCompilerNew(sizeof(MipsLIR), true); local
294 *newLIR = *thisLIR;
296 return newLIR; /* move into delay slot succeeded */
321 *newLIR = *targetLIR;
323 return newLIR;
353 *newLIR = *targetLIR;
355 return newLIR;
362 newLIR->opcode = kMipsPref;
363 newLIR->operands[0] = isLoad ? 0 : 1;
364 newLIR
[all...]

Completed in 132 milliseconds