Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp1074 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 DObjectFileELF.h266 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 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.cpp1578 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 DOptionValue.cpp470 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 DTarget.cpp1538 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 DProcessInfo.h323 bool ArchitectureMatches(const ArchSpec &arch_spec) const;
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionValue.h354 bool SetArchSpecValue(ArchSpec arch_spec);
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.cpp363 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 DModule.h869 bool MergeArchitecture(const ArchSpec &arch_spec);
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DTarget.h1057 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 DGDBRemoteCommunicationClient.h449 const ArchSpec &arch_spec, ModuleSpec &module_spec);
H A DGDBRemoteCommunicationClient.cpp3832 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 DSBTarget.cpp423 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()