Searched refs:debug_frame (Results 1 – 2 of 2) sorted by relevance
131 const Elf_Shdr* debug_frame = GetSection(".debug_frame"); in VisitDebugFrame() local132 if (debug_frame != nullptr) { in VisitDebugFrame()133 for (size_t offset = 0; offset < debug_frame->sh_size;) { in VisitDebugFrame()134 const CFI* entry = Read<CFI>(debug_frame->sh_offset + offset); in VisitDebugFrame()135 DCHECK_LE(entry->size(), debug_frame->sh_size - offset); in VisitDebugFrame()137 visit_cie(Read<CIE>(debug_frame->sh_offset + offset)); in VisitDebugFrame()139 const FDE* fde = Read<FDE>(debug_frame->sh_offset + offset); in VisitDebugFrame()140 visit_fde(fde, Read<CIE>(debug_frame->sh_offset + fde->cie_pointer)); in VisitDebugFrame()
257 auto* debug_frame = builder->GetDebugFrame(); in PackElfFileForJIT() local295 debug_frame->Start(); in PackElfFileForJIT()301 debug_frame->WriteFully(cie->data(), cie->size()); in PackElfFileForJIT()308 debug_frame->WriteFully(fde->data(), fde->size()); in PackElfFileForJIT()312 debug_frame->End(); in PackElfFileForJIT()