Home
last modified time | relevance | path

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

/art/runtime/
Delf_file.cc1286 static bool FixupEHFrame(uintptr_t text_start, byte* eh_frame, size_t eh_frame_size) { in FixupEHFrame() argument
1287 FDE* last_frame = reinterpret_cast<FDE*>(eh_frame + eh_frame_size); in FixupEHFrame()
1288 FDE* frame = NextFDE(reinterpret_cast<FDE*>(eh_frame)); in FixupEHFrame()
1545 byte* eh_frame, size_t eh_frame_size) { in FixupDebugSections() argument
1557 && FixupEHFrame(text_start, eh_frame, eh_frame_size); in FixupDebugSections()
1578 const Elf32_Shdr* eh_frame = all.FindSectionByName(".eh_frame"); in GdbJITSupport() local
1583 if (debug_info == nullptr || debug_abbrev == nullptr || eh_frame == nullptr || in GdbJITSupport()
1604 all.Begin() + eh_frame->sh_offset, eh_frame->sh_size)) { in GdbJITSupport()
/art/compiler/
Delf_writer_quick.cc932 ElfRawSectionBuilder eh_frame(".eh_frame", SHT_PROGBITS, SHF_ALLOC, nullptr, 0, 4, 0); in Write() local
933 eh_frame.SetBuffer(*compiler_driver_->GetCallFrameInformation()); in Write()
939 builder.RegisterRawSection(eh_frame); in Write()