/external/llvm/lib/Target/AMDGPU/MCTargetDesc/ |
D | AMDGPUMCAsmInfo.cpp | 38 bool AMDGPUMCAsmInfo::shouldOmitSectionDirective(StringRef SectionName) const { in shouldOmitSectionDirective() 39 return SectionName == ".hsatext" || SectionName == ".hsadata_global_agent" || in shouldOmitSectionDirective() 40 SectionName == ".hsadata_global_program" || in shouldOmitSectionDirective() 41 SectionName == ".hsarodata_readonly_agent" || in shouldOmitSectionDirective() 42 MCAsmInfo::shouldOmitSectionDirective(SectionName); in shouldOmitSectionDirective()
|
/external/llvm/include/llvm/MC/ |
D | MCContext.h | 173 std::string SectionName; member 176 ELFSectionKey(StringRef SectionName, StringRef GroupName, in ELFSectionKey() 178 : SectionName(SectionName), GroupName(GroupName), UniqueID(UniqueID) { in ELFSectionKey() 181 if (SectionName != Other.SectionName) 182 return SectionName < Other.SectionName; 190 std::string SectionName; member 193 COFFSectionKey(StringRef SectionName, StringRef GroupName, in COFFSectionKey() 195 : SectionName(SectionName), GroupName(GroupName), in COFFSectionKey() 198 if (SectionName != Other.SectionName) 199 return SectionName < Other.SectionName;
|
D | MCSectionMachO.h | 27 char SectionName[16]; // Not necessarily null terminated! variable 50 if (SectionName[15]) in getSectionName() 51 return StringRef(SectionName, 16); in getSectionName() 52 return StringRef(SectionName); in getSectionName()
|
D | MCSectionELF.h | 33 StringRef SectionName; variable 58 : MCSection(SV_ELF, K, Begin), SectionName(Section), Type(type), in MCSectionELF() 65 void setSectionName(StringRef Name) { SectionName = Name; } in setSectionName() 74 StringRef getSectionName() const { return SectionName; } in getSectionName()
|
D | MCSectionCOFF.h | 26 StringRef SectionName; variable 48 : MCSection(SV_COFF, K, Begin), SectionName(Section), in MCSectionCOFF() 62 StringRef getSectionName() const { return SectionName; } in getSectionName()
|
/external/llvm/lib/MC/MCParser/ |
D | ELFAsmParser.cpp | 142 bool ParseSectionName(StringRef &SectionName); 219 bool ELFAsmParser::ParseSectionName(StringRef &SectionName) { in ParseSectionName() argument 226 SectionName = getTok().getIdentifier(); in ParseSectionName() 249 SectionName = StringRef(FirstLoc.getPointer(), Size); in ParseSectionName() 360 StringRef SectionName; in ParseSectionArguments() local 362 if (ParseSectionName(SectionName)) in ParseSectionArguments() 375 if (SectionName == ".fini" || SectionName == ".init" || in ParseSectionArguments() 376 SectionName == ".rodata") in ParseSectionArguments() 378 if (SectionName == ".fini" || SectionName == ".init") in ParseSectionArguments() 483 if (SectionName.startswith(".note")) in ParseSectionArguments() [all …]
|
D | COFFAsmParser.cpp | 43 bool ParseSectionName(StringRef &SectionName); 314 bool COFFAsmParser::ParseSectionName(StringRef &SectionName) { in ParseSectionName() argument 318 SectionName = getTok().getIdentifier(); in ParseSectionName() 338 StringRef SectionName; in ParseDirectiveSection() local 340 if (ParseSectionName(SectionName)) in ParseDirectiveSection() 392 ParseSectionSwitch(SectionName, Flags, Kind, COMDATSymName, Type); in ParseDirectiveSection()
|
/external/llvm/lib/MC/ |
D | MCAsmInfo.cpp | 161 bool MCAsmInfo::shouldOmitSectionDirective(StringRef SectionName) const { in shouldOmitSectionDirective() 163 return SectionName == ".text" || SectionName == ".data" || in shouldOmitSectionDirective() 164 (SectionName == ".bss" && !usesELFSectionDirectiveForBSS()); in shouldOmitSectionDirective()
|
/external/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyldChecker.cpp | 343 StringRef SectionName; in evalStubAddr() local 344 std::tie(SectionName, RemainingExpr) = parseSymbol(RemainingExpr); in evalStubAddr() 362 FileName, SectionName, Symbol, PCtx.IsInsideLoad); in evalStubAddr() 388 StringRef SectionName; in evalSectionAddr() local 389 std::tie(SectionName, RemainingExpr) = parseSymbol(RemainingExpr); in evalSectionAddr() 399 FileName, SectionName, PCtx.IsInsideLoad); in evalSectionAddr() 757 StringRef SectionName) const { in findSectionAddrInfo() 778 auto SectionInfoItr = SectionMapItr->second.find(SectionName); in findSectionAddrInfo() 781 ("Section '" + SectionName + "' not found in file '" + in findSectionAddrInfo() 788 StringRef FileName, StringRef SectionName, bool IsInsideLoad) const { in getSectionAddr() argument [all …]
|
D | RuntimeDyldCheckerImpl.h | 52 StringRef SectionName) const; 55 StringRef SectionName, 59 StringRef SectionName,
|
/external/llvm/test/tools/llvm-readobj/ARM/ |
D | 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/unittests/ExecutionEngine/Orc/ |
D | ObjectLinkingLayerTest.cpp | 31 StringRef SectionName, in TEST() argument 33 if (SectionName == ".debug_str") in TEST() 37 SectionName, in TEST()
|
/external/llvm/lib/ExecutionEngine/ |
D | ExecutionEngineBindings.cpp | 325 StringRef SectionName) override; 328 unsigned SectionID, StringRef SectionName, 358 StringRef SectionName) { in allocateCodeSection() argument 360 SectionName.str().c_str()); in allocateCodeSection() 365 StringRef SectionName, bool isReadOnly) { in allocateDataSection() argument 367 SectionName.str().c_str(), in allocateDataSection()
|
/external/llvm/include/llvm/ExecutionEngine/ |
D | SectionMemoryManager.h | 52 StringRef SectionName) override; 60 unsigned SectionID, StringRef SectionName,
|
D | RuntimeDyld.h | 107 StringRef SectionName) = 0; 114 StringRef SectionName,
|
/external/llvm/tools/lli/ |
D | RemoteMemoryManager.h | 71 StringRef SectionName) override; 74 unsigned SectionID, StringRef SectionName,
|
/external/llvm/lib/Target/AMDGPU/ |
D | AMDGPUTargetObjectFile.cpp | 52 const char *SectionName) const { in isAgentAllocationSection() 55 .equals(SectionName); in isAgentAllocationSection()
|
/external/llvm/tools/llvm-rtdyld/ |
D | llvm-rtdyld.cpp | 152 StringRef SectionName) override; 154 unsigned SectionID, StringRef SectionName, 219 StringRef SectionName) { in allocateCodeSection() argument 222 << Alignment << ", SectionName = " << SectionName << ")\n"; in allocateCodeSection() 238 StringRef SectionName, in allocateDataSection() argument 242 << Alignment << ", SectionName = " << SectionName << ")\n"; in allocateDataSection() 477 std::string SectionName = SectionIDStr.substr(ComaIdx + 1); in applySpecificSectionMappings() local 482 Checker.getSectionAddr(FileName, SectionName, true); in applySpecificSectionMappings()
|
/external/llvm/lib/Target/XCore/ |
D | XCoreTargetObjectFile.cpp | 102 StringRef SectionName = GV->getSection(); in getExplicitSectionGlobal() local 104 bool IsCPRel = SectionName.startswith(".cp."); in getExplicitSectionGlobal() 107 return getContext().getELFSection(SectionName, getXCoreSectionType(Kind), in getExplicitSectionGlobal()
|
/external/clang/lib/Sema/ |
D | SemaAttr.cpp | 363 bool Sema::UnifySection(StringRef SectionName, in UnifySection() argument 366 auto Section = Context.SectionInfos.find(SectionName); in UnifySection() 368 Context.SectionInfos[SectionName] = in UnifySection() 390 bool Sema::UnifySection(StringRef SectionName, in UnifySection() argument 393 auto Section = Context.SectionInfos.find(SectionName); in UnifySection() 405 Context.SectionInfos[SectionName] = in UnifySection()
|
/external/autotest/site_utils/suite_scheduler/ |
D | base_event.py | 21 def SectionName(keyword): function 78 section = SectionName(cls.KEYWORD)
|
/external/llvm/include/llvm-c/ |
D | ExecutionEngine.h | 157 const char *SectionName); 160 const char *SectionName, LLVMBool IsReadOnly);
|
/external/llvm/lib/ExecutionEngine/Orc/ |
D | OrcMCJITReplacement.h | 40 StringRef SectionName) override { in allocateCodeSection() argument 43 SectionName); in allocateCodeSection() 49 unsigned SectionID, StringRef SectionName, in allocateDataSection() argument 52 SectionName, IsReadOnly); in allocateDataSection()
|
/external/llvm/unittests/ExecutionEngine/MCJIT/ |
D | MCJITCAPITest.cpp | 105 unsigned SectionID, StringRef SectionName, in allocateDataSection() argument 109 SectionID, SectionName, IsReadOnly); in allocateDataSection() 114 StringRef SectionName) override { in allocateCodeSection() argument 117 SectionID, SectionName); in allocateCodeSection()
|
/external/llvm/lib/Target/Hexagon/MCTargetDesc/ |
D | HexagonMCELFStreamer.cpp | 106 StringRef SectionName = in HexagonMCEmitCommonSymbol() local 113 SectionName, ELF::SHT_NOBITS, ELF::SHF_WRITE | ELF::SHF_ALLOC); in HexagonMCEmitCommonSymbol()
|