Searched defs:thisLIR (Results 1 - 6 of 6) 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...]
/dalvik/vm/compiler/codegen/mips/
H A DGlobalOptimizations.cpp27 MipsLIR *thisLIR; local
29 for (thisLIR = (MipsLIR *) cUnit->firstLIRInsn;
30 thisLIR != (MipsLIR *) cUnit->lastLIRInsn;
31 thisLIR = NEXT_LIR(thisLIR)) {
34 if (!thisLIR->flags.isNop && thisLIR->opcode == kMipsB) {
35 MipsLIR *nextLIR = thisLIR;
43 if (nextLIR == (MipsLIR *) thisLIR->generic.target) {
44 thisLIR
67 MipsLIR *thisLIR; local
190 MipsLIR *thisLIR; local
260 MipsLIR *thisLIR; local
386 MipsLIR *thisLIR; local
[all...]
H A DLocalOptimizations.cpp45 static void dumpDependentInsnPair(MipsLIR *thisLIR, MipsLIR *checkLIR,
49 dvmDumpLIRInsn((LIR *) thisLIR, 0);
65 * thisLIR).
92 MipsLIR *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 MipsLIR *thisLIR, *checkLIR; local
[all...]
H A DCodegenDriver.cpp312 MipsLIR *thisLIR; local
315 for (thisLIR = (MipsLIR *) cUnit->firstLIRInsn;
316 thisLIR != (MipsLIR *) cUnit->lastLIRInsn;
317 thisLIR = NEXT_LIR(thisLIR)) {
318 if (!thisLIR->flags.isNop && thisLIR->flags.insertWrapper) {
328 genSelfVerificationPreBranch(cUnit, thisLIR);
332 selfVerificationBranchInsert((LIR *) thisLIR, kThumbBlx1,
335 selfVerificationBranchInsert((LIR *) thisLIR, kThumbBlx
[all...]

Completed in 1104 milliseconds