mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
abb4b9d9ee
The tail duplication pass uses an assumed layout when making duplication decisions. This is fine, but passes up duplication opportunities that may arise when blocks are outlined. Because we want the updated CFG to affect subsequent placement decisions, this change must occur during placement. In order to achieve this goal, TailDuplicationPass is split into a utility class, TailDuplicator, and the pass itself. The pass delegates nearly everything to the TailDuplicator object, except for looping over the blocks in a function. This allows the same code to be used for tail duplication in both places. This change, in concert with outlining optional branches, allows triangle shaped code to perform much better, esepecially when the taken/untaken branches are correlated, as it creates a second spine when the tests are small enough. Issue from previous rollback fixed, and a new test was added for that case as well. Issue was worklist/scheduling/taildup issue in layout. Issue from 2nd rollback fixed, with 2 additional tests. Issue was tail merging/loop info/tail-duplication causing issue with loops that share a header block. Issue with early tail-duplication of blocks that branch to a fallthrough predecessor fixed with test case: tail-dup-branch-to-fallthrough.ll Differential revision: https://reviews.llvm.org/D18226 llvm-svn: 283934
23 lines
723 B
LLVM
23 lines
723 B
LLVM
; RUN: llc < %s -mtriple=x86_64-pc-linux | FileCheck %s
|
|
|
|
@bb = constant [1 x i8*] [i8* blockaddress(@main, %l2)]
|
|
|
|
define void @main() {
|
|
entry:
|
|
br label %l1
|
|
|
|
l1: ; preds = %l2, %entry
|
|
%a = zext i1 false to i32
|
|
br label %l2
|
|
|
|
l2: ; preds = %l1
|
|
%b = zext i1 false to i32
|
|
br label %l1
|
|
}
|
|
|
|
; It is correct for either l1 or l2 to be removed.
|
|
; If l2 is removed, the message should be "Address of block that was removed by CodeGen"
|
|
; If l1 is removed, it should be "Block address taken."
|
|
; CHECK: .Ltmp0: # {{Address of block that was removed by CodeGen|Block address taken}}
|
|
; CHECK: .quad .Ltmp0
|