summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlyssa Rosenzweig <alyssa@collabora.com>2022-02-02 12:20:19 -0500
committerMarge Bot <emma+marge@anholt.net>2022-02-02 17:42:01 +0000
commit3fff018c9850ffa97e31faa185289c792357b3d4 (patch)
treec2db5f460242f07b0d82593bb3efd5b1a6c11e4d
parent665ffd4bf9c681f8fc37dc07b3c2445e1ed5bf25 (diff)
pan/va: Add .absolute bit to BRANCHZI
Signed-off-by: Alyssa Rosenzweig <alyssa@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/14833>
-rw-r--r--src/panfrost/bifrost/valhall/ISA.xml5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/panfrost/bifrost/valhall/ISA.xml b/src/panfrost/bifrost/valhall/ISA.xml
index f50103a9b65..df2e84c855c 100644
--- a/src/panfrost/bifrost/valhall/ISA.xml
+++ b/src/panfrost/bifrost/valhall/ISA.xml
@@ -657,12 +657,13 @@
<ins name="BRANCHZI" title="Compare to zero and branch indirect" opcode="0x2F" unit="CVT">
<desc>
- Jump to an indirectly specified address. Used to jump to blend shaders at
- the end of a fragment shader.
+ Jump to an indirectly specified (absolute or relative) address. Used to
+ jump to blend shaders at the end of a fragment shader.
</desc>
<src>Value to compare against zero</src>
<src>Branch target</src>
<mod name="eq" start="36" size="1"/>
+ <mod name="absolute" start="40" size="1"/>
</ins>
<ins name="BARRIER" title="Execution and memory barrier" opcode="0x45" unit="NONE">