Home
last modified time | relevance | path

Searched refs:SectionName (Results 1 – 16 of 16) sorted by relevance

/external/llvm/include/llvm/MC/
DMCSectionCOFF.h26 StringRef SectionName; variable
40 : MCSection(SV_COFF, K), SectionName(Section), in MCSectionCOFF()
52 StringRef getSectionName() const { return SectionName; } in getSectionName()
54 return SectionName.str() + "_begin"; in getLabelBeginName()
57 return SectionName.str() + "_end"; in getLabelEndName()
DMCSectionELF.h32 StringRef SectionName; variable
52 : MCSection(SV_ELF, K), SectionName(Section), Type(type), Flags(flags), in MCSectionELF()
61 StringRef getSectionName() const { return SectionName; } in getSectionName()
63 return SectionName.str() + "_begin"; } in getLabelBeginName()
65 return SectionName.str() + "_end"; in getLabelEndName()
DMCSectionMachO.h27 char SectionName[16]; // Not necessarily null terminated! variable
143 if (SectionName[15]) in getSectionName()
144 return StringRef(SectionName, 16); in getSectionName()
145 return StringRef(SectionName); in getSectionName()
/external/llvm/lib/MC/MCParser/
DELFAsmParser.cpp152 bool ParseSectionName(StringRef &SectionName);
225 bool ELFAsmParser::ParseSectionName(StringRef &SectionName) { in ParseSectionName() argument
232 SectionName = getTok().getIdentifier(); in ParseSectionName()
256 SectionName = StringRef(FirstLoc.getPointer(), Size); in ParseSectionName()
335 StringRef SectionName; in ParseDirectiveSection() local
337 if (ParseSectionName(SectionName)) in ParseDirectiveSection()
346 if (SectionName == ".fini" || SectionName == ".init" || in ParseDirectiveSection()
347 SectionName == ".rodata") in ParseDirectiveSection()
349 if (SectionName == ".fini" || SectionName == ".init") in ParseDirectiveSection()
417 if (SectionName.startswith(".note")) in ParseDirectiveSection()
[all …]
DDarwinAsmParser.cpp503 StringRef SectionName; in ParseDirectiveSection() local
504 if (getParser().parseIdentifier(SectionName)) in ParseDirectiveSection()
511 std::string SectionSpec = SectionName; in ParseDirectiveSection()
/external/llvm/lib/MC/
DWinCOFFStreamer.cpp144 std::string SectionName(".bss$linkonce"); in AddCommonSymbol() local
145 SectionName.append(Symbol->getName().begin(), Symbol->getName().end()); in AddCommonSymbol()
158 SectionName, Characteristics, Selection, SectionKind::getBSS()); in AddCommonSymbol()
DMCSectionCOFF.cpp35 if (ShouldOmitSectionDirective(SectionName, MAI)) { in PrintSwitchToSection()
DMCSectionMachO.cpp87 SectionName[i] = Section[i]; in MCSectionMachO()
89 SectionName[i] = 0; in MCSectionMachO()
DMCSectionELF.cpp37 if (ShouldOmitSectionDirective(SectionName, MAI)) { in PrintSwitchToSection()
DELFObjectWriter.cpp998 const StringRef SectionName = Section.getSectionName(); in CreateRelocationSections() local
1000 RelaSectionName += SectionName; in CreateRelocationSections()
1297 StringRef SectionName = Section.getSectionName().substr(SecNameLen); in WriteSection() local
1299 InfoSection = Asm.getContext().getELFSection(SectionName, in WriteSection()
/external/llvm/lib/CodeGen/
DTargetLoweringObjectFileImpl.cpp206 StringRef SectionName = GV->getSection(); in getExplicitSectionGlobal() local
209 Kind = getELFKindForNamedSection(SectionName, Kind); in getExplicitSectionGlobal()
211 return getContext().getELFSection(SectionName, in getExplicitSectionGlobal()
212 getELFSectionType(SectionName, Kind), in getExplicitSectionGlobal()
/external/clang/test/SemaCXX/
Dcrashes.cpp147 int SectionName(getString(sh)); in ELFObjectFile() local
/external/llvm/tools/llvm-objdump/
Dllvm-objdump.cpp601 StringRef SectionName; in PrintSymbolTable() local
602 if (error(Section->getName(SectionName))) in PrintSymbolTable()
603 SectionName = ""; in PrintSymbolTable()
604 outs() << SectionName; in PrintSymbolTable()
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldELF.cpp415 StringRef SectionName; in findOPDEntrySection() local
416 check(si->getName(SectionName)); in findOPDEntrySection()
417 if (SectionName != ".opd") in findOPDEntrySection()
/external/llvm/include/llvm/Object/
DELF.h2184 StringRef SectionName(getString(dot_shstrtab_sec, sh->sh_name));
2185 if (SectionName == ".strtab") {
2191 } else if (SectionName == ".dynstr") {
/external/clang/lib/CodeGen/
DCGObjCMac.cpp1308 const char *SectionName);
5503 const char *SectionName) { in AddModuleClassList() argument
5524 GV->setSection(SectionName); in AddModuleClassList()