
We have a new policy in place making links to private resources something we try to avoid in source and test files. Normally, we'd organically switch to the new policy rather than make a sweeping change across a project. However, Clang is in a somewhat special circumstance currently: recently, I've had several new contributors run into rdar links around test code which their patch was changing the behavior of. This turns out to be a surprisingly bad experience, especially for newer folks, for a handful of reasons: not understanding what the link is and feeling intimidated by it, wondering whether their changes are actually breaking something important to a downstream in some way, having to hunt down strangers not involved with the patch to impose on them for help, accidental pressure from asking for potentially private IP to be made public, etc. Because folks run into these links entirely by chance (through fixing bugs or working on new features), there's not really a set of problematic links to focus on -- all of the links have basically the same potential for causing these problems. As a result, this is an omnibus patch to remove all such links. This was not a mechanical change; it was done by manually searching for rdar, radar, radr, and other variants to find all the various problematic links. From there, I tried to retain or reword the surrounding comments so that we would lose as little context as possible. However, because most links were just a plain link with no supporting context, the majority of the changes are simple removals. Differential Review: https://reviews.llvm.org/D158071
62 lines
2.6 KiB
C++
62 lines
2.6 KiB
C++
// RUN: %clang_cc1 %s -triple arm64-apple-ios8.1.0 -std=c++11 -emit-llvm -o - | FileCheck %s
|
|
|
|
typedef __attribute__((__ext_vector_type__(8))) float vector_float8;
|
|
|
|
typedef vector_float8 float8;
|
|
|
|
// CHECK-LABEL: define{{.*}} void @_Z23MandelbrotPolyCalcSIMD8v
|
|
void MandelbrotPolyCalcSIMD8() {
|
|
constexpr float8 v4 = 4.0; // value to compare against abs(z)^2, to see if bounded
|
|
float8 vABS;
|
|
auto vLT = vABS < v4;
|
|
// CHECK: store <8 x float>
|
|
// CHECK: [[ZERO:%.*]] = load <8 x float>, ptr [[VARBS:%.*]]
|
|
// CHECK: [[CMP:%.*]] = fcmp olt <8 x float> [[ZERO]]
|
|
// CHECK: [[SEXT:%.*]] = sext <8 x i1> [[CMP]] to <8 x i32>
|
|
// CHECK: store <8 x i32> [[SEXT]], ptr [[VLT:%.*]]
|
|
}
|
|
|
|
typedef __attribute__((__ext_vector_type__(4))) int int4;
|
|
typedef __attribute__((__ext_vector_type__(4))) float float4;
|
|
typedef __attribute__((__ext_vector_type__(4))) __int128 bigint4;
|
|
|
|
// CHECK-LABEL: define{{.*}} void @_Z14BoolConversionv
|
|
void BoolConversion() {
|
|
// CHECK: store <4 x i32> <i32 -1, i32 -1, i32 -1, i32 -1>
|
|
int4 intsT = (int4)true;
|
|
// CHECK: store <4 x i32> zeroinitializer
|
|
int4 intsF = (int4)false;
|
|
// CHECK: store <4 x float> <float -1.000000e+00, float -1.000000e+00, float -1.000000e+00, float -1.000000e+00>
|
|
float4 floatsT = (float4)true;
|
|
// CHECK: store <4 x float> zeroinitializer
|
|
float4 floatsF = (float4)false;
|
|
// CHECK: store <4 x i128> <i128 -1, i128 -1, i128 -1, i128 -1>
|
|
bigint4 bigintsT = (bigint4)true;
|
|
// CHECK: store <4 x i128> zeroinitializer
|
|
bigint4 bigintsF = (bigint4)false;
|
|
|
|
// CHECK: store <4 x i32> <i32 -1, i32 -1, i32 -1, i32 -1>
|
|
constexpr int4 cIntsT = (int4)true;
|
|
// CHECK: store <4 x i32> zeroinitializer
|
|
constexpr int4 cIntsF = (int4)false;
|
|
// CHECK: store <4 x float> <float -1.000000e+00, float -1.000000e+00, float -1.000000e+00, float -1.000000e+00>
|
|
constexpr float4 cFloatsT = (float4)true;
|
|
// CHECK: store <4 x float> zeroinitializer
|
|
constexpr float4 cFloatsF = (float4)false;
|
|
// CHECK: store <4 x i128> <i128 -1, i128 -1, i128 -1, i128 -1>
|
|
constexpr bigint4 cBigintsT = (bigint4)true;
|
|
// CHECK: store <4 x i128> zeroinitializer
|
|
constexpr bigint4 cBigintsF = (bigint4)false;
|
|
}
|
|
|
|
typedef __attribute__((vector_size(8))) int gcc_int_2;
|
|
gcc_int_2 FloatToIntConversion(gcc_int_2 Int2, float f) {
|
|
return Int2 + f;
|
|
// CHECK: %[[LOAD_INT:.+]] = load <2 x i32>
|
|
// CHECK: %[[LOAD:.+]] = load float, ptr
|
|
// CHECK: %[[CONV:.+]] = fptosi float %[[LOAD]] to i32
|
|
// CHECK: %[[INSERT:.+]] = insertelement <2 x i32> poison, i32 %[[CONV]], i64 0
|
|
// CHECK: %[[SPLAT:.+]] = shufflevector <2 x i32> %[[INSERT]], <2 x i32> poison, <2 x i32> zeroinitializer
|
|
// CHECK: add <2 x i32> %[[LOAD_INT]], %[[SPLAT]]
|
|
}
|