Searched refs:ArchSpec (Results 101 - 125 of 231) sorted by relevance

12345678910

/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ABI/ARM/
H A DABIMacOSX_arm.h72 static lldb::ABISP CreateInstance(lldb::ProcessSP process_sp, const lldb_private::ArchSpec &arch);
H A DABISysV_arm.h72 static lldb::ABISP CreateInstance(lldb::ProcessSP process_sp, const lldb_private::ArchSpec &arch);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ABI/Hexagon/
H A DABISysV_hexagon.h80 static lldb::ABISP CreateInstance(lldb::ProcessSP process_sp, const lldb_private::ArchSpec &arch);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ABI/Mips/
H A DABISysV_mips.h70 static lldb::ABISP CreateInstance(lldb::ProcessSP process_sp, const lldb_private::ArchSpec &arch);
H A DABISysV_mips64.h83 static lldb::ABISP CreateInstance(lldb::ProcessSP process_sp, const lldb_private::ArchSpec &arch);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ABI/PowerPC/
H A DABISysV_ppc.h79 static lldb::ABISP CreateInstance(lldb::ProcessSP process_sp, const lldb_private::ArchSpec &arch);
H A DABISysV_ppc64.h79 static lldb::ABISP CreateInstance(lldb::ProcessSP process_sp, const lldb_private::ArchSpec &arch);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SystemZ/
H A DABISysV_s390x.h71 static lldb::ABISP CreateInstance(lldb::ProcessSP process_sp, const lldb_private::ArchSpec &arch);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ABI/X86/
H A DABIMacOSX_i386.h74 static lldb::ABISP CreateInstance(lldb::ProcessSP process_sp, const lldb_private::ArchSpec &arch);
H A DABISysV_i386.h82 static lldb::ABISP CreateInstance(lldb::ProcessSP process_sp, const lldb_private::ArchSpec &arch);
H A DABISysV_x86_64.h77 static lldb::ABISP CreateInstance(lldb::ProcessSP process_sp, const lldb_private::ArchSpec &arch);
H A DABIWindows_x86_64.h68 static lldb::ABISP CreateInstance(lldb::ProcessSP process_sp, const lldb_private::ArchSpec &arch);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Architecture/Arm/
H A DArchitectureArm.cpp15 #include "lldb/Utility/ArchSpec.h"
36 std::unique_ptr<Architecture> ArchitectureArm::Create(const ArchSpec &arch) {
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/
H A DNativeRegisterContextNetBSD_x86_64.h36 NativeRegisterContextNetBSD_x86_64(const ArchSpec &target_arch,
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/
H A DRegisterContextPOSIXCore_mips64.cpp55 lldb_private::ArchSpec arch = m_register_info_up->GetTargetArchitecture();
/freebsd-13-stable/contrib/llvm-project/lldb/source/Symbol/
H A DLocateSymbolFile.cpp15 #include "lldb/Utility/ArchSpec.h"
49 const ArchSpec *arch,
208 const ArchSpec *arch = module_spec.GetArchitecturePtr();
234 const ArchSpec *arch = module_spec.GetArchitecturePtr();
381 const ArchSpec *arch) {
H A DFuncUnwinders.cpp255 if (target.GetArchitecture().GetCore() != ArchSpec::eCore_x86_32_i386 &&
256 target.GetArchitecture().GetCore() != ArchSpec::eCore_x86_64_x86_64 &&
257 target.GetArchitecture().GetCore() != ArchSpec::eCore_x86_64_x86_64h) {
296 if (target.GetArchitecture().GetCore() != ArchSpec::eCore_x86_32_i386 &&
297 target.GetArchitecture().GetCore() != ArchSpec::eCore_x86_64_x86_64 &&
298 target.GetArchitecture().GetCore() != ArchSpec::eCore_x86_64_x86_64h) {
523 if (ArchSpec arch = m_unwind_table.GetArchitecture()) {
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DTarget.h31 #include "lldb/Utility/ArchSpec.h"
78 ArchSpec GetDefaultArchitecture() const;
80 void SetDefaultArchitecture(const ArchSpec &arch);
502 static ArchSpec GetDefaultArchitecture();
504 static void SetDefaultArchitecture(const ArchSpec &arch);
942 const ArchSpec &GetArchitecture() const { return m_arch.GetSpec(); }
969 bool SetArchitecture(const ArchSpec &arch_spec, bool set_platform = false);
971 bool MergeArchitecture(const ArchSpec &arch_spec);
1273 explicit Arch(const ArchSpec &spec);
1274 const Arch &operator=(const ArchSpec
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/
H A DObjectFileBreakpad.cpp23 ArchSpec arch;
44 return Header{ArchSpec(triple), std::move(uuid)};
114 offset_t length, ArchSpec arch,
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/JIT/
H A DObjectFileJIT.cpp25 #include "lldb/Utility/ArchSpec.h"
159 if (ArchSpec arch = GetArchitecture())
196 ArchSpec ObjectFileJIT::GetArchitecture() {
199 return ArchSpec();
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DRegisterContextFreeBSD_powerpc.cpp178 const ArchSpec &target_arch)
189 // assert (m_target_arch.GetCore() == ArchSpec::eCore_powerpc);
197 const ArchSpec &target_arch)
207 // assert (m_target_arch.GetCore() == ArchSpec::eCore_powerpc);
217 const ArchSpec &target_arch)
227 // assert (m_target_arch.GetCore() == ArchSpec::eCore_powerpc);
H A DRegisterInfoPOSIX_arm64.cpp57 GetRegisterInfoPtr(const lldb_private::ArchSpec &target_arch) {
145 GetRegisterInfoCount(const lldb_private::ArchSpec &target_arch) {
158 const lldb_private::ArchSpec &target_arch)
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DDWARFLocationExpression.cpp15 #include "lldb/Utility/ArchSpec.h"
109 const ArchSpec &architecture = module->GetArchitecture();
182 const ArchSpec &architecture = module->GetArchitecture();
224 const ArchSpec &architecture = module->GetArchitecture();
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.h24 #include "lldb/Utility/ArchSpec.h"
99 void DidAttach(ArchSpec &process_arch) override;
195 bool GetModuleSpec(const FileSpec &module_file_spec, const ArchSpec &arch,
379 void DidLaunchOrAttach(ArchSpec &process_arch);
389 bool GetGDBServerRegisterInfoXMLAndProcess(ArchSpec &arch_to_use,
395 bool GetGDBServerRegisterInfo(ArchSpec &arch);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Instruction/MIPS/
H A DEmulateInstructionMIPS.cpp18 #include "lldb/Utility/ArchSpec.h"
63 const lldb_private::ArchSpec &arch)
95 case ArchSpec::eCore_mips32:
96 case ArchSpec::eCore_mips32el:
99 case ArchSpec::eCore_mips32r2:
100 case ArchSpec::eCore_mips32r2el:
103 case ArchSpec::eCore_mips32r3:
104 case ArchSpec::eCore_mips32r3el:
107 case ArchSpec::eCore_mips32r5:
108 case ArchSpec
[all...]

Completed in 140 milliseconds

12345678910