Lines Matching refs:PartialSection
239 PartialSection *createPartialSection(StringRef name, uint32_t outChars);
240 PartialSection *findPartialSection(StringRef name, uint32_t outChars);
252 std::map<PartialSectionKey, PartialSection *> partialSections;
344 void OutputSection::addContributingPartialSection(PartialSection *sec) { in addContributingPartialSection()
682 PartialSection *pSec = it.second; in fixPartialSectionChars()
689 PartialSection *destSec = createPartialSection(pSec->name, chars); in fixPartialSectionChars()
717 PartialSection *pSec = it.second; in fixGnuImportChunks()
754 PartialSection *pSec = createPartialSection(n, rdata); in addSyntheticIdata()
773 if (PartialSection *importDirs = findPartialSection(".idata$2", rdata)) { in locateImportTables()
780 if (PartialSection *importAddresses = findPartialSection(".idata$5", rdata)) { in locateImportTables()
875 PartialSection *pSec = createPartialSection(name, in createSections()
901 PartialSection *pSec = it.second; in createSections()
2060 PartialSection *Writer::createPartialSection(StringRef name, in createPartialSection()
2062 PartialSection *&pSec = partialSections[{name, outChars}]; in createPartialSection()
2065 pSec = make<PartialSection>(name, outChars); in createPartialSection()
2069 PartialSection *Writer::findPartialSection(StringRef name, uint32_t outChars) { in findPartialSection()