diff options
author | Matt Turner <[email protected]> | 2014-07-11 21:16:13 -0700 |
---|---|---|
committer | Matt Turner <[email protected]> | 2014-08-18 19:05:59 -0700 |
commit | a3d0ccb037082f3aa66bd558dfbe89f63a6eedd3 (patch) | |
tree | 8ab50dd7eb063c56516e51a68367459d2c85b502 /src/mesa/drivers/dri/i965/brw_fs.h | |
parent | 596990d91e2a4c4a3a303c6c2da623bf1840771b (diff) |
i965: Pass a cfg pointer to generate_{code,assembly}.
The loop over all instructions is now two-fold, over all of the blocks
and all of the instructions in each block.
Reviewed-by: Topi Pohjolainen <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_fs.h')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_fs.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs.h b/src/mesa/drivers/dri/i965/brw_fs.h index 9e5b5d7eff3..d0422c3d413 100644 --- a/src/mesa/drivers/dri/i965/brw_fs.h +++ b/src/mesa/drivers/dri/i965/brw_fs.h @@ -580,12 +580,12 @@ public: bool debug_flag); ~fs_generator(); - const unsigned *generate_assembly(exec_list *simd8_instructions, - exec_list *simd16_instructions, + const unsigned *generate_assembly(const cfg_t *simd8_cfg, + const cfg_t *simd16_cfg, unsigned *assembly_size); private: - void generate_code(exec_list *instructions); + void generate_code(const cfg_t *cfg); void fire_fb_write(fs_inst *inst, GLuint base_reg, struct brw_reg implied_header, |