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 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177
|
// RUN: not llvm-mc -arch=amdgcn -show-encoding %s 2>&1 | FileCheck --check-prefix=GCN --check-prefix=SICI %s
// RUN: not llvm-mc -arch=amdgcn -mcpu=tahiti -show-encoding %s 2>&1 | FileCheck --check-prefix=GCN --check-prefix=SICI %s
// RUN: not llvm-mc -arch=amdgcn -mcpu=fiji -show-encoding %s 2>&1 | FileCheck --check-prefix=GCN --check-prefix=VI --check-prefix=SICIVI %s
// RUN: not llvm-mc -arch=amdgcn -mcpu=gfx1010 -show-encoding %s 2>&1 | FileCheck --check-prefix=GCN %s
//===----------------------------------------------------------------------===//
// sendmsg
//===----------------------------------------------------------------------===//
s_sendmsg sendmsg(MSG_INTERRUPTX)
// GCN: error: expected absolute expression
s_sendmsg sendmsg(1 -)
// GCN: error: unknown token in expression
s_sendmsg sendmsg(MSG_INTERRUPT, 0)
// GCN: error: message does not support operations
s_sendmsg sendmsg(MSG_INTERRUPT, 0, 0)
// GCN: error: message does not support operations
s_sendmsg sendmsg(MSG_GS)
// GCN: error: missing message operation
s_sendmsg sendmsg(MSG_GS, GS_OP_NOP)
// GCN: error: invalid operation id
s_sendmsg sendmsg(MSG_GS, SYSMSG_OP_ECC_ERR_INTERRUPT)
// GCN: error: expected absolute expression
s_sendmsg sendmsg(MSG_GS, 0)
// GCN: error: invalid operation id
s_sendmsg sendmsg(MSG_GS, -1)
// GCN: error: invalid operation id
s_sendmsg sendmsg(MSG_GS, 4)
// GCN: error: invalid operation id
s_sendmsg sendmsg(MSG_GS, 8)
// GCN: error: invalid operation id
s_sendmsg sendmsg(15, -1)
// GCN: error: invalid operation id
s_sendmsg sendmsg(15, 8)
// GCN: error: invalid operation id
s_sendmsg sendmsg(MSG_GS, GS_OP_CUT, 0, 0)
// GCN: error: expected a closing parenthesis
s_sendmsg sendmsg(MSG_GSX, GS_OP_CUT, 0)
// GCN: error: expected absolute expression
s_sendmsg sendmsg(MSG_GS, GS_OP_CUTX, 0)
// GCN: error: expected absolute expression
s_sendmsg sendmsg(MSG_GS, 1 -)
// GCN: error: unknown token in expression
s_sendmsg sendmsg(MSG_GS, GS_OP_CUT, 4)
// GCN: error: invalid message stream id
s_sendmsg sendmsg(MSG_GS, GS_OP_CUT, 1 -)
// GCN: error: unknown token in expression
s_sendmsg sendmsg(2, 3, 0, 0)
// GCN: error: expected a closing parenthesis
s_sendmsg sendmsg(2, 2, -1)
// GCN: error: invalid message stream id
s_sendmsg sendmsg(2, 2, 4)
// GCN: error: invalid message stream id
s_sendmsg sendmsg(2, 2, 0, 0)
// GCN: error: expected a closing parenthesis
s_sendmsg sendmsg(MSG_GS_DONE, GS_OP_NOP, 0)
// GCN: error: message operation does not support streams
s_sendmsg sendmsg(MSG_GS_DONE, 0, 0)
// GCN: error: message operation does not support streams
s_sendmsg sendmsg(MSG_GS_ALLOC_REQ)
// SICIVI: error: invalid message id
s_sendmsg sendmsg(MSG_GS_ALLOC_REQ, 0)
// SICIVI: error: invalid message id
s_sendmsg sendmsg(-1)
// SICIVI: error: invalid message id
s_sendmsg sendmsg(16)
// SICIVI: error: invalid message id
s_sendmsg sendmsg(MSG_SYSMSG)
// GCN: error: missing message operation
s_sendmsg sendmsg(MSG_SYSMSG, SYSMSG_OP_ECC_ERR_INTERRUPT, 0)
// GCN: error: message operation does not support streams
s_sendmsg sendmsg(MSG_SYSMSG, 0)
// GCN: error: invalid operation id
s_sendmsg sendmsg(MSG_SYSMSG, 5)
// GCN: error: invalid operation id
//===----------------------------------------------------------------------===//
// waitcnt
//===----------------------------------------------------------------------===//
s_waitcnt lgkmcnt(16)
// SICIVI: error: too large value for lgkmcnt
s_waitcnt lgkmcnt(64)
// GCN: error: too large value for lgkmcnt
s_waitcnt expcnt(8)
// GCN: error: too large value for expcnt
s_waitcnt vmcnt(16)
// SICIVI: error: too large value for vmcnt
s_waitcnt vmcnt(64)
// GFX10: error: too large value for vmcnt
s_waitcnt vmcnt(0xFFFFFFFFFFFF0000)
// GCN: error: too large value for vmcnt
s_waitcnt vmcnt(0), expcnt(0), lgkmcnt(0),
// GCN: error: expected a counter name
s_waitcnt vmcnt(0) & expcnt(0) & lgkmcnt(0)&
// GCN: error: expected a counter name
s_waitcnt vmcnt(0) & expcnt(0) & x
// GCN: error: expected a left parenthesis
s_waitcnt vmcnt(0) & expcnt(0) x
// GCN: error: expected a left parenthesis
s_waitcnt vmcnt(0) & expcnt(0) & 1
// GCN: error: expected a counter name
s_waitcnt vmcnt(0) & expcnt(0) 1
// GCN: error: expected a counter name
s_waitcnt vmcnt(0) & expcnt(0) x(0)
// GCN: error: invalid counter name x
s_waitcnt vmcnt(x)
// GCN: error: expected absolute expression
s_waitcnt x
// GCN: error: expected absolute expression
s_waitcnt vmcnt(0
// GCN: error: expected a closing parenthesis
s_branch 0x80000000ffff
// GCN: error: expected a 16-bit signed jump offset
s_branch 0x10000
// GCN: error: expected a 16-bit signed jump offset
s_branch -32769
// GCN: error: expected a 16-bit signed jump offset
s_branch 1.0
// GCN: error: expected a 16-bit signed jump offset
s_branch s0
// GCN: error: invalid operand for instruction
s_branch offset:1
// GCN: error: not a valid operand
|