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.cpp4018 executableSections.push_back(isec); in addSection()
4087 executableSections = originalExecutableSections; in finalizeContents()
4089 originalExecutableSections = executableSections; in finalizeContents()
4109 llvm::erase_if(executableSections, isDiscardedOrOutOfRange); in finalizeContents()
4123 llvm::stable_sort(executableSections, compareByFilePosition); in finalizeContents()
4124 sentinel = executableSections.back(); in finalizeContents()
4128 selectedSections.reserve(executableSections.size()); in finalizeContents()
4129 selectedSections.push_back(executableSections[0]); in finalizeContents()
4131 for (size_t i = 1; i < executableSections.size(); ++i) { in finalizeContents()
4132 InputSection *ex1 = findExidxSection(executableSections[prev]); in finalizeContents()
[all …]
H A DSyntheticSections.h1261 SmallVector<InputSection *, 0> executableSections; variable