Searched refs:SectionName (Results 1 - 13 of 13) sorted by relevance

/macosx-10.10/llvmCore-3425.0.34/include/llvm/MC/
H A DMCSectionCOFF.h26 StringRef SectionName; member in class:llvm::MCSectionCOFF
40 : MCSection(SV_COFF, K), SectionName(Section),
52 StringRef getSectionName() const { return SectionName; }
H A DMCSectionMachO.h27 char SectionName[16]; // Not necessarily null terminated! member in class:llvm::MCSectionMachO
142 // SectionName is not necessarily null terminated!
143 if (SectionName[15])
144 return StringRef(SectionName, 16);
145 return StringRef(SectionName);
H A DMCSectionELF.h28 /// SectionName - This is the name of the section. The referenced memory is
30 StringRef SectionName; member in class:llvm::MCSectionELF
50 : MCSection(SV_ELF, K), SectionName(Section), Type(type), Flags(flags),
59 StringRef getSectionName() const { return SectionName; }
/macosx-10.10/llvmCore-3425.0.34/lib/MC/
H A DMCSectionCOFF.cpp35 if (ShouldOmitSectionDirective(SectionName, MAI)) {
H A DMCSectionELF.cpp37 if (ShouldOmitSectionDirective(SectionName, MAI)) {
H A DMCSectionMachO.cpp87 SectionName[i] = Section[i];
89 SectionName[i] = 0;
H A DWinCOFFStreamer.cpp139 std::string SectionName(".bss$linkonce");
140 SectionName.append(Symbol->getName().begin(), Symbol->getName().end());
153 SectionName, Characteristics, Selection, SectionKind::getBSS());
H A DELFObjectWriter.cpp988 const StringRef SectionName = Section.getSectionName(); local
990 RelaSectionName += SectionName;
1287 StringRef SectionName = Section.getSectionName().substr(SecNameLen); local
1289 InfoSection = Asm.getContext().getELFSection(SectionName,
/macosx-10.10/llvmCore-3425.0.34/lib/MC/MCParser/
H A DELFAsmParser.cpp150 bool ParseSectionName(StringRef &SectionName);
223 bool ELFAsmParser::ParseSectionName(StringRef &SectionName) { argument
230 SectionName = getTok().getIdentifier();
254 SectionName = StringRef(FirstLoc.getPointer(), Size);
333 StringRef SectionName; local
335 if (ParseSectionName(SectionName))
344 if (SectionName == ".fini" || SectionName == ".init" ||
345 SectionName == ".rodata")
347 if (SectionName
[all...]
H A DDarwinAsmParser.cpp424 StringRef SectionName; local
425 if (getParser().ParseIdentifier(SectionName))
432 std::string SectionSpec = SectionName;
/macosx-10.10/llvmCore-3425.0.34/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp177 StringRef SectionName = GV->getSection(); local
180 Kind = getELFKindForNamedSection(SectionName, Kind);
182 return getContext().getELFSection(SectionName,
183 getELFSectionType(SectionName, Kind),
/macosx-10.10/llvmCore-3425.0.34/tools/llvm-objdump/
H A Dllvm-objdump.cpp556 StringRef SectionName; local
557 if (error(Section->getName(SectionName)))
558 SectionName = "";
559 outs() << SectionName;
/macosx-10.10/llvmCore-3425.0.34/include/llvm/Object/
H A DELF.h2011 StringRef SectionName(getString(dot_shstrtab_sec, sh->sh_name));
2012 if (SectionName == ".strtab") {
2018 } else if (SectionName == ".dynstr") {

Completed in 205 milliseconds