summaryrefslogtreecommitdiff
path: root/src/amd/compiler/aco_opcodes.py
diff options
context:
space:
mode:
authorGeorg Lehmann <dadschoorse@gmail.com>2023-04-23 10:42:58 +0200
committerMarge Bot <emma+marge@anholt.net>2023-05-12 13:31:15 +0000
commit2548f28ab309504fcce470711548c07347fda439 (patch)
treeacb3c94db3e80d8d806794ef60502ae078da8e02 /src/amd/compiler/aco_opcodes.py
parentd0e73cb313e1dad28f6315914c4ef88b939f9b60 (diff)
downloadmesa-2548f28ab309504fcce470711548c07347fda439.tar.gz
aco/assembler: support VOP3P with DPP
Reviewed-by: Rhys Perry <pendingchaos02@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/22698>
Diffstat (limited to 'src/amd/compiler/aco_opcodes.py')
-rw-r--r--src/amd/compiler/aco_opcodes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/amd/compiler/aco_opcodes.py b/src/amd/compiler/aco_opcodes.py
index 3fdbf9d2832..d656c0d7de9 100644
--- a/src/amd/compiler/aco_opcodes.py
+++ b/src/amd/compiler/aco_opcodes.py
@@ -69,8 +69,8 @@ class Format(Enum):
PSEUDO_BRANCH = 17
PSEUDO_BARRIER = 18
PSEUDO_REDUCTION = 19
- VOP3P = 20
VINTERP_INREG = 21
+ VOP3P = 1 << 7
VOP1 = 1 << 8
VOP2 = 1 << 9
VOPC = 1 << 10