David Blaikie | 866c87f | 2014-05-11 17:25:50 +0000 | [diff] [blame] | 1 | ; REQUIRES: object-emission |
| 2 | |
| 3 | ; RUN: %llc_dwarf -O0 -filetype=obj %s -o - | llvm-dwarfdump -debug-dump=info - | FileCheck %s |
| 4 | ; Use correct signedness when emitting constants of derived (sugared) types. |
| 5 | |
David Blaikie | c405c9c | 2014-05-16 21:53:09 +0000 | [diff] [blame] | 6 | ; Test compiled to IR from clang with -O1 and the following source: |
David Blaikie | 866c87f | 2014-05-11 17:25:50 +0000 | [diff] [blame] | 7 | |
| 8 | ; void func(int); |
| 9 | ; void func(unsigned); |
David Blaikie | c405c9c | 2014-05-16 21:53:09 +0000 | [diff] [blame] | 10 | ; void func(char16_t); |
David Blaikie | 866c87f | 2014-05-11 17:25:50 +0000 | [diff] [blame] | 11 | ; int main() { |
| 12 | ; const int i = 42; |
| 13 | ; func(i); |
| 14 | ; const unsigned j = 117; |
| 15 | ; func(j); |
David Blaikie | c405c9c | 2014-05-16 21:53:09 +0000 | [diff] [blame] | 16 | ; char16_t c = 7; |
| 17 | ; func(c); |
David Blaikie | 866c87f | 2014-05-11 17:25:50 +0000 | [diff] [blame] | 18 | ; } |
| 19 | |
| 20 | ; CHECK: DW_AT_const_value [DW_FORM_sdata] (42) |
| 21 | ; CHECK: DW_AT_const_value [DW_FORM_udata] (117) |
David Blaikie | c405c9c | 2014-05-16 21:53:09 +0000 | [diff] [blame] | 22 | ; CHECK: DW_AT_const_value [DW_FORM_udata] (7) |
David Blaikie | 866c87f | 2014-05-11 17:25:50 +0000 | [diff] [blame] | 23 | |
| 24 | ; Function Attrs: uwtable |
| 25 | define i32 @main() #0 { |
| 26 | entry: |
Duncan P. N. Exon Smith | e274180 | 2015-03-03 17:24:31 +0000 | [diff] [blame] | 27 | tail call void @llvm.dbg.value(metadata i32 42, i64 0, metadata !10, metadata !MDExpression()), !dbg !21 |
David Blaikie | c405c9c | 2014-05-16 21:53:09 +0000 | [diff] [blame] | 28 | tail call void @_Z4funci(i32 42), !dbg !22 |
Duncan P. N. Exon Smith | e274180 | 2015-03-03 17:24:31 +0000 | [diff] [blame] | 29 | tail call void @llvm.dbg.value(metadata i32 117, i64 0, metadata !12, metadata !MDExpression()), !dbg !24 |
David Blaikie | c405c9c | 2014-05-16 21:53:09 +0000 | [diff] [blame] | 30 | tail call void @_Z4funcj(i32 117), !dbg !25 |
Duncan P. N. Exon Smith | e274180 | 2015-03-03 17:24:31 +0000 | [diff] [blame] | 31 | tail call void @llvm.dbg.value(metadata i16 7, i64 0, metadata !15, metadata !MDExpression()), !dbg !27 |
David Blaikie | c405c9c | 2014-05-16 21:53:09 +0000 | [diff] [blame] | 32 | tail call void @_Z4funcDs(i16 zeroext 7), !dbg !28 |
| 33 | ret i32 0, !dbg !29 |
David Blaikie | 866c87f | 2014-05-11 17:25:50 +0000 | [diff] [blame] | 34 | } |
| 35 | |
| 36 | declare void @_Z4funci(i32) #1 |
| 37 | |
| 38 | declare void @_Z4funcj(i32) #1 |
| 39 | |
David Blaikie | c405c9c | 2014-05-16 21:53:09 +0000 | [diff] [blame] | 40 | declare void @_Z4funcDs(i16 zeroext) #1 |
| 41 | |
David Blaikie | 866c87f | 2014-05-11 17:25:50 +0000 | [diff] [blame] | 42 | ; Function Attrs: nounwind readnone |
Adrian Prantl | 87b7eb9 | 2014-10-01 18:55:02 +0000 | [diff] [blame] | 43 | declare void @llvm.dbg.value(metadata, i64, metadata, metadata) #2 |
David Blaikie | 866c87f | 2014-05-11 17:25:50 +0000 | [diff] [blame] | 44 | |
| 45 | attributes #0 = { uwtable "less-precise-fpmad"="false" "no-frame-pointer-elim"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" } |
| 46 | attributes #1 = { "less-precise-fpmad"="false" "no-frame-pointer-elim"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" } |
| 47 | attributes #2 = { nounwind readnone } |
| 48 | |
| 49 | !llvm.dbg.cu = !{!0} |
David Blaikie | c405c9c | 2014-05-16 21:53:09 +0000 | [diff] [blame] | 50 | !llvm.module.flags = !{!17, !18} |
| 51 | !llvm.ident = !{!19} |
David Blaikie | 866c87f | 2014-05-11 17:25:50 +0000 | [diff] [blame] | 52 | |
Duncan P. N. Exon Smith | e274180 | 2015-03-03 17:24:31 +0000 | [diff] [blame] | 53 | !0 = !MDCompileUnit(language: DW_LANG_C_plus_plus, producer: "clang version 3.5.0 ", isOptimized: true, emissionKind: 1, file: !1, enums: !2, retainedTypes: !2, subprograms: !3, globals: !2, imports: !2) |
| 54 | !1 = !MDFile(filename: "const.cpp", directory: "/tmp/dbginfo") |
Duncan P. N. Exon Smith | be7ea19 | 2014-12-15 19:07:53 +0000 | [diff] [blame] | 55 | !2 = !{} |
| 56 | !3 = !{!4} |
Duncan P. N. Exon Smith | e274180 | 2015-03-03 17:24:31 +0000 | [diff] [blame] | 57 | !4 = !MDSubprogram(name: "main", line: 4, isLocal: false, isDefinition: true, virtualIndex: 6, flags: DIFlagPrototyped, isOptimized: true, scopeLine: 4, file: !1, scope: !5, type: !6, function: i32 ()* @main, variables: !9) |
| 58 | !5 = !MDFile(filename: "const.cpp", directory: "/tmp/dbginfo") |
| 59 | !6 = !MDSubroutineType(types: !7) |
Duncan P. N. Exon Smith | be7ea19 | 2014-12-15 19:07:53 +0000 | [diff] [blame] | 60 | !7 = !{!8} |
Duncan P. N. Exon Smith | e274180 | 2015-03-03 17:24:31 +0000 | [diff] [blame] | 61 | !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] | 62 | !9 = !{!10, !12, !15} |
Duncan P. N. Exon Smith | e274180 | 2015-03-03 17:24:31 +0000 | [diff] [blame] | 63 | !10 = !MDLocalVariable(tag: DW_TAG_auto_variable, name: "i", line: 5, scope: !4, file: !5, type: !11) |
| 64 | !11 = !MDDerivedType(tag: DW_TAG_const_type, baseType: !8) |
| 65 | !12 = !MDLocalVariable(tag: DW_TAG_auto_variable, name: "j", line: 7, scope: !4, file: !5, type: !13) |
| 66 | !13 = !MDDerivedType(tag: DW_TAG_const_type, baseType: !14) |
| 67 | !14 = !MDBasicType(tag: DW_TAG_base_type, name: "unsigned int", size: 32, align: 32, encoding: DW_ATE_unsigned) |
| 68 | !15 = !MDLocalVariable(tag: DW_TAG_auto_variable, name: "c", line: 9, scope: !4, file: !5, type: !16) |
| 69 | !16 = !MDBasicType(tag: DW_TAG_base_type, name: "char16_t", size: 16, align: 16, encoding: 16) |
Duncan P. N. Exon Smith | be7ea19 | 2014-12-15 19:07:53 +0000 | [diff] [blame] | 70 | !17 = !{i32 2, !"Dwarf Version", i32 4} |
Duncan P. N. Exon Smith | e274180 | 2015-03-03 17:24:31 +0000 | [diff] [blame] | 71 | !18 = !{i32 1, !"Debug Info Version", i32 3} |
Duncan P. N. Exon Smith | be7ea19 | 2014-12-15 19:07:53 +0000 | [diff] [blame] | 72 | !19 = !{!"clang version 3.5.0 "} |
| 73 | !20 = !{i32 42} |
Duncan P. N. Exon Smith | 9885469 | 2015-01-14 22:27:36 +0000 | [diff] [blame] | 74 | !21 = !MDLocation(line: 5, scope: !4) |
| 75 | !22 = !MDLocation(line: 6, scope: !4) |
Duncan P. N. Exon Smith | be7ea19 | 2014-12-15 19:07:53 +0000 | [diff] [blame] | 76 | !23 = !{i32 117} |
Duncan P. N. Exon Smith | 9885469 | 2015-01-14 22:27:36 +0000 | [diff] [blame] | 77 | !24 = !MDLocation(line: 7, scope: !4) |
| 78 | !25 = !MDLocation(line: 8, scope: !4) |
Duncan P. N. Exon Smith | be7ea19 | 2014-12-15 19:07:53 +0000 | [diff] [blame] | 79 | !26 = !{i16 7} |
Duncan P. N. Exon Smith | 9885469 | 2015-01-14 22:27:36 +0000 | [diff] [blame] | 80 | !27 = !MDLocation(line: 9, scope: !4) |
| 81 | !28 = !MDLocation(line: 10, scope: !4) |
| 82 | !29 = !MDLocation(line: 11, scope: !4) |