blob: 2bee2a940326136d7dc58ff0ef42b7a09f68f787 [file] [log] [blame]
David Blaikie866c87f2014-05-11 17:25:50 +00001; 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 Blaikiec405c9c2014-05-16 21:53:09 +00006; Test compiled to IR from clang with -O1 and the following source:
David Blaikie866c87f2014-05-11 17:25:50 +00007
8; void func(int);
9; void func(unsigned);
David Blaikiec405c9c2014-05-16 21:53:09 +000010; void func(char16_t);
David Blaikie866c87f2014-05-11 17:25:50 +000011; int main() {
12; const int i = 42;
13; func(i);
14; const unsigned j = 117;
15; func(j);
David Blaikiec405c9c2014-05-16 21:53:09 +000016; char16_t c = 7;
17; func(c);
David Blaikie866c87f2014-05-11 17:25:50 +000018; }
19
20; CHECK: DW_AT_const_value [DW_FORM_sdata] (42)
21; CHECK: DW_AT_const_value [DW_FORM_udata] (117)
David Blaikiec405c9c2014-05-16 21:53:09 +000022; CHECK: DW_AT_const_value [DW_FORM_udata] (7)
David Blaikie866c87f2014-05-11 17:25:50 +000023
24; Function Attrs: uwtable
Peter Collingbourned4bff302015-11-05 22:03:56 +000025define i32 @main() #0 !dbg !4 {
David Blaikie866c87f2014-05-11 17:25:50 +000026entry:
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000027 tail call void @llvm.dbg.value(metadata i32 42, i64 0, metadata !10, metadata !DIExpression()), !dbg !21
David Blaikiec405c9c2014-05-16 21:53:09 +000028 tail call void @_Z4funci(i32 42), !dbg !22
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000029 tail call void @llvm.dbg.value(metadata i32 117, i64 0, metadata !12, metadata !DIExpression()), !dbg !24
David Blaikiec405c9c2014-05-16 21:53:09 +000030 tail call void @_Z4funcj(i32 117), !dbg !25
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000031 tail call void @llvm.dbg.value(metadata i16 7, i64 0, metadata !15, metadata !DIExpression()), !dbg !27
David Blaikiec405c9c2014-05-16 21:53:09 +000032 tail call void @_Z4funcDs(i16 zeroext 7), !dbg !28
33 ret i32 0, !dbg !29
David Blaikie866c87f2014-05-11 17:25:50 +000034}
35
36declare void @_Z4funci(i32) #1
37
38declare void @_Z4funcj(i32) #1
39
David Blaikiec405c9c2014-05-16 21:53:09 +000040declare void @_Z4funcDs(i16 zeroext) #1
41
David Blaikie866c87f2014-05-11 17:25:50 +000042; Function Attrs: nounwind readnone
Adrian Prantl87b7eb92014-10-01 18:55:02 +000043declare void @llvm.dbg.value(metadata, i64, metadata, metadata) #2
David Blaikie866c87f2014-05-11 17:25:50 +000044
45attributes #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" }
46attributes #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" }
47attributes #2 = { nounwind readnone }
48
49!llvm.dbg.cu = !{!0}
David Blaikiec405c9c2014-05-16 21:53:09 +000050!llvm.module.flags = !{!17, !18}
51!llvm.ident = !{!19}
David Blaikie866c87f2014-05-11 17:25:50 +000052
Adrian Prantl75819ae2016-04-15 15:57:41 +000053!0 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, producer: "clang version 3.5.0 ", isOptimized: true, emissionKind: FullDebug, file: !1, enums: !2, retainedTypes: !2, globals: !2, imports: !2)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000054!1 = !DIFile(filename: "const.cpp", directory: "/tmp/dbginfo")
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +000055!2 = !{}
Adrian Prantl75819ae2016-04-15 15:57:41 +000056!4 = distinct !DISubprogram(name: "main", line: 4, isLocal: false, isDefinition: true, virtualIndex: 6, flags: DIFlagPrototyped, isOptimized: true, unit: !0, scopeLine: 4, file: !1, scope: !5, type: !6, variables: !9)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000057!5 = !DIFile(filename: "const.cpp", directory: "/tmp/dbginfo")
58!6 = !DISubroutineType(types: !7)
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +000059!7 = !{!8}
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000060!8 = !DIBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32, encoding: DW_ATE_signed)
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +000061!9 = !{!10, !12, !15}
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +000062!10 = !DILocalVariable(name: "i", line: 5, scope: !4, file: !5, type: !11)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000063!11 = !DIDerivedType(tag: DW_TAG_const_type, baseType: !8)
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +000064!12 = !DILocalVariable(name: "j", line: 7, scope: !4, file: !5, type: !13)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000065!13 = !DIDerivedType(tag: DW_TAG_const_type, baseType: !14)
66!14 = !DIBasicType(tag: DW_TAG_base_type, name: "unsigned int", size: 32, align: 32, encoding: DW_ATE_unsigned)
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +000067!15 = !DILocalVariable(name: "c", line: 9, scope: !4, file: !5, type: !16)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000068!16 = !DIBasicType(tag: DW_TAG_base_type, name: "char16_t", size: 16, align: 16, encoding: 16)
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +000069!17 = !{i32 2, !"Dwarf Version", i32 4}
Duncan P. N. Exon Smithe2741802015-03-03 17:24:31 +000070!18 = !{i32 1, !"Debug Info Version", i32 3}
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +000071!19 = !{!"clang version 3.5.0 "}
72!20 = !{i32 42}
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000073!21 = !DILocation(line: 5, scope: !4)
74!22 = !DILocation(line: 6, scope: !4)
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +000075!23 = !{i32 117}
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000076!24 = !DILocation(line: 7, scope: !4)
77!25 = !DILocation(line: 8, scope: !4)
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +000078!26 = !{i16 7}
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000079!27 = !DILocation(line: 9, scope: !4)
80!28 = !DILocation(line: 10, scope: !4)
81!29 = !DILocation(line: 11, scope: !4)