Home
last modified time | relevance | path

Searched refs:normalized_triple (Results 1 – 4 of 4) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/common/
H A DHostInfoBase.cpp200 llvm::Triple normalized_triple(llvm::Triple::normalize(triple)); in GetAugmentedArchSpec() local
201 if (!ArchSpec::ContainsOnlyArch(normalized_triple)) in GetAugmentedArchSpec()
209 if (normalized_triple.getVendorName().empty()) in GetAugmentedArchSpec()
210 normalized_triple.setVendor(host_triple.getVendor()); in GetAugmentedArchSpec()
211 if (normalized_triple.getOSName().empty()) in GetAugmentedArchSpec()
212 normalized_triple.setOS(host_triple.getOS()); in GetAugmentedArchSpec()
213 if (normalized_triple.getEnvironmentName().empty()) in GetAugmentedArchSpec()
214 normalized_triple.setEnvironment(host_triple.getEnvironment()); in GetAugmentedArchSpec()
215 return ArchSpec(normalized_triple); in GetAugmentedArchSpec()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DPlatform.cpp974 llvm::Triple normalized_triple(llvm::Triple::normalize(triple)); in GetAugmentedArchSpec() local
975 if (!ArchSpec::ContainsOnlyArch(normalized_triple)) in GetAugmentedArchSpec()
987 return ArchSpec(normalized_triple); in GetAugmentedArchSpec()
990 if (normalized_triple.getVendorName().empty()) in GetAugmentedArchSpec()
991 normalized_triple.setVendor(compatible_triple.getVendor()); in GetAugmentedArchSpec()
992 if (normalized_triple.getOSName().empty()) in GetAugmentedArchSpec()
993 normalized_triple.setOS(compatible_triple.getOS()); in GetAugmentedArchSpec()
994 if (normalized_triple.getEnvironmentName().empty()) in GetAugmentedArchSpec()
995 normalized_triple.setEnvironment(compatible_triple.getEnvironment()); in GetAugmentedArchSpec()
996 return ArchSpec(normalized_triple); in GetAugmentedArchSpec()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Utility/
H A DArchSpec.cpp885 bool ArchSpec::ContainsOnlyArch(const llvm::Triple &normalized_triple) { in ContainsOnlyArch() argument
886 return !normalized_triple.getArchName().empty() && in ContainsOnlyArch()
887 normalized_triple.getOSName().empty() && in ContainsOnlyArch()
888 normalized_triple.getVendorName().empty() && in ContainsOnlyArch()
889 normalized_triple.getEnvironmentName().empty(); in ContainsOnlyArch()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Utility/
H A DArchSpec.h290 static bool ContainsOnlyArch(const llvm::Triple &normalized_triple);