/art/compiler/utils/ |
D | assembler.cc | 62 AssemblerFixup* fixup = fixup_; in ProcessFixups() local 63 while (fixup != NULL) { in ProcessFixups() 64 fixup->Process(region, fixup->position()); in ProcessFixups() 65 fixup = fixup->previous(); in ProcessFixups()
|
D | assembler.h | 206 void EmitFixup(AssemblerFixup* fixup) { in EmitFixup() argument 207 fixup->set_previous(fixup_); in EmitFixup() 208 fixup->set_position(Size()); in EmitFixup() 209 fixup_ = fixup; in EmitFixup()
|
/art/compiler/dex/quick/arm/ |
D | assemble_arm.cc | 40 k3, k3s, k3e, flags, name, fmt, size, fixup) \ argument 42 {k3, k3s, k3e}}, opcode, flags, name, fmt, size, fixup} 1048 orig_lir->flags.fixup = kFixupNone; in ReplaceFixup() 1243 switch (static_cast<FixupKind>(lir->flags.fixup)) { in AssembleLIR() 1296 new_adr->flags.fixup = kFixupAdr; in AssembleLIR() 1367 new_inst->flags.fixup = kFixupCondBranch; in AssembleLIR() 1403 lir->flags.fixup = kFixupNone; in AssembleLIR() 1438 lir->flags.fixup = kFixupNone; in AssembleLIR() 1455 lir->flags.fixup = kFixupT2Branch; in AssembleLIR() 1465 lir->flags.fixup = kFixupNone; in AssembleLIR() [all …]
|
D | arm_lir.h | 590 FixupKind fixup; member
|
/art/compiler/dex/quick/arm64/ |
D | assemble_arm64.cc | 61 a3k, a3s, a3e, flags, name, fmt, fixup) \ argument 63 {a3k, a3s, a3e}}, opcode, flags, name, fmt, 4, fixup} 635 orig_lir->flags.fixup = kFixupNone; in ReplaceFixup() 852 switch (static_cast<FixupKind>(lir->flags.fixup)) { in AssembleLIR() 906 LOG(FATAL) << "Unexpected case " << lir->flags.fixup; in AssembleLIR() 967 if (lir->flags.fixup != kFixupNone) { in LinkFixupInsns() 970 lir->flags.fixup = EncodingMap[opcode].fixup; in LinkFixupInsns() 974 lir->flags.fixup = kFixupLabel; in LinkFixupInsns()
|
D | arm64_lir.h | 436 FixupKind fixup; member 452 uint32_t fixup;
|
/art/compiler/dex/quick/ |
D | mir_to_lir-inl.h | 167 lir->flags.fixup = kFixupLabel; in SetupResourceMasks() 176 lir->flags.fixup = kFixupLabel; in SetupResourceMasks()
|
D | codegen_util.cc | 544 DCHECK(tab_rec->anchor->flags.fixup != kFixupNone); in InstallSwitchTables() 839 new_label->flags.fixup = kFixupLabel; in InsertCaseLabel()
|
D | mir_to_lir.cc | 1125 block_label_list_[block_id].flags.fixup = kFixupLabel; in MethodBlockCodeGen()
|
D | mir_to_lir.h | 181 unsigned int fixup:8; // Fixup kind. member
|
/art/compiler/utils/x86/ |
D | assembler_x86.h | 579 inline void EmitFixup(AssemblerFixup* fixup); 613 inline void X86Assembler::EmitFixup(AssemblerFixup* fixup) { in EmitFixup() argument 614 buffer_.EmitFixup(fixup); in EmitFixup()
|
/art/compiler/utils/x86_64/ |
D | assembler_x86_64.h | 623 void EmitFixup(AssemblerFixup* fixup); 683 inline void X86_64Assembler::EmitFixup(AssemblerFixup* fixup) { in EmitFixup() argument 684 buffer_.EmitFixup(fixup); in EmitFixup()
|
/art/compiler/dex/quick/mips/ |
D | assemble_mips.cc | 529 if (lir->flags.fixup != kFixupNone) { in AssembleInstructions()
|
/art/compiler/dex/quick/x86/ |
D | utility_x86.cc | 594 res->flags.fixup = kFixupLoad; in LoadConstantWide()
|
D | assemble_x86.cc | 1612 if (lir->flags.fixup != kFixupNone) { in AssembleInstructions() 1716 if (lir->flags.fixup == kFixupLoad) { in AssembleInstructions()
|
D | target_x86.cc | 1824 load->flags.fixup = kFixupLoad; in AppendOpcodeWithConst()
|
D | int_x86.cc | 1093 res->flags.fixup = kFixupLoad; in OpPcRelLoad()
|