Lines Matching defs:triple
227 ArchSpec Platform::GetAugmentedArchSpec(Platform *platform, llvm::StringRef triple) {
229 return platform->GetAugmentedArchSpec(triple);
230 return HostInfo::GetAugmentedArchSpec(triple);
847 ArchSpec Platform::GetAugmentedArchSpec(llvm::StringRef triple) {
848 if (triple.empty())
850 llvm::Triple normalized_triple(llvm::Triple::normalize(triple));
852 return ArchSpec(triple);
854 if (auto kind = HostInfo::ParseArchitectureKind(triple))
858 ArchSpec raw_arch(triple);
1083 llvm::Triple triple;
1084 triple.setArch(arch);
1085 triple.setOS(os);
1086 list.push_back(ArchSpec(triple));
1092 /// architecture and the target triple contained within.
1887 const char *triple =
1892 debugger, "", triple, eLoadDependentsNo, nullptr, new_target_sp);
2078 CompilerType Platform::GetSiginfoType(const llvm::Triple& triple) {