Lines Matching defs:sect
59 SectionSP sect = sl->FindSectionByType(eSectionTypeEHFrame, true);
60 if (sect.get()) {
62 *object_file, sect, DWARFCallFrameInfo::EH);
65 sect = sl->FindSectionByType(eSectionTypeDWARFDebugFrame, true);
66 if (sect) {
68 *object_file, sect, DWARFCallFrameInfo::DWARF);
71 sect = sl->FindSectionByType(eSectionTypeCompactUnwind, true);
72 if (sect) {
74 std::make_unique<CompactUnwindInfo>(*object_file, sect);
77 sect = sl->FindSectionByType(eSectionTypeARMexidx, true);
78 if (sect) {
82 std::make_unique<ArmUnwindInfo>(*object_file, sect, sect_extab);
104 SectionSP sect = sl->FindSectionByType(eSectionTypeEHFrame, true);
105 if (!m_eh_frame_up && sect) {
107 *object_file, sect, DWARFCallFrameInfo::EH);
110 sect = sl->FindSectionByType(eSectionTypeDWARFDebugFrame, true);
111 if (!m_debug_frame_up && sect) {
113 *object_file, sect, DWARFCallFrameInfo::DWARF);
116 sect = sl->FindSectionByType(eSectionTypeCompactUnwind, true);
117 if (!m_compact_unwind_up && sect) {
119 std::make_unique<CompactUnwindInfo>(*object_file, sect);
122 sect = sl->FindSectionByType(eSectionTypeARMexidx, true);
123 if (!m_arm_unwind_up && sect) {
127 std::make_unique<ArmUnwindInfo>(*object_file, sect, sect_extab);