/external/llvm/lib/Target/AMDGPU/MCTargetDesc/ |
AMDGPUMCAsmInfo.cpp | 38 bool AMDGPUMCAsmInfo::shouldOmitSectionDirective(StringRef SectionName) const { 39 return SectionName == ".hsatext" || SectionName == ".hsadata_global_agent" || 40 SectionName == ".hsadata_global_program" || 41 SectionName == ".hsarodata_readonly_agent" || 42 MCAsmInfo::shouldOmitSectionDirective(SectionName);
|
AMDGPUMCAsmInfo.h | 30 bool shouldOmitSectionDirective(StringRef SectionName) const override;
|
/external/llvm/include/llvm/MC/ |
MCSectionCOFF.h | 26 StringRef SectionName; 48 : MCSection(SV_COFF, K, Begin), SectionName(Section), 62 StringRef getSectionName() const { return SectionName; }
|
MCSectionELF.h | 33 StringRef SectionName; 58 : MCSection(SV_ELF, K, Begin), SectionName(Section), Type(type), 65 void setSectionName(StringRef Name) { SectionName = Name; } 74 StringRef getSectionName() const { return SectionName; }
|
MCSectionMachO.h | 27 char SectionName[16]; // Not necessarily null terminated! 49 // SectionName is not necessarily null terminated! 50 if (SectionName[15]) 51 return StringRef(SectionName, 16); 52 return StringRef(SectionName);
|
MCContext.h | 173 std::string SectionName; 176 ELFSectionKey(StringRef SectionName, StringRef GroupName, 178 : SectionName(SectionName), GroupName(GroupName), UniqueID(UniqueID) { 181 if (SectionName != Other.SectionName) 182 return SectionName < Other.SectionName; 190 std::string SectionName; 193 COFFSectionKey(StringRef SectionName, StringRef GroupName [all...] |
/external/llvm/include/llvm/ExecutionEngine/ |
SectionMemoryManager.h | 52 StringRef SectionName) override; 60 unsigned SectionID, StringRef SectionName,
|
RuntimeDyldChecker.h | 93 StringRef SectionName,
|
RuntimeDyld.h | 107 StringRef SectionName) = 0; 114 StringRef SectionName,
|
/external/llvm/unittests/ExecutionEngine/Orc/ |
ObjectLinkingLayerTest.cpp | 31 StringRef SectionName, 33 if (SectionName == ".debug_str") 37 SectionName,
|
/external/llvm/lib/ExecutionEngine/RuntimeDyld/ |
RuntimeDyldCheckerImpl.h | 52 StringRef SectionName) const; 55 StringRef SectionName, 59 StringRef SectionName,
|
RuntimeDyldChecker.cpp | 343 StringRef SectionName; 344 std::tie(SectionName, RemainingExpr) = parseSymbol(RemainingExpr); 362 FileName, SectionName, Symbol, PCtx.IsInsideLoad); 388 StringRef SectionName; 389 std::tie(SectionName, RemainingExpr) = parseSymbol(RemainingExpr); 399 FileName, SectionName, PCtx.IsInsideLoad); 757 StringRef SectionName) const { 778 auto SectionInfoItr = SectionMapItr->second.find(SectionName); 781 ("Section '" + SectionName + "' not found in file '" + 788 StringRef FileName, StringRef SectionName, bool IsInsideLoad) const [all...] |
/external/llvm/lib/MC/ |
MCAsmInfo.cpp | 161 bool MCAsmInfo::shouldOmitSectionDirective(StringRef SectionName) const { 163 return SectionName == ".text" || SectionName == ".data" || 164 (SectionName == ".bss" && !usesELFSectionDirectiveForBSS());
|
MCSectionCOFF.cpp | 45 if (ShouldOmitSectionDirective(SectionName, MAI)) {
|
MCSectionMachO.cpp | 86 SectionName[i] = Section[i]; 88 SectionName[i] = 0;
|
/external/llvm/lib/Target/AMDGPU/ |
AMDGPUTargetObjectFile.h | 37 bool isAgentAllocationSection(const char *SectionName) const;
|
AMDGPUTargetObjectFile.cpp | 52 const char *SectionName) const { 55 .equals(SectionName);
|
/external/llvm/tools/lli/ |
RemoteMemoryManager.h | 71 StringRef SectionName) override; 74 unsigned SectionID, StringRef SectionName,
|
/external/llvm/lib/MC/MCParser/ |
ELFAsmParser.cpp | 142 bool ParseSectionName(StringRef &SectionName); 219 bool ELFAsmParser::ParseSectionName(StringRef &SectionName) { 226 SectionName = getTok().getIdentifier(); 249 SectionName = StringRef(FirstLoc.getPointer(), Size); 360 StringRef SectionName; 362 if (ParseSectionName(SectionName)) 375 if (SectionName == ".fini" || SectionName == ".init" || 376 SectionName == ".rodata") 378 if (SectionName == ".fini" || SectionName == ".init" [all...] |
/external/llvm/test/ExecutionEngine/RuntimeDyld/X86/ |
ELF_x86_64_StubBuf.s | 6 # CHECK: allocateCodeSection(Size = 42, Alignment = 16, SectionName = __text)
|
/external/autotest/site_utils/suite_scheduler/ |
base_event.py | 21 def SectionName(keyword): 78 section = SectionName(cls.KEYWORD)
|
/external/llvm/include/llvm-c/ |
ExecutionEngine.h | 157 const char *SectionName); 160 const char *SectionName, LLVMBool IsReadOnly);
|
/external/llvm/test/tools/llvm-readobj/ARM/ |
unwind.s | 150 @ 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/ |
ExecutionEngineBindings.cpp | 325 StringRef SectionName) override; 328 unsigned SectionID, StringRef SectionName, 358 StringRef SectionName) { 360 SectionName.str().c_str()); 365 StringRef SectionName, bool isReadOnly) { 367 SectionName.str().c_str(),
|
/external/llvm/lib/Target/Hexagon/MCTargetDesc/ |
HexagonMCELFStreamer.cpp | 106 StringRef SectionName = 113 SectionName, ELF::SHT_NOBITS, ELF::SHF_WRITE | ELF::SHF_ALLOC);
|