Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp1103 arch_spec.GetTriple().setVendor( in RefineModuleDetailsFromNote()
1116 arch_spec.GetTriple().setVendor( in RefineModuleDetailsFromNote()
1126 arch_spec.GetTriple().setVendor( in RefineModuleDetailsFromNote()
1163 if (arch_spec.IsMIPS() && in RefineModuleDetailsFromNote()
1190 arch_spec.GetTriple().setOSName( in RefineModuleDetailsFromNote()
1209 arch_spec.GetTriple().setEnvironment( in RefineModuleDetailsFromNote()
1259 if (arch_spec.IsMIPS() && in RefineModuleDetailsFromNote()
1407 uint32_t flags = arch_spec.GetFlags(); in GetSectionHeaderInfo()
1424 arch_spec.SetFlags(flags); in GetSectionHeaderInfo()
1470 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,
/openbsd/gnu/llvm/lldb/source/Plugins/Process/mach-core/
H A DThreadMachCore.cpp115 const ArchSpec arch_spec = target.GetArchitecture(); in CalculateStopInfo() local
116 const uint32_t cputype = arch_spec.GetMachOCPUType(); in CalculateStopInfo()
/openbsd/gnu/llvm/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
H A DDynamicLoaderDarwin.cpp777 lldb_private::ArchSpec arch_spec(lldb_private::eArchTypeMachO, header.cputype, in GetArchitecture() local
780 llvm::Triple triple(llvm::Twine(arch_spec.GetArchitectureName()) + in GetArchitecture()
783 if (arch_spec.IsCompatibleMatch(maccatalyst_spec)) in GetArchitecture()
784 arch_spec.MergeFrom(maccatalyst_spec); in GetArchitecture()
789 llvm::Triple triple(llvm::Twine(arch_spec.GetArchitectureName()) + in GetArchitecture()
793 if (arch_spec.IsCompatibleMatch(sim_spec)) in GetArchitecture()
794 arch_spec.MergeFrom(sim_spec); in GetArchitecture()
796 return arch_spec; in GetArchitecture()
/openbsd/gnu/llvm/lldb/source/Plugins/Process/Windows/Common/
H A DNativeProcessWindows.h81 void SetArchitecture(const ArchSpec &arch_spec) { m_arch = arch_spec; } in SetArchitecture() argument
H A DProcessWindows.h60 void DidAttach(lldb_private::ArchSpec &arch_spec) override;
H A DProcessWindows.cpp270 ArchSpec arch_spec; in DidLaunch() local
271 DidAttach(arch_spec); in DidLaunch()
274 void ProcessWindows::DidAttach(ArchSpec &arch_spec) { in DidAttach() argument
/openbsd/gnu/llvm/lldb/source/Utility/
H A DProcessInfo.cpp245 const ArchSpec &arch_spec) const { in ArchitectureMatches()
247 m_match_info.GetArchitecture().IsCompatibleMatch(arch_spec); in ArchitectureMatches()
/openbsd/gnu/llvm/lldb/source/Host/macosx/objcxx/
H A DHost.mm226 const ArchSpec &arch_spec = launch_info.GetArchitecture();
228 if (arch_spec.IsValid() &&
229 arch_spec.GetCore() != ArchSpec::eCore_x86_64_x86_64h)
230 command.Printf("arch -arch %s ", arch_spec.GetArchitectureName());
234 if (arch_spec.IsValid())
235 command.Printf(" --arch=%s", arch_spec.GetArchitectureName());
1142 const ArchSpec &arch_spec = launch_info.GetArchitecture();
1143 cpu_type_t cpu_type = arch_spec.GetMachOCPUType();
1144 cpu_type_t cpu_subtype = arch_spec.GetMachOCPUSubType();
/openbsd/gnu/llvm/lldb/source/Core/
H A DModule.cpp1631 bool Module::MergeArchitecture(const ArchSpec &arch_spec) { in MergeArchitecture() argument
1632 if (!arch_spec.IsValid()) in MergeArchitecture()
1637 arch_spec.GetTriple().getTriple().c_str()); in MergeArchitecture()
1638 if (!m_arch.IsCompatibleMatch(arch_spec)) { in MergeArchitecture()
1640 return SetArchitecture(arch_spec); in MergeArchitecture()
1645 merged_arch.MergeFrom(arch_spec); in MergeArchitecture()
/openbsd/gnu/usr.bin/binutils/gas/doc/
H A Dc-ia64.texi151 http://developer.intel.com/design/itanium/arch_spec.htm
156 @uref{http://developer.intel.com/design/itanium/arch_spec.htm,IA-64 Architecture Handbook}.
/openbsd/gnu/llvm/lldb/include/lldb/Utility/
H A DProcessInfo.h186 bool ArchitectureMatches(const ArchSpec &arch_spec) const;
/openbsd/gnu/llvm/lldb/source/Target/
H A DTarget.cpp1494 ArchSpec other(arch_spec); in SetArchitecture()
1554 arch_spec.GetArchitectureName(), in SetArchitecture()
1555 arch_spec.GetTriple().getTriple().c_str(), in SetArchitecture()
1568 arch_spec.GetArchitectureName(), in SetArchitecture()
1569 arch_spec.GetTriple().getTriple().c_str()); in SetArchitecture()
1583 bool Target::MergeArchitecture(const ArchSpec &arch_spec) { in MergeArchitecture() argument
1585 if (arch_spec.IsValid()) { in MergeArchitecture()
1586 if (m_arch.GetSpec().IsCompatibleMatch(arch_spec)) { in MergeArchitecture()
1594 arch_spec.GetTriple().getTriple().c_str()); in MergeArchitecture()
1598 merged_arch.MergeFrom(arch_spec); in MergeArchitecture()
[all …]
/openbsd/gnu/usr.bin/binutils-2.17/gas/doc/
H A Dc-ia64.texi181 http://developer.intel.com/design/itanium/arch_spec.htm
186 @uref{http://developer.intel.com/design/itanium/arch_spec.htm,IA-64 Architecture Handbook}.
/openbsd/gnu/llvm/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.cpp357 ArchSpec arch_spec = launch_info.GetArchitecture(); in LaunchProcess() local
358 const char *arch_triple = arch_spec.GetTriple().str().c_str(); in LaunchProcess()
/openbsd/gnu/llvm/lldb/include/lldb/Target/
H A DTarget.h1022 bool SetArchitecture(const ArchSpec &arch_spec, bool set_platform = false,
1025 bool MergeArchitecture(const ArchSpec &arch_spec);
/openbsd/gnu/llvm/lldb/include/lldb/Core/
H A DModule.h915 bool MergeArchitecture(const ArchSpec &arch_spec);
/openbsd/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, in GetModuleInfo() argument
3775 const auto &triple = arch_spec.GetTriple().getTriple(); in GetModuleInfo()
3820 module_spec.GetFileSpec() = FileSpec(path, arch_spec.GetTriple()); in GetModuleInfo()
/openbsd/gnu/llvm/lldb/source/API/
H A DSBTarget.cpp415 const ArchSpec &arch_spec = target_sp->GetArchitecture(); in Launch() local
416 if (arch_spec.IsValid()) in Launch()
417 launch_info.GetArchitecture() = arch_spec; in Launch()