mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-14 07:31:53 +00:00
7c9c6ed761
Essentially the same as the GEP change in r230786. A similar migration script can be used to update test cases, though a few more test case improvements/changes were required this time around: (r229269-r229278) import fileinput import sys import re pat = re.compile(r"((?:=|:|^)\s*load (?:atomic )?(?:volatile )?(.*?))(| addrspace\(\d+\) *)\*($| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$)") for line in sys.stdin: sys.stdout.write(re.sub(pat, r"\1, \2\3*\4", line)) Reviewers: rafael, dexonsmith, grosser Differential Revision: http://reviews.llvm.org/D7649 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230794 91177308-0d34-0410-b5e6-96231b3b80d8
81 lines
2.8 KiB
LLVM
81 lines
2.8 KiB
LLVM
; RUN: llc -mtriple=i386-unknown-linux-gnu -mattr=-slow-incdec < %s | FileCheck -check-prefix=INCDEC %s
|
|
; RUN: llc -mtriple=i386-unknown-linux-gnu -mattr=+slow-incdec < %s | FileCheck -check-prefix=ADD %s
|
|
|
|
; check -mattr=-slow-incdec
|
|
; INCDEC-NOT: addl $-1
|
|
; INCDEC: dec
|
|
; INCDEC-NOT: addl $1
|
|
; INCDEC: inc
|
|
|
|
; check -mattr=+slow-incdec
|
|
; ADD: addl $-1
|
|
; ADD-NOT: dec
|
|
; ADD: addl $1
|
|
; ADD-NOT: inc
|
|
|
|
; Function Attrs: nounwind readonly
|
|
define i32 @slow_1(i32* nocapture readonly %a, i32 %s) #0 {
|
|
entry:
|
|
%cmp5 = icmp eq i32 %s, 0
|
|
br i1 %cmp5, label %for.end, label %for.body.preheader
|
|
|
|
for.body.preheader: ; preds = %entry
|
|
br label %for.body
|
|
|
|
for.cond: ; preds = %for.body
|
|
%cmp = icmp eq i32 %dec, 0
|
|
br i1 %cmp, label %for.end.loopexit, label %for.body
|
|
|
|
for.body: ; preds = %for.body.preheader, %for.cond
|
|
%i.06 = phi i32 [ %dec, %for.cond ], [ %s, %for.body.preheader ]
|
|
%arrayidx = getelementptr inbounds i32, i32* %a, i32 %i.06
|
|
%0 = load i32, i32* %arrayidx, align 4, !tbaa !1
|
|
%cmp1 = icmp eq i32 %0, 0
|
|
;
|
|
%dec = add nsw i32 %i.06, -1
|
|
br i1 %cmp1, label %for.end.loopexit, label %for.cond
|
|
|
|
for.end.loopexit: ; preds = %for.cond, %for.body
|
|
%i.0.lcssa.ph = phi i32 [ 0, %for.cond ], [ %i.06, %for.body ]
|
|
br label %for.end
|
|
|
|
for.end: ; preds = %for.end.loopexit, %entry
|
|
%i.0.lcssa = phi i32 [ 0, %entry ], [ %i.0.lcssa.ph, %for.end.loopexit ]
|
|
ret i32 %i.0.lcssa
|
|
}
|
|
|
|
; Function Attrs: nounwind readonly
|
|
define i32 @slow_2(i32* nocapture readonly %a, i32 %s) #0 {
|
|
entry:
|
|
%cmp5 = icmp eq i32 %s, 0
|
|
br i1 %cmp5, label %for.end, label %for.body.preheader
|
|
|
|
for.body.preheader: ; preds = %entry
|
|
br label %for.body
|
|
|
|
for.cond: ; preds = %for.body
|
|
%cmp = icmp eq i32 %inc, 0
|
|
br i1 %cmp, label %for.end.loopexit, label %for.body
|
|
|
|
for.body: ; preds = %for.body.preheader, %for.cond
|
|
%i.06 = phi i32 [ %inc, %for.cond ], [ %s, %for.body.preheader ]
|
|
%arrayidx = getelementptr inbounds i32, i32* %a, i32 %i.06
|
|
%0 = load i32, i32* %arrayidx, align 4, !tbaa !1
|
|
%cmp1 = icmp eq i32 %0, 0
|
|
%inc = add nsw i32 %i.06, 1
|
|
br i1 %cmp1, label %for.end.loopexit, label %for.cond
|
|
|
|
for.end.loopexit: ; preds = %for.cond, %for.body
|
|
%i.0.lcssa.ph = phi i32 [ 0, %for.cond ], [ %i.06, %for.body ]
|
|
br label %for.end
|
|
|
|
for.end: ; preds = %for.end.loopexit, %entry
|
|
%i.0.lcssa = phi i32 [ 0, %entry ], [ %i.0.lcssa.ph, %for.end.loopexit ]
|
|
ret i32 %i.0.lcssa
|
|
}
|
|
|
|
!1 = !{!2, !2, i64 0}
|
|
!2 = !{!"int", !3, i64 0}
|
|
!3 = !{!"omnipotent char", !4, i64 0}
|
|
!4 = !{!"Simple C/C++ TBAA"}
|