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

  /dalvik/vm/compiler/codegen/arm/
GlobalOptimizations.cpp 27 ArmLIR *thisLIR;
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;
LocalOptimizations.cpp 45 static void dumpDependentInsnPair(ArmLIR *thisLIR, ArmLIR *checkLIR,
49 dvmDumpLIRInsn((LIR *) thisLIR, 0);
65 * thisLIR).
92 ArmLIR *thisLIR;
96 for (thisLIR = PREV_LIR(tailLIR);
97 thisLIR != headLIR;
98 thisLIR = PREV_LIR(thisLIR)) {
102 if ((thisLIR->flags.isNop == true) ||
103 isPseudoOpcode(thisLIR->opcode) |
    [all...]
CodegenDriver.cpp 246 ArmLIR *thisLIR;
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, kThumbBlx2
    [all...]
  /dalvik/vm/compiler/codegen/mips/
GlobalOptimizations.cpp 27 MipsLIR *thisLIR;
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->flags.isNop = true
    [all...]
LocalOptimizations.cpp 45 static void dumpDependentInsnPair(MipsLIR *thisLIR, MipsLIR *checkLIR,
49 dvmDumpLIRInsn((LIR *) thisLIR, 0);
65 * thisLIR).
92 MipsLIR *thisLIR;
96 for (thisLIR = PREV_LIR(tailLIR);
97 thisLIR != headLIR;
98 thisLIR = PREV_LIR(thisLIR)) {
102 if ((thisLIR->flags.isNop == true) ||
103 isPseudoOpCode(thisLIR->opcode) |
    [all...]
CodegenDriver.cpp 312 MipsLIR *thisLIR;
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, kThumbBlx2
    [all...]

Completed in 496 milliseconds