Home
last modified time | relevance | path

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

/art/runtime/
Delf_file.cc1315 static bool FixupEHFrame(uintptr_t text_start, byte* eh_frame, size_t eh_frame_size) { in FixupEHFrame() argument
1316 FDE* last_frame = reinterpret_cast<FDE*>(eh_frame + eh_frame_size); in FixupEHFrame()
1317 FDE* frame = NextFDE(reinterpret_cast<FDE*>(eh_frame)); in FixupEHFrame()
1574 byte* eh_frame, size_t eh_frame_size) { in FixupDebugSections() argument
1586 && FixupEHFrame(text_start, eh_frame, eh_frame_size); in FixupDebugSections()
1607 const Elf32_Shdr* eh_frame = all.FindSectionByName(".eh_frame"); in GdbJITSupport() local
1612 if (debug_info == nullptr || debug_abbrev == nullptr || eh_frame == nullptr || in GdbJITSupport()
1633 all.Begin() + eh_frame->sh_offset, eh_frame->sh_size)) { in GdbJITSupport()
/art/compiler/
Delf_writer_quick.cc933 ElfRawSectionBuilder eh_frame(".eh_frame", SHT_PROGBITS, SHF_ALLOC, nullptr, 0, 4, 0); in Write() local
934 eh_frame.SetBuffer(*compiler_driver_->GetCallFrameInformation()); in Write()
940 builder.RegisterRawSection(eh_frame); in Write()