/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/ |
D | MCContext.h | 191 std::string SectionName; member 195 ELFSectionKey(StringRef SectionName, StringRef GroupName, in ELFSectionKey() 197 : SectionName(SectionName), GroupName(GroupName), UniqueID(UniqueID) { in ELFSectionKey() 201 if (SectionName != Other.SectionName) 202 return SectionName < Other.SectionName; 210 std::string SectionName; member 215 COFFSectionKey(StringRef SectionName, StringRef GroupName, in COFFSectionKey() 217 : SectionName(SectionName), GroupName(GroupName), in COFFSectionKey() 221 if (SectionName != Other.SectionName) 222 return SectionName < Other.SectionName; [all …]
|
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 | MCSectionWasm.h | 31 StringRef SectionName; variable 49 : MCSection(SV_Wasm, K, Begin), SectionName(Section), UniqueID(UniqueID), in MCSectionWasm() 52 void setSectionName(StringRef Name) { SectionName = Name; } in setSectionName() 61 StringRef getSectionName() const { return SectionName; } in getSectionName()
|
D | MCSectionELF.h | 31 StringRef SectionName; variable 57 : MCSection(SV_ELF, K, Begin), SectionName(Section), Type(type), in MCSectionELF() 64 void setSectionName(StringRef Name) { SectionName = Name; } in setSectionName() 73 StringRef getSectionName() const { return SectionName; } in getSectionName()
|
/external/llvm/lib/Target/AMDGPU/MCTargetDesc/ |
D | AMDGPUMCAsmInfo.cpp | 40 bool AMDGPUMCAsmInfo::shouldOmitSectionDirective(StringRef SectionName) const { in shouldOmitSectionDirective() 41 return SectionName == ".hsatext" || SectionName == ".hsadata_global_agent" || in shouldOmitSectionDirective() 42 SectionName == ".hsadata_global_program" || in shouldOmitSectionDirective() 43 SectionName == ".hsarodata_readonly_agent" || in shouldOmitSectionDirective() 44 MCAsmInfo::shouldOmitSectionDirective(SectionName); in shouldOmitSectionDirective()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/MCTargetDesc/ |
D | AMDGPUMCAsmInfo.cpp | 42 bool AMDGPUMCAsmInfo::shouldOmitSectionDirective(StringRef SectionName) const { in shouldOmitSectionDirective() 43 return SectionName == ".hsatext" || SectionName == ".hsadata_global_agent" || in shouldOmitSectionDirective() 44 SectionName == ".hsadata_global_program" || in shouldOmitSectionDirective() 45 SectionName == ".hsarodata_readonly_agent" || in shouldOmitSectionDirective() 46 MCAsmInfo::shouldOmitSectionDirective(SectionName); in shouldOmitSectionDirective()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/MCParser/ |
D | ELFAsmParser.cpp | 156 bool ParseSectionName(StringRef &SectionName); 240 bool ELFAsmParser::ParseSectionName(StringRef &SectionName) { in ParseSectionName() argument 247 SectionName = getTok().getIdentifier(); in ParseSectionName() 270 SectionName = StringRef(FirstLoc.getPointer(), Size); in ParseSectionName() 480 static bool hasPrefix(StringRef SectionName, StringRef Prefix) { in hasPrefix() argument 481 return SectionName.startswith(Prefix) || SectionName == Prefix.drop_back(); in hasPrefix() 485 StringRef SectionName; in ParseSectionArguments() local 487 if (ParseSectionName(SectionName)) in ParseSectionArguments() 500 if (hasPrefix(SectionName, ".rodata.") || SectionName == ".rodata1") in ParseSectionArguments() 502 else if (SectionName == ".fini" || SectionName == ".init" || in ParseSectionArguments() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-readobj/ |
D | ObjDumper.cpp | 47 StringRef SectionName; in getSecNameOrIndexAsSecRef() local 49 if (std::error_code E = SecRef.getName(SectionName)) in getSecNameOrIndexAsSecRef() 52 if (SectionName == SecName) in getSecNameOrIndexAsSecRef() 70 StringRef SectionName; in printSectionAsString() local 72 if (std::error_code E = Section.getName(SectionName)) in printSectionAsString() 74 W.startLine() << "String dump of section '" << SectionName << "':\n"; in printSectionAsString() 104 StringRef SectionName; in printSectionAsHex() local 106 if (std::error_code E = Section.getName(SectionName)) in printSectionAsHex() 108 W.startLine() << "Hex dump of section '" << SectionName << "':\n"; in printSectionAsHex()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/DWARF/ |
D | DWARFListTable.cpp | 33 SectionName.data(), *OffsetPtr); in extract() 38 SectionName.data(), HeaderOffset); in extract() 44 SectionName.data(), HeaderOffset, length()); in extract() 49 SectionName.data(), length(), HeaderOffset); in extract() 60 SectionName.data(), HeaderData.Version, HeaderOffset); in extract() 64 SectionName.data(), HeaderOffset, HeaderData.AddrSize); in extract() 68 SectionName.data(), HeaderOffset, HeaderData.SegSize); in extract() 74 SectionName.data(), HeaderOffset, HeaderData.OffsetEntryCount); in extract()
|
/external/llvm/include/llvm/MC/ |
D | MCContext.h | 183 std::string SectionName; member 186 ELFSectionKey(StringRef SectionName, StringRef GroupName, in ELFSectionKey() 188 : SectionName(SectionName), GroupName(GroupName), UniqueID(UniqueID) { in ELFSectionKey() 191 if (SectionName != Other.SectionName) 192 return SectionName < Other.SectionName; 200 std::string SectionName; member 204 COFFSectionKey(StringRef SectionName, StringRef GroupName, in COFFSectionKey() 206 : SectionName(SectionName), GroupName(GroupName), in COFFSectionKey() 209 if (SectionName != Other.SectionName) 210 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 55 : MCSection(SV_COFF, K, Begin), SectionName(Section), in MCSectionCOFF() 69 StringRef getSectionName() const { return SectionName; } in getSectionName()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/DWARF/ |
D | DWARFListTable.h | 54 uint32_t *OffsetPtr, StringRef SectionName, 89 StringRef SectionName; variable 95 DWARFListTableHeader(StringRef SectionName, StringRef ListTypeString) in DWARFListTableHeader() argument 96 : SectionName(SectionName), ListTypeString(ListTypeString) {} in DWARFListTableHeader() 105 StringRef getSectionName() const { return SectionName; } in getSectionName() 140 DWARFListTableBase(StringRef SectionName, StringRef HeaderString, in DWARFListTableBase() argument 142 : Header(SectionName, ListTypeString), HeaderString(HeaderString) {} in DWARFListTableBase() 213 StringRef SectionName, in extract() argument 229 SectionName.data(), HeaderOffset); in extract()
|
/external/llvm/lib/MC/MCParser/ |
D | ELFAsmParser.cpp | 142 bool ParseSectionName(StringRef &SectionName); 220 bool ELFAsmParser::ParseSectionName(StringRef &SectionName) { in ParseSectionName() argument 227 SectionName = getTok().getIdentifier(); in ParseSectionName() 251 SectionName = StringRef(FirstLoc.getPointer(), Size); in ParseSectionName() 362 StringRef SectionName; in ParseSectionArguments() local 364 if (ParseSectionName(SectionName)) in ParseSectionArguments() 377 if (SectionName == ".fini" || SectionName == ".init" || in ParseSectionArguments() 378 SectionName == ".rodata") in ParseSectionArguments() 380 if (SectionName == ".fini" || SectionName == ".init") in ParseSectionArguments() 485 if (SectionName.startswith(".note")) in ParseSectionArguments() [all …]
|
/external/swiftshader/third_party/LLVM/lib/MC/MCParser/ |
D | ELFAsmParser.cpp | 148 bool ParseSectionName(StringRef &SectionName); 221 bool ELFAsmParser::ParseSectionName(StringRef &SectionName) { in ParseSectionName() argument 228 SectionName = getTok().getIdentifier(); in ParseSectionName() 252 SectionName = StringRef(FirstLoc.getPointer(), Size); in ParseSectionName() 331 StringRef SectionName; in ParseDirectiveSection() local 333 if (ParseSectionName(SectionName)) in ParseDirectiveSection() 342 if (SectionName == ".fini" || SectionName == ".init" || in ParseDirectiveSection() 343 SectionName == ".rodata") in ParseDirectiveSection() 345 if (SectionName == ".fini" || SectionName == ".init") in ParseDirectiveSection() 432 getStreamer().SwitchSection(getContext().getELFSection(SectionName, Type, in ParseDirectiveSection()
|
/external/swiftshader/third_party/LLVM/include/llvm/MC/ |
D | MCSectionMachO.h | 26 char SectionName[16]; // Not necessarily null terminated! variable 142 if (SectionName[15]) in getSectionName() 143 return StringRef(SectionName, 16); in getSectionName() 144 return StringRef(SectionName); in getSectionName()
|
D | MCSectionCOFF.h | 26 StringRef SectionName; variable 40 : MCSection(SV_COFF, K), SectionName(Section), in MCSectionCOFF() 52 StringRef getSectionName() const { return SectionName; } in getSectionName()
|
D | MCSectionELF.h | 29 StringRef SectionName; variable 49 : MCSection(SV_ELF, K), SectionName(Section), Type(type), Flags(flags), in MCSectionELF() 58 StringRef getSectionName() const { return SectionName; } in getSectionName()
|
/external/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyldChecker.cpp | 345 StringRef SectionName; in evalStubAddr() local 346 std::tie(SectionName, RemainingExpr) = parseSymbol(RemainingExpr); in evalStubAddr() 364 FileName, SectionName, Symbol, PCtx.IsInsideLoad); in evalStubAddr() 390 StringRef SectionName; in evalSectionAddr() local 391 std::tie(SectionName, RemainingExpr) = parseSymbol(RemainingExpr); in evalSectionAddr() 401 FileName, SectionName, PCtx.IsInsideLoad); in evalSectionAddr() 759 StringRef SectionName) const { in findSectionAddrInfo() 780 auto SectionInfoItr = SectionMapItr->second.find(SectionName); in findSectionAddrInfo() 783 ("Section '" + SectionName + "' not found in file '" + in findSectionAddrInfo() 790 StringRef FileName, StringRef SectionName, bool IsInsideLoad) const { in getSectionAddr() argument [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyldChecker.cpp | 345 StringRef SectionName; in evalStubAddr() local 346 std::tie(SectionName, RemainingExpr) = parseSymbol(RemainingExpr); in evalStubAddr() 364 FileName, SectionName, Symbol, PCtx.IsInsideLoad); in evalStubAddr() 390 StringRef SectionName; in evalSectionAddr() local 391 std::tie(SectionName, RemainingExpr) = parseSymbol(RemainingExpr); in evalSectionAddr() 401 FileName, SectionName, PCtx.IsInsideLoad); in evalSectionAddr() 776 StringRef SectionName) const { in findSectionAddrInfo() 797 auto SectionInfoItr = SectionMapItr->second.find(SectionName); in findSectionAddrInfo() 800 ("Section '" + SectionName + "' not found in file '" + in findSectionAddrInfo() 807 StringRef FileName, StringRef SectionName, bool IsInsideLoad) const { in getSectionAddr() argument [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/ |
D | MCAsmInfo.cpp | 119 bool MCAsmInfo::shouldOmitSectionDirective(StringRef SectionName) const { in shouldOmitSectionDirective() 121 return SectionName == ".text" || SectionName == ".data" || in shouldOmitSectionDirective() 122 (SectionName == ".bss" && !usesELFSectionDirectiveForBSS()); in shouldOmitSectionDirective()
|
/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/swiftshader/third_party/llvm-7.0/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/lib/MC/ |
D | MCAsmInfo.cpp | 163 bool MCAsmInfo::shouldOmitSectionDirective(StringRef SectionName) const { in shouldOmitSectionDirective() 165 return SectionName == ".text" || SectionName == ".data" || in shouldOmitSectionDirective() 166 (SectionName == ".bss" && !usesELFSectionDirectiveForBSS()); in shouldOmitSectionDirective()
|