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

  /dalvik/vm/compiler/codegen/arm/
LocalOptimizations.cpp 96 for (thisLIR = PREV_LIR(tailLIR);
98 thisLIR = PREV_LIR(thisLIR)) {
317 for (checkLIR = PREV_LIR(thisLIR);
319 checkLIR = PREV_LIR(checkLIR)) {
ArmLIR.h     [all...]
  /dalvik/vm/compiler/codegen/mips/
LocalOptimizations.cpp 96 for (thisLIR = PREV_LIR(tailLIR);
98 thisLIR = PREV_LIR(thisLIR)) {
317 for (checkLIR = PREV_LIR(thisLIR);
319 checkLIR = PREV_LIR(checkLIR)) {
GlobalOptimizations.cpp 263 for (thisLIR = PREV_LIR(branchLIR);
265 thisLIR = PREV_LIR(thisLIR)) {
390 for (thisLIR = lastLIR; thisLIR != firstLIR; thisLIR = PREV_LIR(thisLIR)) {
MipsLIR.h 629 #define PREV_LIR(lir) ((MipsLIR *) lir->generic.prev)
  /art/compiler/dex/quick/
local_optimizations.cc 80 for (this_lir = PREV_LIR(tail_lir); this_lir != head_lir; this_lir = PREV_LIR(this_lir)) {
244 check_lir = PREV_LIR(check_lir);
323 for (check_lir = PREV_LIR(this_lir); check_lir != head_lir; check_lir = PREV_LIR(check_lir)) {
407 LIR* prev_lir = prev_inst_list[slot+1]; local
410 if (prev_lir->def_mask == ENCODE_ALL) {
428 if ((prev_lir->opcode == kPseudoTargetLabel) ||
429 (prev_lir->opcode == kPseudoSafepointPC) ||
430 (prev_lir->opcode == kPseudoBarrier))
    [all...]
mir_to_lir.h 140 #define PREV_LIR(lir) (lir->prev)
    [all...]

Completed in 35 milliseconds