/openbsd/gnu/llvm/lldb/source/Plugins/ObjectFile/ELF/ |
H A D | ObjectFileELF.cpp | 1103 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 D | ObjectFileELF.h | 263 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 D | ThreadMachCore.cpp | 115 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 D | DynamicLoaderDarwin.cpp | 777 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 D | NativeProcessWindows.h | 81 void SetArchitecture(const ArchSpec &arch_spec) { m_arch = arch_spec; } in SetArchitecture() argument
|
H A D | ProcessWindows.h | 60 void DidAttach(lldb_private::ArchSpec &arch_spec) override;
|
H A D | ProcessWindows.cpp | 270 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 D | ProcessInfo.cpp | 245 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 D | Host.mm | 226 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 D | Module.cpp | 1631 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 D | c-ia64.texi | 151 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 D | ProcessInfo.h | 186 bool ArchitectureMatches(const ArchSpec &arch_spec) const;
|
/openbsd/gnu/llvm/lldb/source/Target/ |
H A D | Target.cpp | 1494 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 D | c-ia64.texi | 181 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 D | PlatformRemoteGDBServer.cpp | 357 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 D | Target.h | 1022 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 D | Module.h | 915 bool MergeArchitecture(const ArchSpec &arch_spec);
|
/openbsd/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/ |
H A D | GDBRemoteCommunicationClient.h | 450 const ArchSpec &arch_spec, ModuleSpec &module_spec);
|
H A D | GDBRemoteCommunicationClient.cpp | 3762 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 D | SBTarget.cpp | 415 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()
|