aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp
diff options
context:
space:
mode:
authorJuergen Ributzka <juergen@apple.com>2014-12-09 16:36:13 +0000
committerJuergen Ributzka <juergen@apple.com>2014-12-09 16:36:13 +0000
commitc1bbcbbd324a61b37516ade18837efbe178d3419 (patch)
tree4a24e30b0435edd0b9a5d5b5c5a533acdf574db3 /llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp
parentf5e976979d3c7ecb8155e39cd997ace0071d5420 (diff)
downloadllvm-c1bbcbbd324a61b37516ade18837efbe178d3419.zip
llvm-c1bbcbbd324a61b37516ade18837efbe178d3419.tar.gz
llvm-c1bbcbbd324a61b37516ade18837efbe178d3419.tar.bz2
[CodeGenPrepare] Split branch conditions into multiple conditional branches.
This optimization transforms code like: bb1: %0 = icmp ne i32 %a, 0 %1 = icmp ne i32 %b, 0 %or.cond = or i1 %0, %1 br i1 %or.cond, label %TrueBB, label %FalseBB into a multiple branch instructions like: bb1: %0 = icmp ne i32 %a, 0 br i1 %0, label %TrueBB, label %bb2 bb2: %1 = icmp ne i32 %b, 0 br i1 %1, label %TrueBB, label %FalseBB This optimization is already performed by SelectionDAG, but not by FastISel. FastISel cannot perform this optimization, because it cannot generate new MachineBasicBlocks. Performing this optimization at CodeGenPrepare time makes it available to both - SelectionDAG and FastISel - and the implementation in SelectiuonDAG could be removed. There are currenty a few differences in codegen for X86 and PPC, so this commmit only enables it for FastISel. Reviewed by Jim Grosbach This fixes rdar://problem/19034919. llvm-svn: 223786
Diffstat (limited to 'llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp')
0 files changed, 0 insertions, 0 deletions