mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-25 04:39:44 +00:00
83902832de
This reverts commit r218918, effectively reapplying r218914 after fixing an Ocaml bindings test and an Asan crash. The root cause of the latter was a tightened-up check in `DILexicalBlock::Verify()`, so I'll file a PR to investigate who requires the loose check (and why). Original commit message follows. -- This patch addresses the first stage of PR17891 by folding constant arguments together into a single MDString. Integers are stringified and a `\0` character is used as a separator. Part of PR17891. Note: I've attached my testcases upgrade scripts to the PR. If I've just broken your out-of-tree testcases, they might help. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@219010 91177308-0d34-0410-b5e6-96231b3b80d8
79 lines
3.7 KiB
LLVM
79 lines
3.7 KiB
LLVM
; RUN: opt < %s -loop-vectorize -force-vector-width=4 -S -pass-remarks-missed='loop-vectorize' -pass-remarks-analysis='loop-vectorize' 2>&1 | FileCheck %s
|
|
|
|
; C/C++ code for control flow test
|
|
; int test(int *A, int Length) {
|
|
; for (int i = 0; i < Length; i++) {
|
|
; if (A[i] > 10.0) goto end;
|
|
; A[i] = 0;
|
|
; }
|
|
; end:
|
|
; return 0;
|
|
; }
|
|
|
|
; CHECK: remark: source.cpp:5:9: loop not vectorized: loop control flow is not understood by vectorizer
|
|
; CHECK: remark: source.cpp:5:9: loop not vectorized: use -Rpass-analysis=loop-vectorize for more info
|
|
|
|
; CHECK: _Z4testPii
|
|
; CHECK-NOT: x i32>
|
|
; CHECK: ret
|
|
|
|
target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
|
|
|
|
; Function Attrs: nounwind optsize ssp uwtable
|
|
define i32 @_Z4testPii(i32* nocapture %A, i32 %Length) #0 {
|
|
entry:
|
|
%cmp8 = icmp sgt i32 %Length, 0, !dbg !10
|
|
br i1 %cmp8, label %for.body.preheader, label %end, !dbg !10
|
|
|
|
for.body.preheader: ; preds = %entry
|
|
br label %for.body, !dbg !12
|
|
|
|
for.body: ; preds = %for.body.preheader, %if.else
|
|
%indvars.iv = phi i64 [ %indvars.iv.next, %if.else ], [ 0, %for.body.preheader ]
|
|
%arrayidx = getelementptr inbounds i32* %A, i64 %indvars.iv, !dbg !12
|
|
%0 = load i32* %arrayidx, align 4, !dbg !12, !tbaa !15
|
|
%cmp1 = icmp sgt i32 %0, 10, !dbg !12
|
|
br i1 %cmp1, label %end.loopexit, label %if.else, !dbg !12
|
|
|
|
if.else: ; preds = %for.body
|
|
store i32 0, i32* %arrayidx, align 4, !dbg !19, !tbaa !15
|
|
%indvars.iv.next = add nuw nsw i64 %indvars.iv, 1, !dbg !10
|
|
%1 = trunc i64 %indvars.iv.next to i32, !dbg !10
|
|
%cmp = icmp slt i32 %1, %Length, !dbg !10
|
|
br i1 %cmp, label %for.body, label %end.loopexit, !dbg !10
|
|
|
|
end.loopexit: ; preds = %if.else, %for.body
|
|
br label %end
|
|
|
|
end: ; preds = %end.loopexit, %entry
|
|
ret i32 0, !dbg !20
|
|
}
|
|
|
|
attributes #0 = { nounwind }
|
|
|
|
!llvm.dbg.cu = !{!0}
|
|
!llvm.module.flags = !{!7, !8}
|
|
!llvm.ident = !{!9}
|
|
|
|
!0 = metadata !{metadata !"0x11\004\00clang version 3.5.0\001\00\006\00\002", metadata !1, metadata !2, metadata !2, metadata !3, metadata !2, metadata !2} ; [ DW_TAG_compile_unit ] [./source.cpp] [DW_LANG_C_plus_plus]
|
|
!1 = metadata !{metadata !"source.cpp", metadata !"."}
|
|
!2 = metadata !{}
|
|
!3 = metadata !{metadata !4}
|
|
!4 = metadata !{metadata !"0x2e\00test\00test\00\001\000\001\000\006\00256\001\002", metadata !1, metadata !5, metadata !6, null, i32 (i32*, i32)* @_Z4testPii, null, null, metadata !2} ; [ DW_TAG_subprogram ] [line 1] [def] [scope 2] [test]
|
|
!5 = metadata !{metadata !"0x29", metadata !1} ; [ DW_TAG_file_type ] [./source.cpp]
|
|
!6 = metadata !{metadata !"0x15\00\000\000\000\000\000\000", i32 0, null, null, metadata !2, null, null, null} ; [ DW_TAG_subroutine_type ] [line 0, size 0, align 0, offset 0] [from ]
|
|
!7 = metadata !{i32 2, metadata !"Dwarf Version", i32 2}
|
|
!8 = metadata !{i32 2, metadata !"Debug Info Version", i32 2}
|
|
!9 = metadata !{metadata !"clang version 3.5.0"}
|
|
!10 = metadata !{i32 3, i32 8, metadata !11, null}
|
|
!11 = metadata !{metadata !"0xb\003\003\000", metadata !1, metadata !4} ; [ DW_TAG_lexical_block ]
|
|
!12 = metadata !{i32 5, i32 9, metadata !13, null}
|
|
!13 = metadata !{metadata !"0xb\005\009\000", metadata !1, metadata !14} ; [ DW_TAG_lexical_block ]
|
|
!14 = metadata !{metadata !"0xb\004\003\000", metadata !1, metadata !11} ; [ DW_TAG_lexical_block ]
|
|
!15 = metadata !{metadata !16, metadata !16, i64 0}
|
|
!16 = metadata !{metadata !"int", metadata !17, i64 0}
|
|
!17 = metadata !{metadata !"omnipotent char", metadata !18, i64 0}
|
|
!18 = metadata !{metadata !"Simple C/C++ TBAA"}
|
|
!19 = metadata !{i32 8, i32 7, metadata !13, null}
|
|
!20 = metadata !{i32 12, i32 3, metadata !4, null}
|