Searched refs:arch_spec (Results 1 - 12 of 12) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp998 lldb_private::ArchSpec &arch_spec,
1037 arch_spec.GetTriple().setOSName(os_name);
1038 arch_spec.GetTriple().setVendor(llvm::Triple::VendorType::UnknownVendor);
1062 arch_spec.GetTriple().setOS(llvm::Triple::OSType::Linux);
1063 arch_spec.GetTriple().setVendor(
1075 arch_spec.GetTriple().setOS(llvm::Triple::OSType::UnknownOS);
1076 arch_spec.GetTriple().setVendor(
1085 arch_spec.GetTriple().setOS(llvm::Triple::OSType::Solaris);
1086 arch_spec.GetTriple().setVendor(
1123 if (arch_spec
997 RefineModuleDetailsFromNote(lldb_private::DataExtractor &data, lldb_private::ArchSpec &arch_spec, lldb_private::UUID &uuid) argument
1233 ParseARMAttributes(DataExtractor &data, uint64_t length, ArchSpec &arch_spec) argument
1304 GetSectionHeaderInfo(SectionHeaderColl &section_headers, DataExtractor &object_data, const elf::ELFHeader &header, lldb_private::UUID &uuid, std::string &gnu_debuglink_file, uint32_t &gnu_debuglink_crc, ArchSpec &arch_spec) argument
[all...]
H A DObjectFileELF.h258 lldb_private::ArchSpec &arch_spec);
268 lldb_private::ArchSpec &arch_spec);
386 lldb_private::ArchSpec &arch_spec,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/
H A DProcessInfo.cpp245 const ArchSpec &arch_spec) const {
247 m_match_info.GetArchitecture().IsCompatibleMatch(arch_spec);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DProcessInfo.h226 /// Return true iff the architecture in this object matches arch_spec.
227 bool ArchitectureMatches(const ArchSpec &arch_spec) const;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DModule.cpp1594 bool Module::MergeArchitecture(const ArchSpec &arch_spec) { argument
1595 if (!arch_spec.IsValid())
1600 arch_spec.GetTriple().getTriple().c_str());
1601 if (!m_arch.IsCompatibleMatch(arch_spec)) {
1603 return SetArchitecture(arch_spec);
1606 // Merge bits from arch_spec into "merged_arch" and set our architecture.
1608 merged_arch.MergeFrom(arch_spec);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DTarget.cpp1457 bool Target::SetArchitecture(const ArchSpec &arch_spec, bool set_platform) { argument
1462 ArchSpec other(arch_spec);
1485 if (m_arch.GetSpec().IsCompatibleMatch(arch_spec)) {
1518 arch_spec.GetArchitectureName(),
1519 arch_spec.GetTriple().getTriple().c_str());
1530 arch_spec.GetArchitectureName(),
1531 arch_spec.GetTriple().getTriple().c_str());
1545 bool Target::MergeArchitecture(const ArchSpec &arch_spec) { argument
1547 if (arch_spec.IsValid()) {
1548 if (m_arch.GetSpec().IsCompatibleMatch(arch_spec)) {
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.h429 const ArchSpec &arch_spec, ModuleSpec &module_spec);
H A DGDBRemoteCommunicationClient.cpp3534 const FileSpec &module_file_spec, const lldb_private::ArchSpec &arch_spec,
3547 const auto &triple = arch_spec.GetTriple().getTriple();
3592 module_spec.GetFileSpec() = FileSpec(path, arch_spec.GetTriple());
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DModule.h860 bool MergeArchitecture(const ArchSpec &arch_spec);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.cpp405 ArchSpec arch_spec = launch_info.GetArchitecture(); local
406 const char *arch_triple = arch_spec.GetTriple().str().c_str();
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DTarget.h935 /// won't be changed. If the input arch_spec is the same as the already set
938 /// \param[in] arch_spec
950 bool SetArchitecture(const ArchSpec &arch_spec, bool set_platform = false);
952 bool MergeArchitecture(const ArchSpec &arch_spec);
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBTarget.cpp427 const ArchSpec &arch_spec = target_sp->GetArchitecture(); local
428 if (arch_spec.IsValid())
429 launch_info.GetArchitecture() = arch_spec;

Completed in 148 milliseconds