Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lld/ELF/
H A DLinkerScript.cpp494 const OutputSection &outCmd) { in computeInputSections() argument
545 if (outCmd.name == "/DISCARD/") in computeInputSections()
555 if (sec->parent == &outCmd) in computeInputSections()
624 void LinkerScript::discardSynthetic(OutputSection &outCmd) { in discardSynthetic() argument
631 for (SectionCommand *cmd : outCmd.commands) in discardSynthetic()
633 for (InputSectionBase *s : computeInputSections(isd, secs, outCmd)) in discardSynthetic()
639 LinkerScript::createInputSectionList(OutputSection &outCmd) { in createInputSectionList() argument
642 for (SectionCommand *cmd : outCmd.commands) { in createInputSectionList()
644 isd->sectionBases = computeInputSections(isd, ctx.inputSections, outCmd); in createInputSectionList()
646 s->parent = &outCmd; in createInputSectionList()
H A DLinkerScript.h302 const OutputSection &outCmd);