Searched defs:SectionName (Results 1 - 10 of 10) sorted by relevance

/external/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);
/external/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),
/external/llvm/lib/MC/MCParser/
H A DELFAsmParser.cpp152 bool ParseSectionName(StringRef &SectionName);
225 bool ELFAsmParser::ParseSectionName(StringRef &SectionName) { argument
232 SectionName = getTok().getIdentifier();
256 SectionName = StringRef(FirstLoc.getPointer(), Size);
335 StringRef SectionName; local
337 if (ParseSectionName(SectionName))
346 if (SectionName == ".fini" || SectionName == ".init" ||
347 SectionName == ".rodata")
349 if (SectionName
[all...]
H A DDarwinAsmParser.cpp503 StringRef SectionName; local
504 if (getParser().parseIdentifier(SectionName))
511 std::string SectionSpec = SectionName;
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldELF.cpp415 StringRef SectionName; local
416 check(si->getName(SectionName));
417 if (SectionName != ".opd")
/external/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp601 StringRef SectionName; local
602 if (error(Section->getName(SectionName)))
603 SectionName = "";
604 outs() << SectionName;
/external/llvm/lib/MC/
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,
/external/clang/lib/CodeGen/
H A DCGObjCMac.cpp1308 const char *SectionName);
5503 const char *SectionName) {
5524 GV->setSection(SectionName);
5501 AddModuleClassList(ArrayRef<llvm::GlobalValue*> Container, const char *SymbolName, const char *SectionName) argument

Completed in 213 milliseconds