/external/llvm/include/llvm/MC/ |
H A D | MCSectionCOFF.h | 26 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 D | MCSectionELF.h | 30 /// 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 D | MCSectionMachO.h | 27 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 D | ELFAsmParser.cpp | 154 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 D | COFFAsmParser.cpp | 38 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 D | DarwinAsmParser.cpp | 503 StringRef SectionName; local 504 if (getParser().parseIdentifier(SectionName)) 511 std::string SectionSpec = SectionName;
|
/external/llvm/lib/MC/ |
H A D | MCSectionCOFF.cpp | 47 if (ShouldOmitSectionDirective(SectionName, MAI)) {
|
H A D | WinCOFFStreamer.cpp | 144 std::string SectionName(".bss$linkonce"); 145 SectionName.append(Symbol->getName().begin(), Symbol->getName().end()); 158 SectionName, Characteristics, SectionKind::getBSS(), Selection);
|
H A D | MCSectionELF.cpp | 39 if (ShouldOmitSectionDirective(SectionName, MAI)) {
|
H A D | MCSectionMachO.cpp | 87 SectionName[i] = Section[i]; 89 SectionName[i] = 0;
|
H A D | ELFObjectWriter.cpp | 995 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 D | crashes.cpp | 147 int SectionName(getString(sh));
|
/external/chromium_org/courgette/ |
H A D | disassembler_win32_x64.h | 58 static std::string SectionName(const Section* section);
|
H A D | disassembler_win32_x64_unittest.cc | 33 EXPECT_EQ(courgette::DisassemblerWin32X64::SectionName(
|
H A D | disassembler_win32_x86.h | 58 static std::string SectionName(const Section* section);
|
H A D | disassembler_win32_x86_unittest.cc | 33 EXPECT_EQ(courgette::DisassemblerWin32X86::SectionName(
|
H A D | disassembler_win32_x64.cc | 325 std::string DisassemblerWin32X64::SectionName(const Section* section) { function in class:courgette::DisassemblerWin32X64 670 s << SectionName(section) << "+"
|
H A D | disassembler_win32_x86.cc | 325 std::string DisassemblerWin32X86::SectionName(const Section* section) { function in class:courgette::DisassemblerWin32X86 670 s << SectionName(section) << "+"
|
/external/llvm/lib/Target/Mips/ |
H A D | Mips16HardFloat.cpp | 249 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 D | MachODumper.cpp | 410 StringRef SectionName = ""; local 414 error(SecI->getName(SectionName)); 423 W.printHex ("Section", SectionName, Symbol.SectionIndex);
|
H A D | ELFDumper.cpp | 638 StringRef SectionName = ""; local 640 Obj->getSectionName(Section, SectionName); 662 W.printHex ("Section", SectionName, Symbol->st_shndx);
|
H A D | COFFDumper.cpp | 817 StringRef SectionName = ""; local 819 Obj->getSectionName(Section, SectionName); 823 W.printNumber("Section", SectionName, Symbol->SectionNumber);
|
/external/llvm/lib/CodeGen/ |
H A D | TargetLoweringObjectFileImpl.cpp | 206 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 D | llvm-objdump.cpp | 727 StringRef SectionName; local 728 if (error(Section->getName(SectionName))) 729 SectionName = ""; 730 outs() << SectionName;
|
/external/llvm/include/llvm/Object/ |
H A D | ELF.h | 2508 StringRef SectionName(getString(dot_shstrtab_sec, sh->sh_name)); 2509 if (SectionName == ".strtab") { 2515 } else if (SectionName == ".dynstr") {
|