Module: Mesa
Branch: 10.1
Commit: 2475db34a055b58cffa32c36642b03c7b5d2c91e
URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=2475db34a055b58cffa32c36642b03c7b5d2c91e

Author: Kenneth Graunke <[email protected]>
Date:   Sun Feb 23 16:08:56 2014 -0800

i965/vec4: Add a brw->gen >= 6 assertion in three-source emitters.

Three source instructions didn't exist until Gen6.  vec4_generator has
assertions to catch this, but catching it in the visitor provides a
nicer backtrace.

Cc: "10.1" <[email protected]>
Signed-off-by: Kenneth Graunke <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Acked-by: Eric Anholt <[email protected]>
(cherry picked from commit ffde483f3c4da547f2823f72554cea1d1ff25e48)

---

 src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp |    1 +
 1 file changed, 1 insertion(+)

diff --git a/src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp 
b/src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp
index aa5fb6a..10e794b 100644
--- a/src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp
+++ b/src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp
@@ -128,6 +128,7 @@ vec4_visitor::emit(enum opcode opcode)
    vec4_instruction *                                                  \
    vec4_visitor::op(dst_reg dst, src_reg src0, src_reg src1, src_reg src2)\
    {                                                                   \
+      assert(brw->gen >= 6);                                           \
       return new(mem_ctx) vec4_instruction(this, BRW_OPCODE_##op, dst, \
                                           src0, src1, src2);           \
    }

_______________________________________________
mesa-commit mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to