Searched defs:SectionName (Results 1 - 9 of 9) 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; }
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; }
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.cpp177 StringRef SectionName = GV->getSection(); local
180 Kind = getELFKindForNamedSection(SectionName, Kind);
182 return getContext().getELFSection(SectionName,
183 getELFSectionType(SectionName, Kind),
/external/llvm/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;
/external/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp556 StringRef SectionName; local
557 if (error(Section->getName(SectionName)))
558 SectionName = "";
559 outs() << SectionName;
/external/llvm/lib/MC/
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,
/external/clang/lib/CodeGen/
H A DCGObjCMac.cpp1205 const char *SectionName);
4818 const char *SectionName) {
4839 GV->setSection(SectionName);
4816 AddModuleClassList(ArrayRef<llvm::GlobalValue*> Container, const char *SymbolName, const char *SectionName) argument

Completed in 433 milliseconds