Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / DebugInfo / Generic / discriminated-union.ll
blob0acf478f653ae32a85c18344ac709d9af3ab1771
1 ; RUN: %llc_dwarf -O0 -filetype=obj < %s > %t
2 ; RUN: llvm-dwarfdump -v -debug-info %t | FileCheck %s
4 ; Check for a variant part that has two members, one of which has a
5 ; discriminant value.
7 ; CHECK: DW_TAG_variant_part
8 ;   CHECK-NOT: TAG
9 ;     CHECK: DW_AT_discr [DW_FORM_ref4] (cu + {{0x[0-9a-fA-F]+}} => {[[OFFSET:0x[0-9a-fA-F]+]]})
10 ;     CHECK-NOT: TAG
11 ;     CHECK: [[OFFSET]]: DW_TAG_member
12 ;       CHECK: DW_AT_type
13 ;       CHECK: DW_AT_alignment
14 ;       CHECK: DW_AT_data_member_location [DW_FORM_data1]       (0x00)
15 ;       CHECK: DW_AT_artificial [DW_FORM_flag_present]  (true)
16 ;     CHECK: DW_TAG_variant
17 ;       CHECK: DW_TAG_member
18 ;         CHECK: DW_AT_type
19 ;         CHECK: DW_AT_alignment
20 ;         CHECK: DW_AT_data_member_location [DW_FORM_data1]     (0x00)
21 ;     CHECK: DW_TAG_variant
22 ;       CHECK: DW_AT_discr_value [DW_FORM_data1]        (0x00)
23 ;       CHECK: DW_TAG_member
24 ;         CHECK: DW_AT_type
25 ;         CHECK: DW_AT_alignment
26 ;         CHECK: DW_AT_data_member_location [DW_FORM_data1]     (0x00)
28 %F = type { [0 x i8], ptr, [8 x i8] }
29 %"F::Nope" = type {}
31 define internal void @_ZN2e34main17h934ff72f9a38d4bbE() unnamed_addr #0 !dbg !5 {
32 start:
33   %qq = alloca %F, align 8
34   call void @llvm.dbg.declare(metadata ptr %qq, metadata !10, metadata !28), !dbg !29
35   store ptr null, ptr %qq, !dbg !29
36   ret void, !dbg !30
39 ; Function Attrs: nounwind readnone
40 declare void @llvm.dbg.declare(metadata, metadata, metadata) #0
42 attributes #0 = { nounwind uwtable }
44 !llvm.module.flags = !{!0, !1}
45 !llvm.dbg.cu = !{!2}
47 !0 = !{i32 1, !"PIE Level", i32 2}
48 !1 = !{i32 2, !"Debug Info Version", i32 3}
49 !2 = distinct !DICompileUnit(language: DW_LANG_Rust, file: !3, producer: "clang LLVM (rustc version 1.24.0-dev)", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !4)
50 !3 = !DIFile(filename: "e3.rs", directory: "/home/tromey/Rust")
51 !4 = !{}
52 !5 = distinct !DISubprogram(name: "main", linkageName: "_ZN2e34mainE", scope: !6, file: !3, line: 2, type: !8, scopeLine: 2, flags: DIFlagPrototyped, spFlags: DISPFlagLocalToUnit | DISPFlagDefinition | DISPFlagMainSubprogram, isOptimized: false, unit: !2, templateParams: !4, retainedNodes: !4)
53 !6 = !DINamespace(name: "e3", scope: null)
54 !7 = !DIFile(filename: "<unknown>", directory: "")
55 !8 = !DISubroutineType(types: !9)
56 !9 = !{null}
57 !10 = !DILocalVariable(name: "qq", scope: !11, file: !3, line: 3, type: !12, align: 8)
58 !11 = distinct !DILexicalBlock(scope: !5, file: !3, line: 3, column: 4)
59 !12 = !DICompositeType(tag: DW_TAG_structure_type, name: "F", scope: !6, file: !7, size: 128, align: 64, elements: !13, identifier: "7ce1efff6b82281ab9ceb730566e7e20")
60 !13 = !{!14}
61 !14 = !DICompositeType(tag: DW_TAG_variant_part, name: "", scope: !12, file: !7, size: 128, align: 64, elements: !16, identifier: "7ce1efff6b82281ab9ceb730566e7e20", discriminator: !15)
62 !15 = !DIDerivedType(tag: DW_TAG_member, scope: !14, file: !7, baseType: !27, size: 64, align: 64, flags: DIFlagArtificial)
63 !16 = !{!17, !24}
64 !17 = !DIDerivedType(tag: DW_TAG_member, scope: !14, file: !7, baseType: !18, size: 128, align: 64)
65 !18 = !DICompositeType(tag: DW_TAG_structure_type, name: "Yep", scope: !12, file: !7, size: 128, align: 64, elements: !19, identifier: "7ce1efff6b82281ab9ceb730566e7e20::Yep")
66 !19 = !{!20, !22}
67 !20 = !DIDerivedType(tag: DW_TAG_member, name: "__0", scope: !18, file: !7, baseType: !21, size: 8, align: 8, offset: 64)
68 !21 = !DIBasicType(name: "u8", size: 8, encoding: DW_ATE_unsigned)
69 !22 = !DIDerivedType(tag: DW_TAG_member, name: "__1", scope: !18, file: !7, baseType: !23, size: 64, align: 64)
70 !23 = !DIDerivedType(tag: DW_TAG_pointer_type, name: "&u8", baseType: !21, size: 64, align: 64)
71 !24 = !DIDerivedType(tag: DW_TAG_member, scope: !14, file: !7, baseType: !25, size: 128, align: 64, extraData: i64 0)
72 !25 = !DICompositeType(tag: DW_TAG_structure_type, name: "Nope", scope: !12, file: !7, size: 128, align: 64, elements: !4, identifier: "7ce1efff6b82281ab9ceb730566e7e20::Nope")
73 !27 = !DIBasicType(name: "u64", size: 64, encoding: DW_ATE_unsigned)
74 !28 = !DIExpression()
75 !29 = !DILocation(line: 3, scope: !11)
76 !30 = !DILocation(line: 4, scope: !5)