HomeSort by relevance Sort by last modified time
    Searched refs:SectionName (Results 1 - 15 of 15) sorted by null

  /external/llvm/include/llvm/MC/
MCSectionCOFF.h 26 StringRef SectionName;
40 : MCSection(SV_COFF, K), SectionName(Section),
52 StringRef getSectionName() const { return SectionName; }
MCSectionELF.h 27 /// SectionName - This is the name of the section. The referenced memory is
29 StringRef SectionName;
49 : MCSection(SV_ELF, K), SectionName(Section), Type(type), Flags(flags),
58 StringRef getSectionName() const { return SectionName; }
MCSectionMachO.h 26 char SectionName[16]; // Not necessarily null terminated!
141 // SectionName is not necessarily null terminated!
142 if (SectionName[15])
143 return StringRef(SectionName, 16);
144 return StringRef(SectionName);
  /external/llvm/lib/MC/MCParser/
ELFAsmParser.cpp 148 bool ParseSectionName(StringRef &SectionName);
221 bool ELFAsmParser::ParseSectionName(StringRef &SectionName) {
228 SectionName = getTok().getIdentifier();
252 SectionName = StringRef(FirstLoc.getPointer(), Size);
331 StringRef SectionName;
333 if (ParseSectionName(SectionName))
342 if (SectionName == ".fini" || SectionName == ".init" ||
343 SectionName == ".rodata")
345 if (SectionName == ".fini" || SectionName == ".init"
    [all...]
DarwinAsmParser.cpp 412 StringRef SectionName;
413 if (getParser().ParseIdentifier(SectionName))
420 std::string SectionSpec = SectionName;
  /external/llvm/lib/MC/
MCSectionCOFF.cpp 35 if (ShouldOmitSectionDirective(SectionName, MAI)) {
WinCOFFStreamer.cpp 138 std::string SectionName(".bss$linkonce");
139 SectionName.append(Symbol->getName().begin(), Symbol->getName().end());
152 SectionName, Characteristics, Selection, SectionKind::getBSS());
MCSectionELF.cpp 37 if (ShouldOmitSectionDirective(SectionName, MAI)) {
MCSectionMachO.cpp 87 SectionName[i] = Section[i];
89 SectionName[i] = 0;
ELFObjectWriter.cpp 687 const StringRef SectionName = Section.getSectionName();
689 RelaSectionName += SectionName;
    [all...]
  /external/llvm/lib/CodeGen/
TargetLoweringObjectFileImpl.cpp 177 StringRef SectionName = GV->getSection();
180 Kind = getELFKindForNamedSection(SectionName, Kind);
182 return getContext().getELFSection(SectionName,
183 getELFSectionType(SectionName, Kind),
ELFWriter.cpp 259 std::string SectionName(".rel");
261 SectionName.append("a");
262 SectionName.append(S.getName());
264 return getSection(SectionName, SectionType, 0, TEW->getPrefELFAlignment());
    [all...]
  /external/llvm/tools/llvm-objdump/
llvm-objdump.cpp 514 StringRef SectionName;
515 if (error(Section->getName(SectionName)))
516 SectionName = "";
517 outs() << SectionName;
  /external/llvm/lib/Object/
ELFObjectFile.cpp     [all...]
  /external/clang/lib/CodeGen/
CGObjCMac.cpp     [all...]

Completed in 226 milliseconds