i965: Add QWORD sizes to type_sz macro
authorBen Widawsky <benjamin.widawsky@intel.com>
Tue, 23 Dec 2014 03:29:13 +0000 (19:29 -0800)
committerKenneth Graunke <kenneth@whitecape.org>
Tue, 20 Jan 2015 23:24:40 +0000 (15:24 -0800)
GEN8 added the QWORD as a valid type for certain operations on the EU.
In order to calculate the number of registers used one must have the type
size as part of the equation. Quoting the formula in the code:

   regs_written = (dst.width * dst.stride * type_sz(dst.type) + 31) / 32;

Adding this separately for bisection since there is no simple way to add
an assert in the type_sz function.

NOTE: As a side note, I was confused for a while because it's impossible
to calculate the region, ie. registers needed, without vstride.  However,
at this point these are all part of the IR, and so no vstride must exist.

Signed-off-by: Ben Widawsky <ben@bwidawsk.net>
Reviewed-by: Matt Turner <mattst88@gmail.com>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
src/mesa/drivers/dri/i965/brw_reg.h

index a04149c2a5ad0e0c8eed926895ed859491ca24b8..76d3248bd7ed1d1c367b2142ab72cc322ff1798f 100644 (file)
@@ -171,6 +171,9 @@ static inline int
 type_sz(unsigned type)
 {
    switch(type) {
+   case BRW_REGISTER_TYPE_UQ:
+   case BRW_REGISTER_TYPE_Q:
+      return 8;
    case BRW_REGISTER_TYPE_UD:
    case BRW_REGISTER_TYPE_D:
    case BRW_REGISTER_TYPE_F: