Lines Matching defs:createSection
1058 auto createSection = [&](StringRef name, uint32_t outChars) {
1068 textSec = createSection(".text", code | r | x);
1070 hexpthkSec = createSection(".hexpthk", code | r | x);
1071 createSection(".bss", bss | r | w);
1072 rdataSec = createSection(".rdata", data | r);
1073 buildidSec = createSection(".buildid", data | r);
1074 dataSec = createSection(".data", data | r | w);
1075 pdataSec = createSection(".pdata", data | r);
1076 idataSec = createSection(".idata", data | r);
1077 edataSec = createSection(".edata", data | r);
1078 didatSec = createSection(".didat", data | r);
1080 a64xrmSec = createSection(".a64xrm", data | r);
1081 rsrcSec = createSection(".rsrc", data | r);
1082 relocSec = createSection(".reloc", data | discardable | r);
1083 ctorsSec = createSection(".ctors", data | r | w);
1084 dtorsSec = createSection(".dtors", data | r | w);
1149 OutputSection *sec = createSection(name, outChars);