projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f33a8f8
)
i965/vec4: Assert that ATTR regions are register-aligned.
author
Francisco Jerez
<currojerez@riseup.net>
Fri, 2 Sep 2016 05:39:00 +0000
(22:39 -0700)
committer
Francisco Jerez
<currojerez@riseup.net>
Wed, 14 Sep 2016 21:50:59 +0000
(14:50 -0700)
It might be useful to actually handle this once copy propagation
becomes smarter about register-misaligned offsets.
Reviewed-by: Iago Toral Quiroga <itoral@igalia.com>
src/mesa/drivers/dri/i965/brw_vec4.cpp
patch
|
blob
|
history
diff --git
a/src/mesa/drivers/dri/i965/brw_vec4.cpp
b/src/mesa/drivers/dri/i965/brw_vec4.cpp
index 470f814f562f844526c469a7a7a53a48a7a82d5f..58c8a8a5bdbe7bce2a5b3195ac120b391304438e 100644
(file)
--- a/
src/mesa/drivers/dri/i965/brw_vec4.cpp
+++ b/
src/mesa/drivers/dri/i965/brw_vec4.cpp
@@
-1620,6
+1620,7
@@
vec4_visitor::lower_attributes_to_hw_regs(const int *attribute_map,
int grf = attribute_map[inst->src[i].nr +
inst->src[i].offset / REG_SIZE];
+ assert(inst->src[i].offset % REG_SIZE == 0);
/* All attributes used in the shader need to have been assigned a
* hardware register by the caller