File: intrinsic-srar-invalid-imm.ll

package info (click to toggle)
llvm-toolchain-20 1%3A20.1.8-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 2,111,696 kB
  • sloc: cpp: 7,438,781; ansic: 1,393,871; asm: 1,012,926; python: 241,771; f90: 86,635; objc: 75,411; lisp: 42,144; pascal: 17,286; sh: 8,596; ml: 5,082; perl: 4,730; makefile: 3,591; awk: 3,523; javascript: 2,251; xml: 892; fortran: 672
file content (65 lines) | stat: -rw-r--r-- 2,146 bytes parent folder | download | duplicates (11)
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
; RUN: not llc --mtriple=loongarch64 --mattr=+lsx < %s 2>&1 | FileCheck %s

declare <16 x i8> @llvm.loongarch.lsx.vsrari.b(<16 x i8>, i32)

define <16 x i8> @lsx_vsrari_b_lo(<16 x i8> %va) nounwind {
; CHECK: llvm.loongarch.lsx.vsrari.b: argument out of range
entry:
  %res = call <16 x i8> @llvm.loongarch.lsx.vsrari.b(<16 x i8> %va, i32 -1)
  ret <16 x i8> %res
}

define <16 x i8> @lsx_vsrari_b_hi(<16 x i8> %va) nounwind {
; CHECK: llvm.loongarch.lsx.vsrari.b: argument out of range
entry:
  %res = call <16 x i8> @llvm.loongarch.lsx.vsrari.b(<16 x i8> %va, i32 8)
  ret <16 x i8> %res
}

declare <8 x i16> @llvm.loongarch.lsx.vsrari.h(<8 x i16>, i32)

define <8 x i16> @lsx_vsrari_h_lo(<8 x i16> %va) nounwind {
; CHECK: llvm.loongarch.lsx.vsrari.h: argument out of range
entry:
  %res = call <8 x i16> @llvm.loongarch.lsx.vsrari.h(<8 x i16> %va, i32 -1)
  ret <8 x i16> %res
}

define <8 x i16> @lsx_vsrari_h_hi(<8 x i16> %va) nounwind {
; CHECK: llvm.loongarch.lsx.vsrari.h: argument out of range
entry:
  %res = call <8 x i16> @llvm.loongarch.lsx.vsrari.h(<8 x i16> %va, i32 16)
  ret <8 x i16> %res
}

declare <4 x i32> @llvm.loongarch.lsx.vsrari.w(<4 x i32>, i32)

define <4 x i32> @lsx_vsrari_w_lo(<4 x i32> %va) nounwind {
; CHECK: llvm.loongarch.lsx.vsrari.w: argument out of range
entry:
  %res = call <4 x i32> @llvm.loongarch.lsx.vsrari.w(<4 x i32> %va, i32 -1)
  ret <4 x i32> %res
}

define <4 x i32> @lsx_vsrari_w_hi(<4 x i32> %va) nounwind {
; CHECK: llvm.loongarch.lsx.vsrari.w: argument out of range
entry:
  %res = call <4 x i32> @llvm.loongarch.lsx.vsrari.w(<4 x i32> %va, i32 32)
  ret <4 x i32> %res
}

declare <2 x i64> @llvm.loongarch.lsx.vsrari.d(<2 x i64>, i32)

define <2 x i64> @lsx_vsrari_d_lo(<2 x i64> %va) nounwind {
; CHECK: llvm.loongarch.lsx.vsrari.d: argument out of range
entry:
  %res = call <2 x i64> @llvm.loongarch.lsx.vsrari.d(<2 x i64> %va, i32 -1)
  ret <2 x i64> %res
}

define <2 x i64> @lsx_vsrari_d_hi(<2 x i64> %va) nounwind {
; CHECK: llvm.loongarch.lsx.vsrari.d: argument out of range
entry:
  %res = call <2 x i64> @llvm.loongarch.lsx.vsrari.d(<2 x i64> %va, i32 64)
  ret <2 x i64> %res
}