/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/ |
H A D | ObjectFileELF.cpp | 1074 lldb_private::ArchSpec &arch_spec, in RefineModuleDetailsFromNote() argument 1113 arch_spec.GetTriple().setOSName(os_name); in RefineModuleDetailsFromNote() 1114 arch_spec.GetTriple().setVendor(llvm::Triple::VendorType::UnknownVendor); in RefineModuleDetailsFromNote() 1138 arch_spec.GetTriple().setOS(llvm::Triple::OSType::Linux); in RefineModuleDetailsFromNote() 1139 arch_spec.GetTriple().setVendor( in RefineModuleDetailsFromNote() 1151 arch_spec.GetTriple().setOS(llvm::Triple::OSType::UnknownOS); in RefineModuleDetailsFromNote() 1152 arch_spec.GetTriple().setVendor( in RefineModuleDetailsFromNote() 1161 arch_spec.GetTriple().setOS(llvm::Triple::OSType::Solaris); in RefineModuleDetailsFromNote() 1162 arch_spec.GetTriple().setVendor( in RefineModuleDetailsFromNote() 1199 if (arch_spec.IsMIPS() && in RefineModuleDetailsFromNote() [all …]
|
H A D | ObjectFileELF.h | 266 lldb_private::ArchSpec &arch_spec); 276 lldb_private::ArchSpec &arch_spec); 393 lldb_private::ArchSpec &arch_spec,
|
/freebsd/contrib/llvm-project/lldb/source/Utility/ |
H A D | ProcessInfo.cpp | 254 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 D | Module.cpp | 1578 bool Module::MergeArchitecture(const ArchSpec &arch_spec) { in MergeArchitecture() argument 1579 if (!arch_spec.IsValid()) in MergeArchitecture() 1584 arch_spec.GetTriple().getTriple().c_str()); in MergeArchitecture() 1585 if (!m_arch.IsCompatibleMatch(arch_spec)) { in MergeArchitecture() 1587 return SetArchitecture(arch_spec); in MergeArchitecture() 1592 merged_arch.MergeFrom(arch_spec); in MergeArchitecture()
|
/freebsd/contrib/llvm-project/lldb/source/Interpreter/ |
H A D | OptionValue.cpp | 470 bool OptionValue::SetArchSpecValue(ArchSpec arch_spec) { in GetBuiltinTypeAsCString() 473 option_value->SetCurrentValue(arch_spec, false); in GetBuiltinTypeAsCString() 426 SetArchSpecValue(ArchSpec arch_spec) SetArchSpecValue() argument
|
/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | Target.cpp | 1538 bool Target::SetArchitecture(const ArchSpec &arch_spec, bool set_platform, in SetArchitecture() argument 1544 ArchSpec other(arch_spec); in SetArchitecture() 1567 if (merge && m_arch.GetSpec().IsCompatibleMatch(arch_spec)) { in SetArchitecture() 1598 arch_spec.GetArchitectureName(), in SetArchitecture() 1599 arch_spec.GetTriple().getTriple().c_str(), in SetArchitecture() 1612 arch_spec.GetArchitectureName(), in SetArchitecture() 1613 arch_spec.GetTriple().getTriple().c_str()); in SetArchitecture() 1627 bool Target::MergeArchitecture(const ArchSpec &arch_spec) { in MergeArchitecture() argument 1629 if (arch_spec.IsValid()) { in MergeArchitecture() 1630 if (m_arch.GetSpec().IsCompatibleMatch(arch_spec)) { in MergeArchitecture() [all …]
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/ |
H A D | ProcessInfo.h | 323 bool ArchitectureMatches(const ArchSpec &arch_spec) const;
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/ |
H A D | OptionValue.h | 354 bool SetArchSpecValue(ArchSpec arch_spec);
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/gdb-server/ |
H A D | PlatformRemoteGDBServer.cpp | 363 ArchSpec arch_spec = launch_info.GetArchitecture(); in LaunchProcess() local 364 const char *arch_triple = arch_spec.GetTriple().str().c_str(); in LaunchProcess()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/ |
H A D | Module.h | 869 bool MergeArchitecture(const ArchSpec &arch_spec);
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
H A D | Target.h | 1057 bool SetArchitecture(const ArchSpec &arch_spec, bool set_platform = false, 1060 bool MergeArchitecture(const ArchSpec &arch_spec);
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
H A D | GDBRemoteCommunicationClient.h | 449 const ArchSpec &arch_spec, ModuleSpec &module_spec);
|
H A D | GDBRemoteCommunicationClient.cpp | 3832 const FileSpec &module_file_spec, const lldb_private::ArchSpec &arch_spec, in GetModuleInfo() argument 3845 const auto &triple = arch_spec.GetTriple().getTriple(); in GetModuleInfo() 3890 module_spec.GetFileSpec() = FileSpec(path, arch_spec.GetTriple()); in GetModuleInfo()
|
/freebsd/contrib/llvm-project/lldb/source/API/ |
H A D | SBTarget.cpp | 423 const ArchSpec &arch_spec = target_sp->GetArchitecture(); in Launch() local 424 if (arch_spec.IsValid()) in Launch() 425 launch_info.GetArchitecture() = arch_spec; in Launch()
|