1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
|
// REQUIRES: aarch64-registered-target
// RUN: %clang_cc1 -triple aarch64-none-linux-gnu -target-feature +sve -fsyntax-only -verify %s
// RUN: %clang_cc1 -DSVE_OVERLOADED_FORMS -triple aarch64-none-linux-gnu -target-feature +sve -fsyntax-only -verify %s
#ifdef SVE_OVERLOADED_FORMS
// A simple used,unused... macro, long enough to represent any SVE builtin.
#define SVE_ACLE_FUNC(A1,A2_UNUSED,A3,A4_UNUSED) A1##A3
#else
#define SVE_ACLE_FUNC(A1,A2,A3,A4) A1##A2##A3##A4
#endif
#include <arm_sve.h>
void test_range_1_8(svbool_t pg)
{
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 8]}}
SVE_ACLE_FUNC(svasrd,_n_s8,_x,)(pg, svundef_s8(), 0);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 8]}}
SVE_ACLE_FUNC(svasrd,_n_s8,_z,)(pg, svundef_s8(), 9);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 8]}}
SVE_ACLE_FUNC(svasrd,_n_s8,_m,)(pg, svundef_s8(), 0);
}
void test_range_1_16(svbool_t pg, int32_t i32, uint32_t u32, int64_t i64, uint64_t u64)
{
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svasrd,_n_s16,_x,)(pg, svundef_s16(), 0);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svasrd,_n_s16,_z,)(pg, svundef_s16(), 17);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svasrd,_n_s16,_m,)(pg, svundef_s16(), 0);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqdecb,_n_s32,,)(i32, 17);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqdecb_pat,_n_s32,,)(i32, SV_POW2, 0);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqdecb,_n_u32,,)(u32, 17);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqdecb_pat,_n_u32,,)(u32, SV_VL4, 0);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqdecb,_n_s64,,)(i64, 17);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqdecb_pat,_n_s64,,)(i64, SV_VL2, 0);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqdecb,_n_u64,,)(u64, 17);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqdecb_pat,_n_u64,,)(u64, SV_VL6, 0);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqdecd,_n_s32,,)(i32, 17);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqdecd_pat,_n_s32,,)(i32, SV_POW2, 0);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqdecd,_n_u32,,)(u32, 17);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqdecd_pat,_n_u32,,)(u32, SV_VL4, 0);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqdecd,_n_s64,,)(i64, 17);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqdecd_pat,_n_s64,,)(i64, SV_VL2, 0);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqdecd,_n_u64,,)(u64, 17);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqdecd_pat,_n_u64,,)(u64, SV_VL6, 0);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqdech,_n_s32,,)(i32, 17);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqdech_pat,_n_s32,,)(i32, SV_POW2, 0);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqdech,_n_u32,,)(u32, 17);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqdech_pat,_n_u32,,)(u32, SV_VL4, 0);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqdech,_n_s64,,)(i64, 17);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqdech_pat,_n_s64,,)(i64, SV_VL2, 0);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqdech,_n_u64,,)(u64, 17);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqdech_pat,_n_u64,,)(u64, SV_VL6, 0);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqdecw,_n_s32,,)(i32, 17);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqdecw_pat,_n_s32,,)(i32, SV_POW2, 0);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqdecw,_n_u32,,)(u32, 17);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqdecw_pat,_n_u32,,)(u32, SV_VL4, 0);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqdecw,_n_s64,,)(i64, 17);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqdecw_pat,_n_s64,,)(i64, SV_VL2, 0);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqdecw,_n_u64,,)(u64, 17);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqdecw_pat,_n_u64,,)(u64, SV_VL6, 0);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqincb,_n_s32,,)(i32, 17);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqincb_pat,_n_s32,,)(i32, SV_POW2, 0);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqincb,_n_u32,,)(u32, 17);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqincb_pat,_n_u32,,)(u32, SV_VL4, 0);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqincb,_n_s64,,)(i64, 17);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqincb_pat,_n_s64,,)(i64, SV_VL2, 0);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqincb,_n_u64,,)(i64, 17);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqincb_pat,_n_u64,,)(u64, SV_VL6, 0);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqincd,_n_s32,,)(i32, 17);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqincd_pat,_n_s32,,)(i32, SV_POW2, 0);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqincd,_n_u32,,)(u32, 17);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqincd_pat,_n_u32,,)(u32, SV_VL4, 0);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqincd,_n_s64,,)(i64, 17);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqincd_pat,_n_s64,,)(i64, SV_VL2, 0);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqincd,_n_u64,,)(u64, 17);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqincd_pat,_n_u64,,)(u64, SV_VL6, 0);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqinch,_n_s32,,)(i32, 17);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqinch_pat,_n_s32,,)(i32, SV_POW2, 0);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqinch,_n_u32,,)(u32, 17);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqinch_pat,_n_u32,,)(u32, SV_VL4, 0);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqinch,_n_s64,,)(i64, 17);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqinch_pat,_n_s64,,)(i64, SV_VL2, 0);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqinch,_n_u64,,)(u64, 17);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqinch_pat,_n_u64,,)(u64, SV_VL6, 0);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqincw,_n_s32,,)(i32, 17);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqincw_pat,_n_s32,,)(i32, SV_POW2, 0);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqincw,_n_u32,,)(u32, 17);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqincw_pat,_n_u32,,)(u32, SV_VL4, 0);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqincw,_n_s64,,)(i64, 17);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqincw_pat,_n_s64,,)(i64, SV_VL2, 0);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqincw,_n_u64,,)(u64, 17);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 16]}}
SVE_ACLE_FUNC(svqincw_pat,_n_u64,,)(u64, SV_VL6, 0);
}
void test_range_1_32(svbool_t pg)
{
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 32]}}
SVE_ACLE_FUNC(svasrd,_n_s32,_x,)(pg, svundef_s32(), 0);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 32]}}
SVE_ACLE_FUNC(svasrd,_n_s32,_z,)(pg, svundef_s32(), 33);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 32]}}
SVE_ACLE_FUNC(svasrd,_n_s32,_m,)(pg, svundef_s32(), 0);
}
void test_range_1_64(svbool_t pg)
{
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 64]}}
SVE_ACLE_FUNC(svasrd,_n_s64,_x,)(pg, svundef_s64(), 0);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 64]}}
SVE_ACLE_FUNC(svasrd,_n_s64,_z,)(pg, svundef_s64(), 65);
// expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [1, 64]}}
SVE_ACLE_FUNC(svasrd,_n_s64,_m,)(pg, svundef_s64(), 0);
}
|