Home
last modified time | relevance | path

Searched refs:GetTriple (Results 1 – 25 of 103) sorted by relevance

12345

/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Platform/FreeBSD/
DPlatformFreeBSD.cpp51 arch ? arch->GetTriple().getTriple() : "<null>"); in CreateInstance()
55 const llvm::Triple &triple = arch->GetTriple(); in CreateInstance()
135 if (hostArch.GetTriple().isOSFreeBSD()) { in GetSupportedArchitectureAtIndex()
142 if (hostArch.IsValid() && hostArch.GetTriple().isArch64Bit()) { in GetSupportedArchitectureAtIndex()
242 if (arch.GetTriple().getArch() == llvm::Triple::x86) in GetMmapArgumentList()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Utility/
DArchSpec.cpp545 bool ArchSpec::IsMIPS() const { return GetTriple().isMIPS(); } in IsMIPS()
774 arch.GetTriple().setVendorName(vendor); in ParseMachCPUDashSubtypeTriple()
775 arch.GetTriple().setOSName(os); in ParseMachCPUDashSubtypeTriple()
803 if ((GetTriple().getOS() == llvm::Triple::MacOSX || in MergeFrom()
804 GetTriple().getOS() == llvm::Triple::UnknownOS) && in MergeFrom()
805 other.GetTriple().getOS() == llvm::Triple::IOS && in MergeFrom()
806 other.GetTriple().getEnvironment() == llvm::Triple::MacABI) { in MergeFrom()
812 GetTriple().setVendor(other.GetTriple().getVendor()); in MergeFrom()
814 GetTriple().setOS(other.GetTriple().getOS()); in MergeFrom()
815 if (GetTriple().getArch() == llvm::Triple::UnknownArch) { in MergeFrom()
[all …]
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Platform/NetBSD/
DPlatformNetBSD.cpp46 arch ? arch->GetTriple().getTriple() : "<null>"); in CreateInstance()
50 const llvm::Triple &triple = arch->GetTriple(); in CreateInstance()
124 if (hostArch.GetTriple().isOSNetBSD()) { in GetSupportedArchitectureAtIndex()
131 if (hostArch.IsValid() && hostArch.GetTriple().isArch64Bit()) { in GetSupportedArchitectureAtIndex()
/freebsd-12-stable/contrib/llvm-project/lldb/source/API/
DSBProcessInfo.cpp182 const char *SBProcessInfo::GetTriple() { in GetTriple() function in SBProcessInfo
183 LLDB_RECORD_METHOD_NO_ARGS(const char *, SBProcessInfo, GetTriple); in GetTriple()
191 triple = ConstString(arch.GetTriple().getTriple().c_str()).GetCString(); in GetTriple()
222 LLDB_REGISTER_METHOD(const char *, SBProcessInfo, GetTriple, ()); in RegisterMethods()
DSBModuleSpec.cpp112 const char *SBModuleSpec::GetTriple() { in GetTriple() function in SBModuleSpec
113 LLDB_RECORD_METHOD_NO_ARGS(const char *, SBModuleSpec, GetTriple); in GetTriple()
115 std::string triple(m_opaque_up->GetArchitecture().GetTriple().str()); in GetTriple()
271 LLDB_REGISTER_METHOD(const char *, SBModuleSpec, GetTriple, ()); in RegisterMethods()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
DObjectFileELF.cpp538 spec.GetArchitecture().GetTriple().getOS(); in GetModuleSpecifications()
545 vendor = spec.GetArchitecture().GetTriple().getVendor(); in GetModuleSpecifications()
582 llvm::Triple &spec_triple = spec.GetArchitecture().GetTriple(); in GetModuleSpecifications()
1054 arch_spec.GetTriple().setOSName(os_name); in RefineModuleDetailsFromNote()
1055 arch_spec.GetTriple().setVendor(llvm::Triple::VendorType::UnknownVendor); in RefineModuleDetailsFromNote()
1079 arch_spec.GetTriple().setOS(llvm::Triple::OSType::Linux); in RefineModuleDetailsFromNote()
1080 arch_spec.GetTriple().setVendor( in RefineModuleDetailsFromNote()
1092 arch_spec.GetTriple().setOS(llvm::Triple::OSType::UnknownOS); in RefineModuleDetailsFromNote()
1093 arch_spec.GetTriple().setVendor( in RefineModuleDetailsFromNote()
1102 arch_spec.GetTriple().setOS(llvm::Triple::OSType::Solaris); in RefineModuleDetailsFromNote()
[all …]
/freebsd-12-stable/contrib/llvm-project/lldb/bindings/interface/
DSBProcessInfo.i68 ) GetTriple;
70 GetTriple ();
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Platform/OpenBSD/
DPlatformOpenBSD.cpp46 arch ? arch->GetTriple().getTriple() : "<null>"); in CreateInstance()
50 const llvm::Triple &triple = arch->GetTriple(); in CreateInstance()
130 if (hostArch.GetTriple().isOSOpenBSD()) { in GetSupportedArchitectureAtIndex()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/
DRegisterContextPOSIXCore_ppc64le.cpp32 DataExtractor fpregset = getRegset(notes, arch.GetTriple(), FPR_Desc); in RegisterContextCorePOSIX_ppc64le()
38 DataExtractor vmxregset = getRegset(notes, arch.GetTriple(), PPC_VMX_Desc); in RegisterContextCorePOSIX_ppc64le()
44 DataExtractor vsxregset = getRegset(notes, arch.GetTriple(), PPC_VSX_Desc); in RegisterContextCorePOSIX_ppc64le()
DRegisterContextPOSIXCore_powerpc.cpp29 DataExtractor fpregset = getRegset(notes, arch.GetTriple(), FPR_Desc); in RegisterContextCorePOSIX_powerpc()
35 DataExtractor vregset = getRegset(notes, arch.GetTriple(), PPC_VMX_Desc); in RegisterContextCorePOSIX_powerpc()
DRegisterContextPOSIXCore_arm64.cpp26 DataExtractor sve_data = getRegset(notes, arch.GetTriple(), AARCH64_SVE_Desc); in Create()
33 DataExtractor pac_data = getRegset(notes, arch.GetTriple(), AARCH64_PAC_Desc); in Create()
53 m_register_info_up->GetTargetArchitecture().GetTriple(); in RegisterContextCorePOSIX_arm64()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Architecture/PPC64/
DArchitecturePPC64.cpp40 if (arch.GetTriple().isPPC64() && in Create()
41 arch.GetTriple().getObjectFormat() == llvm::Triple::ObjectFormatType::ELF) in Create()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/ABI/X86/
DABIMacOSX_i386.cpp52 if ((arch.GetTriple().getArch() == llvm::Triple::x86) && in CreateInstance()
53 (arch.GetTriple().isMacOSX() || arch.GetTriple().isiOS() || in CreateInstance()
54 arch.GetTriple().isWatchOS())) { in CreateInstance()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
DRegisterContextPOSIX_mips64.cpp102 switch (target_arch.GetTriple().getOS()) { in GetRegisterSetCount()
114 switch (target_arch.GetTriple().getOS()) { in GetRegisterSet()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Commands/
DCommandObjectDisassemble.cpp107 if (target_sp && (target_sp->GetArchitecture().GetTriple().getArch() == in SetOptionValue()
109 target_sp->GetArchitecture().GetTriple().getArch() == in SetOptionValue()
178 if (target->GetArchitecture().GetTriple().getArch() == llvm::Triple::x86 || in OptionParsingStarting()
179 target->GetArchitecture().GetTriple().getArch() == in OptionParsingStarting()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Target/
DAssertFrameRecognizer.cpp96 llvm::Triple::OSType os = target.GetArchitecture().GetTriple().getOS(); in RegisterAssertFrameRecognizer()
139 llvm::Triple::OSType os = target.GetArchitecture().GetTriple().getOS(); in RecognizeFrame()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Platform/gdb-server/
DPlatformRemoteGDBServer.cpp179 arch.GetTriple().getTriple().c_str()); in GetModuleSpec()
189 arch.GetTriple().getTriple().c_str(), stream.GetData()); in GetModuleSpec()
225 remote_arch.GetTriple().isArch64Bit()) { in GetSupportedArchitectureAtIndex()
226 arch.SetTriple(remote_arch.GetTriple().get32BitArchVariant()); in GetSupportedArchitectureAtIndex()
427 const char *arch_triple = arch_spec.GetTriple().str().c_str(); in LaunchProcess()
531 llvm::Triple &remote_triple = remote_arch.GetTriple(); in LaunchGDBServer()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Symbol/
DCompactUnwindInfo.cpp212 if (arch.GetTriple().getArch() == llvm::Triple::x86_64) { in GetUnwindPlan()
216 if (arch.GetTriple().getArch() == llvm::Triple::aarch64 || in GetUnwindPlan()
217 arch.GetTriple().getArch() == llvm::Triple::aarch64_32) { in GetUnwindPlan()
220 if (arch.GetTriple().getArch() == llvm::Triple::x86) { in GetUnwindPlan()
223 if (arch.GetTriple().getArch() == llvm::Triple::arm || in GetUnwindPlan()
224 arch.GetTriple().getArch() == llvm::Triple::thumb) { in GetUnwindPlan()
339 if (arch.GetTriple().getArch() == llvm::Triple::arm || in ScanIndex()
340 arch.GetTriple().getArch() == llvm::Triple::thumb) in ScanIndex()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
DDYLDRendezvous.cpp419 auto triple = m_process->GetTarget().GetArchitecture().GetTriple(); in SOEntryIsMainExecutable()
495 return target.GetArchitecture().GetTriple().isAndroid() && in isLoadBiasIncorrect()
527 if ((arch.GetTriple().getOS() == llvm::Triple::FreeBSD || in ReadSOEntryFromMemory()
528 arch.GetTriple().getOS() == llvm::Triple::NetBSD) && in ReadSOEntryFromMemory()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
DGDBRemoteCommunicationClient.cpp1290 m_host_arch.GetTriple().setVendorName( in GetHostInfo()
1293 m_host_arch.GetTriple().setOSName(llvm::StringRef(os_name)); in GetHostInfo()
1295 m_host_arch.GetTriple().setEnvironmentName(environment); in GetHostInfo()
1314 llvm::Triple &host_triple = m_host_arch.GetTriple(); in GetHostInfo()
1352 m_host_arch.GetTriple().getTriple().c_str(), in GetHostInfo()
1808 llvm::Triple triple = arch.GetTriple(); in GetWatchpointsTriggerAfterInstruction()
1900 working_dir.SetFile(cwd, GetHostArchitecture().GetTriple()); in GetWorkingDir()
2044 process_info.GetArchitecture().GetTriple().setVendorName( in DecodeProcessInfoResponse()
2046 process_info.GetArchitecture().GetTriple().setOSName( in DecodeProcessInfoResponse()
2196 m_process_arch.GetTriple().setVendorName(llvm::StringRef(vendor_name)); in GetCurrentProcessInfo()
[all …]
/freebsd-12-stable/contrib/llvm-project/lldb/source/Interpreter/
DCommandOptionValidators.cpp20 platform.GetSystemArchitecture().GetTriple().getOS(); in IsValid()
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/API/
DSBProcessInfo.h54 const char *GetTriple();
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Utility/
DArchSpec.h444 llvm::Triple &GetTriple() { return m_triple; } in GetTriple() function
449 const llvm::Triple &GetTriple() const { return m_triple; } in GetTriple() function
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/wasm-DYLD/
DDynamicLoaderWasmDYLD.cpp48 (process->GetTarget().GetArchitecture().GetTriple().getArch() == in CreateInstance()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/ABI/AArch64/
DABISysV_arm64.cpp47 const llvm::Triple::ArchType arch_type = arch.GetTriple().getArch(); in CreateInstance()
48 const llvm::Triple::VendorType vendor_type = arch.GetTriple().getVendor(); in CreateInstance()
818 if (process_sp->GetTarget().GetArchitecture().GetTriple().isOSLinux() && in FixCodeAddress()
830 if (process_sp->GetTarget().GetArchitecture().GetTriple().isOSLinux() && in FixDataAddress()

12345