Home
last modified time | relevance | path

Searched refs:inputOrder (Results 1 – 5 of 5) sorted by relevance

/openbsd-src/gnu/llvm/lld/MachO/
H A DOutputSegment.cpp61 inputOrder = std::min(inputOrder, osec->inputOrder); in addOutputSection()
85 .Default(seg->inputOrder); in segmentOrder()
101 .Default(osec->inputOrder); in sectionOrder()
125 .Default(osec->inputOrder); in sectionOrder()
141 .Default(osec->inputOrder); in sectionOrder()
149 return osec->inputOrder; in sectionOrder()
H A DDriver.cpp1187 int inputOrder = 0; in gatherInputSections() local
1204 isec->outSecOff = inputOrder++; in gatherInputSections()
1212 if (in.objcMethnameSection->inputOrder == UnspecifiedInputOrder) in gatherInputSections()
1213 in.objcMethnameSection->inputOrder = inputOrder++; in gatherInputSections()
1216 if (in.cStringSection->inputOrder == UnspecifiedInputOrder) in gatherInputSections()
1217 in.cStringSection->inputOrder = inputOrder++; in gatherInputSections()
1222 if (in.wordLiteralSection->inputOrder == UnspecifiedInputOrder) in gatherInputSections()
1223 in.wordLiteralSection->inputOrder = inputOrder++; in gatherInputSections()
1233 assert(inputOrder <= UnspecifiedInputOrder); in gatherInputSections()
H A DOutputSegment.h54 int inputOrder = UnspecifiedInputOrder; variable
H A DOutputSection.h86 int inputOrder = UnspecifiedInputOrder; variable
H A DWriter.cpp999 osec->inputOrder = in createOutputSections()
1000 std::min(osec->inputOrder, static_cast<int>(isec->outSecOff)); in createOutputSections()