Branch folding is folding a landing pad into a regular BB.
authorBill Wendling <isanbard@gmail.com>
Fri, 22 Apr 2011 01:07:09 +0000 (01:07 +0000)
committerBill Wendling <isanbard@gmail.com>
Fri, 22 Apr 2011 01:07:09 +0000 (01:07 +0000)
commitd3dbd5f5cdb54b5e9472ec6040612fc4d898d297
treebb31a834fcae3ee49132ed02fe8c4af637eff2bf
parentc1fe100f355931c6a8368be00d8f7251d10b1920
Branch folding is folding a landing pad into a regular BB.

An exception is thrown via a call to _cxa_throw, which we don't expect to
return. Therefore, the "true" part of the invoke goes to a BB that has
'unreachable' as its only instruction. This is lowered into an empty MachineBB.
The landing pad for this invoke, however, is directly after the "true" MBB.
When the empty MBB is removed, the landing pad is directly below the BB with the
invoke call. The unconditional branch is removed and then the two blocks are
merged together.

The testcase is too big for a regression test.
<rdar://problem/9305728>

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@129965 91177308-0d34-0410-b5e6-96231b3b80d8
lib/CodeGen/BranchFolding.cpp