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

  /external/llvm/include/llvm/MC/
MCSectionCOFF.h 26 StringRef SectionName;
48 : MCSection(SV_COFF, K, Begin), SectionName(Section),
62 StringRef getSectionName() const { return SectionName; }
MCSectionMachO.h 27 char SectionName[16]; // Not necessarily null terminated!
49 // SectionName is not necessarily null terminated!
50 if (SectionName[15])
51 return StringRef(SectionName, 16);
52 return StringRef(SectionName);
MCSectionELF.h 33 StringRef SectionName;
58 : MCSection(SV_ELF, K, Begin), SectionName(Section), Type(type),
65 void setSectionName(StringRef Name) { SectionName = Name; }
74 StringRef getSectionName() const { return SectionName; }
MCContext.h 173 std::string SectionName;
176 ELFSectionKey(StringRef SectionName, StringRef GroupName,
178 : SectionName(SectionName), GroupName(GroupName), UniqueID(UniqueID) {
181 if (SectionName != Other.SectionName)
182 return SectionName < Other.SectionName;
190 std::string SectionName;
193 COFFSectionKey(StringRef SectionName, StringRef GroupName
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreTargetObjectFile.cpp 102 StringRef SectionName = GV->getSection();
104 bool IsCPRel = SectionName.startswith(".cp.");
107 return getContext().getELFSection(SectionName, getXCoreSectionType(Kind),
  /external/autotest/site_utils/suite_scheduler/
base_event.py 21 def SectionName(keyword):
78 section = SectionName(cls.KEYWORD)
  /external/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonMCELFStreamer.cpp 106 StringRef SectionName =
113 SectionName, ELF::SHT_NOBITS, ELF::SHF_WRITE | ELF::SHF_ALLOC);
  /external/llvm/lib/MC/MCParser/
ELFAsmParser.cpp 142 bool ParseSectionName(StringRef &SectionName);
219 bool ELFAsmParser::ParseSectionName(StringRef &SectionName) {
226 SectionName = getTok().getIdentifier();
249 SectionName = StringRef(FirstLoc.getPointer(), Size);
360 StringRef SectionName;
362 if (ParseSectionName(SectionName))
375 if (SectionName == ".fini" || SectionName == ".init" ||
376 SectionName == ".rodata")
378 if (SectionName == ".fini" || SectionName == ".init"
    [all...]
COFFAsmParser.cpp 43 bool ParseSectionName(StringRef &SectionName);
314 bool COFFAsmParser::ParseSectionName(StringRef &SectionName) {
318 SectionName = getTok().getIdentifier();
338 StringRef SectionName;
340 if (ParseSectionName(SectionName))
392 ParseSectionSwitch(SectionName, Flags, Kind, COMDATSymName, Type);
DarwinAsmParser.cpp 558 StringRef SectionName;
559 if (getParser().parseIdentifier(SectionName))
566 std::string SectionSpec = SectionName;
    [all...]
  /external/llvm/lib/Target/Mips/
Mips16HardFloat.cpp 269 std::string SectionName = ".mips16.call.fp." + Name;
283 FStub->setSection(SectionName);
468 std::string SectionName = ".mips16.fn." + Name;
479 FStub->setSection(SectionName);
MipsAsmPrinter.cpp 716 std::string SectionName = std::string(".mdebug.") + getCurrentABIString();
718 OutContext.getELFSection(SectionName, ELF::SHT_PROGBITS, 0));
    [all...]
  /external/llvm/tools/llvm-readobj/
ARMWinEHPrinter.cpp 730 StringRef SectionName;
732 COFF.getSectionName(COFF.getCOFFSection(Section), SectionName))
735 if (SectionName.startswith(".pdata"))
MachODumper.cpp 613 StringRef SectionName = "";
618 error(SecI->getName(SectionName));
632 W.printHex("Section", SectionName, MOSymbol.SectionIndex);
COFFDumper.cpp 703 StringRef SectionName;
705 OffsetInSection + Offset, SectionName));
714 W.printString("Section", SectionName);
    [all...]
ELFDumper.cpp 468 StringRef &SectionName, unsigned &SectionIndex) {
471 SectionName = "Undefined";
473 SectionName = "Processor Specific";
475 SectionName = "Operating System Specific";
477 SectionName = "Absolute";
479 SectionName = "Common";
481 SectionName = "Reserved";
488 SectionName = errorOrDefault(Obj.getSectionName(*Sec));
    [all...]
  /external/llvm/tools/llvm-rtdyld/
llvm-rtdyld.cpp 152 StringRef SectionName) override;
154 unsigned SectionID, StringRef SectionName,
219 StringRef SectionName) {
222 << Alignment << ", SectionName = " << SectionName << ")\n";
238 StringRef SectionName,
242 << Alignment << ", SectionName = " << SectionName << ")\n";
477 std::string SectionName = SectionIDStr.substr(ComaIdx + 1);
482 Checker.getSectionAddr(FileName, SectionName, true)
    [all...]
  /external/llvm/tools/sancov/
sancov.cc 296 StringRef SectionName;
297 FailIfError(Section.getName(SectionName));
  /external/llvm/lib/CodeGen/
TargetLoweringObjectFileImpl.cpp 207 StringRef SectionName = GV->getSection();
210 Kind = getELFKindForNamedSection(SectionName, Kind);
218 return getContext().getELFSection(SectionName,
219 getELFSectionType(SectionName, Kind), Flags,
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldChecker.cpp 343 StringRef SectionName;
344 std::tie(SectionName, RemainingExpr) = parseSymbol(RemainingExpr);
362 FileName, SectionName, Symbol, PCtx.IsInsideLoad);
388 StringRef SectionName;
389 std::tie(SectionName, RemainingExpr) = parseSymbol(RemainingExpr);
399 FileName, SectionName, PCtx.IsInsideLoad);
757 StringRef SectionName) const {
778 auto SectionInfoItr = SectionMapItr->second.find(SectionName);
781 ("Section '" + SectionName + "' not found in file '" +
788 StringRef FileName, StringRef SectionName, bool IsInsideLoad) const
    [all...]
RuntimeDyldELF.cpp 131 StringRef SectionName;
132 Sec.getName(SectionName);
133 if (SectionName != "") {
798 StringRef SectionName;
799 check(Section.getName(SectionName));
801 if (SectionName == ".got"
802 || SectionName == ".toc"
803 || SectionName == ".tocbss"
804 || SectionName == ".plt") {
    [all...]
  /external/llvm/tools/llvm-nm/
llvm-nm.cpp 372 StringRef SectionName;
373 MachO->getSectionName(Ref, SectionName);
375 outs() << "(" << SegmentName << "," << SectionName << ") ";
777 StringRef SectionName;
778 Obj.getSectionName(Ref, SectionName);
780 if (SegmentName == "__TEXT" && SectionName == "__text")
782 else if (SegmentName == "__DATA" && SectionName == "__data")
784 else if (SegmentName == "__DATA" && SectionName == "__bss")
867 StringRef SectionName;
868 Obj->getSectionName(Ref, SectionName);
    [all...]
  /external/llvm/tools/dsymutil/
DwarfLinker.cpp     [all...]
  /external/llvm/tools/llvm-objdump/
MachODump.cpp     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
setupapi.h 835 CHAR SectionName[LINE_LEN];
847 WCHAR SectionName[LINE_LEN];
    [all...]

Completed in 2089 milliseconds