Lines Matching refs:PartialSection
245 PartialSection *createPartialSection(StringRef name, uint32_t outChars);
246 PartialSection *findPartialSection(StringRef name, uint32_t outChars);
258 std::map<PartialSectionKey, PartialSection *> partialSections;
351 void OutputSection::addContributingPartialSection(PartialSection *sec) { in addContributingPartialSection()
689 PartialSection *pSec = it.second; in fixPartialSectionChars()
696 PartialSection *destSec = createPartialSection(pSec->name, chars); in fixPartialSectionChars()
724 PartialSection *pSec = it.second; in fixGnuImportChunks()
761 PartialSection *pSec = createPartialSection(n, rdata); in addSyntheticIdata()
780 if (PartialSection *importDirs = findPartialSection(".idata$2", rdata)) { in locateImportTables()
787 if (PartialSection *importAddresses = findPartialSection(".idata$5", rdata)) { in locateImportTables()
881 PartialSection *pSec = createPartialSection(name, in createSections()
907 PartialSection *pSec = it.second; in createSections()
2056 PartialSection *Writer::createPartialSection(StringRef name, in createPartialSection()
2058 PartialSection *&pSec = partialSections[{name, outChars}]; in createPartialSection()
2061 pSec = make<PartialSection>(name, outChars); in createPartialSection()
2065 PartialSection *Writer::findPartialSection(StringRef name, uint32_t outChars) { in findPartialSection()