control-flow.ll 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. ; RUN: opt < %s -loop-vectorize -force-vector-width=4 -S -pass-remarks-missed='loop-vectorize' -pass-remarks-analysis='loop-vectorize' 2>&1 | FileCheck %s
  2. ; C/C++ code for control flow test
  3. ; int test(int *A, int Length) {
  4. ; for (int i = 0; i < Length; i++) {
  5. ; if (A[i] > 10.0) goto end;
  6. ; A[i] = 0;
  7. ; }
  8. ; end:
  9. ; return 0;
  10. ; }
  11. ; CHECK: remark: source.cpp:5:9: loop not vectorized: loop control flow is not understood by vectorizer
  12. ; CHECK: remark: source.cpp:5:9: loop not vectorized: use -Rpass-analysis=loop-vectorize for more info
  13. ; CHECK: _Z4testPii
  14. ; CHECK-NOT: x i32>
  15. ; CHECK: ret
  16. target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
  17. ; Function Attrs: nounwind optsize ssp uwtable
  18. define i32 @_Z4testPii(i32* nocapture %A, i32 %Length) #0 {
  19. entry:
  20. %cmp8 = icmp sgt i32 %Length, 0, !dbg !10
  21. br i1 %cmp8, label %for.body.preheader, label %end, !dbg !10
  22. for.body.preheader: ; preds = %entry
  23. br label %for.body, !dbg !12
  24. for.body: ; preds = %for.body.preheader, %if.else
  25. %indvars.iv = phi i64 [ %indvars.iv.next, %if.else ], [ 0, %for.body.preheader ]
  26. %arrayidx = getelementptr inbounds i32, i32* %A, i64 %indvars.iv, !dbg !12
  27. %0 = load i32, i32* %arrayidx, align 4, !dbg !12, !tbaa !15
  28. %cmp1 = icmp sgt i32 %0, 10, !dbg !12
  29. br i1 %cmp1, label %end.loopexit, label %if.else, !dbg !12
  30. if.else: ; preds = %for.body
  31. store i32 0, i32* %arrayidx, align 4, !dbg !19, !tbaa !15
  32. %indvars.iv.next = add nuw nsw i64 %indvars.iv, 1, !dbg !10
  33. %1 = trunc i64 %indvars.iv.next to i32, !dbg !10
  34. %cmp = icmp slt i32 %1, %Length, !dbg !10
  35. br i1 %cmp, label %for.body, label %end.loopexit, !dbg !10
  36. end.loopexit: ; preds = %if.else, %for.body
  37. br label %end
  38. end: ; preds = %end.loopexit, %entry
  39. ret i32 0, !dbg !20
  40. }
  41. attributes #0 = { nounwind }
  42. !llvm.dbg.cu = !{!0}
  43. !llvm.module.flags = !{!7, !8}
  44. !llvm.ident = !{!9}
  45. !0 = !DICompileUnit(language: DW_LANG_C_plus_plus, producer: "clang version 3.5.0", isOptimized: true, runtimeVersion: 6, emissionKind: 2, file: !1, enums: !2, retainedTypes: !2, subprograms: !3, globals: !2, imports: !2)
  46. !1 = !DIFile(filename: "source.cpp", directory: ".")
  47. !2 = !{}
  48. !3 = !{!4}
  49. !4 = !DISubprogram(name: "test", line: 1, isLocal: false, isDefinition: true, virtualIndex: 6, flags: DIFlagPrototyped, isOptimized: true, scopeLine: 2, file: !1, scope: !5, type: !6, function: i32 (i32*, i32)* @_Z4testPii, variables: !2)
  50. !5 = !DIFile(filename: "source.cpp", directory: ".")
  51. !6 = !DISubroutineType(types: !2)
  52. !7 = !{i32 2, !"Dwarf Version", i32 2}
  53. !8 = !{i32 2, !"Debug Info Version", i32 3}
  54. !9 = !{!"clang version 3.5.0"}
  55. !10 = !DILocation(line: 3, column: 8, scope: !11)
  56. !11 = distinct !DILexicalBlock(line: 3, column: 3, file: !1, scope: !4)
  57. !12 = !DILocation(line: 5, column: 9, scope: !13)
  58. !13 = distinct !DILexicalBlock(line: 5, column: 9, file: !1, scope: !14)
  59. !14 = distinct !DILexicalBlock(line: 4, column: 3, file: !1, scope: !11)
  60. !15 = !{!16, !16, i64 0}
  61. !16 = !{!"int", !17, i64 0}
  62. !17 = !{!"omnipotent char", !18, i64 0}
  63. !18 = !{!"Simple C/C++ TBAA"}
  64. !19 = !DILocation(line: 8, column: 7, scope: !13)
  65. !20 = !DILocation(line: 12, column: 3, scope: !4)