| /freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/Disassembler/llvm/ |
| D | DisassemblerLLVMC.cpp | 572 llvm::Triple triple = arch.GetTriple(); in FlavorValidForArchSpec() 591 if (arch.GetTriple().getArch() != llvm::Triple::UnknownArch) in CreateInstance() 612 const char *triple = arch.GetTriple().getTriple().c_str(); in DisassemblerLLVMC() 617 if (arch.GetTriple().getArch() == llvm::Triple::x86 in DisassemblerLLVMC() 618 || arch.GetTriple().getArch() == llvm::Triple::x86_64) in DisassemblerLLVMC() 631 if (arch.GetTriple().getArch() == llvm::Triple::arm) in DisassemblerLLVMC() 633 std::string thumb_arch_name (thumb_arch.GetTriple().getArchName().str()); in DisassemblerLLVMC() 644 thumb_arch.GetTriple().setArchName(llvm::StringRef(thumb_arch_name.c_str())); in DisassemblerLLVMC() 653 if (arch.GetTriple().getArch() == llvm::Triple::arm in DisassemblerLLVMC() 658 triple = thumb_arch.GetTriple().getTriple().c_str(); in DisassemblerLLVMC() [all …]
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Core/ |
| D | ArchSpec.h | 359 GetTriple () in GetTriple() function 370 GetTriple () const in GetTriple() function
|
| D | ModuleSpec.h | 343 strm.Printf("arch = %s", m_arch.GetTriple().str().c_str()); in Dump()
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/ |
| D | ThreadElfCore.cpp | 91 switch (arch.GetTriple().getOS()) in CreateRegisterContextForFrame() 132 __FUNCTION__, arch.GetMachine(), arch.GetTriple().getOS()); in CreateRegisterContextForFrame()
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/source/Commands/ |
| D | CommandObjectDisassemble.cpp | 135 if (target->GetArchitecture().GetTriple().getArch() == llvm::Triple::x86 in SetOptionValue() 136 || target->GetArchitecture().GetTriple().getArch() == llvm::Triple::x86_64) in SetOptionValue() 201 if (target->GetArchitecture().GetTriple().getArch() == llvm::Triple::x86 in OptionParsingStarting() 202 || target->GetArchitecture().GetTriple().getArch() == llvm::Triple::x86_64) in OptionParsingStarting()
|
| D | CommandObjectProcess.cpp | 597 …sageWithFormat ("Architecture set to: %s.\n", target->GetArchitecture().GetTriple().getTriple().c_… in DoExecute() 602 old_arch_spec.GetTriple().getTriple().c_str(), in DoExecute() 603 … target->GetArchitecture().GetTriple().getTriple().c_str()); in DoExecute()
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/source/API/ |
| D | SBModuleSpec.cpp | 106 SBModuleSpec::GetTriple () in GetTriple() function in SBModuleSpec 108 std::string triple (m_opaque_ap->GetArchitecture().GetTriple().str()); in GetTriple()
|
| D | SBPlatform.cpp | 372 SBPlatform::GetTriple() in GetTriple() function in SBPlatform 381 return ConstString(arch.GetTriple().getTriple().c_str()).GetCString(); in GetTriple()
|
| D | SBModule.cpp | 652 SBModule::GetTriple () in GetTriple() function in SBModule 657 std::string triple (module_sp->GetArchitecture().GetTriple().str()); in GetTriple()
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/source/Core/ |
| D | ArchSpec.cpp | 574 arch.GetTriple().setVendorName(vendor_str); in ParseMachCPUDashSubtypeTriple() 580 arch.GetTriple().setOSName(vendor_os.substr(vendor_start_pos)); in ParseMachCPUDashSubtypeTriple() 584 … arch.GetTriple().setOSName(vendor_os.substr(vendor_start_pos, dash_pos - vendor_start_pos)); in ParseMachCPUDashSubtypeTriple() 671 const llvm::Triple &compatible_triple = compatible_arch.GetTriple(); in SetTriple() 804 const llvm::Triple &lhs_triple = GetTriple(); in IsEqualTo() 805 const llvm::Triple &rhs_triple = rhs.GetTriple(); in IsEqualTo()
|
| D | Module.cpp | 341 if (object_arch.GetTriple().getVendor() == llvm::Triple::Apple in GetClangASTContext() 342 && object_arch.GetTriple().getOS() == llvm::Triple::UnknownOS) in GetClangASTContext() 344 if (object_arch.GetTriple().getArch() == llvm::Triple::arm || in GetClangASTContext() 345 object_arch.GetTriple().getArch() == llvm::Triple::thumb) in GetClangASTContext() 347 object_arch.GetTriple().setOS(llvm::Triple::IOS); in GetClangASTContext() 351 object_arch.GetTriple().setOS(llvm::Triple::MacOSX); in GetClangASTContext()
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/API/ |
| D | SBModuleSpec.h | 87 GetTriple ();
|
| D | SBPlatform.h | 141 GetTriple();
|
| D | SBModule.h | 122 GetTriple ();
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/gdb-server/ |
| D | PlatformRemoteGDBServer.cpp | 377 const char *arch_triple = arch_spec.GetTriple().str().c_str(); in LaunchProcess() 419 llvm::Triple &remote_triple = remote_arch.GetTriple(); in DebugProcess() 507 llvm::Triple &remote_triple = remote_arch.GetTriple(); in Attach()
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/ |
| D | DYLDRendezvous.cpp | 302 assert (arch.GetTriple().getOS() == llvm::Triple::FreeBSD || in ReadSOEntryFromMemory() 303 arch.GetTriple().getOS() == llvm::Triple::NetBSD); in ReadSOEntryFromMemory()
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/source/Interpreter/ |
| D | OptionGroupPlatform.cpp | 43 arch.GetTriple().getTriple().c_str()); in CreatePlatformWithOptions()
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Static/ |
| D | DynamicLoaderStatic.cpp | 32 const llvm::Triple &triple_ref = process->GetTarget().GetArchitecture().GetTriple(); in CreateInstance()
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/ |
| D | POSIXThread.cpp | 163 switch (target_arch.GetTriple().getOS()) in GetRegisterContext() 187 switch (target_arch.GetTriple().getOS()) in GetRegisterContext()
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/source/Target/ |
| D | TargetList.cpp | 110 platform_arch.GetTriple().str().c_str(), in CreateTarget() 111 … matching_module_spec.GetArchitecture().GetTriple().str().c_str(), in CreateTarget()
|
| D | Target.cpp | 105 …reated with architecture %s (%s)", m_arch.GetArchitectureName(), m_arch.GetTriple().getTriple().c_… in Target() 1057 …%s (%s) based on executable file", m_arch.GetArchitectureName(), m_arch.GetTriple().getTriple().c_… in SetExecutableModule() 1101 …ng architecture to %s (%s)", arch_spec.GetArchitectureName(), arch_spec.GetTriple().getTriple().c_… in SetArchitecture() 1108 …ng architecture to %s (%s)", arch_spec.GetArchitectureName(), arch_spec.GetTriple().getTriple().c_… in SetArchitecture() 1118 … file architecture %s (%s)", arch_spec.GetArchitectureName(), arch_spec.GetTriple().getTriple().c_… in SetArchitecture() 1765 m_scratch_ast_context_ap.reset (new ClangASTContext(m_arch.GetTriple().str().c_str())); in GetScratchClangASTContext() 1833 …t's default architecture to %s (%s)", arch.GetArchitectureName(), arch.GetTriple().getTriple().c_… in SetDefaultArchitecture()
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ |
| D | GDBRemoteCommunicationClient.cpp | 1561 … m_host_arch.GetTriple().setVendorName (llvm::StringRef (vendor_name)); in GetHostInfo() 1563 m_host_arch.GetTriple().setOSName (llvm::StringRef (os_name)); in GetHostInfo() 1586 llvm::Triple &host_triple = m_host_arch.GetTriple(); in GetHostInfo() 2135 process_info.GetArchitecture().GetTriple().setVendorName (llvm::StringRef (vendor)); in DecodeProcessInfoResponse() 2136 process_info.GetArchitecture().GetTriple().setOSName (llvm::StringRef (os_type)); in DecodeProcessInfoResponse() 2249 m_host_arch.GetTriple().setVendorName (llvm::StringRef (vendor_name)); in GetCurrentProcessInfo() 2250 m_host_arch.GetTriple().setOSName (llvm::StringRef (os_name)); in GetCurrentProcessInfo() 2334 const llvm::Triple &triple = match_arch.GetTriple(); in FindProcesses()
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/source/Host/common/ |
| D | Host.cpp | 436 const llvm::StringRef &str_ref = host_arch.GetTriple().getVendorName(); in GetVendorString() 449 const llvm::StringRef &str_ref = host_arch.GetTriple().getOSName(); in GetOSString() 462 g_host_triple.SetCString(host_arch.GetTriple().getTriple().c_str()); in GetTargetTriple() 1453 arch.GetTriple().getTriple().c_str(), in GetDummyTarget()
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ |
| D | ObjectFileELF.cpp | 375 spec.GetArchitecture().GetTriple().setOSName (Host::GetOSString().GetCString()); in GetModuleSpecifications() 376 … spec.GetArchitecture().GetTriple().setVendorName(Host::GetVendorString().GetCString()); in GetModuleSpecifications() 1962 arch.GetTriple().setOSName (Host::GetOSString().GetCString()); in GetArchitecture() 1963 arch.GetTriple().setVendorName(Host::GetVendorString().GetCString()); in GetArchitecture()
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ |
| D | ItaniumABILanguageRuntime.cpp | 381 if (target.GetArchitecture().GetTriple().getVendor() == llvm::Triple::Apple) in CreateExceptionSearchFilter()
|