Searched refs:thisLIR (Results 1 - 3 of 3) sorted by relevance

/dalvik/vm/compiler/codegen/arm/
H A DGlobalOptimizations.cpp27 ArmLIR *thisLIR; local
29 for (thisLIR = (ArmLIR *) cUnit->firstLIRInsn;
30 thisLIR != (ArmLIR *) cUnit->lastLIRInsn;
31 thisLIR = NEXT_LIR(thisLIR)) {
34 if (thisLIR->opcode == kThumbBUncond) {
35 ArmLIR *nextLIR = thisLIR;
43 if (nextLIR == (ArmLIR *) thisLIR->generic.target) {
44 thisLIR->flags.isNop = true;
H A DLocalOptimizations.cpp45 static void dumpDependentInsnPair(ArmLIR *thisLIR, ArmLIR *checkLIR,
49 dvmDumpLIRInsn((LIR *) thisLIR, 0);
65 * thisLIR).
92 ArmLIR *thisLIR; local
96 for (thisLIR = PREV_LIR(tailLIR);
97 thisLIR != headLIR;
98 thisLIR = PREV_LIR(thisLIR)) {
102 if ((thisLIR->flags.isNop == true) ||
103 isPseudoOpcode(thisLIR
275 ArmLIR *thisLIR, *checkLIR; local
[all...]
H A DCodegenDriver.cpp246 ArmLIR *thisLIR; local
249 for (thisLIR = (ArmLIR *) cUnit->firstLIRInsn;
250 thisLIR != (ArmLIR *) cUnit->lastLIRInsn;
251 thisLIR = NEXT_LIR(thisLIR)) {
252 if (!thisLIR->flags.isNop && thisLIR->flags.insertWrapper) {
262 genSelfVerificationPreBranch(cUnit, thisLIR);
266 selfVerificationBranchInsert((LIR *) thisLIR, kThumbBlx1,
269 selfVerificationBranchInsert((LIR *) thisLIR, kThumbBlx
[all...]

Completed in 170 milliseconds