Searched refs:GetTriple (Results 1 - 25 of 100) sorted by relevance

1234

/freebsd-13-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandOptionValidators.cpp20 platform.GetSystemArchitecture().GetTriple().getOS();
H A DOptionGroupPlatform.cpp30 arch.GetTriple().getTriple().c_str());
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Architecture/PPC64/
H A DArchitecturePPC64.cpp40 if (arch.GetTriple().isPPC64() &&
41 arch.GetTriple().getObjectFormat() == llvm::Triple::ObjectFormatType::ELF)
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/wasm-DYLD/
H A DDynamicLoaderWasmDYLD.cpp48 (process->GetTarget().GetArchitecture().GetTriple().getArch() ==
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Platform/FreeBSD/
H A DPlatformFreeBSD.cpp48 arch ? arch->GetTriple().getTriple() : "<null>");
52 const llvm::Triple &triple = arch->GetTriple();
134 if (hostArch.GetTriple().isOSFreeBSD()) {
141 if (hostArch.IsValid() && hostArch.GetTriple().isArch64Bit()) {
320 if (arch.GetTriple().getArch() == llvm::Triple::x86)
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Platform/OpenBSD/
H A DPlatformOpenBSD.cpp46 arch ? arch->GetTriple().getTriple() : "<null>");
50 const llvm::Triple &triple = arch->GetTriple();
132 if (hostArch.GetTriple().isOSOpenBSD()) {
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/
H A DRegisterContextPOSIXCore_ppc64le.cpp32 DataExtractor fpregset = getRegset(notes, arch.GetTriple(), FPR_Desc);
38 DataExtractor vmxregset = getRegset(notes, arch.GetTriple(), PPC_VMX_Desc);
44 DataExtractor vsxregset = getRegset(notes, arch.GetTriple(), PPC_VSX_Desc);
H A DRegisterContextPOSIXCore_powerpc.cpp29 DataExtractor fpregset = getRegset(notes, arch.GetTriple(), FPR_Desc);
35 DataExtractor vregset = getRegset(notes, arch.GetTriple(), PPC_VMX_Desc);
H A DRegisterContextPOSIXCore_arm64.cpp29 notes, m_register_info_up->GetTargetArchitecture().GetTriple(), FPR_Desc);
H A DRegisterContextPOSIXCore_mips64.cpp28 notes, register_info->GetTargetArchitecture().GetTriple(), FPR_Desc);
H A DRegisterContextPOSIXCore_s390x.cpp29 notes, register_info->GetTargetArchitecture().GetTriple(), FPR_Desc);
H A DRegisterContextPOSIXCore_x86_64.cpp30 notes, register_info->GetTargetArchitecture().GetTriple(), FPR_Desc);
/freebsd-13-stable/contrib/llvm-project/lldb/bindings/interface/
H A DSBModuleSpec.i77 GetTriple ();
H A DSBPlatform.i147 GetTriple();
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/API/
H A DSBModuleSpec.h70 const char *GetTriple();
H A DSBModule.h101 const char *GetTriple();
H A DSBPlatform.h121 const char *GetTriple();
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Platform/NetBSD/
H A DPlatformNetBSD.cpp46 arch ? arch->GetTriple().getTriple() : "<null>");
50 const llvm::Triple &triple = arch->GetTriple();
126 if (hostArch.GetTriple().isOSNetBSD()) {
133 if (hostArch.IsValid() && hostArch.GetTriple().isArch64Bit()) {
/freebsd-13-stable/contrib/llvm-project/lldb/source/Utility/
H A DArchSpec.cpp592 bool ArchSpec::IsMIPS() const { return GetTriple().isMIPS(); }
821 arch.GetTriple().setVendorName(vendor);
822 arch.GetTriple().setOSName(os);
850 GetTriple().setVendor(other.GetTriple().getVendor());
852 GetTriple().setOS(other.GetTriple().getOS());
853 if (GetTriple().getArch() == llvm::Triple::UnknownArch) {
854 GetTriple().setArch(other.GetTriple()
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DRegisterContextPOSIX_mips64.cpp104 switch (target_arch.GetTriple().getOS()) {
127 switch (target_arch.GetTriple().getOS()) {
/freebsd-13-stable/contrib/llvm-project/lldb/source/Target/
H A DAssertFrameRecognizer.cpp92 llvm::Triple::OSType os = target.GetArchitecture().GetTriple().getOS();
112 llvm::Triple::OSType os = target.GetArchitecture().GetTriple().getOS();
/freebsd-13-stable/contrib/llvm-project/lldb/source/API/
H A DSBModuleSpec.cpp112 const char *SBModuleSpec::GetTriple() { function in class:SBModuleSpec
113 LLDB_RECORD_METHOD_NO_ARGS(const char *, SBModuleSpec, GetTriple);
115 std::string triple(m_opaque_up->GetArchitecture().GetTriple().str());
271 LLDB_REGISTER_METHOD(const char *, SBModuleSpec, GetTriple, ());
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ABI/X86/
H A DABIMacOSX_i386.cpp52 if ((arch.GetTriple().getArch() == llvm::Triple::x86) &&
53 (arch.GetTriple().isMacOSX() || arch.GetTriple().isiOS() ||
54 arch.GetTriple().isWatchOS())) {
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp522 spec.GetArchitecture().GetTriple().getOS();
529 vendor = spec.GetArchitecture().GetTriple().getVendor();
566 llvm::Triple &spec_triple = spec.GetArchitecture().GetTriple();
1041 arch_spec.GetTriple().setOSName(os_name);
1042 arch_spec.GetTriple().setVendor(llvm::Triple::VendorType::UnknownVendor);
1066 arch_spec.GetTriple().setOS(llvm::Triple::OSType::Linux);
1067 arch_spec.GetTriple().setVendor(
1079 arch_spec.GetTriple().setOS(llvm::Triple::OSType::UnknownOS);
1080 arch_spec.GetTriple().setVendor(
1089 arch_spec.GetTriple()
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectDisassemble.cpp111 if (target_sp && (target_sp->GetArchitecture().GetTriple().getArch() ==
113 target_sp->GetArchitecture().GetTriple().getArch() ==
182 if (target->GetArchitecture().GetTriple().getArch() == llvm::Triple::x86 ||
183 target->GetArchitecture().GetTriple().getArch() ==

Completed in 213 milliseconds

1234