Searched refs:normalized_triple (Results 1 – 4 of 4) sorted by relevance
202 llvm::Triple normalized_triple(llvm::Triple::normalize(triple)); in GetAugmentedArchSpec() local203 if (!ArchSpec::ContainsOnlyArch(normalized_triple)) in GetAugmentedArchSpec()211 if (normalized_triple.getVendorName().empty()) in GetAugmentedArchSpec()212 normalized_triple.setVendor(host_triple.getVendor()); in GetAugmentedArchSpec()213 if (normalized_triple.getOSName().empty()) in GetAugmentedArchSpec()214 normalized_triple.setOS(host_triple.getOS()); in GetAugmentedArchSpec()215 if (normalized_triple.getEnvironmentName().empty() && in GetAugmentedArchSpec()217 normalized_triple.setEnvironment(host_triple.getEnvironment()); in GetAugmentedArchSpec()218 return ArchSpec(normalized_triple); in GetAugmentedArchSpec()
853 llvm::Triple normalized_triple(llvm::Triple::normalize(triple)); in GetAugmentedArchSpec() local854 if (!ArchSpec::ContainsOnlyArch(normalized_triple)) in GetAugmentedArchSpec()867 return ArchSpec(normalized_triple); in GetAugmentedArchSpec()870 if (normalized_triple.getVendorName().empty()) in GetAugmentedArchSpec()871 normalized_triple.setVendor(compatible_triple.getVendor()); in GetAugmentedArchSpec()872 if (normalized_triple.getOSName().empty()) in GetAugmentedArchSpec()873 normalized_triple.setOS(compatible_triple.getOS()); in GetAugmentedArchSpec()874 if (normalized_triple.getEnvironmentName().empty()) in GetAugmentedArchSpec()875 normalized_triple.setEnvironment(compatible_triple.getEnvironment()); in GetAugmentedArchSpec()876 return ArchSpec(normalized_triple); in GetAugmentedArchSpec()
314 static bool ContainsOnlyArch(const llvm::Triple &normalized_triple);
825 bool ArchSpec::ContainsOnlyArch(const llvm::Triple &normalized_triple) { in ContainsOnlyArch() argument826 return !normalized_triple.getArchName().empty() && in ContainsOnlyArch()827 normalized_triple.getOSName().empty() && in ContainsOnlyArch()828 normalized_triple.getVendorName().empty() && in ContainsOnlyArch()829 normalized_triple.getEnvironmentName().empty(); in ContainsOnlyArch()