HomeSort by relevance Sort by last modified time
    Searched refs:GetTriple (Results 1 - 25 of 58) sorted by null

1 2 3

  /external/lldb/test/python_api/default-constructor/
sb_module.py 29 obj.GetTriple()
sb_target.py 54 obj.GetTriple()
  /external/lldb/source/Plugins/Disassembler/llvm/
DisassemblerLLVMC.cpp 578 llvm::Triple triple = arch.GetTriple();
597 if (arch.GetTriple().getArch() != llvm::Triple::UnknownArch)
618 const char *triple = arch.GetTriple().getTriple().c_str();
623 if (arch.GetTriple().getArch() == llvm::Triple::x86
624 || arch.GetTriple().getArch() == llvm::Triple::x86_64)
637 if (arch.GetTriple().getArch() == llvm::Triple::arm)
639 std::string thumb_arch_name (thumb_arch.GetTriple().getArchName().str());
650 thumb_arch.GetTriple().setArchName(llvm::StringRef(thumb_arch_name.c_str()));
655 if (arch.GetTriple().getArch() == llvm::Triple::ar
    [all...]
  /external/lldb/include/lldb/Core/
ArchSpec.h 324 GetTriple ()
335 GetTriple () const
  /external/lldb/scripts/Python/interface/
SBModuleSpec.i 78 GetTriple ();
SBModule.i 297 GetTriple ();
502 __swig_getmethods__["triple"] = GetTriple
503 if _newclass: triple = property(GetTriple, None, doc='''A read only property that returns the target triple (arch-vendor-os) for this module.''')
SBTarget.i 543 GetTriple ();
851 __swig_getmethods__["triple"] = GetTriple
852 if _newclass: triple = property(GetTriple, None, doc='''A read only property that returns the target triple (arch-vendor-os) for this target as a string.''')
  /external/lldb/source/Plugins/Process/elf-core/
ThreadElfCore.cpp 88 switch (arch.GetTriple().getOS())
99 __FUNCTION__, arch.GetTriple().getOS());
  /external/lldb/include/lldb/API/
SBModuleSpec.h 87 GetTriple ();
SBModule.h 86 GetTriple ();
  /external/lldb/source/API/
SBModuleSpec.cpp 106 SBModuleSpec::GetTriple ()
108 std::string triple (m_opaque_ap->GetArchitecture().GetTriple().str());
SBModule.cpp 614 SBModule::GetTriple ()
619 std::string triple (module_sp->GetArchitecture().GetTriple().str());
  /external/lldb/source/Interpreter/
OptionGroupPlatform.cpp 43 arch.GetTriple().getTriple().c_str());
  /external/lldb/source/Plugins/Platform/Linux/
PlatformLinux.cpp 44 const llvm::Triple &triple = arch->GetTriple();
215 llvm::Triple &module_triple = module_spec.GetArchitecture().GetTriple();
220 const llvm::Triple &host_triple = Host::GetArchitecture (Host::eSystemDefaultArchitecture).GetTriple();
348 if (hostArch.IsValid() && hostArch.GetTriple().isArch64Bit())
  /external/lldb/source/Plugins/Platform/MacOSX/
PlatformMacOSX.cpp 73 const llvm::Triple &triple = arch->GetTriple();
PlatformiOSSimulator.cpp 74 const llvm::Triple &triple = arch->GetTriple();
  /external/lldb/source/Commands/
CommandObjectDisassemble.cpp 134 if (target->GetArchitecture().GetTriple().getArch() == llvm::Triple::x86
135 || target->GetArchitecture().GetTriple().getArch() == llvm::Triple::x86_64)
200 if (target->GetArchitecture().GetTriple().getArch() == llvm::Triple::x86
201 || target->GetArchitecture().GetTriple().getArch() == llvm::Triple::x86_64)
  /external/lldb/source/Plugins/DynamicLoader/Static/
DynamicLoaderStatic.cpp 32 const llvm::Triple &triple_ref = process->GetTarget().GetArchitecture().GetTriple();
  /external/lldb/source/Core/
ArchSpec.cpp 522 arch.GetTriple().setVendorName(vendor_str);
528 arch.GetTriple().setOSName(vendor_os.substr(vendor_start_pos));
532 arch.GetTriple().setOSName(vendor_os.substr(vendor_start_pos, dash_pos - vendor_start_pos));
619 const llvm::Triple &compatible_triple = compatible_arch.GetTriple();
750 const llvm::Triple &lhs_triple = GetTriple();
751 const llvm::Triple &rhs_triple = rhs.GetTriple();
    [all...]
Module.cpp 337 if (object_arch.GetTriple().getVendor() == llvm::Triple::Apple
338 && object_arch.GetTriple().getOS() == llvm::Triple::UnknownOS)
340 if (object_arch.GetTriple().getArch() == llvm::Triple::arm ||
341 object_arch.GetTriple().getArch() == llvm::Triple::thumb)
343 object_arch.GetTriple().setOS(llvm::Triple::IOS);
347 object_arch.GetTriple().setOS(llvm::Triple::MacOSX);
    [all...]
  /external/lldb/source/Target/
Platform.cpp 282 if (!arch.GetTriple().str().empty())
283 strm.Printf(" Triple: %s\n", arch.GetTriple().str().c_str());
TargetList.cpp 110 platform_arch.GetTriple().str().c_str(),
111 matching_module_spec.GetArchitecture().GetTriple().str().c_str(),
  /external/lldb/source/Host/common/
Host.cpp 411 const llvm::StringRef &str_ref = host_arch.GetTriple().getVendorName();
424 const llvm::StringRef &str_ref = host_arch.GetTriple().getOSName();
437 g_host_triple.SetCString(host_arch.GetTriple().getTriple().c_str());
    [all...]
  /external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
AppleObjCRuntime.cpp 404 if (target.GetArchitecture().GetTriple().getVendor() == llvm::Triple::Apple)
  /external/lldb/source/Plugins/Process/gdb-remote/
GDBRemoteCommunicationClient.cpp     [all...]

Completed in 1713 milliseconds

1 2 3