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