diff options
author | Samuel Pitoiset <[email protected]> | 2016-10-02 16:59:10 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2016-10-05 21:15:44 +0200 |
commit | a41cfbbf2bd2697f4ecf3ca99f2b54fb2573d594 (patch) | |
tree | 6aeba6b7f8a3260ab54d9152d916d65d65f7b961 /src/gallium/drivers/nouveau/nvc0/nvc0_program.c | |
parent | cc4a19c4ad5b617af632ce732ccbfeb4b4043114 (diff) |
nvc0: dump program binary when chipset has been forced
Currently, program binaries are only dumped at upload time, but
when the chipset has been forced via NV50_PROG_CHIPSET we might
want to show the generated code, especially with shaderdb.
Signed-off-by: Samuel Pitoiset <[email protected]>
Diffstat (limited to 'src/gallium/drivers/nouveau/nvc0/nvc0_program.c')
-rw-r--r-- | src/gallium/drivers/nouveau/nvc0/nvc0_program.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gallium/drivers/nouveau/nvc0/nvc0_program.c b/src/gallium/drivers/nouveau/nvc0/nvc0_program.c index e0586304b94..03cda0e72d6 100644 --- a/src/gallium/drivers/nouveau/nvc0/nvc0_program.c +++ b/src/gallium/drivers/nouveau/nvc0/nvc0_program.c @@ -676,6 +676,11 @@ nvc0_program_translate(struct nvc0_program *prog, uint16_t chipset, prog->type, info->bin.tlsSpace, prog->num_gprs, info->bin.instructions, info->bin.codeSize); +#ifdef DEBUG + if (debug_get_option("NV50_PROG_CHIPSET", NULL)) + nvc0_program_dump(prog); +#endif + out: FREE(info); return !ret; |