Home
last modified time | relevance | path

Searched refs:FDE (Results 1 – 3 of 3) sorted by relevance

/art/tools/create_minidebuginfo/
Dcreate_minidebuginfo.cc48 using FDE = typename ElfDebugReader<ElfTypes>::FDE; in WriteMinidebugInfo() typedef
99 std::deque<std::pair<const FDE*, const CIE*>> entries; in WriteMinidebugInfo()
110 [&](const FDE* fde, const CIE* cie) { in WriteMinidebugInfo()
115 constexpr size_t opcode_offset = sizeof(FDE); in WriteMinidebugInfo()
122 const FDE* fde = entry.first; in WriteMinidebugInfo()
124 FDE new_header = *fde; in WriteMinidebugInfo()
126 debug_frame->WriteFully(&new_header, sizeof(FDE)); in WriteMinidebugInfo()
127 debug_frame->WriteFully(fde->data() + sizeof(FDE), fde->size() - sizeof(FDE)); in WriteMinidebugInfo()
/art/libelffile/elf/
Delf_debug_reader.h58 struct FDE : public CFI { struct
163 const FDE* fde = Read<FDE>(debug_frame->sh_offset + offset); in VisitDebugFrame()
/art/compiler/debug/
Delf_debug_writer.cc217 }, [&](const Reader::FDE* fde, const Reader::CIE* cie ATTRIBUTE_UNUSED) { in MakeElfFileForJIT()
309 }, [&](const Reader::FDE* fde, const Reader::CIE* cie ATTRIBUTE_UNUSED) { in PackElfFileForJIT()