etnaviv: output the same shader-db format as freedreno, v3d and intel

This lets us reuse their report.py.

Signed-off-by: Christian Gmeiner <christian.gmeiner@gmail.com>
Reviewed-by: Jonathan Marek <jonathan@marek.ca>
This commit is contained in:
Christian Gmeiner
2019-10-05 14:53:46 +02:00
parent 140bc0f040
commit 6dc650fe71
+3 -6
View File
@@ -306,15 +306,12 @@ dump_shader_info(struct etna_shader_variant *v, struct pipe_debug_callback *debu
if (!unlikely(etna_mesa_debug & ETNA_DBG_SHADERDB))
return;
pipe_debug_message(debug, SHADER_INFO, "\n"
"SHADER-DB: %s prog %d/%d: %u instructions %u temps\n"
"SHADER-DB: %s prog %d/%d: %u immediates %u loops\n",
pipe_debug_message(debug, SHADER_INFO,
"%s shader: %u instructions, %u temps, "
"%u immediates, %u loops",
etna_shader_stage(v),
v->shader->id, v->id,
v->code_size,
v->num_temps,
etna_shader_stage(v),
v->shader->id, v->id,
v->uniforms.imm_count,
v->num_loops);
}