Home
last modified time | relevance | path

Searched refs:instructions_to_move_sorted (Results 1 – 1 of 1) sorted by relevance

/aosp_15_r20/art/compiler/optimizing/
H A Dcode_sinking.cc502 ScopedArenaVector<HInstruction*> instructions_to_move_sorted(allocator.Adapter(kArenaAllocMisc)); in SinkCodeToUncommonBranch() local
514 instructions_to_move_sorted.push_back(instruction); in SinkCodeToUncommonBranch()
521 for (size_t i = 0; i < instructions_to_move_sorted.size(); ++i) { in SinkCodeToUncommonBranch()
522 for (size_t j = i + 1; j < instructions_to_move_sorted.size(); ++j) { in SinkCodeToUncommonBranch()
523 if (instructions_to_move_sorted[i]->StrictlyDominates(instructions_to_move_sorted[j])) { in SinkCodeToUncommonBranch()
528 for (HInstruction* instr : instructions_to_move_sorted) { in SinkCodeToUncommonBranch()
532 ss << "i = " << i << " which is " << *instructions_to_move_sorted[i] in SinkCodeToUncommonBranch()
533 << "strictly dominates j = " << j << " which is " << *instructions_to_move_sorted[j] in SinkCodeToUncommonBranch()
542 for (HInstruction* instruction : instructions_to_move_sorted) { in SinkCodeToUncommonBranch()