File: insn_xqci-invalid.s

package info (click to toggle)
llvm-toolchain-21 1%3A21.1.6-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,245,028 kB
  • sloc: cpp: 7,619,726; ansic: 1,434,018; asm: 1,058,748; python: 252,740; f90: 94,671; objc: 70,685; lisp: 42,813; pascal: 18,401; sh: 8,601; ml: 5,111; perl: 4,720; makefile: 3,675; awk: 3,523; javascript: 2,409; xml: 892; fortran: 770
file content (111 lines) | stat: -rw-r--r-- 4,624 bytes parent folder | download | duplicates (3)
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
# RUN: not llvm-mc %s -triple=riscv32 -M no-aliases -show-encoding \
# RUN:     2>&1 | FileCheck -check-prefixes=CHECK-ERR %s

.insn qc.eai 128, 0, 0, x0, 0
# CHECK-ERR: [[@LINE-1]]:14: error: opcode must be a valid opcode name or an immediate in the range [0, 127]

.insn qc.eai 127, 8, 0, x0, 0
# CHECK-ERR: [[@LINE-1]]:19: error: immediate must be an integer in the range [0, 7]

.insn qc.eai 127, 7, 2, x0, 0
# CHECK-ERR: [[@LINE-1]]:22: error: immediate must be an integer in the range [0, 1]

.insn qc.eai 127, 7, 1, not_a_reg, 0
# CHECK-ERR: [[@LINE-1]]:25: error: invalid operand for instruction

.insn qc.eai 127, 7, 1, x31, 0x100000000
# CHECK-ERR: [[@LINE-1]]:30: error: immediate must be an integer in the range [-2147483648, 4294967295]

.insn qc.eai 126, 7, 1, x31, 0xFFFFFFFF, extra
# CHECK-ERR: [[@LINE-1]]:42: error: invalid operand for instruction

.insn qc.ei 128, 0, 0, x31, x0, 0
# CHECK-ERR: [[@LINE-1]]:13: error: opcode must be a valid opcode name or an immediate in the range [0, 127]

.insn qc.ei 127, 8, 0, x0, x0, 0
# CHECK-ERR: [[@LINE-1]]:18: error: immediate must be an integer in the range [0, 7]

.insn qc.ei 127, 7, 4, x0, x0, 0
# CHECK-ERR: [[@LINE-1]]:21: error: immediate must be an integer in the range [0, 3]

.insn qc.ei 127, 7, 3, not_a_reg, x0, 0
# CHECK-ERR: [[@LINE-1]]:24: error: invalid operand for instruction

.insn qc.ei 127, 7, 3, x31, not_a_reg, 0
# CHECK-ERR: [[@LINE-1]]:29: error: immediate must be an integer in the range [-33554432, 33554431]

.insn qc.ei 127, 7, 3, x31, x31, 0x2000000
# CHECK-ERR: [[@LINE-1]]:34: error: immediate must be an integer in the range [-33554432, 33554431]

.insn qc.ei 127, 7, 3, x31, x31, 0x1000000, extra
# CHECK-ERR: [[@LINE-1]]:45: error: invalid operand for instruction

.insn qc.ei 126, 7, 3, x31, 0x2000000(x0)
# CHECK-ERR: [[@LINE-1]]:29: error: immediate must be an integer in the range [-33554432, 33554431]

.insn qc.ei 126, 7, 3, x31, 0x1000000(not_a_reg)
# CHECK-ERR: [[@LINE-1]]:39: error: expected register

.insn qc.ei 126, 7, 3, x31, 0x1000000(x31), extra
# CHECK-ERR: [[@LINE-1]]:45: error: invalid operand for instruction

.insn qc.eb 128, 0, 0, x0, 0, 0
# CHECK-ERR: [[@LINE-1]]:13: error: opcode must be a valid opcode name or an immediate in the range [0, 127]

.insn qc.eb 127, 8, 0, x0, 0, 0
# CHECK-ERR: [[@LINE-1]]:18: error: immediate must be an integer in the range [0, 7]

.insn qc.eb 127, 7, 32, x0, 0, 0
# CHECK-ERR: [[@LINE-1]]:21: error: immediate must be an integer in the range [0, 31]

.insn qc.eb 127, 7, 31, not_a_reg, 0, 0
# CHECK-ERR: [[@LINE-1]]:25: error: invalid operand for instruction

.insn qc.eb 127, 7, 31, x31, 0x8000, 0
# CHECK-ERR: [[@LINE-1]]:30: error: immediate must be an integer in the range [-32768, 32767]

.insn qc.eb 127, 7, 31, x31, 0x4000, 0x1000
# CHECK-ERR: [[@LINE-1]]:38: error: immediate must be a multiple of 2 bytes in the range [-4096, 4094]

.insn qc.eb 127, 7, 31, x31, 0x4000, 0x800, extra
# CHECK-ERR: [[@LINE-1]]:45: error: invalid operand for instruction


.insn qc.ej 128, 0, 0, 0, 0
# CHECK-ERR: [[@LINE-1]]:13: error: opcode must be a valid opcode name or an immediate in the range [0, 127]

.insn qc.ej 127, 8, 0, 0, 0
# CHECK-ERR: [[@LINE-1]]:18: error: immediate must be an integer in the range [0, 7]

.insn qc.ej 127, 7, 4, 0, 0
# CHECK-ERR: [[@LINE-1]]:21: error: immediate must be an integer in the range [0, 3]

.insn qc.ej 127, 7, 3, 32, 0
# CHECK-ERR: [[@LINE-1]]:24: error: immediate must be an integer in the range [0, 31]

.insn qc.ej 127, 7, 3, 31, 0x100000000
# CHECK-ERR: [[@LINE-1]]:28: error: operand must be a multiple of 2 bytes in the range [-2147483648, 2147483646]

.insn qc.ej 127, 7, 3, 31, 0x80000000, extra
# CHECK-ERR: [[@LINE-1]]:40: error: invalid operand for instruction

.insn qc.es 128, 0, 0, x0, 0(x0)
# CHECK-ERR: [[@LINE-1]]:13: error: opcode must be a valid opcode name or an immediate in the range [0, 127]

.insn qc.es 127, 8, 0, x0, 0(x0)
# CHECK-ERR: [[@LINE-1]]:18: error: immediate must be an integer in the range [0, 7]

.insn qc.es 127, 7, 4, x0, 0(x0)
# CHECK-ERR: [[@LINE-1]]:21: error: immediate must be an integer in the range [0, 3]

.insn qc.es 127, 7, 3, not_a_reg, 0(x0)
# CHECK-ERR: [[@LINE-1]]:24: error: invalid operand for instruction

.insn qc.es 127, 7, 3, x31, 0x2000000(x0)
# CHECK-ERR: [[@LINE-1]]:29: error: immediate must be an integer in the range [-33554432, 33554431]

.insn qc.es 127, 7, 3, x31, 0x1000000(not_a_reg)
# CHECK-ERR: [[@LINE-1]]:39: error: expected register

.insn qc.es 127, 7, 3, x31, 0x1000000(x31), extra
# CHECK-ERR: [[@LINE-1]]:45: error: invalid operand for instruction