Distribute the weight on the edge from switch to default statement to edges generated...
authorCong Hou <congh@google.com>
Tue, 1 Sep 2015 01:42:16 +0000 (01:42 +0000)
committerCong Hou <congh@google.com>
Tue, 1 Sep 2015 01:42:16 +0000 (01:42 +0000)
commit715dbbbc3c99f0e6830cdc25c110e96e0cf7d94c
treec7244e603f053c0ce7dc24eae40fbf250126f3dc
parent51bbd6f3be1785783a20582309ddb97ae5f81446
Distribute the weight on the edge from switch to default statement to edges generated in lowering switch.

Currently, when edge weights are assigned to edges that are created when lowering switch statement, the weight on the edge to default statement (let's call it "default weight" here) is not considered. We need to distribute this weight properly. However, without value profiling, we have no idea how to distribute it. In this patch, I applied the heuristic that this weight is evenly distributed to successors.

For example, given a switch statement with cases 1,2,3,5,10,11,20, and every edge from switch to each successor has weight 10. If there is a binary search tree built to test if n < 10, then its two out-edges will have weight 4x10+10/2 = 45 and 3x10 + 10/2 = 35 respectively (currently they are 40 and 30 without considering the default weight). Each distribution (which is 5 here) will be stored in each SwitchWorkListItem for further distribution.

There are some exceptions:

For a jump table header which doesn't have any edge to default statement, we don't distribute the default weight to it.
For a bit test header which covers a contiguous range and hence has no edges to default statement, we don't distribute the default weight to it.
When the branch checks a single value or a contiguous range with no edge to default statement, we don't distribute the default weight to it.
In other cases, the default weight is evenly distributed to successors.

Differential Revision: http://reviews.llvm.org/D12418

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@246522 91177308-0d34-0410-b5e6-96231b3b80d8
13 files changed:
lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h
lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
test/CodeGen/AArch64/aarch64-deferred-spilling.ll
test/CodeGen/ARM/jump-table-islands.ll
test/CodeGen/Generic/MachineBranchProb.ll
test/CodeGen/Thumb2/v8_IT_3.ll
test/CodeGen/Thumb2/v8_IT_5.ll
test/CodeGen/X86/2006-10-19-SwitchUnnecessaryBranching.ll
test/CodeGen/X86/switch-bt.ll
test/CodeGen/X86/switch-edge-weight.ll
test/CodeGen/X86/switch-order-weight.ll
test/CodeGen/X86/switch.ll