Home
last modified time | relevance | path

Searched refs:arch_spec (Results 1 – 17 of 17) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp1045 lldb_private::ArchSpec &arch_spec, in RefineModuleDetailsFromNote() argument
1085 arch_spec.GetTriple().setOSName(os_name); in RefineModuleDetailsFromNote()
1086 arch_spec.GetTriple().setVendor(llvm::Triple::VendorType::UnknownVendor); in RefineModuleDetailsFromNote()
1111 arch_spec.GetTriple().setOS(llvm::Triple::OSType::Linux); in RefineModuleDetailsFromNote()
1112 arch_spec.GetTriple().setVendor( in RefineModuleDetailsFromNote()
1124 arch_spec.GetTriple().setOS(llvm::Triple::OSType::UnknownOS); in RefineModuleDetailsFromNote()
1125 arch_spec.GetTriple().setVendor( in RefineModuleDetailsFromNote()
1134 arch_spec.GetTriple().setOS(llvm::Triple::OSType::Solaris); in RefineModuleDetailsFromNote()
1135 arch_spec.GetTriple().setVendor( in RefineModuleDetailsFromNote()
1173 if (arch_spec.IsMIPS() && in RefineModuleDetailsFromNote()
[all …]
H A DObjectFileELF.h274 lldb_private::ArchSpec &arch_spec);
284 lldb_private::ArchSpec &arch_spec);
404 lldb_private::ArchSpec &arch_spec,
/freebsd/contrib/llvm-project/lldb/source/Host/aix/
H A DHost.cpp103 ArchSpec arch_spec = ArchSpec(); in GetExePathAndIds() local
104 arch_spec.SetArchitecture(eArchTypeXCOFF, llvm::XCOFF::TCPU_PPC64, in GetExePathAndIds()
106 process_info.SetArchitecture(arch_spec); in GetExePathAndIds()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/XCOFF/
H A DObjectFileXCOFF.cpp133 ArchSpec arch_spec = in GetModuleSpecifications() local
135 ModuleSpec spec(file, arch_spec); in GetModuleSpecifications()
366 ArchSpec arch_spec = in GetArchitecture() local
368 return arch_spec; in GetArchitecture()
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DProcessInfo.cpp254 const ArchSpec &arch_spec) const { in ArchitectureMatches()
256 m_match_info.GetArchitecture().IsCompatibleMatch(arch_spec); in ArchitectureMatches()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DModule.cpp1569 bool Module::MergeArchitecture(const ArchSpec &arch_spec) { in MergeArchitecture() argument
1570 if (!arch_spec.IsValid()) in MergeArchitecture()
1575 arch_spec.GetTriple().getTriple().c_str()); in MergeArchitecture()
1576 if (!m_arch.IsCompatibleMatch(arch_spec)) { in MergeArchitecture()
1578 return SetArchitecture(arch_spec); in MergeArchitecture()
1583 merged_arch.MergeFrom(arch_spec); in MergeArchitecture()
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValue.cpp468 bool OptionValue::SetArchSpecValue(ArchSpec arch_spec) { in SetArchSpecValue() argument
471 option_value->SetCurrentValue(arch_spec, false); in SetArchSpecValue()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DTarget.cpp1692 bool Target::SetArchitecture(const ArchSpec &arch_spec, bool set_platform, in SetArchitecture() argument
1698 ArchSpec other(arch_spec); in SetArchitecture()
1723 if (merge && m_arch.GetSpec().IsCompatibleMatch(arch_spec)) { in SetArchitecture()
1754 arch_spec.GetArchitectureName(), in SetArchitecture()
1755 arch_spec.GetTriple().getTriple().c_str(), in SetArchitecture()
1768 arch_spec.GetArchitectureName(), in SetArchitecture()
1769 arch_spec.GetTriple().getTriple().c_str()); in SetArchitecture()
1783 bool Target::MergeArchitecture(const ArchSpec &arch_spec) { in MergeArchitecture() argument
1785 if (arch_spec.IsValid()) { in MergeArchitecture()
1786 if (m_arch.GetSpec().IsCompatibleMatch(arch_spec)) { in MergeArchitecture()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DProcessInfo.h329 bool ArchitectureMatches(const ArchSpec &arch_spec) const;
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.cpp356 ArchSpec arch_spec = launch_info.GetArchitecture(); in LaunchProcess() local
357 const char *arch_triple = arch_spec.GetTriple().str().c_str(); in LaunchProcess()
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionValue.h351 bool SetArchSpecValue(ArchSpec arch_spec);
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DModule.h874 bool MergeArchitecture(const ArchSpec &arch_spec);
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DTarget.h1089 bool SetArchitecture(const ArchSpec &arch_spec, bool set_platform = false,
1092 bool MergeArchitecture(const ArchSpec &arch_spec);
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.h460 const ArchSpec &arch_spec, ModuleSpec &module_spec);
H A DGDBRemoteCommunicationClient.cpp3851 const FileSpec &module_file_spec, const lldb_private::ArchSpec &arch_spec, in GetModuleInfo() argument
3864 const auto &triple = arch_spec.GetTriple().getTriple(); in GetModuleInfo()
3909 module_spec.GetFileSpec() = FileSpec(path, arch_spec.GetTriple()); in GetModuleInfo()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionParser.cpp330 auto arch_spec = target.GetArchitecture(); in sdkSupportsBuiltinModules() local
331 auto const &triple = arch_spec.GetTriple(); in sdkSupportsBuiltinModules()
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBTarget.cpp418 const ArchSpec &arch_spec = target_sp->GetArchitecture(); in Launch() local
419 if (arch_spec.IsValid()) in Launch()
420 launch_info.GetArchitecture() = arch_spec; in Launch()