HomeSort by relevance Sort by last modified time
    Searched refs:SectionName (Results 1 - 14 of 14) 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 28 /// SectionName - This is the name of the section. The referenced memory is
30 StringRef SectionName;
50 : MCSection(SV_ELF, K), SectionName(Section), Type(type), Flags(flags),
59 StringRef getSectionName() const { return SectionName; }
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 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)) {
MCSectionELF.cpp 37 if (ShouldOmitSectionDirective(SectionName, MAI)) {
MCSectionMachO.cpp 87 SectionName[i] = Section[i];
89 SectionName[i] = 0;
WinCOFFStreamer.cpp 139 std::string SectionName(".bss$linkonce");
140 SectionName.append(Symbol->getName().begin(), Symbol->getName().end());
153 SectionName, Characteristics, Selection, SectionKind::getBSS());
ELFObjectWriter.cpp     [all...]
  /external/llvm/lib/CodeGen/
TargetLoweringObjectFileImpl.cpp 176 StringRef SectionName = GV->getSection();
179 Kind = getELFKindForNamedSection(SectionName, Kind);
181 return getContext().getELFSection(SectionName,
182 getELFSectionType(SectionName, Kind),
  /external/llvm/tools/llvm-objdump/
llvm-objdump.cpp 544 StringRef SectionName;
545 if (error(Section->getName(SectionName)))
546 SectionName = "";
547 outs() << SectionName;
  /external/llvm/include/llvm/Object/
ELF.h     [all...]
  /external/clang/lib/CodeGen/
CGObjCMac.cpp     [all...]

Completed in 124 milliseconds