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:
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_var_inc(unsigned size, unsigned *data, unsigned multiplicand) {
13 ;; #pragma clang loop vectorize(disable)
15 ;; unsigned comp = i * multiplicand;
20 ; CHECK: #dbg_value(i64 %lsr.iv, ![[i:[0-9]+]], !DIExpression(),
21 ; CHECK: #dbg_value(!DIArgList(i64 %lsr.iv, i32 %multiplicand), ![[comp:[0-9]+]], !DIExpression(DW_OP_LLVM_arg, 0, DW_OP_LLVM_arg, 1, DW_OP_mul, DW_OP_stack_value),
22 ; CHECK: #dbg_value(i64 %lsr.iv, ![[i]], !DIExpression(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 @__const.main.data = private unnamed_addr constant [16 x i32] [i32 0, i32 1, i32 2, i32 3, i32 4, i32 5, i32 6, i32 7, i32 8, i32 9, i32 10, i32 11, i32 12, i32 13, i32 14, i32 15], align 16
31 define dso_local void @_Z21mul_pow_of_2_to_shiftjPjj(i32 %size, ptr nocapture %data, i32 %multiplicand) local_unnamed_addr !dbg !7 {
33 call void @llvm.dbg.value(metadata i32 %size, metadata !12, metadata !DIExpression()), !dbg !13
34 call void @llvm.dbg.value(metadata ptr %data, metadata !14, metadata !DIExpression()), !dbg !13
35 call void @llvm.dbg.value(metadata i32 %multiplicand, metadata !15, metadata !DIExpression()), !dbg !13
36 call void @llvm.dbg.value(metadata i32 0, metadata !16, metadata !DIExpression()), !dbg !13
37 br label %while.cond, !dbg !13
39 while.cond: ; preds = %while.body, %entry
40 %i.0 = phi i32 [ 0, %entry ], [ %inc, %while.body ], !dbg !13
41 call void @llvm.dbg.value(metadata i32 %i.0, metadata !16, metadata !DIExpression()), !dbg !13
42 %cmp = icmp ult i32 %i.0, %size, !dbg !13
43 br i1 %cmp, label %while.body, label %while.end, !dbg !13
45 while.body: ; preds = %while.cond
46 %mul = mul i32 %i.0, %multiplicand, !dbg !17
47 call void @llvm.dbg.value(metadata i32 %mul, metadata !19, metadata !DIExpression()), !dbg !17
48 %idxprom = zext i32 %i.0 to i64, !dbg !17
49 %arrayidx = getelementptr inbounds i32, ptr %data, i64 %idxprom, !dbg !17
50 store i32 %mul, ptr %arrayidx, align 4, !dbg !17
51 %inc = add nuw i32 %i.0, 1, !dbg !17
52 call void @llvm.dbg.value(metadata i32 %inc, metadata !16, metadata !DIExpression()), !dbg !13
53 br label %while.cond, !dbg !13, !llvm.loop !20
55 while.end: ; preds = %while.cond
59 declare void @llvm.dbg.value(metadata, metadata, metadata)
62 !llvm.module.flags = !{!3, !4, !5}
65 !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)
66 !1 = !DIFile(filename: "basic.cpp", directory: "/test")
68 !3 = !{i32 7, !"Dwarf Version", i32 4}
69 !4 = !{i32 2, !"Debug Info Version", i32 3}
70 !5 = !{i32 1, !"wchar_size", i32 4}
71 !6 = !{!"clang version 13.0.0"}
72 !7 = distinct !DISubprogram(name: "mul_pow_of_2_to_shift", linkageName: "_Z21mul_pow_of_2_to_shiftjPjj", scope: !1, file: !1, line: 17, type: !8, scopeLine: 17, flags: DIFlagPrototyped, spFlags: DISPFlagDefinition, unit: !0, retainedNodes: !2)
73 !8 = !DISubroutineType(types: !9)
74 !9 = !{null, !10, !11, !10}
75 !10 = !DIBasicType(name: "unsigned int", size: 32, encoding: DW_ATE_unsigned)
76 !11 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !10, size: 64)
77 !12 = !DILocalVariable(name: "size", arg: 1, scope: !7, file: !1, line: 17, type: !10)
78 !13 = !DILocation(line: 0, scope: !7)
79 !14 = !DILocalVariable(name: "data", arg: 2, scope: !7, file: !1, line: 17, type: !11)
80 !15 = !DILocalVariable(name: "multiplicand", arg: 3, scope: !7, file: !1, line: 17, type: !10)
81 !16 = !DILocalVariable(name: "i", scope: !7, file: !1, line: 18, type: !10)
82 !17 = !DILocation(line: 21, column: 27, scope: !18)
83 !18 = distinct !DILexicalBlock(scope: !7, file: !1, line: 20, column: 22)
84 !19 = !DILocalVariable(name: "comp", scope: !18, file: !1, line: 21, type: !10)
85 !20 = distinct !{!20, !21, !22, !23, !24}
86 !21 = !DILocation(line: 20, column: 5, scope: !7)
87 !22 = !DILocation(line: 24, column: 5, scope: !7)
88 !23 = !{!"llvm.loop.mustprogress"}
89 !24 = !{!"llvm.loop.vectorize.width", i32 1}