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

12

/external/llvm/include/llvm/MC/
H A DMCSectionELF.h31 /// SectionName - This is the name of the section. The referenced memory is
33 StringRef SectionName; member in class:llvm::MCSectionELF
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";
H A DMCSectionCOFF.h27 StringRef SectionName; member in class:llvm::MCSectionCOFF
49 : MCSection(SV_COFF, K), SectionName(Section),
62 StringRef getSectionName() const { return SectionName; }
64 return SectionName.str() + "_begin";
67 return SectionName.str() + "_end";
H A DMCSectionMachO.h28 char SectionName[16]; // Not necessarily null terminated! member in class:llvm::MCSectionMachO
50 // SectionName is not necessarily null terminated!
51 if (SectionName[15])
52 return StringRef(SectionName, 16);
53 return StringRef(SectionName);
/external/llvm/include/llvm/ExecutionEngine/
H A DSectionMemoryManager.h52 StringRef SectionName) override;
60 unsigned SectionID, StringRef SectionName,
H A DRTDyldMemoryManager.h46 StringRef SectionName) = 0;
53 StringRef SectionName, bool IsReadOnly) = 0;
/external/llvm/lib/MC/MCParser/
H A DELFAsmParser.cpp152 bool ParseSectionName(StringRef &SectionName);
230 bool ELFAsmParser::ParseSectionName(StringRef &SectionName) { argument
237 SectionName = getTok().getIdentifier();
260 SectionName = StringRef(FirstLoc.getPointer(), Size);
405 StringRef SectionName; local
407 if (ParseSectionName(SectionName))
418 if (SectionName == ".fini" || SectionName == ".init" ||
419 SectionName == ".rodata")
421 if (SectionName
[all...]
H A DCOFFAsmParser.cpp43 bool ParseSectionName(StringRef &SectionName);
313 bool COFFAsmParser::ParseSectionName(StringRef &SectionName) { argument
317 SectionName = getTok().getIdentifier();
337 StringRef SectionName; local
339 if (ParseSectionName(SectionName))
387 ParseSectionSwitch(SectionName, Flags, Kind, COMDATSymName, Type);
/external/llvm/tools/lli/
H A DRemoteMemoryManager.h71 StringRef SectionName) override;
74 unsigned SectionID, StringRef SectionName,
/external/llvm/test/tools/llvm-readobj/ARM/
H A Dunwind.s150 @ CHECK: SectionName: .ARM.exidx.personality
166 @ CHECK: SectionName: .ARM.exidx.personality0
182 @ CHECK: SectionName: .ARM.exidx.personality1
202 @ CHECK: SectionName: .ARM.exidx.custom_personality
215 @ CHECK: SectionName: .ARM.exidx.opcodes
230 @ CHECK: SectionName: .ARM.exidx.multiple
264 @ CHECK: SectionName: .ARM.exidx.raw
292 @ CHECK: SectionName: .ARM.exidx.spare
/external/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJIT.h39 StringRef SectionName) override {
40 return ClientMM->allocateCodeSection(Size, Alignment, SectionID, SectionName);
44 unsigned SectionID, StringRef SectionName,
47 SectionID, SectionName, IsReadOnly);
H A DSectionMemoryManager.cpp24 StringRef SectionName,
34 StringRef SectionName) {
21 allocateDataSection(uintptr_t Size, unsigned Alignment, unsigned SectionID, StringRef SectionName, bool IsReadOnly) argument
31 allocateCodeSection(uintptr_t Size, unsigned Alignment, unsigned SectionID, StringRef SectionName) argument
/external/llvm/lib/MC/
H A DMCSectionCOFF.cpp44 if (ShouldOmitSectionDirective(SectionName, MAI)) {
H A DMCSectionMachO.cpp84 SectionName[i] = Section[i];
86 SectionName[i] = 0;
H A DMCSectionELF.cpp62 if (ShouldOmitSectionDirective(SectionName, MAI)) {
/external/llvm/lib/ExecutionEngine/
H A DExecutionEngineBindings.cpp359 StringRef SectionName) override;
362 unsigned SectionID, StringRef SectionName,
392 StringRef SectionName) {
394 SectionName.str().c_str());
399 StringRef SectionName, bool isReadOnly) {
401 SectionName.str().c_str(),
390 allocateCodeSection( uintptr_t Size, unsigned Alignment, unsigned SectionID, StringRef SectionName) argument
397 allocateDataSection( uintptr_t Size, unsigned Alignment, unsigned SectionID, StringRef SectionName, bool isReadOnly) argument
/external/llvm/include/llvm-c/
H A DExecutionEngine.h178 const char *SectionName);
181 const char *SectionName, LLVMBool IsReadOnly);
/external/llvm/lib/Target/XCore/
H A DXCoreTargetObjectFile.cpp125 StringRef SectionName = GV->getSection(); local
127 bool IsCPRel = SectionName.startswith(".cp.");
130 return getContext().getELFSection(SectionName, getXCoreSectionType(Kind),
/external/llvm/tools/llvm-readobj/
H A DELFDumper.cpp140 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; local
715 getSectionNameIndex(*Obj, Symbol, SectionName, SectionInde
139 getSectionNameIndex(const ELFO &Obj, typename ELFO::Elf_Sym_Iter Symbol, StringRef &SectionName, unsigned &SectionIndex) argument
1206 StringRef SectionName; local
[all...]
/external/clang/lib/Sema/
H A DSemaAttr.cpp363 bool Sema::UnifySection(const StringRef &SectionName, argument
366 auto Section = SectionInfos.find(SectionName);
368 SectionInfos[SectionName] =
390 bool Sema::UnifySection(const StringRef &SectionName, argument
393 auto Section = SectionInfos.find(SectionName);
405 SectionInfos[SectionName] =
/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(
/external/llvm/lib/Target/Mips/
H A DMips16HardFloat.cpp257 std::string SectionName = ".mips16.call.fp." + Name; local
271 FStub->setSection(SectionName);
447 std::string SectionName = ".mips16.fn." + Name; local
458 FStub->setSection(SectionName);
/external/llvm/tools/llvm-rtdyld/
H A Dllvm-rtdyld.cpp92 StringRef SectionName) override;
94 unsigned SectionID, StringRef SectionName,
114 StringRef SectionName) {
123 StringRef SectionName,
111 allocateCodeSection(uintptr_t Size, unsigned Alignment, unsigned SectionID, StringRef SectionName) argument
120 allocateDataSection(uintptr_t Size, unsigned Alignment, unsigned SectionID, StringRef SectionName, bool IsReadOnly) argument

Completed in 642 milliseconds

12