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

  /dalvik/vm/compiler/codegen/arm/
GlobalOptimizations.cpp 31 thisLIR = NEXT_LIR(thisLIR)) {
38 nextLIR = NEXT_LIR(nextLIR);
LocalOptimizations.cpp 130 for (checkLIR = NEXT_LIR(thisLIR);
132 checkLIR = NEXT_LIR(checkLIR)) {
286 for (thisLIR = NEXT_LIR(headLIR);
288 thisLIR = NEXT_LIR(thisLIR)) {
Assemble.cpp     [all...]
ArchUtility.cpp 205 int offset_2 = NEXT_LIR(lir)->operands[0];
ArmLIR.h     [all...]
CodegenDriver.cpp 251 thisLIR = NEXT_LIR(thisLIR)) {
    [all...]
  /dalvik/vm/compiler/codegen/mips/
GlobalOptimizations.cpp 31 thisLIR = NEXT_LIR(thisLIR)) {
38 nextLIR = NEXT_LIR(nextLIR);
72 thisLIR = NEXT_LIR(thisLIR)) {
84 for (nextLIR = (MipsLIR *) NEXT_LIR(thisLIR);
86 nextLIR = NEXT_LIR(nextLIR)) {
194 thisLIR = NEXT_LIR(thisLIR)) {
313 targetLIR = NEXT_LIR(targetLIR)) {
322 branchLIR->generic.target = (LIR *) NEXT_LIR(targetLIR);
331 targetLIR = NEXT_LIR(targetLIR)) {
337 for (nextLIR = NEXT_LIR(branchLIR)
    [all...]
LocalOptimizations.cpp 130 for (checkLIR = NEXT_LIR(thisLIR);
132 checkLIR = NEXT_LIR(checkLIR)) {
286 for (thisLIR = NEXT_LIR(headLIR);
288 thisLIR = NEXT_LIR(thisLIR)) {
ArchUtility.cpp 128 int offset_2 = NEXT_LIR(lir)->operands[0];
Assemble.cpp 421 dataLIR = NEXT_LIR(dataLIR);
426 dataLIR = NEXT_LIR(dataLIR);
442 for (lir = (MipsLIR *) cUnit->firstLIRInsn; lir; lir = NEXT_LIR(lir)) {
    [all...]
MipsLIR.h 628 #define NEXT_LIR(lir) ((MipsLIR *) lir->generic.next)
CodegenDriver.cpp 317 thisLIR = NEXT_LIR(thisLIR)) {
    [all...]
  /art/compiler/dex/quick/
local_optimizations.cc 134 for (check_lir = NEXT_LIR(this_lir); check_lir != tail_lir; check_lir = NEXT_LIR(check_lir)) {
288 for (this_lir = NEXT_LIR(head_lir); this_lir != tail_lir; this_lir = NEXT_LIR(this_lir)) {
479 for (this_lir = first_lir_insn_; this_lir != last_lir_insn_; this_lir = NEXT_LIR(this_lir)) {
482 LIR* next_lir = this_lir; local
485 next_lir = NEXT_LIR(next_lir);
490 if (next_lir == this_lir->target)
    [all...]
codegen_util.cc 358 data_lir = NEXT_LIR(data_lir);
375 data_lir = NEXT_LIR(data_lir);
391 data_lir = NEXT_LIR(data_lir);
510 for (LIR* tgt_lir = first_lir_insn_; tgt_lir != NULL; tgt_lir = NEXT_LIR(tgt_lir)) {
699 for (lir = first_lir_insn_; lir != NULL; lir = NEXT_LIR(lir)) {
    [all...]
mir_to_lir.h 139 #define NEXT_LIR(lir) (lir->next)
    [all...]
  /art/compiler/dex/quick/arm/
assemble_arm.cc     [all...]
target_arm.cc 408 int offset_2 = NEXT_LIR(lir)->operands[0];
  /art/compiler/dex/quick/mips/
target_mips.cc 213 int offset_2 = NEXT_LIR(lir)->operands[0];
assemble_mips.cc 519 for (lir = first_lir_insn_; lir != NULL; lir = NEXT_LIR(lir)) {
    [all...]
  /art/compiler/dex/quick/x86/
assemble_x86.cc     [all...]

Completed in 2696 milliseconds