Lines Matching refs:log
32 key_debug(const struct brw_compiler *c, void *log,
36 brw_shader_perf_log(c, log, " %s %d->%d\n", name, a, b);
43 key_debug_float(const struct brw_compiler *c, void *log,
47 brw_shader_perf_log(c, log, " %s %f->%f\n", name, a, b);
54 key_debug(c, log, name, old_key->field, key->field)
56 key_debug_float(c, log, name, old_key->field, key->field)
59 debug_sampler_recompile(const struct brw_compiler *c, void *log,
90 debug_base_recompile(const struct brw_compiler *c, void *log,
94 return debug_sampler_recompile(c, log, &old_key->tex, &key->tex);
98 debug_vs_recompile(const struct brw_compiler *c, void *log,
102 bool found = debug_base_recompile(c, log, &old_key->base, &key->base);
114 brw_shader_perf_log(c, log, " something else\n");
119 debug_tcs_recompile(const struct brw_compiler *c, void *log,
123 bool found = debug_base_recompile(c, log, &old_key->base, &key->base);
132 brw_shader_perf_log(c, log, " something else\n");
137 debug_tes_recompile(const struct brw_compiler *c, void *log,
141 bool found = debug_base_recompile(c, log, &old_key->base, &key->base);
147 brw_shader_perf_log(c, log, " something else\n");
152 debug_gs_recompile(const struct brw_compiler *c, void *log,
156 bool found = debug_base_recompile(c, log, &old_key->base, &key->base);
159 brw_shader_perf_log(c, log, " something else\n");
164 debug_fs_recompile(const struct brw_compiler *c, void *log,
190 found |= debug_base_recompile(c, log, &old_key->base, &key->base);
193 brw_shader_perf_log(c, log, " something else\n");
198 debug_cs_recompile(const struct brw_compiler *c, void *log,
202 bool found = debug_base_recompile(c, log, &old_key->base, &key->base);
205 brw_shader_perf_log(c, log, " something else\n");
210 brw_debug_key_recompile(const struct brw_compiler *c, void *log,
216 brw_shader_perf_log(c, log, " No previous compile found...\n");
222 debug_vs_recompile(c, log, (const struct brw_vs_prog_key *)old_key,
226 debug_tcs_recompile(c, log, (const struct brw_tcs_prog_key *)old_key,
230 debug_tes_recompile(c, log, (const struct brw_tes_prog_key *)old_key,
234 debug_gs_recompile(c, log, (const struct brw_gs_prog_key *)old_key,
238 debug_fs_recompile(c, log, (const struct brw_wm_prog_key *)old_key,
242 debug_cs_recompile(c, log, (const struct brw_cs_prog_key *)old_key,