diff options
author | Jason Ekstrand <[email protected]> | 2015-07-02 15:41:02 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2015-09-15 11:11:50 -0700 |
commit | cadd7dd384b33a779d46bd664f456bed4a21a5b7 (patch) | |
tree | 21baadf9ba7dda2e2b264b79af9ea60fea0874eb /src/mesa/drivers/dri/i965/brw_fs.h | |
parent | 0c6df7a1cb593666636aed660e90be0c6aca4591 (diff) |
i965/fs: Add a very basic validation pass
Currently the validation pass only validates that regs_read and
regs_written are consistent with the sizes of VGRF's. We can add more as
we find it to be useful.
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_fs.h')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_fs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs.h b/src/mesa/drivers/dri/i965/brw_fs.h index 5880f690ef1..1886dd8e5ff 100644 --- a/src/mesa/drivers/dri/i965/brw_fs.h +++ b/src/mesa/drivers/dri/i965/brw_fs.h @@ -151,6 +151,7 @@ public: void invalidate_live_intervals(); void calculate_live_intervals(); void calculate_register_pressure(); + void validate(); bool opt_algebraic(); bool opt_redundant_discard_jumps(); bool opt_cse(); |