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.cpp176 StringRef SectionName = GV->getSection(); local
179 Kind = getELFKindForNamedSection(SectionName, Kind);
181 return getContext().getELFSection(SectionName,
182 getELFSectionType(SectionName, Kind),
/external/llvm/lib/MC/MCParser/
H A DELFAsmParser.cpp148 bool ParseSectionName(StringRef &SectionName);
221 bool ELFAsmParser::ParseSectionName(StringRef &SectionName) { argument
228 SectionName = getTok().getIdentifier();
252 SectionName = StringRef(FirstLoc.getPointer(), Size);
331 StringRef SectionName; local
333 if (ParseSectionName(SectionName))
342 if (SectionName == ".fini" || SectionName == ".init" ||
343 SectionName == ".rodata")
345 if (SectionName
[all...]
H A DDarwinAsmParser.cpp412 StringRef SectionName; local
413 if (getParser().ParseIdentifier(SectionName))
420 std::string SectionSpec = SectionName;
/external/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp544 StringRef SectionName; local
545 if (error(Section->getName(SectionName)))
546 SectionName = "";
547 outs() << SectionName;
/external/llvm/lib/MC/
H A DELFObjectWriter.cpp987 const StringRef SectionName = Section.getSectionName(); local
989 RelaSectionName += SectionName;
1278 StringRef SectionName = Section.getSectionName().substr(SecNameLen); local
1280 InfoSection = Asm.getContext().getELFSection(SectionName,
/external/clang/lib/CodeGen/
H A DCGObjCMac.cpp1205 const char *SectionName);
4804 const char *SectionName) {
4825 GV->setSection(SectionName);
4802 AddModuleClassList(ArrayRef<llvm::GlobalValue*> Container, const char *SymbolName, const char *SectionName) argument

Completed in 97 milliseconds