Home | History | Annotate | Download | only in MCParser

Lines Matching defs:SectionName

152   bool ParseSectionName(StringRef &SectionName);
230 bool ELFAsmParser::ParseSectionName(StringRef &SectionName) {
237 SectionName = getTok().getIdentifier();
260 SectionName = StringRef(FirstLoc.getPointer(), Size);
405 StringRef SectionName;
407 if (ParseSectionName(SectionName))
418 if (SectionName == ".fini" || SectionName == ".init" ||
419 SectionName == ".rodata")
421 if (SectionName == ".fini" || SectionName == ".init")
510 if (SectionName.startswith(".note"))
512 else if (SectionName == ".init_array")
514 else if (SectionName == ".fini_array")
516 else if (SectionName == ".preinit_array")
549 SectionName, Type, Flags, Kind, Size, GroupName);