Home
last modified time | relevance | path

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

/art/libelffile/elf/
Delf_debug_reader.h157 const Elf_Shdr* debug_frame = GetSection(".debug_frame"); in VisitDebugFrame() local
158 if (debug_frame != nullptr) { in VisitDebugFrame()
159 for (size_t offset = 0; offset < debug_frame->sh_size;) { in VisitDebugFrame()
160 const CFI* entry = Read<CFI>(debug_frame->sh_offset + offset); in VisitDebugFrame()
161 DCHECK_LE(entry->size(), debug_frame->sh_size - offset); in VisitDebugFrame()
163 visit_cie(Read<CIE>(debug_frame->sh_offset + offset)); in VisitDebugFrame()
165 const FDE* fde = Read<FDE>(debug_frame->sh_offset + offset); in VisitDebugFrame()
166 visit_fde(fde, Read<CIE>(debug_frame->sh_offset + fde->cie_pointer)); in VisitDebugFrame()
/art/tools/create_minidebuginfo/
Dcreate_minidebuginfo.cc94 auto* debug_frame = builder->GetDebugFrame(); in WriteMinidebugInfo() local
95 debug_frame->Start(); in WriteMinidebugInfo()
104 auto it = cie_dedup.emplace(key, debug_frame->GetPosition()); in WriteMinidebugInfo()
106 debug_frame->WriteFully(cie->data(), cie->size()); in WriteMinidebugInfo()
124 debug_frame->WriteFully(&new_header, sizeof(FDE)); in WriteMinidebugInfo()
125 debug_frame->WriteFully(fde->data() + sizeof(FDE), fde->size() - sizeof(FDE)); in WriteMinidebugInfo()
128 debug_frame->End(); in WriteMinidebugInfo()
/art/compiler/debug/
Delf_debug_writer.cc261 auto* debug_frame = builder->GetDebugFrame(); in PackElfFileForJIT() local
299 debug_frame->Start(); in PackElfFileForJIT()
306 debug_frame->WriteFully(cie->data(), cie->size()); in PackElfFileForJIT()
314 debug_frame->WriteFully(fde->data(), fde->size()); in PackElfFileForJIT()
318 debug_frame->End(); in PackElfFileForJIT()