Home
last modified time | relevance | path

Searched refs:ehFrame (Results 1 – 11 of 11) sorted by relevance

/openbsd-src/gnu/llvm/lld/MachO/
H A DOutputSegment.cpp100 .Case(section_names::ehFrame, std::numeric_limits<int>::max()) in sectionOrder()
H A DInputSection.h316 constexpr const char ehFrame[] = "__eh_frame"; variable
H A DConcatOutputSection.cpp412 isec->getName() != section_names::ehFrame) in getOrCreateForInput()
H A DInputSection.cpp337 return isec->getName() == section_names::ehFrame && in isEhFrameSection()
H A DUnwindInfoSection.cpp362 if (d->unwindEntry->getName() == section_names::ehFrame) { in relocateCompactUnwind()
H A DInputFiles.cpp372 } else if (name == section_names::ehFrame && in parseSections()
1027 .Case(section_names::ehFrame, &ehFrameSection) in parse()
H A DWriter.cpp1011 if (osec->name == section_names::ehFrame && in createOutputSections()
/openbsd-src/gnu/llvm/lld/ELF/
H A DWriter.cpp400 part.ehFrame = std::make_unique<EhFrameSection>(); in createSyntheticSections()
401 add(*part.ehFrame); in createSyntheticSections()
1906 finalizeSynthetic(part.ehFrame.get()); in finalizeSections()
2381 if (part.ehFrame->isNeeded() && part.ehFrameHdr && in createPhdrs()
2382 part.ehFrame->getParent() && part.ehFrameHdr->getParent()) in createPhdrs()
H A DICF.cpp478 part.ehFrame->iterateFDEWithLSDA<ELFT>( in run()
H A DSyntheticSections.cpp2997 SmallVector<FdeData, 0> fdes = getPartition().ehFrame->getFdeData(); in write()
3004 getPartition().ehFrame->getParent()->addr - this->getVA() - 4); in write()
3017 return 12 + getPartition().ehFrame->numFdes * 8; in getSize()
3021 return isLive() && getPartition().ehFrame->isNeeded(); in isNeeded()
3327 EhFrameSection &eh = *sec->getPartition().ehFrame; in combineEhSections()
H A DSyntheticSections.h1251 std::unique_ptr<EhFrameSection> ehFrame; member