HomeSort by relevance Sort by last modified time
    Searched refs:SectionName (Results 1 - 16 of 16) 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; }
54 return SectionName.str() + "_begin";
57 return SectionName.str() + "_end";
MCSectionELF.h 30 /// SectionName - This is the name of the section. The referenced memory is
32 StringRef SectionName;
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";
MCSectionMachO.h 27 char SectionName[16]; // Not necessarily null terminated!
142 // SectionName is not necessarily null terminated!
143 if (SectionName[15])
144 return StringRef(SectionName, 16);
145 return StringRef(SectionName);
  /external/llvm/lib/MC/MCParser/
ELFAsmParser.cpp 152 bool ParseSectionName(StringRef &SectionName);
225 bool ELFAsmParser::ParseSectionName(StringRef &SectionName) {
232 SectionName = getTok().getIdentifier();
256 SectionName = StringRef(FirstLoc.getPointer(), Size);
335 StringRef SectionName;
337 if (ParseSectionName(SectionName))
346 if (SectionName == ".fini" || SectionName == ".init" ||
347 SectionName == ".rodata")
349 if (SectionName == ".fini" || SectionName == ".init"
    [all...]
DarwinAsmParser.cpp 503 StringRef SectionName;
504 if (getParser().parseIdentifier(SectionName))
511 std::string SectionSpec = SectionName;
  /external/llvm/lib/MC/
MCSectionCOFF.cpp 35 if (ShouldOmitSectionDirective(SectionName, MAI)) {
WinCOFFStreamer.cpp 144 std::string SectionName(".bss$linkonce");
145 SectionName.append(Symbol->getName().begin(), Symbol->getName().end());
158 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     [all...]
  /external/clang/test/SemaCXX/
crashes.cpp 147 int SectionName(getString(sh));
  /external/llvm/lib/CodeGen/
TargetLoweringObjectFileImpl.cpp 206 StringRef SectionName = GV->getSection();
209 Kind = getELFKindForNamedSection(SectionName, Kind);
211 return getContext().getELFSection(SectionName,
212 getELFSectionType(SectionName, Kind),
  /external/llvm/tools/llvm-objdump/
llvm-objdump.cpp 601 StringRef SectionName;
602 if (error(Section->getName(SectionName)))
603 SectionName = "";
604 outs() << SectionName;
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldELF.cpp 415 StringRef SectionName;
416 check(si->getName(SectionName));
417 if (SectionName != ".opd")
  /external/llvm/include/llvm/Object/
ELF.h     [all...]
  /external/clang/lib/CodeGen/
CGObjCMac.cpp     [all...]

Completed in 292 milliseconds