Krzysztof Parzyszek | 9a278f1 | 2013-02-11 21:37:55 +0000 | [diff] [blame] | 1 | ; RUN: llc < %s -march=hexagon -mcpu=hexagonv4 -O2 -disable-lsr | FileCheck %s |
| 2 | ; ModuleID = 'hwloop-dbg.o' |
| 3 | target datalayout = "e-p:32:32:32-i64:64:64-i32:32:32-i16:16:16-i1:32:32-f64:64:64-f32:32:32-v64:64:64-v32:32:32-a0:0-n16:32" |
| 4 | target triple = "hexagon" |
| 5 | |
| 6 | define void @foo(i32* nocapture %a, i32* nocapture %b) nounwind { |
| 7 | entry: |
Duncan P. N. Exon Smith | a9308c4 | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 8 | tail call void @llvm.dbg.value(metadata i32* %a, i64 0, metadata !13, metadata !DIExpression()), !dbg !17 |
| 9 | tail call void @llvm.dbg.value(metadata i32* %b, i64 0, metadata !14, metadata !DIExpression()), !dbg !18 |
| 10 | tail call void @llvm.dbg.value(metadata i32 0, i64 0, metadata !15, metadata !DIExpression()), !dbg !19 |
Krzysztof Parzyszek | 9a278f1 | 2013-02-11 21:37:55 +0000 | [diff] [blame] | 11 | br label %for.body, !dbg !19 |
| 12 | |
| 13 | for.body: ; preds = %for.body, %entry |
| 14 | ; CHECK: loop0( |
| 15 | ; CHECK-NOT: add({{r[0-9]*}}, # |
| 16 | ; CHECK: endloop0 |
| 17 | %arrayidx.phi = phi i32* [ %a, %entry ], [ %arrayidx.inc, %for.body ] |
| 18 | %i.02 = phi i32 [ 0, %entry ], [ %inc, %for.body ] |
| 19 | %b.addr.01 = phi i32* [ %b, %entry ], [ %incdec.ptr, %for.body ] |
David Blaikie | 79e6c74 | 2015-02-27 19:29:02 +0000 | [diff] [blame] | 20 | %incdec.ptr = getelementptr inbounds i32, i32* %b.addr.01, i32 1, !dbg !21 |
Duncan P. N. Exon Smith | a9308c4 | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 21 | tail call void @llvm.dbg.value(metadata i32* %incdec.ptr, i64 0, metadata !14, metadata !DIExpression()), !dbg !21 |
David Blaikie | a79ac14 | 2015-02-27 21:17:42 +0000 | [diff] [blame] | 22 | %0 = load i32, i32* %b.addr.01, align 4, !dbg !21 |
Manman Ren | 1a5ff28 | 2013-04-30 17:52:57 +0000 | [diff] [blame] | 23 | store i32 %0, i32* %arrayidx.phi, align 4, !dbg !21 |
Krzysztof Parzyszek | 9a278f1 | 2013-02-11 21:37:55 +0000 | [diff] [blame] | 24 | %inc = add nsw i32 %i.02, 1, !dbg !26 |
Duncan P. N. Exon Smith | a9308c4 | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 25 | tail call void @llvm.dbg.value(metadata i32 %inc, i64 0, metadata !15, metadata !DIExpression()), !dbg !26 |
Krzysztof Parzyszek | 9a278f1 | 2013-02-11 21:37:55 +0000 | [diff] [blame] | 26 | %exitcond = icmp eq i32 %inc, 10, !dbg !19 |
David Blaikie | 79e6c74 | 2015-02-27 19:29:02 +0000 | [diff] [blame] | 27 | %arrayidx.inc = getelementptr i32, i32* %arrayidx.phi, i32 1 |
Krzysztof Parzyszek | 9a278f1 | 2013-02-11 21:37:55 +0000 | [diff] [blame] | 28 | br i1 %exitcond, label %for.end, label %for.body, !dbg !19 |
| 29 | |
| 30 | for.end: ; preds = %for.body |
| 31 | ret void, !dbg !27 |
| 32 | } |
| 33 | |
Adrian Prantl | 87b7eb9 | 2014-10-01 18:55:02 +0000 | [diff] [blame] | 34 | declare void @llvm.dbg.value(metadata, i64, metadata, metadata) nounwind readnone |
Krzysztof Parzyszek | 9a278f1 | 2013-02-11 21:37:55 +0000 | [diff] [blame] | 35 | |
Krzysztof Parzyszek | 9a278f1 | 2013-02-11 21:37:55 +0000 | [diff] [blame] | 36 | |
Manman Ren | 921382e | 2013-07-27 01:26:08 +0000 | [diff] [blame] | 37 | !llvm.dbg.cu = !{!0} |
Manman Ren | 409558f | 2013-11-22 21:49:45 +0000 | [diff] [blame] | 38 | !llvm.module.flags = !{!29} |
Manman Ren | 921382e | 2013-07-27 01:26:08 +0000 | [diff] [blame] | 39 | |
Duncan P. N. Exon Smith | a9308c4 | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 40 | !0 = !DICompileUnit(language: DW_LANG_C99, producer: "QuIC LLVM Hexagon Clang version 6.1-pre-unknown, (git://git-hexagon-aus.quicinc.com/llvm/clang-mainline.git e9382867661454cdf44addb39430741578e9765c) (llvm/llvm-mainline.git 36412bb1fcf03ed426d4437b41198bae066675ac)", isOptimized: true, emissionKind: 1, file: !28, enums: !2, retainedTypes: !2, subprograms: !3, globals: !2) |
Duncan P. N. Exon Smith | be7ea19 | 2014-12-15 19:07:53 +0000 | [diff] [blame] | 41 | !2 = !{} |
| 42 | !3 = !{!5} |
Duncan P. N. Exon Smith | a9308c4 | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 43 | !5 = !DISubprogram(name: "foo", line: 1, isLocal: false, isDefinition: true, virtualIndex: 6, flags: DIFlagPrototyped, isOptimized: true, scopeLine: 1, file: !28, scope: null, type: !7, function: void (i32*, i32*)* @foo, variables: !11) |
| 44 | !6 = !DIFile(filename: "hwloop-dbg.c", directory: "/usr2/kparzysz/s.hex/t") |
| 45 | !7 = !DISubroutineType(types: !8) |
Duncan P. N. Exon Smith | be7ea19 | 2014-12-15 19:07:53 +0000 | [diff] [blame] | 46 | !8 = !{null, !9, !9} |
Duncan P. N. Exon Smith | a9308c4 | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 47 | !9 = !DIDerivedType(tag: DW_TAG_pointer_type, size: 32, align: 32, baseType: !10) |
| 48 | !10 = !DIBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32, encoding: DW_ATE_signed) |
Duncan P. N. Exon Smith | be7ea19 | 2014-12-15 19:07:53 +0000 | [diff] [blame] | 49 | !11 = !{!13, !14, !15} |
Duncan P. N. Exon Smith | a9308c4 | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 50 | !13 = !DILocalVariable(tag: DW_TAG_arg_variable, name: "a", line: 1, arg: 1, scope: !5, file: !6, type: !9) |
| 51 | !14 = !DILocalVariable(tag: DW_TAG_arg_variable, name: "b", line: 1, arg: 2, scope: !5, file: !6, type: !9) |
| 52 | !15 = !DILocalVariable(tag: DW_TAG_auto_variable, name: "i", line: 2, scope: !16, file: !6, type: !10) |
| 53 | !16 = distinct !DILexicalBlock(line: 1, column: 26, file: !28, scope: !5) |
| 54 | !17 = !DILocation(line: 1, column: 15, scope: !5) |
| 55 | !18 = !DILocation(line: 1, column: 23, scope: !5) |
| 56 | !19 = !DILocation(line: 3, column: 8, scope: !20) |
| 57 | !20 = distinct !DILexicalBlock(line: 3, column: 3, file: !28, scope: !16) |
| 58 | !21 = !DILocation(line: 4, column: 5, scope: !22) |
| 59 | !22 = distinct !DILexicalBlock(line: 3, column: 28, file: !28, scope: !20) |
| 60 | !26 = !DILocation(line: 3, column: 23, scope: !20) |
| 61 | !27 = !DILocation(line: 6, column: 1, scope: !16) |
| 62 | !28 = !DIFile(filename: "hwloop-dbg.c", directory: "/usr2/kparzysz/s.hex/t") |
Duncan P. N. Exon Smith | e274180 | 2015-03-03 17:24:31 +0000 | [diff] [blame] | 63 | !29 = !{i32 1, !"Debug Info Version", i32 3} |
Duncan P. N. Exon Smith | be7ea19 | 2014-12-15 19:07:53 +0000 | [diff] [blame] | 64 | !30 = !{i32 0} |