Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / DebugInfo / Generic / enum-types.ll
blob8af9b21bdaa4240f19dfd82c62f028ca2ac0df07
2 ; RUN: %llc_dwarf -filetype=obj -O0 -dwarf-linkage-names=All < %s | llvm-dwarfdump -v -debug-info - | FileCheck %s
4 ; Make sure we can handle enums with the same identifier but in enum types of
5 ; different compile units.
6 ; rdar://17628609
8 ; CHECK: DW_TAG_compile_unit
9 ; CHECK: 0x[[ENUM:.*]]: DW_TAG_enumeration_type
10 ; CHECK-NEXT:   DW_AT_name {{.*}}"EA"
11 ; CHECK: DW_TAG_subprogram
12 ; CHECK: DW_AT_MIPS_linkage_name {{.*}}"_Z4topA2EA"
13 ; CHECK: DW_TAG_formal_parameter
14 ; CHECK: DW_AT_type [DW_FORM_ref4] (cu + 0x{{.*}} => {0x[[ENUM]]}
16 ; CHECK: DW_TAG_compile_unit
17 ; CHECK: DW_TAG_subprogram
18 ; CHECK:   DW_AT_MIPS_linkage_name {{.*}}"_Z4topB2EA"
19 ; CHECK: DW_TAG_formal_parameter
20 ; CHECK: DW_AT_type [DW_FORM_ref_addr] {{.*}}[[ENUM]]
22 ; Function Attrs: nounwind ssp uwtable
23 define void @_Z4topA2EA(i32 %sa) #0 !dbg !7 {
24 entry:
25   %sa.addr = alloca i32, align 4
26   store i32 %sa, ptr %sa.addr, align 4
27   call void @llvm.dbg.declare(metadata ptr %sa.addr, metadata !22, metadata !DIExpression()), !dbg !23
28   ret void, !dbg !24
31 ; Function Attrs: nounwind readnone
32 declare void @llvm.dbg.declare(metadata, metadata, metadata) #1
34 ; Function Attrs: nounwind ssp uwtable
35 define void @_Z4topB2EA(i32 %sa) #0 !dbg !17 {
36 entry:
37   %sa.addr = alloca i32, align 4
38   store i32 %sa, ptr %sa.addr, align 4
39   call void @llvm.dbg.declare(metadata ptr %sa.addr, metadata !25, metadata !DIExpression()), !dbg !26
40   ret void, !dbg !27
43 attributes #0 = { nounwind ssp uwtable "less-precise-fpmad"="false" "frame-pointer"="all" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" }
44 attributes #1 = { nounwind readnone }
46 !llvm.dbg.cu = !{!0, !12}
47 !llvm.module.flags = !{!19, !20}
48 !llvm.ident = !{!21, !21}
50 !0 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, producer: "clang version 3.5.0 (trunk 214102:214133) (llvm/trunk 214102:214132)", isOptimized: false, emissionKind: FullDebug, file: !1, enums: !2, retainedTypes: !2, globals: !11, imports: !11)
51 !1 = !DIFile(filename: "a.cpp", directory: "")
52 !2 = !{!3}
53 !3 = !DICompositeType(tag: DW_TAG_enumeration_type, name: "EA", line: 1, size: 32, align: 32, file: !1, elements: !4, identifier: "_ZTS2EA")
54 !4 = !{!5}
55 !5 = !DIEnumerator(name: "EA_0", value: 0) ; [ DW_TAG_enumerator ] [EA_0 :: 0]
56 !7 = distinct !DISubprogram(name: "topA", linkageName: "_Z4topA2EA", line: 5, isLocal: false, isDefinition: true, virtualIndex: 6, flags: DIFlagPrototyped, isOptimized: false, unit: !0, scopeLine: 5, file: !1, scope: !8, type: !9, retainedNodes: !11)
57 !8 = !DIFile(filename: "a.cpp", directory: "")
58 !9 = !DISubroutineType(types: !10)
59 !10 = !{null, !3}
60 !11 = !{}
61 !12 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, producer: "clang version 3.5.0 (trunk 214102:214133) (llvm/trunk 214102:214132)", isOptimized: false, emissionKind: FullDebug, file: !13, enums: !14, retainedTypes: !14, globals: !11, imports: !11)
62 !13 = !DIFile(filename: "b.cpp", directory: "")
63 !14 = !{!15}
64 !15 = !DICompositeType(tag: DW_TAG_enumeration_type, name: "EA", line: 1, size: 32, align: 32, file: !13, elements: !4, identifier: "_ZTS2EA")
65 !17 = distinct !DISubprogram(name: "topB", linkageName: "_Z4topB2EA", line: 5, isLocal: false, isDefinition: true, virtualIndex: 6, flags: DIFlagPrototyped, isOptimized: false, unit: !12, scopeLine: 5, file: !13, scope: !18, type: !9, retainedNodes: !11)
66 !18 = !DIFile(filename: "b.cpp", directory: "")
67 !19 = !{i32 2, !"Dwarf Version", i32 3}
68 !20 = !{i32 2, !"Debug Info Version", i32 3}
69 !21 = !{!"clang version 3.5.0 (trunk 214102:214133) (llvm/trunk 214102:214132)"}
70 !22 = !DILocalVariable(name: "sa", line: 5, arg: 1, scope: !7, file: !8, type: !3)
71 !23 = !DILocation(line: 5, column: 14, scope: !7)
72 !24 = !DILocation(line: 6, column: 1, scope: !7)
73 !25 = !DILocalVariable(name: "sa", line: 5, arg: 1, scope: !17, file: !18, type: !3)
74 !26 = !DILocation(line: 5, column: 14, scope: !17)
75 !27 = !DILocation(line: 6, column: 1, scope: !17)