Lines Matching refs:SectionName
26 StringRef SectionName, in allocateSection() argument
30 if (!ObjectsLoaded && RewriteInstance::isDebugSection(SectionName)) { in allocateSection()
33 BC.registerOrUpdateNoteSection(SectionName, DataCopy, Size, Alignment); in allocateSection()
39 if (!IsCode && (SectionName == ".strtab" || SectionName == ".symtab" || in allocateSection()
40 SectionName == "" || SectionName.startswith(".rela."))) in allocateSection()
42 SectionName, IsReadOnly); in allocateSection()
47 SectionName); in allocateSection()
50 SectionName, IsReadOnly); in allocateSection()
55 SectionName = (Twine(SectionName) + ".bolt.extra." + Twine(ObjectsLoaded)) in allocateSection()
58 assert((SectionName == "__text" || SectionName == "__data" || in allocateSection()
59 SectionName == "__fini" || SectionName == "__setup" || in allocateSection()
60 SectionName == "__cstring" || SectionName == "__literal16") && in allocateSection()
63 SectionName = ("I" + Twine(SectionName)).toStringRef(Buf); in allocateSection()
68 SectionName, ELF::SHT_PROGBITS, in allocateSection()
77 << " section : " << SectionName << " with size " << Size in allocateSection()