1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 12:33:33 +02:00
llvm-mirror/test/CodeGen
Hans Wennborg bc33cd14d7 Switch lowering: extract jump tables and bit tests before building binary tree (PR22262)
This is a major rewrite of the SelectionDAG switch lowering. The previous code
would lower switches as a binary tre, discovering clusters of cases
suitable for lowering by jump tables or bit tests as it went along. To increase
the likelihood of finding jump tables, the binary tree pivot was selected to
maximize case density on both sides of the pivot.

By not selecting the pivot in the middle, the binary trees would not always
be balanced, leading to performance problems in the generated code.

This patch rewrites the lowering to search for clusters of cases
suitable for jump tables or bit tests first, and then builds the binary
tree around those clusters. This way, the binary tree will always be balanced.

This has the added benefit of decoupling the different aspects of the lowering:
tree building and jump table or bit tests finding are now easier to tweak
separately.

For example, this will enable us to balance the tree based on profile info
in the future.

The algorithm for finding jump tables is O(n^2), whereas the previous algorithm
was O(n log n) for common cases, and quadratic only in the worst-case. This
doesn't seem to be major problem in practice, e.g. compiling a file consisting
of a 10k-case switch was only 30% slower, and such large switches should be rare
in practice. Compiling e.g. gcc.c showed no compile-time difference.  If this
does turn out to be a problem, we could limit the search space of the algorithm.

This commit also disables all optimizations during switch lowering in -O0.

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

llvm-svn: 235101
2015-04-16 14:49:23 +00:00
..
AArch64 TRUNCATE constant folding - minor fix for rL233224 2015-04-16 08:21:09 +00:00
ARM Switch lowering: extract jump tables and bit tests before building binary tree (PR22262) 2015-04-16 14:49:23 +00:00
BPF [bpf] mark mov instructions as ReMaterializable 2015-03-31 02:49:58 +00:00
CPP
Generic Switch lowering: extract jump tables and bit tests before building binary tree (PR22262) 2015-04-16 14:49:23 +00:00
Hexagon Revert revisions r234755, r234759, r234760 2015-04-13 17:47:15 +00:00
Inputs DebugInfo: Fix bad debug info for compile units and types 2015-03-27 20:46:33 +00:00
Mips Re-apply r234898 and fix tests. 2015-04-15 06:24:07 +00:00
MSP430
NVPTX Revert revisions r234755, r234759, r234760 2015-04-13 17:47:15 +00:00
PowerPC Switch lowering: extract jump tables and bit tests before building binary tree (PR22262) 2015-04-16 14:49:23 +00:00
R600 R600/SI: Fix verifier error caused by SIAnnotateControlFlow 2015-04-14 14:36:45 +00:00
SPARC Update tests to not be as dependent on section numbers. 2015-04-15 15:59:37 +00:00
SystemZ Allow memory intrinsics to be tail calls 2015-04-13 17:16:45 +00:00
Thumb DebugInfo: Fix bad debug info for compile units and types 2015-03-27 20:46:33 +00:00
Thumb2 [ARM] support for Cortex-R4/R4F 2015-04-09 14:07:28 +00:00
WinEH [SEH] Deal with users of the old lpad for SEH catch-all blocks 2015-04-16 00:02:04 +00:00
X86 Switch lowering: extract jump tables and bit tests before building binary tree (PR22262) 2015-04-16 14:49:23 +00:00
XCore