Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lld/MachO/
H A DOutputSegment.cpp92 .Case(section_names::ehFrame, std::numeric_limits<int>::max()) in sectionOrder()
H A DConcatOutputSection.cpp412 isec->getName() != section_names::ehFrame) in getOrCreateForInput()
H A DInputSection.h305 constexpr const char ehFrame[] = "__eh_frame"; variable
H A DInputSection.cpp344 return isec->getName() == section_names::ehFrame && in isEhFrameSection()
H A DUnwindInfoSection.cpp362 if (d->unwindEntry->getName() == section_names::ehFrame) { in relocateCompactUnwind()
H A DInputFiles.cpp354 } else if (name == section_names::ehFrame && in parseSections()
1126 .Case(section_names::ehFrame, &ehFrameSection) in parse()
H A DWriter.cpp965 if (osec->name == section_names::ehFrame && in createOutputSections()
/llvm-project-15.0.7/lld/ELF/
H A DWriter.cpp154 part.ehFrame->addSection(es); in combineEhSections()
418 part.ehFrame = std::make_unique<EhFrameSection>(); in createSyntheticSections()
419 add(*part.ehFrame); in createSyntheticSections()
1914 finalizeSynthetic(part.ehFrame.get()); in finalizeSections()
1943 for (EhInputSection *sec : part.ehFrame->sections) in finalizeSections()
2399 if (part.ehFrame->isNeeded() && part.ehFrameHdr && in createPhdrs()
2400 part.ehFrame->getParent() && part.ehFrameHdr->getParent()) in createPhdrs()
H A DICF.cpp476 part.ehFrame->iterateFDEWithLSDA<ELFT>( in run()
H A DSyntheticSections.cpp3039 SmallVector<FdeData, 0> fdes = getPartition().ehFrame->getFdeData(); in write()
3046 getPartition().ehFrame->getParent()->addr - this->getVA() - 4); in write()
3059 return 12 + getPartition().ehFrame->numFdes * 8; in getSize()
3063 return isLive() && getPartition().ehFrame->isNeeded(); in isNeeded()
H A DSyntheticSections.h1238 std::unique_ptr<EhFrameSection> ehFrame; member