Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / DebugInfo / X86 / sroasplit-5.ll
blobd9dab2cad79525638d0a577ff1cbc680ea7ce9ec
1 ; RUN: opt %s -passes='sroa,verify' -S -o - | FileCheck %s
2 ; From:
3 ; struct prog_src_register {
4 ;   unsigned : 4;
5 ;   int Index : 12 + 1;
6 ;   unsigned : 12;
7 ;   unsigned : 4;
8 ;   int : 12 + 1
9 ; } src_reg_for_float() {
10 ;   struct prog_src_register a;
11 ;   memset(&a, 0, sizeof(a));
12 ;   int local = a.Index;
13 ;   return a;
14 ; }
15 ; ModuleID = 'pr22495.c'
16 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
17 target triple = "x86_64-unknown-linux-gnu"
19 ; When SROA is creating new smaller allocas, it may add padding.
21 ; There should be no debug info for the padding.
22 ; CHECK-NOT: DW_OP_LLVM_fragment, 56
23 ; CHECK: DIExpression(DW_OP_LLVM_fragment, 0, 32)
24 ; CHECK-NOT: DW_OP_LLVM_fragment, 56
25 ; CHECK: DIExpression(DW_OP_LLVM_fragment, 32, 24)
26 ; CHECK-NOT: DW_OP_LLVM_fragment, 56
27 %struct.prog_src_register = type { i32, i24 }
29 ; Function Attrs: nounwind
30 define i64 @src_reg_for_float() #0 !dbg !4 {
31 entry:
32   %retval = alloca %struct.prog_src_register, align 4
33   %a = alloca %struct.prog_src_register, align 4
34   %local = alloca i32, align 4
35   call void @llvm.dbg.declare(metadata ptr %a, metadata !16, metadata !17), !dbg !18
36   call void @llvm.memset.p0.i64(ptr align 4 %a, i8 0, i64 8, i1 false), !dbg !19
37   call void @llvm.dbg.declare(metadata ptr %local, metadata !20, metadata !17), !dbg !21
38   %bf.load = load i32, ptr %a, align 4, !dbg !21
39   %bf.shl = shl i32 %bf.load, 15, !dbg !21
40   %bf.ashr = ashr i32 %bf.shl, 19, !dbg !21
41   store i32 %bf.ashr, ptr %local, align 4, !dbg !21
42   call void @llvm.memcpy.p0.p0.i64(ptr align 4 %retval, ptr align 4 %a, i64 8, i1 false), !dbg !22
43   %0 = load i64, ptr %retval, align 1, !dbg !22
44   ret i64 %0, !dbg !22
47 ; Function Attrs: nounwind readnone
48 declare void @llvm.dbg.declare(metadata, metadata, metadata) #1
50 ; Function Attrs: nounwind
51 declare void @llvm.memset.p0.i64(ptr nocapture, i8, i64, i1) #2
53 ; Function Attrs: nounwind
54 declare void @llvm.memcpy.p0.p0.i64(ptr nocapture, ptr nocapture readonly, i64, i1) #2
56 attributes #0 = { nounwind }
57 attributes #1 = { nounwind readnone }
58 attributes #2 = { nounwind }
60 !llvm.dbg.cu = !{!0}
61 !llvm.module.flags = !{!13, !14}
62 !llvm.ident = !{!15}
64 !0 = distinct !DICompileUnit(language: DW_LANG_C99, producer: "clang version 3.7.0 ", isOptimized: false, emissionKind: FullDebug, file: !1, enums: !2, retainedTypes: !2, globals: !2, imports: !2)
65 !1 = !DIFile(filename: "<stdin>", directory: "")
66 !2 = !{}
67 !4 = distinct !DISubprogram(name: "src_reg_for_float", line: 7, isLocal: false, isDefinition: true, isOptimized: false, unit: !0, scopeLine: 7, file: !5, scope: !6, type: !7, retainedNodes: !2)
68 !5 = !DIFile(filename: "pr22495.c", directory: "")
69 !6 = !DIFile(filename: "pr22495.c", directory: "")
70 !7 = !DISubroutineType(types: !8)
71 !8 = !{!9}
72 !9 = !DICompositeType(tag: DW_TAG_structure_type, name: "prog_src_register", line: 1, size: 64, align: 32, file: !5, elements: !10)
73 !10 = !{!11}
74 !11 = !DIDerivedType(tag: DW_TAG_member, name: "Index", line: 3, size: 13, align: 32, offset: 4, file: !5, scope: !9, baseType: !12)
75 !12 = !DIBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32, encoding: DW_ATE_signed)
76 !13 = !{i32 2, !"Dwarf Version", i32 4}
77 !14 = !{i32 2, !"Debug Info Version", i32 3}
78 !15 = !{!"clang version 3.7.0 "}
79 !16 = !DILocalVariable(name: "a", line: 8, scope: !4, file: !6, type: !9)
80 !17 = !DIExpression()
81 !18 = !DILocation(line: 8, scope: !4)
82 !19 = !DILocation(line: 9, scope: !4)
83 !20 = !DILocalVariable(name: "local", line: 10, scope: !4, file: !6, type: !12)
84 !21 = !DILocation(line: 10, scope: !4)
85 !22 = !DILocation(line: 11, scope: !4)