Searched refs:currentLIR (Results 1 – 4 of 4) sorted by relevance
/dalvik/vm/compiler/ |
D | IntermediateRep.cpp | 101 void dvmCompilerInsertLIRBefore(LIR *currentLIR, LIR *newLIR) in dvmCompilerInsertLIRBefore() argument 103 assert(currentLIR->prev != NULL); in dvmCompilerInsertLIRBefore() 104 LIR *prevLIR = currentLIR->prev; in dvmCompilerInsertLIRBefore() 108 newLIR->next = currentLIR; in dvmCompilerInsertLIRBefore() 109 currentLIR->prev = newLIR; in dvmCompilerInsertLIRBefore() 118 void dvmCompilerInsertLIRAfter(LIR *currentLIR, LIR *newLIR) in dvmCompilerInsertLIRAfter() argument 120 newLIR->prev = currentLIR; in dvmCompilerInsertLIRAfter() 121 newLIR->next = currentLIR->next; in dvmCompilerInsertLIRAfter() 122 currentLIR->next = newLIR; in dvmCompilerInsertLIRAfter()
|
D | CompilerIR.h | 299 void dvmCompilerInsertLIRBefore(LIR *currentLIR, LIR *newLIR); 301 void dvmCompilerInsertLIRAfter(LIR *currentLIR, LIR *newLIR);
|
/dalvik/vm/compiler/codegen/arm/ |
D | CodegenDriver.cpp | 208 static void selfVerificationBranchInsert(LIR *currentLIR, ArmOpcode opcode, in selfVerificationBranchInsert() argument 216 dvmCompilerInsertLIRBefore(currentLIR, (LIR *) insn); in selfVerificationBranchInsert()
|
/dalvik/vm/compiler/codegen/mips/ |
D | CodegenDriver.cpp | 272 static void selfVerificationBranchInsert(LIR *currentLIR, Mipsopcode opcode, in selfVerificationBranchInsert() argument 281 dvmCompilerInsertLIRBefore(currentLIR, (LIR *) insn); in selfVerificationBranchInsert()
|