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.h287 explicit ArchSpec(llvm::StringRef triple_str);
471 bool SetTriple(llvm::StringRef triple_str);
555 bool ParseMachCPUDashSubtypeTriple(llvm::StringRef triple_str, ArchSpec &arch);
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DTargetList.h88 llvm::StringRef triple_str,
206 llvm::StringRef triple_str, LoadDependentFiles load_dependent_files,
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DArchSpec.cpp532 ArchSpec::ArchSpec(llvm::StringRef triple_str) { SetTriple(triple_str); } in ArchSpec() argument
753 bool lldb_private::ParseMachCPUDashSubtypeTriple(llvm::StringRef triple_str, in ParseMachCPUDashSubtypeTriple() argument
756 if (triple_str.empty()) in ParseMachCPUDashSubtypeTriple()
759 size_t pos = triple_str.find_first_of("-."); in ParseMachCPUDashSubtypeTriple()
763 llvm::StringRef cpu_str = triple_str.substr(0, pos); in ParseMachCPUDashSubtypeTriple()
764 llvm::StringRef remainder = triple_str.substr(pos + 1); in ParseMachCPUDashSubtypeTriple()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Disassembler/LLVMC/
H A DDisassemblerLLVMC.cpp1489 const char *triple_str = triple.getTriple().c_str(); in DisassemblerLLVMC()
1493 triple_str = thumb_arch.GetTriple().getTriple().c_str(); in DisassemblerLLVMC()
1586 m_disasm_up = MCDisasmInstance::Create(triple_str, cpu, features_str.c_str(), in DecodeInstructions()
1610 triple_str, cpu, features_str.c_str(), flavor, *this); in DecodeInstructions()
1448 const char *triple_str = triple.getTriple().c_str(); DisassemblerLLVMC() local
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBDebugger.cpp688 const std::string &triple_str = default_arch.GetTriple().str(); in GetDefaultArchitecture() local
689 if (!triple_str.empty()) in GetDefaultArchitecture()
690 ::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.cpp1188 const auto triple_str = in Handle_jModulesInfo() local
1193 {"triple", triple_str}, in Handle_jModulesInfo()