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

  /external/llvm/include/llvm/MC/
MCSectionCOFF.h 27 StringRef SectionName;
49 : MCSection(SV_COFF, K), SectionName(Section),
62 StringRef getSectionName() const { return SectionName; }
64 return SectionName.str() + "_begin";
67 return SectionName.str() + "_end";
MCSectionELF.h 31 /// SectionName - This is the name of the section. The referenced memory is
33 StringRef SectionName;
53 : MCSection(SV_ELF, K), SectionName(Section), Type(type), Flags(flags),
57 void setSectionName(StringRef Name) { SectionName = Name; }
65 StringRef getSectionName() const { return SectionName; }
68 return (SectionName.str() + '_' + Group->getName() + "_begin").str();
69 return SectionName.str() + "_begin";
73 return (SectionName.str() + '_' + Group->getName() + "_end").str();
74 return SectionName.str() + "_end";
MCSectionMachO.h 28 char SectionName[16]; // Not necessarily null terminated!
50 // SectionName is not necessarily null terminated!
51 if (SectionName[15])
52 return StringRef(SectionName, 16);
53 return StringRef(SectionName);
  /external/llvm/lib/Target/XCore/
XCoreTargetObjectFile.cpp 125 StringRef SectionName = GV->getSection();
127 bool IsCPRel = SectionName.startswith(".cp.");
130 return getContext().getELFSection(SectionName, getXCoreSectionType(Kind),
  /external/llvm/tools/llvm-readobj/
ARMWinEHPrinter.cpp 731 StringRef SectionName;
733 COFF.getSectionName(COFF.getCOFFSection(Section), SectionName))
736 if (SectionName.startswith(".pdata"))
MachODumper.cpp 385 StringRef SectionName = "";
388 error(SecI->getName(SectionName));
402 W.printHex("Section", SectionName, MOSymbol.SectionIndex);
COFFDumper.cpp 737 StringRef SectionName = "";
739 Obj->getSectionName(Section, SectionName);
743 W.printNumber("Section", SectionName, Symbol->SectionNumber);
    [all...]
ELFDumper.cpp 140 StringRef &SectionName, unsigned &SectionIndex) {
143 SectionName = "Undefined";
145 SectionName = "Processor Specific";
147 SectionName = "Operating System Specific";
149 SectionName = "Reserved";
151 SectionName = "Absolute";
153 SectionName = "Common";
160 SectionName = errorOrDefault(Obj.getSectionName(Sec));
714 StringRef SectionName;
715 getSectionNameIndex(*Obj, Symbol, SectionName, SectionIndex)
    [all...]
  /external/chromium_org/courgette/
disassembler_win32_x64.cc 325 std::string DisassemblerWin32X64::SectionName(const Section* section) {
670 s << SectionName(section) << "+"
disassembler_win32_x86.cc 325 std::string DisassemblerWin32X86::SectionName(const Section* section) {
670 s << SectionName(section) << "+"
  /external/llvm/lib/CodeGen/
TargetLoweringObjectFileImpl.cpp 210 StringRef SectionName = GV->getSection();
213 Kind = getELFKindForNamedSection(SectionName, Kind);
221 return getContext().getELFSection(SectionName,
222 getELFSectionType(SectionName, Kind), Flags,
    [all...]
  /external/llvm/lib/MC/MCParser/
COFFAsmParser.cpp 43 bool ParseSectionName(StringRef &SectionName);
313 bool COFFAsmParser::ParseSectionName(StringRef &SectionName) {
317 SectionName = getTok().getIdentifier();
337 StringRef SectionName;
339 if (ParseSectionName(SectionName))
387 ParseSectionSwitch(SectionName, Flags, Kind, COMDATSymName, Type);
ELFAsmParser.cpp 152 bool ParseSectionName(StringRef &SectionName);
230 bool ELFAsmParser::ParseSectionName(StringRef &SectionName) {
237 SectionName = getTok().getIdentifier();
260 SectionName = StringRef(FirstLoc.getPointer(), Size);
405 StringRef SectionName;
407 if (ParseSectionName(SectionName))
418 if (SectionName == ".fini" || SectionName == ".init" ||
419 SectionName == ".rodata")
421 if (SectionName == ".fini" || SectionName == ".init"
    [all...]
DarwinAsmParser.cpp 549 StringRef SectionName;
550 if (getParser().parseIdentifier(SectionName))
557 std::string SectionSpec = SectionName;
    [all...]
  /external/llvm/lib/Target/Mips/
Mips16HardFloat.cpp 257 std::string SectionName = ".mips16.call.fp." + Name;
271 FStub->setSection(SectionName);
447 std::string SectionName = ".mips16.fn." + Name;
458 FStub->setSection(SectionName);
MipsAsmPrinter.cpp 685 std::string SectionName = std::string(".mdebug.") + getCurrentABIString();
687 SectionName, ELF::SHT_PROGBITS, 0, SectionKind::getDataRel()));
    [all...]
  /external/llvm/tools/llvm-nm/
llvm-nm.cpp 331 StringRef SectionName;
332 MachO->getSectionName(Ref, SectionName);
334 outs() << "(" << SegmentName << "," << SectionName << ") ";
624 StringRef SectionName;
625 Obj.getSectionName(Ref, SectionName);
627 if (SegmentName == "__TEXT" && SectionName == "__text")
629 else if (SegmentName == "__DATA" && SectionName == "__data")
631 else if (SegmentName == "__DATA" && SectionName == "__bss")
    [all...]
  /external/llvm/tools/llvm-objdump/
llvm-objdump.cpp 795 StringRef SectionName;
796 if (error(Section->getName(SectionName)))
797 SectionName = "";
798 outs() << SectionName;
  /external/llvm/lib/MC/
ELFObjectWriter.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 334 milliseconds