| /freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Platform/FreeBSD/ |
| D | PlatformFreeBSD.cpp | 51 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/ |
| D | ArchSpec.cpp | 545 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/ |
| D | PlatformNetBSD.cpp | 46 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/ |
| D | SBProcessInfo.cpp | 182 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()
|
| D | SBModuleSpec.cpp | 112 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/ |
| D | ObjectFileELF.cpp | 538 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/ |
| D | SBProcessInfo.i | 68 ) GetTriple; 70 GetTriple ();
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Platform/OpenBSD/ |
| D | PlatformOpenBSD.cpp | 46 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/ |
| D | RegisterContextPOSIXCore_ppc64le.cpp | 32 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()
|
| D | RegisterContextPOSIXCore_powerpc.cpp | 29 DataExtractor fpregset = getRegset(notes, arch.GetTriple(), FPR_Desc); in RegisterContextCorePOSIX_powerpc() 35 DataExtractor vregset = getRegset(notes, arch.GetTriple(), PPC_VMX_Desc); in RegisterContextCorePOSIX_powerpc()
|
| D | RegisterContextPOSIXCore_arm64.cpp | 26 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/ |
| D | ArchitecturePPC64.cpp | 40 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/ |
| D | ABIMacOSX_i386.cpp | 52 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/ |
| D | RegisterContextPOSIX_mips64.cpp | 102 switch (target_arch.GetTriple().getOS()) { in GetRegisterSetCount() 114 switch (target_arch.GetTriple().getOS()) { in GetRegisterSet()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Commands/ |
| D | CommandObjectDisassemble.cpp | 107 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/ |
| D | AssertFrameRecognizer.cpp | 96 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/ |
| D | PlatformRemoteGDBServer.cpp | 179 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/ |
| D | CompactUnwindInfo.cpp | 212 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/ |
| D | DYLDRendezvous.cpp | 419 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/ |
| D | GDBRemoteCommunicationClient.cpp | 1290 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/ |
| D | CommandOptionValidators.cpp | 20 platform.GetSystemArchitecture().GetTriple().getOS(); in IsValid()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/API/ |
| D | SBProcessInfo.h | 54 const char *GetTriple();
|
| /freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Utility/ |
| D | ArchSpec.h | 444 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/ |
| D | DynamicLoaderWasmDYLD.cpp | 48 (process->GetTarget().GetArchitecture().GetTriple().getArch() == in CreateInstance()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/ABI/AArch64/ |
| D | ABISysV_arm64.cpp | 47 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()
|