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()
688 PartialSection *pSec = it.second; in fixPartialSectionChars()
695 PartialSection *destSec = createPartialSection(pSec->name, chars); in fixPartialSectionChars()
723 PartialSection *pSec = it.second; in fixGnuImportChunks()
760 PartialSection *pSec = createPartialSection(n, rdata); in addSyntheticIdata()
779 if (PartialSection *importDirs = findPartialSection(".idata$2", rdata)) { in locateImportTables()
786 if (PartialSection *importAddresses = findPartialSection(".idata$5", rdata)) { in locateImportTables()
880 PartialSection *pSec = createPartialSection(name, in createSections()
906 PartialSection *pSec = it.second; in createSections()
2036 PartialSection *Writer::createPartialSection(StringRef name, in createPartialSection()
2038 PartialSection *&pSec = partialSections[{name, outChars}]; in createPartialSection()
2041 pSec = make<PartialSection>(name, outChars); in createPartialSection()
2045 PartialSection *Writer::findPartialSection(StringRef name, uint32_t outChars) { in findPartialSection()