Searched refs:SectionName (Results 1 - 25 of 26) sorted by relevance

12

/external/llvm/include/llvm/MC/
H A DMCSectionCOFF.h26 StringRef SectionName; member in class:llvm::MCSectionCOFF
48 : MCSection(SV_COFF, K), SectionName(Section),
63 StringRef getSectionName() const { return SectionName; }
65 return SectionName.str() + "_begin";
68 return SectionName.str() + "_end";
H A DMCSectionELF.h30 /// SectionName - This is the name of the section. The referenced memory is
32 StringRef SectionName; member in class:llvm::MCSectionELF
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";
H A DMCSectionMachO.h27 char SectionName[16]; // Not necessarily null terminated! member in class:llvm::MCSectionMachO
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/
H A DELFAsmParser.cpp154 bool ParseSectionName(StringRef &SectionName);
231 bool ELFAsmParser::ParseSectionName(StringRef &SectionName) { argument
238 SectionName = getTok().getIdentifier();
262 SectionName = StringRef(FirstLoc.getPointer(), Size);
345 StringRef SectionName; local
347 if (ParseSectionName(SectionName))
357 if (SectionName == ".fini" || SectionName == ".init" ||
358 SectionName == ".rodata")
360 if (SectionName
[all...]
H A DCOFFAsmParser.cpp38 bool ParseSectionName(StringRef &SectionName);
297 bool COFFAsmParser::ParseSectionName(StringRef &SectionName) { argument
301 SectionName = getTok().getIdentifier();
321 StringRef SectionName; local
323 if (ParseSectionName(SectionName))
347 ParseSectionSwitch(SectionName, Flags, Kind);
H A DDarwinAsmParser.cpp503 StringRef SectionName; local
504 if (getParser().parseIdentifier(SectionName))
511 std::string SectionSpec = SectionName;
/external/llvm/lib/MC/
H A DMCSectionCOFF.cpp47 if (ShouldOmitSectionDirective(SectionName, MAI)) {
H A DWinCOFFStreamer.cpp144 std::string SectionName(".bss$linkonce");
145 SectionName.append(Symbol->getName().begin(), Symbol->getName().end());
158 SectionName, Characteristics, SectionKind::getBSS(), Selection);
H A DMCSectionELF.cpp39 if (ShouldOmitSectionDirective(SectionName, MAI)) {
H A DMCSectionMachO.cpp87 SectionName[i] = Section[i];
89 SectionName[i] = 0;
H A DELFObjectWriter.cpp995 const StringRef SectionName = Section.getSectionName(); local
997 RelaSectionName += SectionName;
1301 StringRef SectionName = Section.getSectionName().substr(SecNameLen); local
1303 InfoSection = Asm.getContext().getELFSection(SectionName,
/external/clang/test/SemaCXX/
H A Dcrashes.cpp147 int SectionName(getString(sh));
/external/chromium_org/courgette/
H A Ddisassembler_win32_x64.h58 static std::string SectionName(const Section* section);
H A Ddisassembler_win32_x64_unittest.cc33 EXPECT_EQ(courgette::DisassemblerWin32X64::SectionName(
H A Ddisassembler_win32_x86.h58 static std::string SectionName(const Section* section);
H A Ddisassembler_win32_x86_unittest.cc33 EXPECT_EQ(courgette::DisassemblerWin32X86::SectionName(
H A Ddisassembler_win32_x64.cc325 std::string DisassemblerWin32X64::SectionName(const Section* section) { function in class:courgette::DisassemblerWin32X64
670 s << SectionName(section) << "+"
H A Ddisassembler_win32_x86.cc325 std::string DisassemblerWin32X86::SectionName(const Section* section) { function in class:courgette::DisassemblerWin32X86
670 s << SectionName(section) << "+"
/external/llvm/lib/Target/Mips/
H A DMips16HardFloat.cpp249 std::string SectionName = ".mips16.call.fp." + Name; local
263 FStub->setSection(SectionName);
391 std::string SectionName = ".mips16.fn." + Name; local
402 FStub->setSection(SectionName);
/external/llvm/tools/llvm-readobj/
H A DMachODumper.cpp410 StringRef SectionName = ""; local
414 error(SecI->getName(SectionName));
423 W.printHex ("Section", SectionName, Symbol.SectionIndex);
H A DELFDumper.cpp638 StringRef SectionName = ""; local
640 Obj->getSectionName(Section, SectionName);
662 W.printHex ("Section", SectionName, Symbol->st_shndx);
H A DCOFFDumper.cpp817 StringRef SectionName = ""; local
819 Obj->getSectionName(Section, SectionName);
823 W.printNumber("Section", SectionName, Symbol->SectionNumber);
/external/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp206 StringRef SectionName = GV->getSection(); local
209 Kind = getELFKindForNamedSection(SectionName, Kind);
211 return getContext().getELFSection(SectionName,
212 getELFSectionType(SectionName, Kind),
/external/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp727 StringRef SectionName; local
728 if (error(Section->getName(SectionName)))
729 SectionName = "";
730 outs() << SectionName;
/external/llvm/include/llvm/Object/
H A DELF.h2508 StringRef SectionName(getString(dot_shstrtab_sec, sh->sh_name));
2509 if (SectionName == ".strtab") {
2515 } else if (SectionName == ".dynstr") {

Completed in 293 milliseconds

12