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

  /art/compiler/dex/quick/
local_optimizations.cc 148 void Mir2Lir::ApplyLoadStoreElimination(LIR* head_lir, LIR* tail_lir) {
152 if (head_lir == tail_lir) {
156 for (this_lir = head_lir; this_lir != tail_lir; this_lir = NEXT_LIR(this_lir)) {
319 void Mir2Lir::ApplyLoadHoisting(LIR* head_lir, LIR* tail_lir) {
328 if (head_lir == tail_lir) {
333 for (this_lir = NEXT_LIR(head_lir); this_lir != tail_lir; this_lir = NEXT_LIR(this_lir)) {
370 for (check_lir = PREV_LIR(this_lir); check_lir != head_lir; check_lir = PREV_LIR(check_lir)) {
428 * Reached the top - use head_lir as the dependent marker as all labels
432 prev_inst_list[next_slot++] = head_lir;
509 void Mir2Lir::ApplyLocalOptimizations(LIR* head_lir, LIR* tail_lir)
    [all...]
mir_to_lir.cc 1222 LIR* head_lir = nullptr; local
    [all...]
mir_to_lir.h 693 void ApplyLoadStoreElimination(LIR* head_lir, LIR* tail_lir);
694 void ApplyLoadHoisting(LIR* head_lir, LIR* tail_lir);
695 virtual void ApplyLocalOptimizations(LIR* head_lir, LIR* tail_lir);
    [all...]
  /art/compiler/dex/quick/arm/
codegen_arm.h 124 uint32_t LinkFixupInsns(LIR* head_lir, LIR* tail_lir, CodeOffset offset);
assemble_arm.cc     [all...]
  /art/compiler/dex/quick/arm64/
codegen_arm64.h 355 uint32_t LinkFixupInsns(LIR* head_lir, LIR* tail_lir, CodeOffset offset);
assemble_arm64.cc     [all...]

Completed in 194 milliseconds