Home
last modified time | relevance | path

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

/art/compiler/dwarf/
Dheaders.h45 std::vector<uint8_t>* debug_frame) { in WriteDebugFrameCIE() argument
46 Writer<> writer(debug_frame); in WriteDebugFrameCIE()
82 std::vector<uint8_t>* debug_frame, in WriteDebugFrameFDE() argument
84 Writer<> writer(debug_frame); in WriteDebugFrameFDE()
Ddwarf_test.h71 RawSection debug_frame(".debug_frame", SHT_PROGBITS, 0, nullptr, 0, 8, 0); in Objdump()
89 debug_frame.SetBuffer(debug_frame_data_); in Objdump()
90 builder.RegisterSection(&debug_frame); in Objdump()
/art/compiler/
Delf_writer_quick.cc172 std::unique_ptr<RawSection> debug_frame(new RawSection( in Write() local
209 debug_frame->GetBuffer(), debug_frame->GetPatchLocations(), in Write()
211 builder->RegisterSection(debug_frame.get()); in Write()
212 EncodeOatPatches(*debug_frame->GetPatchLocations(), in Write()
Delf_writer_debug.cc172 std::vector<uint8_t>* debug_frame, in WriteCFISection() argument
181 size_t cie_offset = debug_frame->size(); in WriteCFISection()
182 WriteDebugFrameCIE(isa, address_type, format, debug_frame); in WriteCFISection()
187 address_to_fde_offset_map.emplace(mi.low_pc_, debug_frame->size()); in WriteCFISection()
190 opcodes, format, debug_frame, debug_frame_patches); in WriteCFISection()
208 const int32_t relative_eh_frame_begin = -static_cast<int32_t>(debug_frame->size()); in WriteCFISection()
Delf_writer_debug.h32 std::vector<uint8_t>* debug_frame,