Lines Matching full:label
91 * Tests the bit in reg2 and branches to label if the
97 .macro BTBZ reg1, reg2, bit, label
99 beq \reg1, r0, \label
103 * Tests the bit in reg2 and branches to label if the
109 .macro BTBNZ reg1, reg2, bit, label
111 bne \reg1, r0, \label
180 * original bit was zero it branches to label.
185 .macro BTCBZ reg1, reg2, bit, label
187 beq \reg1, r0, \label
193 * original bit was non-zero it branches to label.
198 .macro BTCBNZ reg1, reg2, bit, label
200 bne \reg1, r0, \label
206 * original bit was zero it branches to label.
211 .macro BTSBZ reg1, reg2, bit, label
213 beq \reg1, r0, \label
219 * original bit was non-zero it branches to label.
224 .macro BTSBNZ reg1, reg2, bit, label
226 bne \reg1, r0, \label
232 * original bit was zero it branches to label.
237 .macro BTRBZ reg1, reg2, bit, label
239 bne \reg1, r0, \label
245 * original bit was non-zero it branches to label.
250 .macro BTRBNZ reg1, reg2, bit, label
252 bne \reg1, r0, \label
257 * If the all the bits in the mask are zero it branches to label.
262 .macro TSTBZ reg1, reg2, mask, label
264 beq \reg1, r0, \label
269 * If the any of the bits in the mask are 1 it branches to label.
274 .macro TSTBNZ reg1, reg2, mask, label
276 bne \reg1, r0, \label