Home
last modified time | relevance | path

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

/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/Interpreter/
H A DOptionValue.h354 bool SetArchSpecValue(ArchSpec arch_spec);
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DTarget.h1046 bool SetArchitecture(const ArchSpec &arch_spec, bool set_platform = false,
1049 bool MergeArchitecture(const ArchSpec &arch_spec);
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DProcessInfo.h240 bool ArchitectureMatches(const ArchSpec &arch_spec) const;
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBTarget.cpp416 const ArchSpec &arch_spec = target_sp->GetArchitecture(); in Launch() local
417 if (arch_spec.IsValid()) in Launch()
418 launch_info.GetArchitecture() = arch_spec; in Launch()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DModule.cpp1581 bool Module::MergeArchitecture(const ArchSpec &arch_spec) { in MergeArchitecture() argument
1582 if (!arch_spec.IsValid()) in MergeArchitecture()
1587 arch_spec.GetTriple().getTriple().c_str()); in MergeArchitecture()
1588 if (!m_arch.IsCompatibleMatch(arch_spec)) { in MergeArchitecture()
1590 return SetArchitecture(arch_spec); in MergeArchitecture()
1595 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 SetArchSpecValue() argument
473 option_value->SetCurrentValue(arch_spec, false); in SetArchSpecValue()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp1125 arch_spec.GetTriple().setVendor( in RefineModuleDetailsFromNote()
1138 arch_spec.GetTriple().setVendor( in RefineModuleDetailsFromNote()
1148 arch_spec.GetTriple().setVendor( in RefineModuleDetailsFromNote()
1185 if (arch_spec.IsMIPS() && in RefineModuleDetailsFromNote()
1212 arch_spec.GetTriple().setOSName( in RefineModuleDetailsFromNote()
1231 arch_spec.GetTriple().setEnvironment( in RefineModuleDetailsFromNote()
1281 if (arch_spec.IsMIPS() && in RefineModuleDetailsFromNote()
1429 uint32_t flags = arch_spec.GetFlags(); in GetSectionHeaderInfo()
1446 arch_spec.SetFlags(flags); in GetSectionHeaderInfo()
1492 if (arch_spec.IsMIPS()) { in GetSectionHeaderInfo()
[all …]
H A DObjectFileELF.h263 lldb_private::ArchSpec &arch_spec);
273 lldb_private::ArchSpec &arch_spec);
389 lldb_private::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/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.cpp3759 const FileSpec &module_file_spec, const lldb_private::ArchSpec &arch_spec, in GetModuleInfo() argument
3772 const auto &triple = arch_spec.GetTriple().getTriple(); in GetModuleInfo()
3817 module_spec.GetFileSpec() = FileSpec(path, arch_spec.GetTriple()); in GetModuleInfo()
H A DGDBRemoteCommunicationClient.h447 const ArchSpec &arch_spec, ModuleSpec &module_spec);
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DTarget.cpp1543 ArchSpec other(arch_spec); in SetArchitecture()
1603 arch_spec.GetArchitectureName(), in SetArchitecture()
1604 arch_spec.GetTriple().getTriple().c_str(), in SetArchitecture()
1617 arch_spec.GetArchitectureName(), in SetArchitecture()
1618 arch_spec.GetTriple().getTriple().c_str()); in SetArchitecture()
1632 bool Target::MergeArchitecture(const ArchSpec &arch_spec) { in MergeArchitecture() argument
1634 if (arch_spec.IsValid()) { in MergeArchitecture()
1635 if (m_arch.GetSpec().IsCompatibleMatch(arch_spec)) { in MergeArchitecture()
1643 arch_spec.GetTriple().getTriple().c_str()); in MergeArchitecture()
1647 merged_arch.MergeFrom(arch_spec); in MergeArchitecture()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DProcessInfo.cpp253 const ArchSpec &arch_spec) const { in ArchitectureMatches()
255 m_match_info.GetArchitecture().IsCompatibleMatch(arch_spec); in ArchitectureMatches()