2013-07-29 20:18:19 +00:00
|
|
|
; RUN: opt -S -loop-rotate < %s | FileCheck %s
|
2011-02-14 23:03:23 +00:00
|
|
|
|
Move the complex address expression out of DIVariable and into an extra
argument of the llvm.dbg.declare/llvm.dbg.value intrinsics.
Previously, DIVariable was a variable-length field that has an optional
reference to a Metadata array consisting of a variable number of
complex address expressions. In the case of OpPiece expressions this is
wasting a lot of storage in IR, because when an aggregate type is, e.g.,
SROA'd into all of its n individual members, the IR will contain n copies
of the DIVariable, all alike, only differing in the complex address
reference at the end.
By making the complex address into an extra argument of the
dbg.value/dbg.declare intrinsics, all of the pieces can reference the
same variable and the complex address expressions can be uniqued across
the CU, too.
Down the road, this will allow us to move other flags, such as
"indirection" out of the DIVariable, too.
The new intrinsics look like this:
declare void @llvm.dbg.declare(metadata %storage, metadata %var, metadata %expr)
declare void @llvm.dbg.value(metadata %storage, i64 %offset, metadata %var, metadata %expr)
This patch adds a new LLVM-local tag to DIExpressions, so we can detect
and pretty-print DIExpression metadata nodes.
What this patch doesn't do:
This patch does not touch the "Indirect" field in DIVariable; but moving
that into the expression would be a natural next step.
http://reviews.llvm.org/D4919
rdar://problem/17994491
Thanks to dblaikie and dexonsmith for reviewing this patch!
Note: I accidentally committed a bogus older version of this patch previously.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@218787 91177308-0d34-0410-b5e6-96231b3b80d8
2014-10-01 18:55:02 +00:00
|
|
|
declare void @llvm.dbg.declare(metadata, metadata, metadata) nounwind readnone
|
|
|
|
declare void @llvm.dbg.value(metadata, i64, metadata, metadata) nounwind readnone
|
2011-02-14 23:03:23 +00:00
|
|
|
|
|
|
|
define i32 @tak(i32 %x, i32 %y, i32 %z) nounwind ssp {
|
2013-07-14 01:50:49 +00:00
|
|
|
; CHECK-LABEL: define i32 @tak(
|
2012-04-07 19:22:18 +00:00
|
|
|
; CHECK: entry
|
|
|
|
; CHECK-NEXT: call void @llvm.dbg.value(metadata !{i32 %x}
|
|
|
|
|
2011-02-14 23:03:23 +00:00
|
|
|
entry:
|
|
|
|
br label %tailrecurse
|
|
|
|
|
|
|
|
tailrecurse: ; preds = %if.then, %entry
|
|
|
|
%x.tr = phi i32 [ %x, %entry ], [ %call, %if.then ]
|
|
|
|
%y.tr = phi i32 [ %y, %entry ], [ %call9, %if.then ]
|
|
|
|
%z.tr = phi i32 [ %z, %entry ], [ %call14, %if.then ]
|
Move the complex address expression out of DIVariable and into an extra
argument of the llvm.dbg.declare/llvm.dbg.value intrinsics.
Previously, DIVariable was a variable-length field that has an optional
reference to a Metadata array consisting of a variable number of
complex address expressions. In the case of OpPiece expressions this is
wasting a lot of storage in IR, because when an aggregate type is, e.g.,
SROA'd into all of its n individual members, the IR will contain n copies
of the DIVariable, all alike, only differing in the complex address
reference at the end.
By making the complex address into an extra argument of the
dbg.value/dbg.declare intrinsics, all of the pieces can reference the
same variable and the complex address expressions can be uniqued across
the CU, too.
Down the road, this will allow us to move other flags, such as
"indirection" out of the DIVariable, too.
The new intrinsics look like this:
declare void @llvm.dbg.declare(metadata %storage, metadata %var, metadata %expr)
declare void @llvm.dbg.value(metadata %storage, i64 %offset, metadata %var, metadata %expr)
This patch adds a new LLVM-local tag to DIExpressions, so we can detect
and pretty-print DIExpression metadata nodes.
What this patch doesn't do:
This patch does not touch the "Indirect" field in DIVariable; but moving
that into the expression would be a natural next step.
http://reviews.llvm.org/D4919
rdar://problem/17994491
Thanks to dblaikie and dexonsmith for reviewing this patch!
Note: I accidentally committed a bogus older version of this patch previously.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@218787 91177308-0d34-0410-b5e6-96231b3b80d8
2014-10-01 18:55:02 +00:00
|
|
|
tail call void @llvm.dbg.value(metadata !{i32 %x.tr}, i64 0, metadata !6, metadata !{}), !dbg !7
|
|
|
|
tail call void @llvm.dbg.value(metadata !{i32 %y.tr}, i64 0, metadata !8, metadata !{}), !dbg !9
|
|
|
|
tail call void @llvm.dbg.value(metadata !{i32 %z.tr}, i64 0, metadata !10, metadata !{}), !dbg !11
|
2011-02-14 23:03:23 +00:00
|
|
|
%cmp = icmp slt i32 %y.tr, %x.tr, !dbg !12
|
|
|
|
br i1 %cmp, label %if.then, label %if.end, !dbg !12
|
|
|
|
|
|
|
|
if.then: ; preds = %tailrecurse
|
|
|
|
%sub = sub nsw i32 %x.tr, 1, !dbg !14
|
|
|
|
%call = tail call i32 @tak(i32 %sub, i32 %y.tr, i32 %z.tr), !dbg !14
|
|
|
|
%sub6 = sub nsw i32 %y.tr, 1, !dbg !14
|
|
|
|
%call9 = tail call i32 @tak(i32 %sub6, i32 %z.tr, i32 %x.tr), !dbg !14
|
|
|
|
%sub11 = sub nsw i32 %z.tr, 1, !dbg !14
|
|
|
|
%call14 = tail call i32 @tak(i32 %sub11, i32 %x.tr, i32 %y.tr), !dbg !14
|
|
|
|
br label %tailrecurse
|
|
|
|
|
|
|
|
if.end: ; preds = %tailrecurse
|
|
|
|
br label %return, !dbg !16
|
|
|
|
|
|
|
|
return: ; preds = %if.end
|
|
|
|
ret i32 %z.tr, !dbg !17
|
|
|
|
}
|
|
|
|
|
2012-04-07 19:22:18 +00:00
|
|
|
@channelColumns = external global i64
|
|
|
|
@horzPlane = external global i8*, align 8
|
|
|
|
|
|
|
|
define void @FindFreeHorzSeg(i64 %startCol, i64 %row, i64* %rowStart) {
|
|
|
|
; Ensure that the loop increment basic block is rotated into the tail of the
|
|
|
|
; body, even though it contains a debug intrinsic call.
|
2013-07-14 01:50:49 +00:00
|
|
|
; CHECK-LABEL: define void @FindFreeHorzSeg(
|
2012-04-07 19:22:18 +00:00
|
|
|
; CHECK: %dec = add
|
|
|
|
; CHECK-NEXT: tail call void @llvm.dbg.value
|
2014-10-29 20:19:47 +00:00
|
|
|
; CHECK: %cmp = icmp
|
|
|
|
; CHECK: br i1 %cmp
|
|
|
|
; CHECK: phi i64 [ %{{[^,]*}}, %{{[^,]*}} ]
|
[LPM] Fix PR18643, another scary place where loop transforms failed to
preserve loop simplify of enclosing loops.
The problem here starts with LoopRotation which ends up cloning code out
of the latch into the new preheader it is buidling. This can create
a new edge from the preheader into the exit block of the loop which
breaks LoopSimplify form. The code tries to fix this by splitting the
critical edge between the latch and the exit block to get a new exit
block that only the latch dominates. This sadly isn't sufficient.
The exit block may be an exit block for multiple nested loops. When we
clone an edge from the latch of the inner loop to the new preheader
being built in the outer loop, we create an exiting edge from the outer
loop to this exit block. Despite breaking the LoopSimplify form for the
inner loop, this is fine for the outer loop. However, when we split the
edge from the inner loop to the exit block, we create a new block which
is in neither the inner nor outer loop as the new exit block. This is
a predecessor to the old exit block, and so the split itself takes the
outer loop out of LoopSimplify form. We need to split every edge
entering the exit block from inside a loop nested more deeply than the
exit block in order to preserve all of the loop simplify constraints.
Once we try to do that, a problem with splitting critical edges
surfaces. Previously, we tried a very brute force to update LoopSimplify
form by re-computing it for all exit blocks. We don't need to do this,
and doing this much will sometimes but not always overlap with the
LoopRotate bug fix. Instead, the code needs to specifically handle the
cases which can start to violate LoopSimplify -- they aren't that
common. We need to see if the destination of the split edge was a loop
exit block in simplified form for the loop of the source of the edge.
For this to be true, all the predecessors need to be in the exact same
loop as the source of the edge being split. If the dest block was
originally in this form, we have to split all of the deges back into
this loop to recover it. The old mechanism of doing this was
conservatively correct because at least *one* of the exiting blocks it
rewrote was the DestBB and so the DestBB's predecessors were fixed. But
this is a much more targeted way of doing it. Making it targeted is
important, because ballooning the set of edges touched prevents
LoopRotate from being able to split edges *it* needs to split to
preserve loop simplify in a coherent way -- the critical edge splitting
would sometimes find the other edges in need of splitting but not
others.
Many, *many* thanks for help from Nick reducing these test cases
mightily. And helping lots with the analysis here as this one was quite
tricky to track down.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@200393 91177308-0d34-0410-b5e6-96231b3b80d8
2014-01-29 13:16:53 +00:00
|
|
|
; CHECK-NEXT: br label %for.end
|
|
|
|
|
2012-04-07 19:22:18 +00:00
|
|
|
|
|
|
|
entry:
|
|
|
|
br label %for.cond
|
|
|
|
|
|
|
|
for.cond:
|
|
|
|
%i.0 = phi i64 [ %startCol, %entry ], [ %dec, %for.inc ]
|
|
|
|
%cmp = icmp eq i64 %i.0, 0
|
|
|
|
br i1 %cmp, label %for.end, label %for.body
|
|
|
|
|
|
|
|
for.body:
|
|
|
|
%0 = load i64* @channelColumns, align 8
|
|
|
|
%mul = mul i64 %0, %row
|
|
|
|
%add = add i64 %mul, %i.0
|
|
|
|
%1 = load i8** @horzPlane, align 8
|
|
|
|
%arrayidx = getelementptr inbounds i8* %1, i64 %add
|
|
|
|
%2 = load i8* %arrayidx, align 1
|
|
|
|
%tobool = icmp eq i8 %2, 0
|
|
|
|
br i1 %tobool, label %for.inc, label %for.end
|
|
|
|
|
|
|
|
for.inc:
|
|
|
|
%dec = add i64 %i.0, -1
|
Move the complex address expression out of DIVariable and into an extra
argument of the llvm.dbg.declare/llvm.dbg.value intrinsics.
Previously, DIVariable was a variable-length field that has an optional
reference to a Metadata array consisting of a variable number of
complex address expressions. In the case of OpPiece expressions this is
wasting a lot of storage in IR, because when an aggregate type is, e.g.,
SROA'd into all of its n individual members, the IR will contain n copies
of the DIVariable, all alike, only differing in the complex address
reference at the end.
By making the complex address into an extra argument of the
dbg.value/dbg.declare intrinsics, all of the pieces can reference the
same variable and the complex address expressions can be uniqued across
the CU, too.
Down the road, this will allow us to move other flags, such as
"indirection" out of the DIVariable, too.
The new intrinsics look like this:
declare void @llvm.dbg.declare(metadata %storage, metadata %var, metadata %expr)
declare void @llvm.dbg.value(metadata %storage, i64 %offset, metadata %var, metadata %expr)
This patch adds a new LLVM-local tag to DIExpressions, so we can detect
and pretty-print DIExpression metadata nodes.
What this patch doesn't do:
This patch does not touch the "Indirect" field in DIVariable; but moving
that into the expression would be a natural next step.
http://reviews.llvm.org/D4919
rdar://problem/17994491
Thanks to dblaikie and dexonsmith for reviewing this patch!
Note: I accidentally committed a bogus older version of this patch previously.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@218787 91177308-0d34-0410-b5e6-96231b3b80d8
2014-10-01 18:55:02 +00:00
|
|
|
tail call void @llvm.dbg.value(metadata !{i64 %dec}, i64 0, metadata !{metadata !"undef"}, metadata !{})
|
2012-04-07 19:22:18 +00:00
|
|
|
br label %for.cond
|
|
|
|
|
|
|
|
for.end:
|
|
|
|
%add1 = add i64 %i.0, 1
|
|
|
|
store i64 %add1, i64* %rowStart, align 8
|
|
|
|
ret void
|
|
|
|
}
|
2011-02-14 23:03:23 +00:00
|
|
|
|
2013-11-23 01:16:29 +00:00
|
|
|
!llvm.module.flags = !{!20}
|
2011-02-14 23:03:23 +00:00
|
|
|
!llvm.dbg.sp = !{!0}
|
|
|
|
|
2014-10-03 20:01:09 +00:00
|
|
|
!0 = metadata !{metadata !"0x2e\00tak\00tak\00\0032\000\001\000\006\00256\000\000", metadata !18, metadata !1, metadata !3, null, i32 (i32, i32, i32)* @tak, null, null, null} ; [ DW_TAG_subprogram ] [line 32] [def] [scope 0] [tak]
|
|
|
|
!1 = metadata !{metadata !"0x29", metadata !18} ; [ DW_TAG_file_type ]
|
|
|
|
!2 = metadata !{metadata !"0x11\0012\00clang version 2.9 (trunk 125492)\001\00\000\00\000", metadata !18, metadata !19, metadata !19, null, null, null} ; [ DW_TAG_compile_unit ]
|
|
|
|
!3 = metadata !{metadata !"0x15\00\000\000\000\000\000\000", metadata !18, metadata !1, null, metadata !4, null, null, null} ; [ DW_TAG_subroutine_type ] [line 0, size 0, align 0, offset 0] [from ]
|
2011-02-14 23:03:23 +00:00
|
|
|
!4 = metadata !{metadata !5}
|
2014-10-03 20:01:09 +00:00
|
|
|
!5 = metadata !{metadata !"0x24\00int\000\0032\0032\000\000\005", null, metadata !2} ; [ DW_TAG_base_type ]
|
|
|
|
!6 = metadata !{metadata !"0x101\00x\0032\000", metadata !0, metadata !1, metadata !5} ; [ DW_TAG_arg_variable ]
|
2011-02-14 23:03:23 +00:00
|
|
|
!7 = metadata !{i32 32, i32 13, metadata !0, null}
|
2014-10-03 20:01:09 +00:00
|
|
|
!8 = metadata !{metadata !"0x101\00y\0032\000", metadata !0, metadata !1, metadata !5} ; [ DW_TAG_arg_variable ]
|
2011-02-14 23:03:23 +00:00
|
|
|
!9 = metadata !{i32 32, i32 20, metadata !0, null}
|
2014-10-03 20:01:09 +00:00
|
|
|
!10 = metadata !{metadata !"0x101\00z\0032\000", metadata !0, metadata !1, metadata !5} ; [ DW_TAG_arg_variable ]
|
2011-02-14 23:03:23 +00:00
|
|
|
!11 = metadata !{i32 32, i32 27, metadata !0, null}
|
|
|
|
!12 = metadata !{i32 33, i32 3, metadata !13, null}
|
2014-10-03 20:01:09 +00:00
|
|
|
!13 = metadata !{metadata !"0xb\0032\0030\006", metadata !18, metadata !0} ; [ DW_TAG_lexical_block ]
|
2011-02-14 23:03:23 +00:00
|
|
|
!14 = metadata !{i32 34, i32 5, metadata !15, null}
|
2014-10-03 20:01:09 +00:00
|
|
|
!15 = metadata !{metadata !"0xb\0033\0014\007", metadata !18, metadata !13} ; [ DW_TAG_lexical_block ]
|
2011-02-14 23:03:23 +00:00
|
|
|
!16 = metadata !{i32 36, i32 3, metadata !13, null}
|
|
|
|
!17 = metadata !{i32 37, i32 1, metadata !13, null}
|
2013-07-24 22:23:00 +00:00
|
|
|
!18 = metadata !{metadata !"/Volumes/Lalgate/cj/llvm/projects/llvm-test/SingleSource/Benchmarks/BenchmarkGame/recursive.c", metadata !"/Volumes/Lalgate/cj/D/projects/llvm-test/SingleSource/Benchmarks/BenchmarkGame"}
|
2013-07-27 01:26:08 +00:00
|
|
|
!19 = metadata !{i32 0}
|
2014-10-03 20:01:09 +00:00
|
|
|
!20 = metadata !{i32 1, metadata !"Debug Info Version", i32 2}
|