blob: 8d91c4e39434ccac7e3893b1948e355a8beb9f1d [file] [log] [blame]
David Blaikie36561232013-06-24 06:47:22 +00001; REQUIRES: object-emission
2
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +00003; RUN: %llc_dwarf -O0 -filetype=obj < %s > %t
David Blaikie36561232013-06-24 06:47:22 +00004; RUN: llvm-dwarfdump %t | FileCheck %s
5
6; IR generated from the following code compiled with clang -g:
7; enum e1 { I, J = 0xffffffffU, K = 0xf000000000000000ULL } a;
8; enum e2 { X };
9; void func() {
10; int b = X;
11; }
12
13; These values were previously being truncated to -1 and 0 respectively.
14
15; CHECK: debug_info contents
16; CHECK: DW_TAG_enumeration_type
17; CHECK-NEXT: DW_AT_name{{.*}} = "e1"
18; CHECK-NOT: NULL
19; CHECK: DW_TAG_enumerator
20; CHECK-NOT: NULL
21; CHECK: DW_TAG_enumerator
22; CHECK-NEXT: DW_AT_name{{.*}} = "J"
23; CHECK-NEXT: DW_AT_const_value [DW_FORM_sdata] (4294967295)
24; CHECK-NOT: NULL
25; CHECK: DW_TAG_enumerator
26; CHECK-NEXT: DW_AT_name{{.*}} = "K"
27; CHECK-NEXT: DW_AT_const_value [DW_FORM_sdata] (-1152921504606846976)
28
29; Check that we retain enums that aren't referenced by any variables, etc
30; CHECK: DW_TAG_enumeration_type
31; CHECK-NEXT: DW_AT_name{{.*}} = "e2"
32; CHECK-NOT: NULL
33; CHECK: DW_TAG_enumerator
34; CHECK-NEXT: DW_AT_name{{.*}} = "X"
35
36@a = global i64 0, align 8
37
38; Function Attrs: nounwind uwtable
39define void @_Z4funcv() #0 {
40entry:
41 %b = alloca i32, align 4
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000042 call void @llvm.dbg.declare(metadata i32* %b, metadata !20, metadata !DIExpression()), !dbg !22
David Blaikie36561232013-06-24 06:47:22 +000043 store i32 0, i32* %b, align 4, !dbg !22
44 ret void, !dbg !23
45}
46
47; Function Attrs: nounwind readnone
Adrian Prantl87b7eb92014-10-01 18:55:02 +000048declare void @llvm.dbg.declare(metadata, metadata, metadata) #1
David Blaikie36561232013-06-24 06:47:22 +000049
Bill Wendling187d3dd2013-08-22 21:28:54 +000050attributes #0 = { nounwind uwtable "less-precise-fpmad"="false" "no-frame-pointer-elim"="true" "no-frame-pointer-elim-non-leaf" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "unsafe-fp-math"="false" "use-soft-float"="false" }
David Blaikie36561232013-06-24 06:47:22 +000051attributes #1 = { nounwind readnone }
52
53!llvm.dbg.cu = !{!0}
Manman Ren409558f2013-11-22 21:49:45 +000054!llvm.module.flags = !{!19, !24}
David Blaikie36561232013-06-24 06:47:22 +000055
Duncan P. N. Exon Smith55ca9642015-08-03 17:26:41 +000056!0 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, producer: "clang version 3.4 ", isOptimized: false, emissionKind: 0, file: !1, enums: !2, retainedTypes: !11, subprograms: !12, globals: !17, imports: !11)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000057!1 = !DIFile(filename: "enum.cpp", directory: "/tmp")
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +000058!2 = !{!3, !8}
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000059!3 = !DICompositeType(tag: DW_TAG_enumeration_type, name: "e1", line: 1, size: 64, align: 64, file: !1, elements: !4)
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +000060!4 = !{!5, !6, !7}
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000061!5 = !DIEnumerator(name: "I", value: 0) ; [ DW_TAG_enumerator ] [I :: 0]
62!6 = !DIEnumerator(name: "J", value: 4294967295) ; [ DW_TAG_enumerator ] [J :: 4294967295]
63!7 = !DIEnumerator(name: "K", value: -1152921504606846976) ; [ DW_TAG_enumerator ] [K :: 17293822569102704640]
64!8 = !DICompositeType(tag: DW_TAG_enumeration_type, name: "e2", line: 2, size: 32, align: 32, file: !1, elements: !9)
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +000065!9 = !{!10}
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000066!10 = !DIEnumerator(name: "X", value: 0) ; [ DW_TAG_enumerator ] [X :: 0]
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +000067!11 = !{}
68!12 = !{!13}
Duncan P. N. Exon Smith814b8e92015-08-28 20:26:49 +000069!13 = distinct !DISubprogram(name: "func", linkageName: "_Z4funcv", line: 3, isLocal: false, isDefinition: true, virtualIndex: 6, flags: DIFlagPrototyped, isOptimized: false, scopeLine: 3, file: !1, scope: !14, type: !15, function: void ()* @_Z4funcv, variables: !11)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000070!14 = !DIFile(filename: "enum.cpp", directory: "/tmp")
71!15 = !DISubroutineType(types: !16)
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +000072!16 = !{null}
73!17 = !{!18}
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000074!18 = !DIGlobalVariable(name: "a", line: 1, isLocal: false, isDefinition: true, scope: null, file: !14, type: !3, variable: i64* @a)
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +000075!19 = !{i32 2, !"Dwarf Version", i32 3}
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +000076!20 = !DILocalVariable(name: "b", line: 4, scope: !13, file: !14, type: !21)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000077!21 = !DIBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32, encoding: DW_ATE_signed)
78!22 = !DILocation(line: 4, scope: !13)
79!23 = !DILocation(line: 5, scope: !13)
Duncan P. N. Exon Smithe2741802015-03-03 17:24:31 +000080!24 = !{i32 1, !"Debug Info Version", i32 3}