summaryrefslogtreecommitdiffstats
path: root/bin/git_sha1_gen.py
diff options
context:
space:
mode:
authorRhys Perry <[email protected]>2020-02-26 13:35:26 +0000
committerMarge Bot <[email protected]>2020-03-23 15:55:12 +0000
commit9d56ed199b911c1085ea558d243ab543af47ac8e (patch)
tree2ba85b9bfef235482c3da96b60be88554e3c19e0 /bin/git_sha1_gen.py
parent8d8c864beba399ae4ee2267f680d1f600ad32767 (diff)
aco: emit IR in IF's merge block instead if the other side ends in a jump
Fixes NIR such as: if (divergent) { a = sgpr() } else { break; } use(a) Previously we would have emitted: if (divergent) { a = sgpr() } if (!divergent) { break; } use(a) But "a" isn't available at it's use. Now we emit: if (divergent) { } if (!divergent) { break; } a = sgpr() use(a) pipeline-db (Navi): Totals from affected shaders: SGPRS: 1936 -> 1936 (0.00 %) VGPRS: 1264 -> 1264 (0.00 %) Spilled SGPRs: 0 -> 0 (0.00 %) Spilled VGPRs: 0 -> 0 (0.00 %) Scratch size: 0 -> 0 (0.00 %) dwords per thread Code Size: 159408 -> 159152 (-0.16 %) bytes LDS: 0 -> 0 (0.00 %) blocks Max Waves: 81 -> 81 (0.00 %) Signed-off-by: Rhys Perry <[email protected]> CC: <[email protected]> Closes: https://gitlab.freedesktop.org/mesa/mesa/issues/2557 Reviewed-by: Daniel Schürmann <[email protected]> Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/3658> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/3658>
Diffstat (limited to 'bin/git_sha1_gen.py')
0 files changed, 0 insertions, 0 deletions