mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
25cc728d30
Summary: This extends the PeelingModuloScheduleExpander to generate prolog and epilog code, and correctly stitch uses through the prolog, kernel, epilog DAG. The key concept in this patch is to ensure that all transforms are *local*; only a function of a block and its immediate predecessor and successor. By defining the problem in this way we can inductively rewrite the entire DAG using only local knowledge that is easy to reason about. For example, we assume that all prologs and epilogs are near-perfect clones of the steady-state kernel. This means that if a block has an instruction that is predicated out, we can redirect all users of that instruction to that equivalent instruction in our immediate predecessor. As all blocks are clones, every instruction must have an equivalent in every other block. Similarly we can make the assumption by construction that if a value defined in a block is used outside that block, the only possible user is its immediate successors. We maintain this even for values that are used outside the loop by creating a limited form of LCSSA. This code isn't small, but it isn't complex. Enabled a bunch of testing from Hexagon. There are a couple of tests not enabled yet; I'm about 80% sure there isn't buggy codegen but the tests are checking for patterns that we don't produce. Those still need a bit more investigation. In the meantime we (Google) are happy with the code produced by this on our downstream SMS implementation, and believe it generates correct code. Subscribers: mgorny, hiraditya, jsji, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D68205 llvm-svn: 373462
44 lines
1.3 KiB
LLVM
44 lines
1.3 KiB
LLVM
; RUN: llc -disable-lsr -march=hexagon -enable-pipeliner \
|
|
; RUN: -debug-only=pipeliner < %s 2>&1 > /dev/null -pipeliner-experimental-cg=true | FileCheck %s
|
|
; REQUIRES: asserts
|
|
;
|
|
; Test that checks if the ResMII is 1.
|
|
|
|
; CHECK: MII = 1 MAX_II = 11 (rec=1, res=1)
|
|
|
|
; Function Attrs: nounwind
|
|
define void @f0(i32* nocapture %a0, i32 %a1) #0 {
|
|
b0:
|
|
%v0 = icmp sgt i32 %a1, 1
|
|
br i1 %v0, label %b1, label %b4
|
|
|
|
b1: ; preds = %b0
|
|
%v1 = load i32, i32* %a0, align 4
|
|
%v2 = add i32 %v1, 10
|
|
%v3 = getelementptr i32, i32* %a0, i32 1
|
|
%v4 = add i32 %a1, -1
|
|
br label %b2
|
|
|
|
b2: ; preds = %b2, %b1
|
|
%v5 = phi i32 [ %v12, %b2 ], [ %v4, %b1 ]
|
|
%v6 = phi i32* [ %v11, %b2 ], [ %v3, %b1 ]
|
|
%v7 = phi i32 [ %v10, %b2 ], [ %v2, %b1 ]
|
|
store i32 %v7, i32* %v6, align 4
|
|
%v8 = add i32 %v7, 10
|
|
%v9 = getelementptr i32, i32* %v6, i32 -1
|
|
store i32 %v8, i32* %v9, align 4
|
|
%v10 = add i32 %v7, 10
|
|
%v11 = getelementptr i32, i32* %v6, i32 1
|
|
%v12 = add i32 %v5, -1
|
|
%v13 = icmp eq i32 %v12, 0
|
|
br i1 %v13, label %b3, label %b2
|
|
|
|
b3: ; preds = %b2
|
|
br label %b4
|
|
|
|
b4: ; preds = %b3, %b0
|
|
ret void
|
|
}
|
|
|
|
attributes #0 = { nounwind }
|