Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
DObjectFileELF.cpp1015 lldb_private::ArchSpec &arch_spec, in RefineModuleDetailsFromNote() argument
1054 arch_spec.GetTriple().setOSName(os_name); in RefineModuleDetailsFromNote()
1055 arch_spec.GetTriple().setVendor(llvm::Triple::VendorType::UnknownVendor); in RefineModuleDetailsFromNote()
1079 arch_spec.GetTriple().setOS(llvm::Triple::OSType::Linux); in RefineModuleDetailsFromNote()
1080 arch_spec.GetTriple().setVendor( in RefineModuleDetailsFromNote()
1092 arch_spec.GetTriple().setOS(llvm::Triple::OSType::UnknownOS); in RefineModuleDetailsFromNote()
1093 arch_spec.GetTriple().setVendor( in RefineModuleDetailsFromNote()
1102 arch_spec.GetTriple().setOS(llvm::Triple::OSType::Solaris); in RefineModuleDetailsFromNote()
1103 arch_spec.GetTriple().setVendor( in RefineModuleDetailsFromNote()
1140 if (arch_spec.IsMIPS() && in RefineModuleDetailsFromNote()
[all …]
DObjectFileELF.h258 lldb_private::ArchSpec &arch_spec);
268 lldb_private::ArchSpec &arch_spec);
383 lldb_private::ArchSpec &arch_spec,
/freebsd-12-stable/contrib/llvm-project/lldb/source/Utility/
DProcessInfo.cpp246 const ArchSpec &arch_spec) const { in ArchitectureMatches()
248 m_match_info.GetArchitecture().IsCompatibleMatch(arch_spec); in ArchitectureMatches()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Core/
DModule.cpp1628 bool Module::MergeArchitecture(const ArchSpec &arch_spec) { in MergeArchitecture() argument
1629 if (!arch_spec.IsValid()) in MergeArchitecture()
1634 arch_spec.GetTriple().getTriple().c_str()); in MergeArchitecture()
1635 if (!m_arch.IsCompatibleMatch(arch_spec)) { in MergeArchitecture()
1637 return SetArchitecture(arch_spec); in MergeArchitecture()
1642 merged_arch.MergeFrom(arch_spec); in MergeArchitecture()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Target/
DTarget.cpp1462 bool Target::SetArchitecture(const ArchSpec &arch_spec, bool set_platform) { in SetArchitecture() argument
1467 ArchSpec other(arch_spec); in SetArchitecture()
1490 if (m_arch.GetSpec().IsCompatibleMatch(arch_spec)) { in SetArchitecture()
1523 arch_spec.GetArchitectureName(), in SetArchitecture()
1524 arch_spec.GetTriple().getTriple().c_str()); in SetArchitecture()
1535 arch_spec.GetArchitectureName(), in SetArchitecture()
1536 arch_spec.GetTriple().getTriple().c_str()); in SetArchitecture()
1550 bool Target::MergeArchitecture(const ArchSpec &arch_spec) { in MergeArchitecture() argument
1552 if (arch_spec.IsValid()) { in MergeArchitecture()
1553 if (m_arch.GetSpec().IsCompatibleMatch(arch_spec)) { in MergeArchitecture()
[all …]
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Utility/
DProcessInfo.h190 bool ArchitectureMatches(const ArchSpec &arch_spec) const;
/freebsd-12-stable/contrib/binutils/gas/doc/
Dc-ia64.texi181 http://developer.intel.com/design/itanium/arch_spec.htm
186 @uref{http://developer.intel.com/design/itanium/arch_spec.htm,IA-64 Architecture Handbook}.
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Platform/gdb-server/
DPlatformRemoteGDBServer.cpp426 ArchSpec arch_spec = launch_info.GetArchitecture(); in LaunchProcess() local
427 const char *arch_triple = arch_spec.GetTriple().str().c_str(); in LaunchProcess()
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Core/
DModule.h860 bool MergeArchitecture(const ArchSpec &arch_spec);
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Target/
DTarget.h988 bool SetArchitecture(const ArchSpec &arch_spec, bool set_platform = false);
990 bool MergeArchitecture(const ArchSpec &arch_spec);
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
DGDBRemoteCommunicationClient.h480 const ArchSpec &arch_spec, ModuleSpec &module_spec);
DGDBRemoteCommunicationClient.cpp3638 const FileSpec &module_file_spec, const lldb_private::ArchSpec &arch_spec, in GetModuleInfo() argument
3651 const auto &triple = arch_spec.GetTriple().getTriple(); in GetModuleInfo()
3696 module_spec.GetFileSpec() = FileSpec(path, arch_spec.GetTriple()); in GetModuleInfo()
/freebsd-12-stable/contrib/llvm-project/lldb/source/API/
DSBTarget.cpp445 const ArchSpec &arch_spec = target_sp->GetArchitecture(); in Launch() local
446 if (arch_spec.IsValid()) in Launch()
447 launch_info.GetArchitecture() = arch_spec; in Launch()