HomeSort by relevance Sort by last modified time
    Searched refs:newLIR (Results 1 - 3 of 3) sorted by null

  /dalvik/vm/compiler/
IntermediateRep.cpp 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
    [all...]
CompilerIR.h 299 void dvmCompilerInsertLIRBefore(LIR *currentLIR, LIR *newLIR);
301 void dvmCompilerInsertLIRAfter(LIR *currentLIR, LIR *newLIR);
  /dalvik/vm/compiler/codegen/mips/
GlobalOptimizations.cpp 261 MipsLIR *newLIR = (MipsLIR *) dvmCompilerNew(sizeof(MipsLIR), true);
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->operands[1] = nextLIR->operands[1]
    [all...]

Completed in 64 milliseconds