[OpenACC] Create AST nodes for 'data' constructs
[llvm-project.git] / llvm / test / CodeGen / LoongArch / lasx / intrinsic-ldi-invalid-imm.ll
blobf3dd3650cf8a409b533e900b26ad940708a9fc35
1 ; RUN: not llc --mtriple=loongarch64 --mattr=+lasx < %s 2>&1 | FileCheck %s
3 declare <4 x i64> @llvm.loongarch.lasx.xvldi(i32)
5 define <4 x i64> @lasx_xvldi_lo() nounwind {
6 ; CHECK: llvm.loongarch.lasx.xvldi: argument out of range
7 entry:
8   %res = call <4 x i64> @llvm.loongarch.lasx.xvldi(i32 -4097)
9   ret <4 x i64> %res
12 define <4 x i64> @lasx_xvldi_hi() nounwind {
13 ; CHECK: llvm.loongarch.lasx.xvldi: argument out of range
14 entry:
15   %res = call <4 x i64> @llvm.loongarch.lasx.xvldi(i32 4096)
16   ret <4 x i64> %res
19 declare <32 x i8> @llvm.loongarch.lasx.xvrepli.b(i32)
21 define <32 x i8> @lasx_xvrepli_b_lo() nounwind {
22 ; CHECK: llvm.loongarch.lasx.xvrepli.b: argument out of range
23 entry:
24   %res = call <32 x i8> @llvm.loongarch.lasx.xvrepli.b(i32 -513)
25   ret <32 x i8> %res
28 define <32 x i8> @lasx_xvrepli_b_hi() nounwind {
29 ; CHECK: llvm.loongarch.lasx.xvrepli.b: argument out of range
30 entry:
31   %res = call <32 x i8> @llvm.loongarch.lasx.xvrepli.b(i32 512)
32   ret <32 x i8> %res
35 declare <16 x i16> @llvm.loongarch.lasx.xvrepli.h(i32)
37 define <16 x i16> @lasx_xvrepli_h_lo() nounwind {
38 ; CHECK: llvm.loongarch.lasx.xvrepli.h: argument out of range
39 entry:
40   %res = call <16 x i16> @llvm.loongarch.lasx.xvrepli.h(i32 -513)
41   ret <16 x i16> %res
44 define <16 x i16> @lasx_xvrepli_h_hi() nounwind {
45 ; CHECK: llvm.loongarch.lasx.xvrepli.h: argument out of range
46 entry:
47   %res = call <16 x i16> @llvm.loongarch.lasx.xvrepli.h(i32 512)
48   ret <16 x i16> %res
51 declare <8 x i32> @llvm.loongarch.lasx.xvrepli.w(i32)
53 define <8 x i32> @lasx_xvrepli_w_lo() nounwind {
54 ; CHECK: llvm.loongarch.lasx.xvrepli.w: argument out of range
55 entry:
56   %res = call <8 x i32> @llvm.loongarch.lasx.xvrepli.w(i32 -513)
57   ret <8 x i32> %res
60 define <8 x i32> @lasx_xvrepli_w_hi() nounwind {
61 ; CHECK: llvm.loongarch.lasx.xvrepli.w: argument out of range
62 entry:
63   %res = call <8 x i32> @llvm.loongarch.lasx.xvrepli.w(i32 512)
64   ret <8 x i32> %res
67 declare <4 x i64> @llvm.loongarch.lasx.xvrepli.d(i32)
69 define <4 x i64> @lasx_xvrepli_d_lo() nounwind {
70 ; CHECK: llvm.loongarch.lasx.xvrepli.d: argument out of range
71 entry:
72   %res = call <4 x i64> @llvm.loongarch.lasx.xvrepli.d(i32 -513)
73   ret <4 x i64> %res
76 define <4 x i64> @lasx_xvrepli_d_hi() nounwind {
77 ; CHECK: llvm.loongarch.lasx.xvrepli.d: argument out of range
78 entry:
79   %res = call <4 x i64> @llvm.loongarch.lasx.xvrepli.d(i32 512)
80   ret <4 x i64> %res