Adrian Prantl | 75ce62a | 2014-04-01 21:04:18 +0000 | [diff] [blame] | 1 | ; RUN: llc -O1 -filetype=obj -o - %s | llvm-dwarfdump -debug-dump=all - | FileCheck %s |
| 2 | ; Generated with -O1 from: |
| 3 | ; int f1(); |
| 4 | ; void f2(int*); |
| 5 | ; int f3(int); |
| 6 | ; |
| 7 | ; int foo() { |
| 8 | ; int i = 3; |
| 9 | ; f3(i); |
| 10 | ; i = 7; |
| 11 | ; i = f1(); |
| 12 | ; f2(&i); |
| 13 | ; return 0; |
| 14 | ; } |
| 15 | ; |
| 16 | ; Test that we generate valid debug info for optimized code, |
Alp Toker | 16f98b2 | 2014-04-09 14:47:27 +0000 | [diff] [blame] | 17 | ; particularly variables that are described as constants and passed |
Adrian Prantl | 75ce62a | 2014-04-01 21:04:18 +0000 | [diff] [blame] | 18 | ; by reference. |
| 19 | ; rdar://problem/14874886 |
| 20 | ; |
| 21 | ; CHECK: .debug_info contents: |
| 22 | ; CHECK: DW_TAG_variable |
Adrian Prantl | 75ce62a | 2014-04-01 21:04:18 +0000 | [diff] [blame] | 23 | ; CHECK-NOT: DW_TAG |
| 24 | ; CHECK: DW_AT_location [DW_FORM_data4] ([[LOC:.*]]) |
David Blaikie | eb1a272 | 2014-06-13 22:18:23 +0000 | [diff] [blame] | 25 | ; CHECK-NOT: DW_TAG |
| 26 | ; CHECK: DW_AT_name{{.*}}"i" |
Adrian Prantl | 75ce62a | 2014-04-01 21:04:18 +0000 | [diff] [blame] | 27 | ; CHECK: .debug_loc contents: |
| 28 | ; CHECK: [[LOC]]: |
Adrian Prantl | 3bdcb52 | 2014-04-11 17:49:47 +0000 | [diff] [blame] | 29 | ; consts 0x00000003 |
Adrian Prantl | 75ce62a | 2014-04-01 21:04:18 +0000 | [diff] [blame] | 30 | ; CHECK: Beginning address offset: 0x0000000000000{{.*}} |
| 31 | ; CHECK: Ending address offset: [[C1:.*]] |
Adrian Prantl | 3bdcb52 | 2014-04-11 17:49:47 +0000 | [diff] [blame] | 32 | ; CHECK: Location description: 11 03 |
| 33 | ; consts 0x00000007 |
Adrian Prantl | 75ce62a | 2014-04-01 21:04:18 +0000 | [diff] [blame] | 34 | ; CHECK: Beginning address offset: [[C1]] |
| 35 | ; CHECK: Ending address offset: [[C2:.*]] |
Adrian Prantl | 3bdcb52 | 2014-04-11 17:49:47 +0000 | [diff] [blame] | 36 | ; CHECK: Location description: 11 07 |
Adrian Prantl | 75ce62a | 2014-04-01 21:04:18 +0000 | [diff] [blame] | 37 | ; rax, piece 0x00000004 |
| 38 | ; CHECK: Beginning address offset: [[C2]] |
| 39 | ; CHECK: Ending address offset: [[R1:.*]] |
| 40 | ; CHECK: Location description: 50 93 04 |
Adrian Prantl | 32da889 | 2014-04-25 20:49:25 +0000 | [diff] [blame] | 41 | ; rdi+0 |
| 42 | ; CHECK: Beginning address offset: [[R1]] |
| 43 | ; CHECK: Ending address offset: [[R2:.*]] |
| 44 | ; CHECK: Location description: 75 00 |
Adrian Prantl | 75ce62a | 2014-04-01 21:04:18 +0000 | [diff] [blame] | 45 | ; |
| 46 | target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128" |
| 47 | target triple = "x86_64-apple-macosx10.9.0" |
| 48 | |
| 49 | ; Function Attrs: nounwind ssp uwtable |
| 50 | define i32 @foo() #0 { |
| 51 | entry: |
| 52 | %i = alloca i32, align 4 |
Duncan P. N. Exon Smith | e274180 | 2015-03-03 17:24:31 +0000 | [diff] [blame] | 53 | call void @llvm.dbg.value(metadata i32 3, i64 0, metadata !10, metadata !MDExpression()), !dbg !15 |
Adrian Prantl | 75ce62a | 2014-04-01 21:04:18 +0000 | [diff] [blame] | 54 | %call = call i32 @f3(i32 3) #3, !dbg !16 |
Duncan P. N. Exon Smith | e274180 | 2015-03-03 17:24:31 +0000 | [diff] [blame] | 55 | call void @llvm.dbg.value(metadata i32 7, i64 0, metadata !10, metadata !MDExpression()), !dbg !18 |
Adrian Prantl | 75ce62a | 2014-04-01 21:04:18 +0000 | [diff] [blame] | 56 | %call1 = call i32 (...)* @f1() #3, !dbg !19 |
Duncan P. N. Exon Smith | e274180 | 2015-03-03 17:24:31 +0000 | [diff] [blame] | 57 | call void @llvm.dbg.value(metadata i32 %call1, i64 0, metadata !10, metadata !MDExpression()), !dbg !19 |
Adrian Prantl | 75ce62a | 2014-04-01 21:04:18 +0000 | [diff] [blame] | 58 | store i32 %call1, i32* %i, align 4, !dbg !19, !tbaa !20 |
Duncan P. N. Exon Smith | e274180 | 2015-03-03 17:24:31 +0000 | [diff] [blame] | 59 | call void @llvm.dbg.value(metadata i32* %i, i64 0, metadata !10, metadata !MDExpression()), !dbg !24 |
Adrian Prantl | 75ce62a | 2014-04-01 21:04:18 +0000 | [diff] [blame] | 60 | call void @f2(i32* %i) #3, !dbg !24 |
| 61 | ret i32 0, !dbg !25 |
| 62 | } |
| 63 | |
| 64 | declare i32 @f3(i32) |
| 65 | |
| 66 | declare i32 @f1(...) |
| 67 | |
| 68 | declare void @f2(i32*) |
| 69 | |
| 70 | ; Function Attrs: nounwind readnone |
Adrian Prantl | 87b7eb9 | 2014-10-01 18:55:02 +0000 | [diff] [blame] | 71 | declare void @llvm.dbg.value(metadata, i64, metadata, metadata) #2 |
Adrian Prantl | 75ce62a | 2014-04-01 21:04:18 +0000 | [diff] [blame] | 72 | |
| 73 | attributes #0 = { nounwind ssp uwtable } |
| 74 | attributes #2 = { nounwind readnone } |
| 75 | attributes #3 = { nounwind } |
| 76 | |
| 77 | !llvm.dbg.cu = !{!0} |
| 78 | !llvm.module.flags = !{!11, !12} |
| 79 | !llvm.ident = !{!13} |
| 80 | |
Duncan P. N. Exon Smith | e274180 | 2015-03-03 17:24:31 +0000 | [diff] [blame] | 81 | !0 = !MDCompileUnit(language: DW_LANG_C99, producer: "clang version 3.5.0 ", isOptimized: true, emissionKind: 1, file: !1, enums: !2, retainedTypes: !2, subprograms: !3, globals: !2, imports: !2) |
| 82 | !1 = !MDFile(filename: "dbg-value-const-byref.c", directory: "") |
Duncan P. N. Exon Smith | be7ea19 | 2014-12-15 19:07:53 +0000 | [diff] [blame] | 83 | !2 = !{} |
| 84 | !3 = !{!4} |
Duncan P. N. Exon Smith | e274180 | 2015-03-03 17:24:31 +0000 | [diff] [blame] | 85 | !4 = !MDSubprogram(name: "foo", line: 5, isLocal: false, isDefinition: true, virtualIndex: 6, isOptimized: true, scopeLine: 5, file: !1, scope: !5, type: !6, function: i32 ()* @foo, variables: !9) |
| 86 | !5 = !MDFile(filename: "dbg-value-const-byref.c", directory: "") |
| 87 | !6 = !MDSubroutineType(types: !7) |
Duncan P. N. Exon Smith | be7ea19 | 2014-12-15 19:07:53 +0000 | [diff] [blame] | 88 | !7 = !{!8} |
Duncan P. N. Exon Smith | e274180 | 2015-03-03 17:24:31 +0000 | [diff] [blame] | 89 | !8 = !MDBasicType(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] | 90 | !9 = !{!10} |
Duncan P. N. Exon Smith | e274180 | 2015-03-03 17:24:31 +0000 | [diff] [blame] | 91 | !10 = !MDLocalVariable(tag: DW_TAG_auto_variable, name: "i", line: 6, scope: !4, file: !5, type: !8) |
Duncan P. N. Exon Smith | be7ea19 | 2014-12-15 19:07:53 +0000 | [diff] [blame] | 92 | !11 = !{i32 2, !"Dwarf Version", i32 2} |
Duncan P. N. Exon Smith | e274180 | 2015-03-03 17:24:31 +0000 | [diff] [blame] | 93 | !12 = !{i32 1, !"Debug Info Version", i32 3} |
Duncan P. N. Exon Smith | be7ea19 | 2014-12-15 19:07:53 +0000 | [diff] [blame] | 94 | !13 = !{!"clang version 3.5.0 "} |
| 95 | !14 = !{i32 3} |
Duncan P. N. Exon Smith | 9885469 | 2015-01-14 22:27:36 +0000 | [diff] [blame] | 96 | !15 = !MDLocation(line: 6, scope: !4) |
| 97 | !16 = !MDLocation(line: 7, scope: !4) |
Duncan P. N. Exon Smith | be7ea19 | 2014-12-15 19:07:53 +0000 | [diff] [blame] | 98 | !17 = !{i32 7} |
Duncan P. N. Exon Smith | 9885469 | 2015-01-14 22:27:36 +0000 | [diff] [blame] | 99 | !18 = !MDLocation(line: 8, scope: !4) |
| 100 | !19 = !MDLocation(line: 9, scope: !4) |
Duncan P. N. Exon Smith | be7ea19 | 2014-12-15 19:07:53 +0000 | [diff] [blame] | 101 | !20 = !{!21, !21, i64 0} |
| 102 | !21 = !{!"int", !22, i64 0} |
| 103 | !22 = !{!"omnipotent char", !23, i64 0} |
| 104 | !23 = !{!"Simple C/C++ TBAA"} |
Duncan P. N. Exon Smith | 9885469 | 2015-01-14 22:27:36 +0000 | [diff] [blame] | 105 | !24 = !MDLocation(line: 10, scope: !4) |
| 106 | !25 = !MDLocation(line: 11, scope: !4) |