Home
last modified time | relevance | path

Searched refs:triple_str (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Target/
H A DTargetList.cpp47 llvm::StringRef triple_str, in CreateTarget() argument
53 debugger, user_exe_path, triple_str, load_dependent_files, in CreateTarget()
78 llvm::StringRef triple_str, LoadDependentFiles load_dependent_files, in CreateTargetInternal() argument
89 const ArchSpec arch(triple_str); in CreateTargetInternal()
90 if (!triple_str.empty() && !arch.IsValid()) { in CreateTargetInternal()
92 triple_str.str().c_str()); in CreateTargetInternal()
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DArchSpec.h300 explicit ArchSpec(llvm::StringRef triple_str);
484 bool SetTriple(llvm::StringRef triple_str);
568 bool ParseMachCPUDashSubtypeTriple(llvm::StringRef triple_str, ArchSpec &arch);
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DTargetList.h87 llvm::StringRef triple_str,
205 llvm::StringRef triple_str, LoadDependentFiles load_dependent_files,
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DArchSpec.cpp555 ArchSpec::ArchSpec(llvm::StringRef triple_str) { SetTriple(triple_str); } in ArchSpec() argument
776 bool lldb_private::ParseMachCPUDashSubtypeTriple(llvm::StringRef triple_str, in ParseMachCPUDashSubtypeTriple() argument
779 if (triple_str.empty()) in ParseMachCPUDashSubtypeTriple()
782 size_t pos = triple_str.find_first_of("-."); in ParseMachCPUDashSubtypeTriple()
786 llvm::StringRef cpu_str = triple_str.substr(0, pos); in ParseMachCPUDashSubtypeTriple()
787 llvm::StringRef remainder = triple_str.substr(pos + 1); in ParseMachCPUDashSubtypeTriple()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Disassembler/LLVMC/
H A DDisassemblerLLVMC.cpp1499 const char *triple_str = triple.getTriple().c_str(); in DisassemblerLLVMC() local
1503 triple_str = thumb_arch.GetTriple().getTriple().c_str(); in DisassemblerLLVMC()
1599 m_disasm_up = MCDisasmInstance::Create(triple_str, cpu, features_str.c_str(), in DisassemblerLLVMC()
1623 triple_str, cpu, features_str.c_str(), flavor, *this); in DisassemblerLLVMC()
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBDebugger.cpp645 const std::string &triple_str = default_arch.GetTriple().str(); in GetDefaultArchitecture() local
646 if (!triple_str.empty()) in GetDefaultArchitecture()
647 ::snprintf(arch_name, arch_name_len, "%s", triple_str.c_str()); in GetDefaultArchitecture()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerCommon.cpp1190 const auto triple_str = in Handle_jModulesInfo() local
1195 {"triple", triple_str}, in Handle_jModulesInfo()