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
|
# Xqcisync - Qualcomm uC Sync Delay Extension
# RUN: not llvm-mc -triple riscv32 -mattr=+experimental-xqcisync < %s 2>&1 \
# RUN: | FileCheck -check-prefixes=CHECK,CHECK-PLUS %s
# RUN: not llvm-mc -triple riscv32 -mattr=-experimental-xqcisync < %s 2>&1 \
# RUN: | FileCheck -check-prefixes=CHECK,CHECK-MINUS %s
# CHECK-PLUS: :[[@LINE+1]]:12: error: immediate must be an integer in the range [1, 31]
qc.c.delay 34
# CHECK: :[[@LINE+1]]:16: error: invalid operand for instruction
qc.c.delay 11, 12
# CHECK: :[[@LINE+1]]:1: error: too few operands for instruction
qc.c.delay
# CHECK-MINUS: :[[@LINE+1]]:1: error: instruction requires the following: 'Xqcisync' (Qualcomm uC Sync Delay Extension)
qc.c.delay 10
# CHECK-PLUS: :[[@LINE+1]]:9: error: immediate must be an integer in the range [0, 31]
qc.sync 45
# CHECK: :[[@LINE+1]]:13: error: invalid operand for instruction
qc.sync 22, x4
# CHECK: :[[@LINE+1]]:1: error: too few operands for instruction
qc.sync
# CHECK-MINUS: :[[@LINE+1]]:1: error: instruction requires the following: 'Xqcisync' (Qualcomm uC Sync Delay Extension)
qc.sync 8
# CHECK-PLUS: :[[@LINE+1]]:10: error: immediate must be an integer in the range [0, 31]
qc.syncr 56
# CHECK: :[[@LINE+1]]:14: error: invalid operand for instruction
qc.syncr 31, 45
# CHECK: :[[@LINE+1]]:1: error: too few operands for instruction
qc.syncr
# CHECK-MINUS: :[[@LINE+1]]:1: error: instruction requires the following: 'Xqcisync' (Qualcomm uC Sync Delay Extension)
qc.syncr 23
# CHECK-PLUS: :[[@LINE+1]]:11: error: immediate must be an integer in the range [0, 31]
qc.syncwf 88
# CHECK: :[[@LINE+1]]:14: error: invalid operand for instruction
qc.syncwf 5, 44
# CHECK: :[[@LINE+1]]:1: error: too few operands for instruction
qc.syncwf
# CHECK-MINUS: :[[@LINE+1]]:1: error: instruction requires the following: 'Xqcisync' (Qualcomm uC Sync Delay Extension)
qc.syncwf 31
# CHECK-PLUS: :[[@LINE+1]]:11: error: immediate must be an integer in the range [0, 31]
qc.syncwl 99
# CHECK: :[[@LINE+1]]:15: error: invalid operand for instruction
qc.syncwl 11, x10
# CHECK: :[[@LINE+1]]:1: error: too few operands for instruction
qc.syncwl
# CHECK-MINUS: :[[@LINE+1]]:1: error: instruction requires the following: 'Xqcisync' (Qualcomm uC Sync Delay Extension)
qc.syncwl 1
# CHECK-PLUS: :[[@LINE+1]]:11: error: immediate must be one of: 0, 1, 2, 4, 8, 15, 16, 31
qc.c.sync 45
# CHECK: :[[@LINE+1]]:15: error: invalid operand for instruction
qc.c.sync 31, x4
# CHECK: :[[@LINE+1]]:1: error: too few operands for instruction
qc.c.sync
# CHECK-MINUS: :[[@LINE+1]]:1: error: instruction requires the following: 'Xqcisync' (Qualcomm uC Sync Delay Extension)
qc.c.sync 8
# CHECK-PLUS: :[[@LINE+1]]:12: error: immediate must be one of: 0, 1, 2, 4, 8, 15, 16, 31
qc.c.syncr 56
# CHECK: :[[@LINE+1]]:16: error: invalid operand for instruction
qc.c.syncr 31, 45
# CHECK: :[[@LINE+1]]:1: error: too few operands for instruction
qc.c.syncr
# CHECK-MINUS: :[[@LINE+1]]:1: error: instruction requires the following: 'Xqcisync' (Qualcomm uC Sync Delay Extension)
qc.c.syncr 8
# CHECK-PLUS: :[[@LINE+1]]:13: error: immediate must be one of: 0, 1, 2, 4, 8, 15, 16, 31
qc.c.syncwf 88
# CHECK: :[[@LINE+1]]:16: error: invalid operand for instruction
qc.c.syncwf 8, 44
# CHECK: :[[@LINE+1]]:1: error: too few operands for instruction
qc.c.syncwf
# CHECK-MINUS: :[[@LINE+1]]:1: error: instruction requires the following: 'Xqcisync' (Qualcomm uC Sync Delay Extension)
qc.c.syncwf 31
# CHECK-PLUS: :[[@LINE+1]]:13: error: immediate must be one of: 0, 1, 2, 4, 8, 15, 16, 31
qc.c.syncwl 99
# CHECK: :[[@LINE+1]]:17: error: invalid operand for instruction
qc.c.syncwl 15, x10
# CHECK: :[[@LINE+1]]:1: error: too few operands for instruction
qc.c.syncwl
# CHECK-MINUS: :[[@LINE+1]]:1: error: instruction requires the following: 'Xqcisync' (Qualcomm uC Sync Delay Extension)
qc.c.syncwl 1
|