Lines Matching refs:createSection
836 auto createSection = [&](StringRef name, uint32_t outChars) { in createSections() local
846 textSec = createSection(".text", code | r | x); in createSections()
847 createSection(".bss", bss | r | w); in createSections()
848 rdataSec = createSection(".rdata", data | r); in createSections()
849 buildidSec = createSection(".buildid", data | r); in createSections()
850 dataSec = createSection(".data", data | r | w); in createSections()
851 pdataSec = createSection(".pdata", data | r); in createSections()
852 idataSec = createSection(".idata", data | r); in createSections()
853 edataSec = createSection(".edata", data | r); in createSections()
854 didatSec = createSection(".didat", data | r); in createSections()
855 rsrcSec = createSection(".rsrc", data | r); in createSections()
856 relocSec = createSection(".reloc", data | discardable | r); in createSections()
857 ctorsSec = createSection(".ctors", data | r | w); in createSections()
858 dtorsSec = createSection(".dtors", data | r | w); in createSections()
917 OutputSection *sec = createSection(name, outChars); in createSections()