summaryrefslogtreecommitdiffstats
path: root/bin/bugzilla_mesa.sh
diff options
context:
space:
mode:
authorMatt Turner <[email protected]>2014-07-16 15:29:41 -0700
committerMatt Turner <[email protected]>2014-08-22 10:23:34 -0700
commit81755bc67bd16bfeb1c4db817125dde85ba9b264 (patch)
treedd56c0498d126d0f8b43ad9b03667e14db118227 /bin/bugzilla_mesa.sh
parent9cf06e27e1e42ad33f0c6f8dc201300d8d108169 (diff)
i965: Preserve CFG when deleting dead control flow.
This pass deletes an IF/ELSE/ENDIF or IF/ENDIF sequence, or the ELSE in an ELSE/ENDIF sequence. In the typical case (where IF and ENDIF) aren't the only instructions in their basic blocks, we can simply remove the instructions (implicitly deleting the block containing only the ELSE), and attempt to merge blocks B0 and B2 together. B0: ... (+f0) if(8) B1: else(8) B2: endif(8) ... If the IF or ENDIF instructions are the only instructions in their respective basic blocks (which are deleted by the removal of the instructions), we'll want to instead merge the next blocks. Both B0 and B2 are possibly removed by the removal of if & endif. Same situation for if/endif. E.g., in the following example we'd remove blocks B1 and B2, and then attempt to combine B0 and B3. B0: ... B1: (+f0) if(8) B2: endif(8) B3: ... Reviewed-by: Topi Pohjolainen <[email protected]>
Diffstat (limited to 'bin/bugzilla_mesa.sh')
0 files changed, 0 insertions, 0 deletions