Mesa (master): nv50/ir: add precise field to Instruction

Ilia Mirkin imirkin at kemper.freedesktop.org
Sat Jul 22 03:49:28 UTC 2017


Module: Mesa
Branch: master
Commit: 1d7c232fbdab3bda71f93669be2e11449aa63f8f
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=1d7c232fbdab3bda71f93669be2e11449aa63f8f

Author: Karol Herbst <karolherbst at gmail.com>
Date:   Fri Jun 23 20:30:27 2017 +0200

nv50/ir: add precise field to Instruction

v4: initialize field with NULL

Signed-off-by: Karol Herbst <karolherbst at gmail.com>
Reviewed-by: Pierre Moreau <pierre.morrow at free.fr>

---

 src/gallium/drivers/nouveau/codegen/nv50_ir.cpp | 1 +
 src/gallium/drivers/nouveau/codegen/nv50_ir.h   | 2 ++
 2 files changed, 3 insertions(+)

diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir.cpp b/src/gallium/drivers/nouveau/codegen/nv50_ir.cpp
index 21641a4746..08181b790f 100644
--- a/src/gallium/drivers/nouveau/codegen/nv50_ir.cpp
+++ b/src/gallium/drivers/nouveau/codegen/nv50_ir.cpp
@@ -575,6 +575,7 @@ void Instruction::init()
    encSize = 0;
    ipa = 0;
    mask = 0;
+   precise = 0;
 
    lanes = 0xf;
 
diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir.h b/src/gallium/drivers/nouveau/codegen/nv50_ir.h
index 5c09fed05c..bc15992df0 100644
--- a/src/gallium/drivers/nouveau/codegen/nv50_ir.h
+++ b/src/gallium/drivers/nouveau/codegen/nv50_ir.h
@@ -884,6 +884,8 @@ public:
    unsigned perPatch   : 1;
    unsigned exit       : 1; // terminate program after insn
    unsigned mask       : 4; // for vector ops
+   // prevent algebraic optimisations that aren't bit-for-bit identical
+   unsigned precise    : 1;
 
    int8_t postFactor; // MUL/DIV(if < 0) by 1 << postFactor
 




More information about the mesa-commit mailing list