Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / CodeGen / Generic / MIRStripDebug / multiple-moduleflags.mir
blob9240c1a56eb9b62b5e73db1f4db11280843b46f2
1 # RUN: llc -run-pass=mir-strip-debug -o - %s | FileCheck %s
2 # RUN: llc -run-pass=mir-strip-debug,mir-debugify,mir-strip-debug -o - %s | FileCheck %s
3 --- |
4   ; ModuleID = 'loc-only.ll'
5   source_filename = "loc-only.ll"
6   
7   define i32 @test(i32 %a, i32 %b) !dbg !6 {
8     %add = add i32 %a, 2, !dbg !12
9     call void @llvm.dbg.value(metadata i32 %add, metadata !9, metadata !DIExpression()), !dbg !12
10     %sub = sub i32 %add, %b, !dbg !13
11     call void @llvm.dbg.value(metadata i32 %sub, metadata !11, metadata !DIExpression()), !dbg !13
12     ret i32 %sub, !dbg !14
13   }
14   ; CHECK-LABEL: define i32 @test(i32 %a, i32 %b) {{(addrspace\([0-9]+\) )?}}{
15   ; CHECK-NEXT:    %add = add i32 %a, 2
16   ; CHECK-NEXT:    %sub = sub i32 %add, %b
17   ; CHECK-NEXT:    ret i32 %sub
18   ; CHECK-NEXT:  }
19   
20   ; Function Attrs: nounwind readnone speculatable willreturn
21   declare void @llvm.dbg.value(metadata, metadata, metadata) #0
22   
23   ; Function Attrs: nounwind
24   declare void @llvm.stackprotector(ptr, ptr) #1
25   
26   attributes #0 = { nounwind readnone speculatable willreturn }
27   attributes #1 = { nounwind }
28   
29   !llvm.dbg.cu = !{!0}
30   ; CHECK-NOT: !llvm.dbg.cu
31   !llvm.debugify = !{!3, !4}
32   ; CHECK-NOT: !llvm.debugify
33   !llvm.module.flags = !{!5, !15}
34   ; CHECK: !llvm.module.flags = !{!0}
35   ; CHECK: !0 = !{i32 2, !"Another Flag", i32 3}
36   
37   ; CHECK-NOT: !DI
38   !0 = distinct !DICompileUnit(language: DW_LANG_C, file: !1, producer: "debugify", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2)
39   !1 = !DIFile(filename: "<stdin>", directory: "/")
40   !2 = !{}
41   !3 = !{i32 3}
42   !4 = !{i32 2}
43   !5 = !{i32 2, !"Debug Info Version", i32 3}
44   !6 = distinct !DISubprogram(name: "test", linkageName: "test", scope: null, file: !1, line: 1, type: !7, scopeLine: 1, spFlags: DISPFlagDefinition | DISPFlagOptimized, unit: !0, retainedNodes: !8)
45   !7 = !DISubroutineType(types: !2)
46   !8 = !{!9, !11}
47   !9 = !DILocalVariable(name: "1", scope: !6, file: !1, line: 1, type: !10)
48   !10 = !DIBasicType(name: "ty32", size: 32, encoding: DW_ATE_unsigned)
49   !11 = !DILocalVariable(name: "2", scope: !6, file: !1, line: 2, type: !10)
50   !12 = !DILocation(line: 1, column: 1, scope: !6)
51   !13 = !DILocation(line: 2, column: 1, scope: !6)
52   !14 = !DILocation(line: 3, column: 1, scope: !6)
53   !15 = !{i32 2, !"Another Flag", i32 3}
55 ...
56 ---
57 name:            test
58 body:             |
59   bb.1 (%ir-block.0):
60     %0:_(s32) = G_IMPLICIT_DEF
61     %1:_(s32) = G_IMPLICIT_DEF
62     %2:_(s32) = G_CONSTANT i32 2, debug-location !DILocation(line: 0, scope: !6)
63     %3:_(s32) = G_ADD %0, %2, debug-location !12
64     DBG_VALUE %3(s32), $noreg, !9, !DIExpression(), debug-location !12
65     %4:_(s32) = G_SUB %3, %1, debug-location !13
66     DBG_VALUE %4(s32), $noreg, !11, !DIExpression(), debug-location !13
68     ; CHECK-LABEL: body:
69     ; CHECK-NEXT:    bb
70     ; CHECK-NEXT:      %0:_(s32) = G_IMPLICIT_DEF{{$}}
71     ; CHECK-NEXT:      %1:_(s32) = G_IMPLICIT_DEF{{$}}
72     ; CHECK-NEXT:      %2:_(s32) = G_CONSTANT i32 2{{$}}
73     ; CHECK-NEXT:      %3:_(s32) = G_ADD %0, %2{{$}}
74     ; CHECK-NEXT:      %4:_(s32) = G_SUB %3, %1{{$}}
75 ...