pan/bi: Model Valhall-style A(CMP)XCHG
authorAlyssa Rosenzweig <alyssa@collabora.com>
Wed, 23 Mar 2022 02:30:11 +0000 (22:30 -0400)
committerMarge Bot <emma+marge@anholt.net>
Fri, 25 Mar 2022 19:00:13 +0000 (19:00 +0000)
Handled consistently with computational atomics.

Signed-off-by: Alyssa Rosenzweig <alyssa@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/15223>

src/panfrost/bifrost/ISA.xml
src/panfrost/bifrost/bir.c

index d64b4c1..c4a8c94 100644 (file)
       <opt>aand</opt>
       <opt>aor</opt>
       <opt>axor</opt>
+      <opt>axchg</opt> <!-- For Valhall -->
+      <opt>acmpxchg</opt> <!-- For Valhall -->
     </mod>
     <!-- not actually encoded, but used for IR -->
     <immediate name="sr_count" size="4" pseudo="true"/>
index 45b34ba..86e42fa 100644 (file)
@@ -86,9 +86,9 @@ bi_count_staging_registers(const bi_instr *ins)
 unsigned
 bi_count_read_registers(const bi_instr *ins, unsigned s)
 {
-        /* ATOM reads 1 but writes 2 */
+        /* ATOM reads 1 but writes 2. Exception for ACMPXCHG */
         if (s == 0 && ins->op == BI_OPCODE_ATOM_RETURN_I32)
-                return 1;
+                return (ins->atom_opc == BI_ATOM_OPC_ACMPXCHG) ? 2 : 1;
         else if (s == 0 && bi_opcode_props[ins->op].sr_read)
                 return bi_count_staging_registers(ins);
         else if (s == 4 && ins->op == BI_OPCODE_BLEND)