Searched refs:new_lir (Results 1 - 6 of 6) sorted by relevance

/art/compiler/dex/quick/arm64/
H A Dassemble_arm64.cc663 // new_lir replaces orig_lir in the pcrel_fixup list.
664 void Arm64Mir2Lir::ReplaceFixup(LIR* prev_lir, LIR* orig_lir, LIR* new_lir) { argument
665 new_lir->u.a.pcrel_next = orig_lir->u.a.pcrel_next;
667 first_fixup_ = new_lir;
669 prev_lir->u.a.pcrel_next = new_lir;
674 // new_lir is inserted before orig_lir in the pcrel_fixup list.
675 void Arm64Mir2Lir::InsertFixupBefore(LIR* prev_lir, LIR* orig_lir, LIR* new_lir) { argument
676 new_lir->u.a.pcrel_next = orig_lir;
678 first_fixup_ = new_lir;
681 prev_lir->u.a.pcrel_next = new_lir;
986 LIR* new_lir = RawLIR(dalvik_offset, kA64B2ct, local
1040 LIR* new_lir = RawLIR(lir->dalvik_offset, kA64Nop0, 0, 0, 0, 0, 0, nullptr); local
[all...]
H A Dcodegen_arm64.h344 void ReplaceFixup(LIR* prev_lir, LIR* orig_lir, LIR* new_lir);
345 void InsertFixupBefore(LIR* prev_lir, LIR* orig_lir, LIR* new_lir);
/art/compiler/dex/quick/
H A Dcodegen_util.cc1220 * prev_lir <-> new_lir <-> current_lir
1222 void Mir2Lir::InsertLIRBefore(LIR* current_lir, LIR* new_lir) { argument
1226 prev_lir->next = new_lir;
1227 new_lir->prev = prev_lir;
1228 new_lir->next = current_lir;
1229 current_lir->prev = new_lir;
1236 * current_lir -> new_lir -> old_next
1238 void Mir2Lir::InsertLIRAfter(LIR* current_lir, LIR* new_lir) { argument
1239 new_lir->prev = current_lir;
1240 new_lir
[all...]
H A Dmir_to_lir.h617 void InsertLIRBefore(LIR* current_lir, LIR* new_lir);
618 void InsertLIRAfter(LIR* current_lir, LIR* new_lir);
/art/compiler/dex/quick/arm/
H A Dassemble_arm.cc1055 // new_lir replaces orig_lir in the pcrel_fixup list.
1056 void ArmMir2Lir::ReplaceFixup(LIR* prev_lir, LIR* orig_lir, LIR* new_lir) { argument
1057 new_lir->u.a.pcrel_next = orig_lir->u.a.pcrel_next;
1059 first_fixup_ = new_lir;
1061 prev_lir->u.a.pcrel_next = new_lir;
1066 // new_lir is inserted before orig_lir in the pcrel_fixup list.
1067 void ArmMir2Lir::InsertFixupBefore(LIR* prev_lir, LIR* orig_lir, LIR* new_lir) { argument
1068 new_lir->u.a.pcrel_next = orig_lir;
1070 first_fixup_ = new_lir;
1073 prev_lir->u.a.pcrel_next = new_lir;
[all...]
H A Dcodegen_arm.h290 void ReplaceFixup(LIR* prev_lir, LIR* orig_lir, LIR* new_lir);
291 void InsertFixupBefore(LIR* prev_lir, LIR* orig_lir, LIR* new_lir);

Completed in 1605 milliseconds