pan/va: Mark NOT instructions as deprecated

The inverters on the bitwise ops should be used instead.

Signed-off-by: Alyssa Rosenzweig <alyssa@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/15588>
This commit is contained in:
Alyssa Rosenzweig 2022-03-30 10:27:16 -04:00
parent 06562fd78b
commit d831a13c70
2 changed files with 4 additions and 4 deletions

View File

@ -1618,14 +1618,14 @@
<src/>
</ins>
<ins name="NOT.i32" title="Bitwise complement" dests="1" opcode="0x91" opcode2="0xE" unit="SFU">
<ins name="NOT_OLD.i32" title="Bitwise complement" dests="1" opcode="0x91" opcode2="0xE" unit="SFU">
<desc>
For fully featured bitwise operation, see the shift opcodes.
</desc>
<src/>
</ins>
<ins name="NOT.i64" title="Bitwise complement" dests="1" opcode="0x191" opcode2="0xE" unit="SFU">
<ins name="NOT_OLD.i64" title="Bitwise complement" dests="1" opcode="0x191" opcode2="0xE" unit="SFU">
<desc>
For fully featured bitwise operation, see the shift opcodes.
</desc>

View File

@ -38,7 +38,6 @@ SKIP = set([
"IMUL.v4s8",
# 64-bit support
"NOT.i64",
"IADD.u64",
"IADD.s64",
"ISUB.u64",
@ -72,7 +71,8 @@ SKIP = set([
"FMA_RSCALE_SCALE16.f32",
# Deprecated instruction
"NOT.i32",
"NOT_OLD.i32",
"NOT_OLD.i64",
# TODO
"IDP.v4s8",