Searched defs:eh_frame (Results 1 - 2 of 2) sorted by relevance

/external/lldb/source/Symbol/
H A DFuncUnwinders.cpp74 // We have cases (e.g. with _sigtramp on Mac OS X) where the hand-written eh_frame unwind info for a
77 // (i.e. m_range.GetBaseAddress()) we may not find the eh_frame FDE. We need to use the actual byte offset
86 DWARFCallFrameInfo *eh_frame = m_unwind_table.GetEHFrameInfo(); local
87 if (eh_frame)
90 if (!eh_frame->GetUnwindPlan (current_pc, *m_unwind_plan_call_site_sp))
/external/lldb/source/Plugins/Process/Utility/
H A DRegisterContextLLDB.cpp466 // (e.g. if we have to parse the entire eh_frame section of an ObjectFile for the first time.)
683 // Try using the eh_frame information relative to the current PC,
687 DWARFCallFrameInfo *eh_frame = pc_module_sp && pc_module_sp->GetObjectFile() ? local
691 if (eh_frame && m_current_pc.IsValid())
694 // Even with -fomit-frame-pointer, we can try eh_frame to get back on track.
695 if (eh_frame->GetUnwindPlan (m_current_pc, *unwind_plan_sp))
704 // is properly encoded in the eh_frame section, so prefer that if available.
715 // Ask the DynamicLoader if the eh_frame CFI should be trusted in this frame even when it's frame zero
716 // This comes up if we have hand-written functions in a Module and hand-written eh_frame. The assembly
717 // instruction inspection may fail and the eh_frame CF
[all...]

Completed in 71 milliseconds