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

123

/external/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DAMDGPUMCAsmInfo.cpp40 bool AMDGPUMCAsmInfo::shouldOmitSectionDirective(StringRef SectionName) const {
41 return SectionName == ".hsatext" || SectionName == ".hsadata_global_agent" ||
42 SectionName == ".hsadata_global_program" ||
43 SectionName == ".hsarodata_readonly_agent" ||
44 MCAsmInfo::shouldOmitSectionDirective(SectionName);
H A DAMDGPUMCAsmInfo.h30 bool shouldOmitSectionDirective(StringRef SectionName) const override;
/external/swiftshader/third_party/LLVM/include/llvm/MC/
H A DMCSectionCOFF.h26 StringRef SectionName; member in class:llvm::MCSectionCOFF
40 : MCSection(SV_COFF, K), SectionName(Section),
52 StringRef getSectionName() const { return SectionName; }
H A DMCSectionMachO.h26 char SectionName[16]; // Not necessarily null terminated! member in class:llvm::MCSectionMachO
141 // SectionName is not necessarily null terminated!
142 if (SectionName[15])
143 return StringRef(SectionName, 16);
144 return StringRef(SectionName);
H A DMCSectionELF.h27 /// SectionName - This is the name of the section. The referenced memory is
29 StringRef SectionName; member in class:llvm::MCSectionELF
49 : MCSection(SV_ELF, K), SectionName(Section), Type(type), Flags(flags),
58 StringRef getSectionName() const { return SectionName; }
/external/llvm/include/llvm/MC/
H A DMCSectionELF.h33 StringRef SectionName; member in class:llvm::final
58 : MCSection(SV_ELF, K, Begin), SectionName(Section), Type(type),
65 void setSectionName(StringRef Name) { SectionName = Name; }
74 StringRef getSectionName() const { return SectionName; }
H A DMCSectionMachO.h27 char SectionName[16]; // Not necessarily null terminated! member in class:llvm::final
49 // SectionName is not necessarily null terminated!
50 if (SectionName[15])
51 return StringRef(SectionName, 16);
52 return StringRef(SectionName);
H A DMCSectionCOFF.h26 StringRef SectionName; member in class:llvm::final
55 : MCSection(SV_COFF, K, Begin), SectionName(Section),
69 StringRef getSectionName() const { return SectionName; }
H A DMCContext.h183 std::string SectionName; member in struct:llvm::MCContext::ELFSectionKey
186 ELFSectionKey(StringRef SectionName, StringRef GroupName, argument
188 : SectionName(SectionName), GroupName(GroupName), UniqueID(UniqueID) {
191 if (SectionName != Other.SectionName)
192 return SectionName < Other.SectionName;
200 std::string SectionName; member in struct:llvm::MCContext::COFFSectionKey
204 COFFSectionKey(StringRef SectionName, StringRe argument
[all...]
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldCheckerImpl.h51 StringRef SectionName) const;
54 StringRef SectionName,
58 StringRef SectionName,
H A DRuntimeDyldChecker.cpp345 StringRef SectionName; local
346 std::tie(SectionName, RemainingExpr) = parseSymbol(RemainingExpr);
364 FileName, SectionName, Symbol, PCtx.IsInsideLoad);
390 StringRef SectionName; local
391 std::tie(SectionName, RemainingExpr) = parseSymbol(RemainingExpr);
401 FileName, SectionName, PCtx.IsInsideLoad);
759 StringRef SectionName) const {
780 auto SectionInfoItr = SectionMapItr->second.find(SectionName);
783 ("Section '" + SectionName + "' not found in file '" +
790 StringRef FileName, StringRef SectionName, boo
789 getSectionAddr( StringRef FileName, StringRef SectionName, bool IsInsideLoad) const argument
812 getStubAddrFor( StringRef FileName, StringRef SectionName, StringRef SymbolName, bool IsInsideLoad) const argument
868 StringRef SectionName = Section.getName(); local
878 StringRef SectionName = Section.getName(); local
934 getSectionAddr(StringRef FileName, StringRef SectionName, bool LocalAddress) argument
[all...]
/external/llvm/lib/MC/
H A DMCAsmInfo.cpp163 bool MCAsmInfo::shouldOmitSectionDirective(StringRef SectionName) const {
165 return SectionName == ".text" || SectionName == ".data" ||
166 (SectionName == ".bss" && !usesELFSectionDirectiveForBSS());
H A DMCSectionCOFF.cpp45 if (ShouldOmitSectionDirective(SectionName, MAI)) {
/external/llvm/include/llvm/ExecutionEngine/
H A DSectionMemoryManager.h52 StringRef SectionName) override;
60 unsigned SectionID, StringRef SectionName,
H A DRuntimeDyldChecker.h97 StringRef SectionName,
/external/swiftshader/third_party/LLVM/lib/MC/MCParser/
H A DELFAsmParser.cpp148 bool ParseSectionName(StringRef &SectionName);
221 bool ELFAsmParser::ParseSectionName(StringRef &SectionName) { argument
228 SectionName = getTok().getIdentifier();
252 SectionName = StringRef(FirstLoc.getPointer(), Size);
331 StringRef SectionName; local
333 if (ParseSectionName(SectionName))
342 if (SectionName == ".fini" || SectionName == ".init" ||
343 SectionName == ".rodata")
345 if (SectionName
[all...]
/external/llvm/lib/MC/MCParser/
H A DELFAsmParser.cpp142 bool ParseSectionName(StringRef &SectionName);
220 bool ELFAsmParser::ParseSectionName(StringRef &SectionName) { argument
227 SectionName = getTok().getIdentifier();
251 SectionName = StringRef(FirstLoc.getPointer(), Size);
362 StringRef SectionName; local
364 if (ParseSectionName(SectionName))
377 if (SectionName == ".fini" || SectionName == ".init" ||
378 SectionName == ".rodata")
380 if (SectionName
[all...]
/external/llvm/test/ExecutionEngine/RuntimeDyld/X86/
H A DELF_x86_64_StubBuf.s6 # CHECK: allocateCodeSection(Size = 42, Alignment = 16, SectionName = __text)
/external/llvm/tools/lli/
H A DRemoteJITUtils.h92 StringRef SectionName) override {
93 return MemMgr->allocateCodeSection(Size, Alignment, SectionID, SectionName);
97 unsigned SectionID, StringRef SectionName,
99 return MemMgr->allocateDataSection(Size, Alignment, SectionID, SectionName,
/external/swiftshader/third_party/LLVM/lib/MC/
H A DMCSectionCOFF.cpp35 if (ShouldOmitSectionDirective(SectionName, MAI)) {
/external/llvm/include/llvm-c/
H A DExecutionEngine.h157 const char *SectionName);
160 const char *SectionName, LLVMBool IsReadOnly);
/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/
H A DExecutionEngineBindings.cpp328 StringRef SectionName) override;
331 unsigned SectionID, StringRef SectionName,
361 StringRef SectionName) {
363 SectionName.str().c_str());
368 StringRef SectionName, bool isReadOnly) {
370 SectionName.str().c_str(),
359 allocateCodeSection( uintptr_t Size, unsigned Alignment, unsigned SectionID, StringRef SectionName) argument
366 allocateDataSection( uintptr_t Size, unsigned Alignment, unsigned SectionID, StringRef SectionName, bool isReadOnly) argument
/external/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp94 void printCodeViewSymbolSection(StringRef SectionName, const SectionRef &Section);
95 void printCodeViewTypeSection(StringRef SectionName, const SectionRef &Section);
700 StringRef SectionName; local
701 error(S.getName(SectionName));
702 if (SectionName == ".debug$T")
703 printCodeViewTypeSection(SectionName, S);
706 StringRef SectionName; local
707 error(S.getName(SectionName));
708 if (SectionName == ".debug$S")
709 printCodeViewSymbolSection(SectionName,
740 printCodeViewSymbolSection(StringRef SectionName, const SectionRef &Section) argument
1053 StringRef SectionName; local
1079 printCodeViewTypeSection(StringRef SectionName, const SectionRef &Section) argument
1220 StringRef SectionName; local
1249 StringRef SectionName = ""; local
[all...]
/external/autotest/site_utils/suite_scheduler/
H A Dbase_event.py25 def SectionName(keyword): function
93 section = SectionName(cls.KEYWORD)

Completed in 504 milliseconds

123