OSDN Git Service

Don't delete empty preheaders in CodeGenPrepare if it would create a critical edge
authorChuang-Yu Cheng <cycheng@multicorewareinc.com>
Tue, 5 Apr 2016 14:06:20 +0000 (14:06 +0000)
committerChuang-Yu Cheng <cycheng@multicorewareinc.com>
Tue, 5 Apr 2016 14:06:20 +0000 (14:06 +0000)
commitafa4f41e9c5415da7968a36435abf32d31f9e391
tree77a1727670b79f5ac0ed6b2cea16942ca8167ff7
parent2b8aed70d6d60c10f0bea8bbc6de0d4578debfe7
Don't delete empty preheaders in CodeGenPrepare if it would create a critical edge

Presently, CodeGenPrepare deletes all nearly empty (only phi and branch)
basic blocks. This pass can delete loop preheaders which frequently creates
critical edges. A preheader can be a convenient place to spill registers to
the stack. If the entrance to a loop body is a critical edge, then spills
may occur in the loop body rather than immediately before it. This patch
protects loop preheaders from deletion in CodeGenPrepare even if they are
nearly empty.

Since the patch alters the CFG, it affects a large number of test cases.
In most cases, the changes are merely cosmetic (basic blocks have different
names or instruction orders change slightly). I am somewhat concerned about
the test/CodeGen/Mips/brdelayslot.ll test case. If the loop preheader is not
deleted, then the MIPS backend does not take advantage of a branch delay
slot. Consequently, I would like some close review by a MIPS expert.

The patch also partially subsumes D16893 from George Burgess IV. George
correctly notes that CodeGenPrepare does not actually preserve the dominator
tree. I think the dominator tree was usually not valid when CodeGenPrepare
ran, but I am using LoopInfo to mark preheaders, so the dominator tree is
now always valid before CodeGenPrepare.

Author: Tom Jablin (tjablin)
Reviewers: hfinkel george.burgess.iv vkalintiris dsanders kbarton cycheng

http://reviews.llvm.org/D16984

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@265397 91177308-0d34-0410-b5e6-96231b3b80d8
16 files changed:
lib/CodeGen/CodeGenPrepare.cpp
test/CodeGen/AArch64/arm64-shrink-wrapping.ll
test/CodeGen/ARM/code-placement.ll
test/CodeGen/ARM/sjlj-prepare-critical-edge.ll
test/CodeGen/Mips/brdelayslot.ll
test/CodeGen/Mips/prevent-hoisting.ll
test/CodeGen/X86/2011-09-14-valcoalesce.ll
test/CodeGen/X86/block-placement.ll
test/CodeGen/X86/break-false-dep.ll
test/CodeGen/X86/lsr-static-addr.ll
test/CodeGen/X86/phi-immediate-factoring.ll
test/CodeGen/X86/phys_subreg_coalesce-2.ll
test/CodeGen/X86/pr2659.ll
test/CodeGen/X86/setcc-lowering.ll
test/CodeGen/X86/sink-blockfreq.ll
test/Transforms/LoopStrengthReduce/X86/2012-01-13-phielim.ll