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

1 2

  /external/llvm/include/llvm/MC/
MCSectionCOFF.h 26 StringRef SectionName;
48 : MCSection(SV_COFF, K), SectionName(Section),
63 StringRef getSectionName() const { return SectionName; }
65 return SectionName.str() + "_begin";
68 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 154 bool ParseSectionName(StringRef &SectionName);
231 bool ELFAsmParser::ParseSectionName(StringRef &SectionName) {
238 SectionName = getTok().getIdentifier();
262 SectionName = StringRef(FirstLoc.getPointer(), Size);
345 StringRef SectionName;
347 if (ParseSectionName(SectionName))
357 if (SectionName == ".fini" || SectionName == ".init" ||
358 SectionName == ".rodata")
360 if (SectionName == ".fini" || SectionName == ".init"
    [all...]
COFFAsmParser.cpp 38 bool ParseSectionName(StringRef &SectionName);
297 bool COFFAsmParser::ParseSectionName(StringRef &SectionName) {
301 SectionName = getTok().getIdentifier();
321 StringRef SectionName;
323 if (ParseSectionName(SectionName))
347 ParseSectionSwitch(SectionName, Flags, Kind);
DarwinAsmParser.cpp 503 StringRef SectionName;
504 if (getParser().parseIdentifier(SectionName))
511 std::string SectionSpec = SectionName;
  /external/llvm/lib/MC/
MCSectionCOFF.cpp 47 if (ShouldOmitSectionDirective(SectionName, MAI)) {
WinCOFFStreamer.cpp 144 std::string SectionName(".bss$linkonce");
145 SectionName.append(Symbol->getName().begin(), Symbol->getName().end());
158 SectionName, Characteristics, SectionKind::getBSS(), Selection);
MCSectionELF.cpp 39 if (ShouldOmitSectionDirective(SectionName, MAI)) {
MCSectionMachO.cpp 87 SectionName[i] = Section[i];
89 SectionName[i] = 0;
ELFObjectWriter.cpp     [all...]
  /external/chromium_org/courgette/
disassembler_win32_x64.h 58 static std::string SectionName(const Section* section);
disassembler_win32_x64_unittest.cc 33 EXPECT_EQ(courgette::DisassemblerWin32X64::SectionName(
disassembler_win32_x86.h 58 static std::string SectionName(const Section* section);
disassembler_win32_x86_unittest.cc 33 EXPECT_EQ(courgette::DisassemblerWin32X86::SectionName(
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/clang/test/SemaCXX/
crashes.cpp 147 int SectionName(getString(sh));
  /external/llvm/lib/Target/Mips/
Mips16HardFloat.cpp 249 std::string SectionName = ".mips16.call.fp." + Name;
263 FStub->setSection(SectionName);
391 std::string SectionName = ".mips16.fn." + Name;
402 FStub->setSection(SectionName);
  /external/llvm/tools/llvm-readobj/
MachODumper.cpp 410 StringRef SectionName = "";
414 error(SecI->getName(SectionName));
423 W.printHex ("Section", SectionName, Symbol.SectionIndex);
ELFDumper.cpp 638 StringRef SectionName = "";
640 Obj->getSectionName(Section, SectionName);
662 W.printHex ("Section", SectionName, Symbol->st_shndx);
COFFDumper.cpp 817 StringRef SectionName = "";
819 Obj->getSectionName(Section, SectionName);
823 W.printNumber("Section", SectionName, Symbol->SectionNumber);
    [all...]
  /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 727 StringRef SectionName;
728 if (error(Section->getName(SectionName)))
729 SectionName = "";
730 outs() << SectionName;
  /external/llvm/include/llvm/Object/
ELF.h     [all...]

Completed in 1730 milliseconds

1 2