Lines Matching refs:createSection
976 auto createSection = [&](StringRef name, uint32_t outChars) { in createSections() local
986 textSec = createSection(".text", code | r | x); in createSections()
987 createSection(".bss", bss | r | w); in createSections()
988 rdataSec = createSection(".rdata", data | r); in createSections()
989 buildidSec = createSection(".buildid", data | r); in createSections()
990 dataSec = createSection(".data", data | r | w); in createSections()
991 pdataSec = createSection(".pdata", data | r); in createSections()
992 idataSec = createSection(".idata", data | r); in createSections()
993 edataSec = createSection(".edata", data | r); in createSections()
994 didatSec = createSection(".didat", data | r); in createSections()
995 rsrcSec = createSection(".rsrc", data | r); in createSections()
996 relocSec = createSection(".reloc", data | discardable | r); in createSections()
997 ctorsSec = createSection(".ctors", data | r | w); in createSections()
998 dtorsSec = createSection(".dtors", data | r | w); in createSections()
1057 OutputSection *sec = createSection(name, outChars); in createSections()