Home
last modified time | relevance | path

Searched refs:executableSections (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/lld/ELF/
H A DSyntheticSections.cpp4108 executableSections.push_back(isec); in addSection()
4179 executableSections = originalExecutableSections; in finalizeContents()
4181 originalExecutableSections = executableSections; in finalizeContents()
4201 llvm::erase_if(executableSections, isDiscardedOrOutOfRange); in finalizeContents()
4215 llvm::stable_sort(executableSections, compareByFilePosition); in finalizeContents()
4216 sentinel = executableSections.back(); in finalizeContents()
4220 selectedSections.reserve(executableSections.size()); in finalizeContents()
4221 selectedSections.push_back(executableSections[0]); in finalizeContents()
4223 for (size_t i = 1; i < executableSections.size(); ++i) { in finalizeContents()
4224 InputSection *ex1 = findExidxSection(executableSections[prev]); in finalizeContents()
[all …]
H A DSyntheticSections.h1277 SmallVector<InputSection *, 0> executableSections; variable