Lines Matching refs:ArchSpec
61 const ArchSpec *arch) { in CreateInstance()
136 std::vector<ArchSpec> PlatformRemoteAppleTV::GetSupportedArchitectures( in GetSupportedArchitectures()
137 const ArchSpec &process_host_arch) { in GetSupportedArchitectures()
138 ArchSpec system_arch(GetSystemArchitecture()); in GetSupportedArchitectures()
140 const ArchSpec::Core system_core = system_arch.GetCore(); in GetSupportedArchitectures()
143 case ArchSpec::eCore_arm_arm64: in GetSupportedArchitectures()
144 return {ArchSpec("arm64-apple-tvos"), ArchSpec("armv7s-apple-tvos"), in GetSupportedArchitectures()
145 ArchSpec("armv7-apple-tvos"), ArchSpec("thumbv7s-apple-tvos"), in GetSupportedArchitectures()
146 ArchSpec("thumbv7-apple-tvos")}; in GetSupportedArchitectures()
148 case ArchSpec::eCore_arm_armv7s: in GetSupportedArchitectures()
149 return {ArchSpec("armv7s-apple-tvos"), ArchSpec("armv7-apple-tvos"), in GetSupportedArchitectures()
150 ArchSpec("thumbv7s-apple-tvos"), ArchSpec("thumbv7-apple-tvos")}; in GetSupportedArchitectures()
152 case ArchSpec::eCore_arm_armv7: in GetSupportedArchitectures()
153 return {ArchSpec("armv7-apple-tvos"), ArchSpec("thumbv7-apple-tvos")}; in GetSupportedArchitectures()