Lines Matching defs:sect
61 SectionSP sect = sl->FindSectionByType(eSectionTypeEHFrame, true);
62 if (!m_eh_frame_up && sect)
64 *object_file, sect, DWARFCallFrameInfo::EH);
66 sect = sl->FindSectionByType(eSectionTypeDWARFDebugFrame, true);
67 if (!m_debug_frame_up && sect)
69 *object_file, sect, DWARFCallFrameInfo::DWARF);
71 sect = sl->FindSectionByType(eSectionTypeCompactUnwind, true);
72 if (!m_compact_unwind_up && sect)
74 std::make_unique<CompactUnwindInfo>(*object_file, sect);
76 sect = sl->FindSectionByType(eSectionTypeARMexidx, true);
77 if (!m_arm_unwind_up && sect) {
81 std::make_unique<ArmUnwindInfo>(*object_file, sect, sect_extab);