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

/freebsd-10.0-release/contrib/llvm/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; }
54 return SectionName.str() + "_begin";
57 return SectionName.str() + "_end";
H A DMCSectionELF.h30 /// SectionName - This is the name of the section. The referenced memory is
32 StringRef SectionName; member in class:llvm::MCSectionELF
52 : MCSection(SV_ELF, K), SectionName(Section), Type(type), Flags(flags),
61 StringRef getSectionName() const { return SectionName; }
63 return SectionName.str() + "_begin"; }
65 return SectionName.str() + "_end";
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);
/freebsd-10.0-release/contrib/llvm/lib/MC/MCParser/
H A DELFAsmParser.cpp154 bool ParseSectionName(StringRef &SectionName);
231 bool ELFAsmParser::ParseSectionName(StringRef &SectionName) { argument
238 SectionName = getTok().getIdentifier();
262 SectionName = StringRef(FirstLoc.getPointer(), Size);
345 StringRef SectionName; local
347 if (ParseSectionName(SectionName))
357 if (SectionName == ".fini" || SectionName == ".init" ||
358 SectionName == ".rodata")
360 if (SectionName
[all...]
H A DDarwinAsmParser.cpp503 StringRef SectionName; local
504 if (getParser().parseIdentifier(SectionName))
511 std::string SectionSpec = SectionName;
/freebsd-10.0-release/contrib/llvm/lib/MC/
H A DMCSectionCOFF.cpp36 if (ShouldOmitSectionDirective(SectionName, MAI)) {
H A DWinCOFFStreamer.cpp144 std::string SectionName(".bss$linkonce");
145 SectionName.append(Symbol->getName().begin(), Symbol->getName().end());
158 SectionName, Characteristics, Selection, SectionKind::getBSS());
H A DMCSectionELF.cpp39 if (ShouldOmitSectionDirective(SectionName, MAI)) {
H A DMCSectionMachO.cpp87 SectionName[i] = Section[i];
89 SectionName[i] = 0;
H A DELFObjectWriter.cpp998 const StringRef SectionName = Section.getSectionName(); local
1000 RelaSectionName += SectionName;
1297 StringRef SectionName = Section.getSectionName().substr(SecNameLen); local
1299 InfoSection = Asm.getContext().getELFSection(SectionName,
/freebsd-10.0-release/contrib/llvm/tools/llvm-readobj/
H A DMachODumper.cpp411 StringRef SectionName = ""; local
415 error(SecI->getName(SectionName));
424 W.printHex ("Section", SectionName, Symbol.SectionIndex);
H A DCOFFDumper.cpp729 StringRef SectionName = ""; local
731 Obj->getSectionName(Section, SectionName);
735 W.printNumber("Section", SectionName, Symbol->SectionNumber);
H A DELFDumper.cpp650 StringRef SectionName = ""; local
652 Obj->getSectionName(Section, SectionName);
674 W.printHex ("Section", SectionName, Symbol->st_shndx);
/freebsd-10.0-release/contrib/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp206 StringRef SectionName = GV->getSection(); local
209 Kind = getELFKindForNamedSection(SectionName, Kind);
211 return getContext().getELFSection(SectionName,
212 getELFSectionType(SectionName, Kind),
/freebsd-10.0-release/contrib/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp609 StringRef SectionName; local
610 if (error(Section->getName(SectionName)))
611 SectionName = "";
612 outs() << SectionName;
/freebsd-10.0-release/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldELF.cpp502 StringRef SectionName; local
503 check(si->getName(SectionName));
504 if (SectionName != ".opd")
/freebsd-10.0-release/contrib/llvm/include/llvm/Object/
H A DELF.h2447 StringRef SectionName(getString(dot_shstrtab_sec, sh->sh_name));
2448 if (SectionName == ".strtab") {
2454 } else if (SectionName == ".dynstr") {
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGObjCMac.cpp1308 const char *SectionName);
5506 const char *SectionName) {
5527 GV->setSection(SectionName);
5504 AddModuleClassList(ArrayRef<llvm::GlobalValue*> Container, const char *SymbolName, const char *SectionName) argument

Completed in 120 milliseconds