Lines Matching refs:createSection
892 auto createSection = [&](StringRef name, uint32_t outChars) { in createSections() local
902 textSec = createSection(".text", code | r | x); in createSections()
903 createSection(".bss", bss | r | w); in createSections()
904 rdataSec = createSection(".rdata", data | r); in createSections()
905 buildidSec = createSection(".buildid", data | r); in createSections()
906 dataSec = createSection(".data", data | r | w); in createSections()
907 pdataSec = createSection(".pdata", data | r); in createSections()
908 idataSec = createSection(".idata", data | r); in createSections()
909 edataSec = createSection(".edata", data | r); in createSections()
910 didatSec = createSection(".didat", data | r); in createSections()
911 rsrcSec = createSection(".rsrc", data | r); in createSections()
912 relocSec = createSection(".reloc", data | discardable | r); in createSections()
913 ctorsSec = createSection(".ctors", data | r | w); in createSections()
914 dtorsSec = createSection(".dtors", data | r | w); in createSections()
973 OutputSection *sec = createSection(name, outChars); in createSections()