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

/openbsd-current/gnu/llvm/lldb/source/Plugins/Process/mach-core/
H A DThreadMachCore.cpp115 const ArchSpec arch_spec = target.GetArchitecture(); local
116 const uint32_t cputype = arch_spec.GetMachOCPUType();
/openbsd-current/gnu/llvm/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp1038 lldb_private::ArchSpec &arch_spec,
1077 arch_spec.GetTriple().setOSName(os_name);
1078 arch_spec.GetTriple().setVendor(llvm::Triple::VendorType::UnknownVendor);
1102 arch_spec.GetTriple().setOS(llvm::Triple::OSType::Linux);
1103 arch_spec.GetTriple().setVendor(
1115 arch_spec.GetTriple().setOS(llvm::Triple::OSType::UnknownOS);
1116 arch_spec.GetTriple().setVendor(
1125 arch_spec.GetTriple().setOS(llvm::Triple::OSType::Solaris);
1126 arch_spec.GetTriple().setVendor(
1163 if (arch_spec
1037 RefineModuleDetailsFromNote(lldb_private::DataExtractor &data, lldb_private::ArchSpec &arch_spec, lldb_private::UUID &uuid) argument
1275 ParseARMAttributes(DataExtractor &data, uint64_t length, ArchSpec &arch_spec) argument
1346 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.h263 lldb_private::ArchSpec &arch_spec);
273 lldb_private::ArchSpec &arch_spec);
389 lldb_private::ArchSpec &arch_spec,
/openbsd-current/gnu/llvm/lldb/source/Plugins/Process/Windows/Common/
H A DNativeProcessWindows.h81 void SetArchitecture(const ArchSpec &arch_spec) { m_arch = arch_spec; } argument
H A DProcessWindows.h60 void DidAttach(lldb_private::ArchSpec &arch_spec) override;
H A DProcessWindows.cpp270 ArchSpec arch_spec; local
271 DidAttach(arch_spec);
274 void ProcessWindows::DidAttach(ArchSpec &arch_spec) { argument
/openbsd-current/gnu/llvm/lldb/source/Utility/
H A DProcessInfo.cpp245 const ArchSpec &arch_spec) const {
247 m_match_info.GetArchitecture().IsCompatibleMatch(arch_spec);
/openbsd-current/gnu/llvm/lldb/include/lldb/Utility/
H A DProcessInfo.h185 /// Return true iff the architecture in this object matches arch_spec.
186 bool ArchitectureMatches(const ArchSpec &arch_spec) const;
/openbsd-current/gnu/llvm/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
H A DDynamicLoaderDarwin.cpp777 lldb_private::ArchSpec arch_spec(lldb_private::eArchTypeMachO, header.cputype,
780 llvm::Triple triple(llvm::Twine(arch_spec.GetArchitectureName()) +
783 if (arch_spec.IsCompatibleMatch(maccatalyst_spec))
784 arch_spec.MergeFrom(maccatalyst_spec);
789 llvm::Triple triple(llvm::Twine(arch_spec.GetArchitectureName()) +
793 if (arch_spec.IsCompatibleMatch(sim_spec))
794 arch_spec.MergeFrom(sim_spec);
796 return arch_spec;
/openbsd-current/gnu/llvm/lldb/source/Core/
H A DModule.cpp1631 bool Module::MergeArchitecture(const ArchSpec &arch_spec) { argument
1632 if (!arch_spec.IsValid())
1637 arch_spec.GetTriple().getTriple().c_str());
1638 if (!m_arch.IsCompatibleMatch(arch_spec)) {
1640 return SetArchitecture(arch_spec);
1643 // Merge bits from arch_spec into "merged_arch" and set our architecture.
1645 merged_arch.MergeFrom(arch_spec);
/openbsd-current/gnu/llvm/lldb/source/Target/
H A DTarget.cpp1488 bool Target::SetArchitecture(const ArchSpec &arch_spec, bool set_platform, argument
1494 ArchSpec other(arch_spec);
1517 if (merge && m_arch.GetSpec().IsCompatibleMatch(arch_spec)) {
1554 arch_spec.GetArchitectureName(),
1555 arch_spec.GetTriple().getTriple().c_str(),
1568 arch_spec.GetArchitectureName(),
1569 arch_spec.GetTriple().getTriple().c_str());
1583 bool Target::MergeArchitecture(const ArchSpec &arch_spec) { argument
1585 if (arch_spec.IsValid()) {
1586 if (m_arch.GetSpec().IsCompatibleMatch(arch_spec)) {
[all...]
/openbsd-current/gnu/llvm/lldb/include/lldb/Core/
H A DModule.h915 bool MergeArchitecture(const ArchSpec &arch_spec);
/openbsd-current/gnu/llvm/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.cpp357 ArchSpec arch_spec = launch_info.GetArchitecture(); local
358 const char *arch_triple = arch_spec.GetTriple().str().c_str();
/openbsd-current/gnu/llvm/lldb/include/lldb/Target/
H A DTarget.h1003 /// won't be changed. If the input arch_spec is the same as the already set
1006 /// \param[in] arch_spec
1017 /// If true, arch_spec is merged with the current
1022 bool SetArchitecture(const ArchSpec &arch_spec, bool set_platform = false,
1025 bool MergeArchitecture(const ArchSpec &arch_spec);
/openbsd-current/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.h450 const ArchSpec &arch_spec, ModuleSpec &module_spec);
H A DGDBRemoteCommunicationClient.cpp3762 const FileSpec &module_file_spec, const lldb_private::ArchSpec &arch_spec,
3775 const auto &triple = arch_spec.GetTriple().getTriple();
3820 module_spec.GetFileSpec() = FileSpec(path, arch_spec.GetTriple());
3761 GetModuleInfo( const FileSpec &module_file_spec, const lldb_private::ArchSpec &arch_spec, ModuleSpec &module_spec) argument
/openbsd-current/gnu/llvm/lldb/source/API/
H A DSBTarget.cpp415 const ArchSpec &arch_spec = target_sp->GetArchitecture(); local
416 if (arch_spec.IsValid())
417 launch_info.GetArchitecture() = arch_spec;

Completed in 387 milliseconds