[win/asan] GetInstructionSize: Fix `83 E4 XX` to return 3. (#119644)
[llvm-project.git] / llvm / test / Transforms / LoopStrengthReduce / debuginfo-scev-salvage-0.ll
blob30d8c33e29ec5ea7100411ed85c802a2e7cb2998
1 ; RUN: opt -S -loop-reduce %s -o - | FileCheck %s
2 ; RUN: opt --try-experimental-debuginfo-iterators -S -loop-reduce %s -o - | FileCheck %s
3 ; REQUIRES: x86-registered-target
5 ;; Ensure that we retain debuginfo for the induction variable and dependant
6 ;; variables when loop strength reduction is applied to the loop.
7 ;; This IR produced from:
8 ;;
9 ;; clang -S -emit-llvm -Xclang -disable-llvm-passes -g lsr-basic.cpp -o
10 ;; Then executing opt -O2 up to the the loopFullUnroll pass.
11 ;; void mul_pow_of_2_to_shift(unsigned size, unsigned *data) {
12 ;; unsigned i = 0;
13 ;; #pragma clang loop vectorize(disable)
14 ;;    while (i < size) {
15 ;;         unsigned comp = i * 8;
16 ;;         data[i] = comp;
17 ;;        i++;                // DexLabel('mul_pow_of_2_induction_increment')
18 ;;   }
19 ;; }
20 ; CHECK: #dbg_value(i64 %lsr.iv, ![[i:[0-9]+]], !DIExpression(DW_OP_consts, 8, DW_OP_div, DW_OP_stack_value),
21 ; CHECK: #dbg_value(i64 %lsr.iv, ![[comp:[0-9]+]], !DIExpression(DW_OP_consts, 8, DW_OP_div, DW_OP_consts, 8, DW_OP_mul, DW_OP_stack_value),
22 ; CHECK: #dbg_value(i64 %lsr.iv, ![[i]], !DIExpression(DW_OP_consts, 8, DW_OP_div, DW_OP_consts, 1, DW_OP_plus, DW_OP_stack_value),
23 ; CHECK: ![[i]] = !DILocalVariable(name: "i"
24 ; CHECK: ![[comp]] = !DILocalVariable(name: "comp"
26 target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
27 target triple = "x86_64-unknown-linux-gnu"
29 define dso_local void @_Z21mul_pow_of_2_to_shiftjPj(i32 %size, ptr nocapture %data) local_unnamed_addr !dbg !7 {
30 entry:
31   call void @llvm.dbg.value(metadata i32 %size, metadata !12, metadata !DIExpression()), !dbg !13
32   call void @llvm.dbg.value(metadata ptr %data, metadata !14, metadata !DIExpression()), !dbg !13
33   call void @llvm.dbg.value(metadata i32 0, metadata !15, metadata !DIExpression()), !dbg !13
34   %cmp4.not = icmp eq i32 %size, 0, !dbg !13
35   br i1 %cmp4.not, label %while.end, label %while.body.preheader, !dbg !13
37 while.body.preheader:                             ; preds = %entry
38   %wide.trip.count = zext i32 %size to i64, !dbg !13
39   br label %while.body, !dbg !13
41 while.body:                                       ; preds = %while.body, %while.body.preheader
42   %indvars.iv = phi i64 [ 0, %while.body.preheader ], [ %indvars.iv.next, %while.body ]
43   call void @llvm.dbg.value(metadata i64 %indvars.iv, metadata !15, metadata !DIExpression()), !dbg !13
44   %0 = trunc i64 %indvars.iv to i32, !dbg !16
45   %mul = shl i32 %0, 3, !dbg !16
46   call void @llvm.dbg.value(metadata i32 %mul, metadata !18, metadata !DIExpression()), !dbg !16
47   %arrayidx = getelementptr inbounds i32, ptr %data, i64 %indvars.iv, !dbg !16
48   store i32 %mul, ptr %arrayidx, align 4, !dbg !16
49   %indvars.iv.next = add nuw nsw i64 %indvars.iv, 1, !dbg !16
50   call void @llvm.dbg.value(metadata i64 %indvars.iv.next, metadata !15, metadata !DIExpression()), !dbg !13
51   %exitcond = icmp ne i64 %indvars.iv.next, %wide.trip.count, !dbg !13
52   br i1 %exitcond, label %while.body, label %while.end.loopexit, !dbg !13, !llvm.loop !19
54 while.end.loopexit:                               ; preds = %while.body
55   br label %while.end, !dbg !13
57 while.end:                                        ; preds = %while.end.loopexit, %entry
58   ret void, !dbg !13
61 ; Function Attrs: nofree nosync nounwind readnone speculatable willreturn
62 declare void @llvm.dbg.value(metadata, metadata, metadata) #0
64 attributes #0 = { nofree nosync nounwind readnone speculatable willreturn }
66 !llvm.dbg.cu = !{!0}
67 !llvm.module.flags = !{!3, !4, !5}
68 !llvm.ident = !{!6}
70 !0 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus_14, file: !1, producer: "clang version 13.0.0", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !2, splitDebugInlining: false, nameTableKind: None)
71 !1 = !DIFile(filename: "lsr-basic.cpp", directory: "/tmp")
72 !2 = !{}
73 !3 = !{i32 7, !"Dwarf Version", i32 4}
74 !4 = !{i32 2, !"Debug Info Version", i32 3}
75 !5 = !{i32 1, !"wchar_size", i32 4}
76 !6 = !{!"clang version 13.0.0"}
77 !7 = distinct !DISubprogram(name: "mul_pow_of_2_to_shift", linkageName: "_Z21mul_pow_of_2_to_shiftjPj", scope: !1, file: !1, line: 18, type: !8, scopeLine: 18, flags: DIFlagPrototyped, spFlags: DISPFlagDefinition, unit: !0, retainedNodes: !2)
78 !8 = !DISubroutineType(types: !9)
79 !9 = !{null, !10, !11}
80 !10 = !DIBasicType(name: "unsigned int", size: 32, encoding: DW_ATE_unsigned)
81 !11 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !10, size: 64)
82 !12 = !DILocalVariable(name: "size", arg: 1, scope: !7, file: !1, line: 18, type: !10)
83 !13 = !DILocation(line: 0, scope: !7)
84 !14 = !DILocalVariable(name: "data", arg: 2, scope: !7, file: !1, line: 18, type: !11)
85 !15 = !DILocalVariable(name: "i", scope: !7, file: !1, line: 19, type: !10)
86 !16 = !DILocation(line: 22, column: 27, scope: !17)
87 !17 = distinct !DILexicalBlock(scope: !7, file: !1, line: 21, column: 22)
88 !18 = !DILocalVariable(name: "comp", scope: !17, file: !1, line: 22, type: !10)
89 !19 = distinct !{!19, !20, !21, !22, !23}
90 !20 = !DILocation(line: 21, column: 5, scope: !7)
91 !21 = !DILocation(line: 25, column: 5, scope: !7)
92 !22 = !{!"llvm.loop.mustprogress"}
93 !23 = !{!"llvm.loop.vectorize.width", i32 1}