reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/source/Symbol/UnwindTable.cpp
   59   if (sect.get()) {
   61         new DWARFCallFrameInfo(*object_file, sect, DWARFCallFrameInfo::EH));
   64   sect = sl->FindSectionByType(eSectionTypeDWARFDebugFrame, true);
   65   if (sect) {
   67         new DWARFCallFrameInfo(*object_file, sect, DWARFCallFrameInfo::DWARF));
   70   sect = sl->FindSectionByType(eSectionTypeCompactUnwind, true);
   71   if (sect) {
   72     m_compact_unwind_up.reset(new CompactUnwindInfo(*object_file, sect));
   75   sect = sl->FindSectionByType(eSectionTypeARMexidx, true);
   76   if (sect) {
   79       m_arm_unwind_up.reset(new ArmUnwindInfo(*object_file, sect, sect_extab));