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 122 123 124 125
|
# Xqcisim - Simulaton Hint Instructions
# RUN: not llvm-mc -triple riscv32 -mattr=+experimental-xqcisim < %s 2>&1 \
# RUN: | FileCheck -check-prefixes=CHECK,CHECK-PLUS %s
# RUN: not llvm-mc -triple riscv32 -mattr=-experimental-xqcisim < %s 2>&1 \
# RUN: | FileCheck -check-prefixes=CHECK,CHECK-MINUS %s
# CHECK-PLUS: :[[@LINE+1]]:14: error: immediate must be an integer in the range [0, 1023]
qc.psyscalli 1024
# CHECK: :[[@LINE+1]]:1: error: too few operands for instruction
qc.psyscalli
# CHECK: :[[@LINE+1]]:18: error: invalid operand for instruction
qc.psyscalli 23, x0
# CHECK-MINUS: :[[@LINE+1]]:1: error: instruction requires the following: 'Xqcisim' (Qualcomm uC Simulation Hint Extension)
qc.psyscalli 1023
# CHECK-PLUS: :[[@LINE+1]]:11: error: immediate must be an integer in the range [0, 255]
qc.pputci 256
# CHECK: :[[@LINE+1]]:1: error: too few operands for instruction
qc.pputci
# CHECK: :[[@LINE+1]]:16: error: invalid operand for instruction
qc.pputci 200, x8
# CHECK-MINUS: :[[@LINE+1]]:1: error: instruction requires the following: 'Xqcisim' (Qualcomm uC Simulation Hint Extension)
qc.pputci 255
# CHECK: :[[@LINE+1]]:13: error: invalid operand for instruction
qc.c.ptrace x0
# CHECK: :[[@LINE+1]]:13: error: invalid operand for instruction
qc.c.ptrace 1
# CHECK-MINUS: :[[@LINE+1]]:1: error: instruction requires the following: 'Xqcisim' (Qualcomm uC Simulation Hint Extension)
qc.c.ptrace
# CHECK: :[[@LINE+1]]:14: error: invalid operand for instruction
qc.pcoredump 12
# CHECK: :[[@LINE+1]]:14: error: invalid operand for instruction
qc.pcoredump x4
# CHECK-MINUS: :[[@LINE+1]]:1: error: instruction requires the following: 'Xqcisim' (Qualcomm uC Simulation Hint Extension)
qc.pcoredump
# CHECK: :[[@LINE+1]]:11: error: invalid operand for instruction
qc.ppregs x1
# CHECK: :[[@LINE+1]]:11: error: invalid operand for instruction
qc.ppregs 23
# CHECK-MINUS: :[[@LINE+1]]:1: error: instruction requires the following: 'Xqcisim' (Qualcomm uC Simulation Hint Extension)
qc.ppregs
# CHECK: :[[@LINE+1]]:15: error: invalid operand for instruction
qc.ppreg x10, x2
# CHECK: :[[@LINE+1]]:1: error: too few operands for instruction
qc.ppreg
# CHECK: :[[@LINE+1]]:10: error: invalid operand for instruction
qc.ppreg 23
# CHECK-MINUS: :[[@LINE+1]]:1: error: instruction requires the following: 'Xqcisim' (Qualcomm uC Simulation Hint Extension)
qc.ppreg a0
# CHECK: :[[@LINE+1]]:14: error: invalid operand for instruction
qc.pputc x7, x3
# CHECK: :[[@LINE+1]]:1: error: too few operands for instruction
qc.pputc
# CHECK: :[[@LINE+1]]:10: error: invalid operand for instruction
qc.pputc 34
# CHECK-MINUS: :[[@LINE+1]]:1: error: instruction requires the following: 'Xqcisim' (Qualcomm uC Simulation Hint Extension)
qc.pputc t2
# CHECK: :[[@LINE+1]]:15: error: invalid operand for instruction
qc.pputs x15, x18
# CHECK: :[[@LINE+1]]:1: error: too few operands for instruction
qc.pputs
# CHECK: :[[@LINE+1]]:10: error: invalid operand for instruction
qc.pputs 45
# CHECK-MINUS: :[[@LINE+1]]:1: error: instruction requires the following: 'Xqcisim' (Qualcomm uC Simulation Hint Extension)
qc.pputs a5
# CHECK: :[[@LINE+1]]:15: error: invalid operand for instruction
qc.pexit x26, x23
# CHECK: :[[@LINE+1]]:1: error: too few operands for instruction
qc.pexit
# CHECK: :[[@LINE+1]]:10: error: invalid operand for instruction
qc.pexit 78
# CHECK-MINUS: :[[@LINE+1]]:1: error: instruction requires the following: 'Xqcisim' (Qualcomm uC Simulation Hint Extension)
qc.pexit s10
# CHECK: :[[@LINE+1]]:18: error: invalid operand for instruction
qc.psyscall x11, x5
# CHECK: :[[@LINE+1]]:1: error: too few operands for instruction
qc.psyscall
# CHECK: :[[@LINE+1]]:13: error: invalid operand for instruction
qc.psyscall 98
# CHECK-MINUS: :[[@LINE+1]]:1: error: instruction requires the following: 'Xqcisim' (Qualcomm uC Simulation Hint Extension)
qc.psyscall a1
|