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
|
# RUN: not llvm-mc -triple=riscv64 < %s 2>&1 | FileCheck %s -check-prefixes=CHECK-FEATURE
# RUN: not llvm-mc -triple=riscv64 -mattr=+xmipslsp,+xmipscmov,+Xmipscbop < %s 2>&1 | FileCheck %s
mips.pref 8, 512(a0)
# CHECK: error: immediate offset must be in the range [0, 511]
mips.pref 8
# CHECK: error: too few operands for instruction
mips.pref 8, 511(a0)
# CHECK-FEATURE: error: instruction requires the following: 'Xmipscbop' (MIPS hardware prefetch)
mips.ccmov x0, x1, 0x10
# CHECK: error: invalid operand for instruction
mips.ccmov x10
# CHECK: error: too few operands for instruction
mips.ccmov s0, s1, s2, s3
# CHECK-FEATURE: error: instruction requires the following: 'Xmipscmov' ('mips.ccmov' instruction)
mips.lwp x10, x11
# CHECK: error: too few operands for instruction
mips.ldp x9, 0x20
# CHECK: error: invalid operand for instruction
mips.lwp x11, x12, 0(x13)
# CHECK-FEATURE: error: instruction requires the following: 'Xmipslsp' (load and store pair instructions)
mips.swp x18, x19, 8(x2)
# CHECK-FEATURE: error: instruction requires the following: 'Xmipslsp' (load and store pair instructions)
mips.sdp 0x10, x3, 12(x4)
# CHECK: error: invalid operand for instruction
|