i965/fs+blorp: Remove left over dump_file arguments.

Were used by the blorp unit test programs.

Reviewed-by: Eric Anholt <eric@anholt.net>
Reviewed-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
This commit is contained in:
Matt Turner 2014-05-17 13:25:15 -07:00
parent cd1c1d302b
commit 59f4e80d53
5 changed files with 15 additions and 19 deletions

View File

@ -519,8 +519,7 @@ public:
brw_blorp_blit_program(struct brw_context *brw, brw_blorp_blit_program(struct brw_context *brw,
const brw_blorp_blit_prog_key *key, bool debug_flag); const brw_blorp_blit_prog_key *key, bool debug_flag);
const GLuint *compile(struct brw_context *brw, GLuint *program_size, const GLuint *compile(struct brw_context *brw, GLuint *program_size);
FILE *dump_file = stderr);
brw_blorp_prog_data prog_data; brw_blorp_prog_data prog_data;
@ -634,8 +633,7 @@ brw_blorp_blit_program::brw_blorp_blit_program(
const GLuint * const GLuint *
brw_blorp_blit_program::compile(struct brw_context *brw, brw_blorp_blit_program::compile(struct brw_context *brw,
GLuint *program_size, GLuint *program_size)
FILE *dump_file)
{ {
/* Sanity checks */ /* Sanity checks */
if (key->dst_tiled_w && key->rt_samples > 0) { if (key->dst_tiled_w && key->rt_samples > 0) {
@ -790,7 +788,7 @@ brw_blorp_blit_program::compile(struct brw_context *brw,
*/ */
render_target_write(); render_target_write();
return get_program(program_size, dump_file); return get_program(program_size);
} }
void void
@ -2146,7 +2144,7 @@ brw_blorp_blit_params::get_wm_prog(struct brw_context *brw,
brw_blorp_blit_program prog(brw, &this->wm_prog_key, brw_blorp_blit_program prog(brw, &this->wm_prog_key,
INTEL_DEBUG & DEBUG_BLORP); INTEL_DEBUG & DEBUG_BLORP);
GLuint program_size; GLuint program_size;
const GLuint *program = prog.compile(brw, &program_size, stderr); const GLuint *program = prog.compile(brw, &program_size);
brw_upload_cache(&brw->cache, BRW_BLORP_BLIT_PROG, brw_upload_cache(&brw->cache, BRW_BLORP_BLIT_PROG,
&this->wm_prog_key, sizeof(this->wm_prog_key), &this->wm_prog_key, sizeof(this->wm_prog_key),
program, program_size, program, program_size,

View File

@ -41,9 +41,9 @@ brw_blorp_eu_emitter::~brw_blorp_eu_emitter()
} }
const unsigned * const unsigned *
brw_blorp_eu_emitter::get_program(unsigned *program_size, FILE *dump_file) brw_blorp_eu_emitter::get_program(unsigned *program_size)
{ {
return generator.generate_assembly(NULL, &insts, program_size, dump_file); return generator.generate_assembly(NULL, &insts, program_size);
} }
/** /**

View File

@ -33,7 +33,7 @@ protected:
explicit brw_blorp_eu_emitter(struct brw_context *brw, bool debug_flag); explicit brw_blorp_eu_emitter(struct brw_context *brw, bool debug_flag);
~brw_blorp_eu_emitter(); ~brw_blorp_eu_emitter();
const unsigned *get_program(unsigned *program_size, FILE *dump_file); const unsigned *get_program(unsigned *program_size);
void emit_kill_if_outside_rect(const struct brw_reg &x, void emit_kill_if_outside_rect(const struct brw_reg &x,
const struct brw_reg &y, const struct brw_reg &y,

View File

@ -608,11 +608,10 @@ public:
const unsigned *generate_assembly(exec_list *simd8_instructions, const unsigned *generate_assembly(exec_list *simd8_instructions,
exec_list *simd16_instructions, exec_list *simd16_instructions,
unsigned *assembly_size, unsigned *assembly_size);
FILE *dump_file = NULL);
private: private:
void generate_code(exec_list *instructions, FILE *dump_file); void generate_code(exec_list *instructions);
void generate_fb_write(fs_inst *inst); void generate_fb_write(fs_inst *inst);
void generate_blorp_fb_write(fs_inst *inst); void generate_blorp_fb_write(fs_inst *inst);
void generate_pixel_xy(struct brw_reg dst, bool is_x); void generate_pixel_xy(struct brw_reg dst, bool is_x);

View File

@ -1321,7 +1321,7 @@ fs_generator::generate_untyped_surface_read(fs_inst *inst, struct brw_reg dst,
} }
void void
fs_generator::generate_code(exec_list *instructions, FILE *dump_file) fs_generator::generate_code(exec_list *instructions)
{ {
int last_native_insn_offset = p->next_insn_offset; int last_native_insn_offset = p->next_insn_offset;
const char *last_annotation_string = NULL; const char *last_annotation_string = NULL;
@ -1838,22 +1838,21 @@ fs_generator::generate_code(exec_list *instructions, FILE *dump_file)
* which is often something we want to debug. So this is here in * which is often something we want to debug. So this is here in
* case you're doing that. * case you're doing that.
*/ */
if (dump_file) { if (0) {
brw_disassemble(brw, p->store, 0, p->next_insn_offset, dump_file); brw_disassemble(brw, p->store, 0, p->next_insn_offset, stderr);
} }
} }
const unsigned * const unsigned *
fs_generator::generate_assembly(exec_list *simd8_instructions, fs_generator::generate_assembly(exec_list *simd8_instructions,
exec_list *simd16_instructions, exec_list *simd16_instructions,
unsigned *assembly_size, unsigned *assembly_size)
FILE *dump_file)
{ {
assert(simd8_instructions || simd16_instructions); assert(simd8_instructions || simd16_instructions);
if (simd8_instructions) { if (simd8_instructions) {
dispatch_width = 8; dispatch_width = 8;
generate_code(simd8_instructions, dump_file); generate_code(simd8_instructions);
brw_compact_instructions(p, 0); brw_compact_instructions(p, 0);
} }
@ -1869,7 +1868,7 @@ fs_generator::generate_assembly(exec_list *simd8_instructions,
brw_set_compression_control(p, BRW_COMPRESSION_COMPRESSED); brw_set_compression_control(p, BRW_COMPRESSION_COMPRESSED);
dispatch_width = 16; dispatch_width = 16;
generate_code(simd16_instructions, dump_file); generate_code(simd16_instructions);
brw_compact_instructions(p, prog_data->prog_offset_16); brw_compact_instructions(p, prog_data->prog_offset_16);
} }