BPSectionOrderer: stabilize iteration order and node order
[llvm-project.git] / llvm / test / DebugInfo / X86 / basic-block-sections-debug-loclist-8.ll
blobd1af3c2c3ef3e688ab6f02fd5acc96164ab974e6
1 ; RUN: llc %s -mtriple=x86_64-unknown-linux-gnu --dwarf-version=4 --basic-block-sections=none -filetype=obj -o - | llvm-dwarfdump - | FileCheck %s
2 ; RUN: llc %s -mtriple=x86_64-unknown-linux-gnu --dwarf-version=4 --basic-block-sections=all -filetype=obj -o - | llvm-dwarfdump - | FileCheck  %s
3 ; RUN: llc %s -mtriple=x86_64-unknown-linux-gnu --dwarf-version=5 --basic-block-sections=none -filetype=obj -o - | llvm-dwarfdump - | FileCheck %s
4 ; RUN: llc %s -mtriple=x86_64-unknown-linux-gnu --dwarf-version=5 --basic-block-sections=all -filetype=obj -o - | llvm-dwarfdump - | FileCheck  %s
6 ; CHECK:      DW_TAG_variable
7 ; CHECK:      DW_TAG_variable
8 ; CHECK-NEXT: DW_AT_location
9 ; CHECK-NEXT: DW_OP_consts +0, DW_OP_stack_value
10 ; CHECK-NEXT: DW_OP_consts +7, DW_OP_stack_value
11 ; CHECK-NEXT: DW_OP_consts +8, DW_OP_stack_value
12 ; CHECK: DW_AT_name  ("i")
14 ; void f1(int *);
15 ; void f2(int);
16 ; extern bool b;
17 ; int test() {
18 ;     // i is not a const throughout the whole scope and
19 ;     // should *not* use DW_AT_const_value.
20 ;     int i = 0;
21 ;     int j = 10;
22 ;     {
23 ;       i = 7;
24 ;       f1(&j);
25 ;    }
26 ;     i = 8;
27 ;     f2(i);
28 ;     return j;
29 ; }
30 ; clang++ -S scoped_section.cc -g -O2 -emit-llvm
32 ; Function Attrs: mustprogress uwtable
33 define dso_local noundef i32 @_Z4testv() local_unnamed_addr #0 !dbg !10 {
34 entry:
35   %j = alloca i32, align 4, !DIAssignID !17
36     #dbg_assign(i1 undef, !16, !DIExpression(), !17, ptr %j, !DIExpression(), !18)
37     #dbg_value(i32 0, !15, !DIExpression(), !18)
38   call void @llvm.lifetime.start.p0(i64 4, ptr nonnull %j) #3, !dbg !19
39   store i32 10, ptr %j, align 4, !dbg !20, !tbaa !21, !DIAssignID !25
40     #dbg_assign(i32 10, !16, !DIExpression(), !25, ptr %j, !DIExpression(), !18)
41     #dbg_value(i32 7, !15, !DIExpression(), !18)
42   call void @_Z2f1Pi(ptr noundef nonnull %j), !dbg !26
43     #dbg_value(i32 8, !15, !DIExpression(), !18)
44   call void @_Z2f2i(i32 noundef 8), !dbg !28
45   %0 = load i32, ptr %j, align 4, !dbg !29, !tbaa !21
46   call void @llvm.lifetime.end.p0(i64 4, ptr nonnull %j) #3, !dbg !30
47   ret i32 %0, !dbg !31
50 ; Function Attrs: mustprogress nocallback nofree nosync nounwind willreturn memory(argmem: readwrite)
51 declare void @llvm.lifetime.start.p0(i64 immarg, ptr nocapture) #1
53 declare !dbg !32 void @_Z2f1Pi(ptr noundef) local_unnamed_addr #2
55 declare !dbg !36 void @_Z2f2i(i32 noundef) local_unnamed_addr #2
57 ; Function Attrs: mustprogress nocallback nofree nosync nounwind willreturn memory(argmem: readwrite)
58 declare void @llvm.lifetime.end.p0(i64 immarg, ptr nocapture) #1
60 attributes #0 = { mustprogress uwtable "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" }
61 attributes #1 = { mustprogress nocallback nofree nosync nounwind willreturn memory(argmem: readwrite) }
62 attributes #2 = { "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" }
63 attributes #3 = { nounwind }
65 !llvm.dbg.cu = !{!0}
66 !llvm.module.flags = !{!2, !3, !4, !5, !6, !7, !8}
67 !llvm.ident = !{!9}
69 !0 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus_14, file: !1, producer: "clang version 20.0.0git (git@github.com:tmsri/llvm-project.git 11a50269e82b6dce49249c5cbe3a989b06f0848f)", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, splitDebugInlining: false, nameTableKind: None)
70 !1 = !DIFile(filename: "scoped_section.cc", directory: "", checksumkind: CSK_MD5, checksum: "2d5675e292541e4f04eb60edf76b14d6")
71 !2 = !{i32 7, !"Dwarf Version", i32 5}
72 !3 = !{i32 2, !"Debug Info Version", i32 3}
73 !4 = !{i32 1, !"wchar_size", i32 4}
74 !5 = !{i32 8, !"PIC Level", i32 2}
75 !6 = !{i32 7, !"PIE Level", i32 2}
76 !7 = !{i32 7, !"uwtable", i32 2}
77 !8 = !{i32 7, !"debug-info-assignment-tracking", i1 true}
78 !9 = !{!"clang version 20.0.0git (git@github.com:tmsri/llvm-project.git 11a50269e82b6dce49249c5cbe3a989b06f0848f)"}
79 !10 = distinct !DISubprogram(name: "test", linkageName: "_Z4testv", scope: !1, file: !1, line: 4, type: !11, scopeLine: 4, flags: DIFlagPrototyped | DIFlagAllCallsDescribed, spFlags: DISPFlagDefinition | DISPFlagOptimized, unit: !0, retainedNodes: !14)
80 !11 = !DISubroutineType(types: !12)
81 !12 = !{!13}
82 !13 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
83 !14 = !{!15, !16}
84 !15 = !DILocalVariable(name: "i", scope: !10, file: !1, line: 7, type: !13)
85 !16 = !DILocalVariable(name: "j", scope: !10, file: !1, line: 8, type: !13)
86 !17 = distinct !DIAssignID()
87 !18 = !DILocation(line: 0, scope: !10)
88 !19 = !DILocation(line: 8, column: 5, scope: !10)
89 !20 = !DILocation(line: 8, column: 9, scope: !10)
90 !21 = !{!22, !22, i64 0}
91 !22 = !{!"int", !23, i64 0}
92 !23 = !{!"omnipotent char", !24, i64 0}
93 !24 = !{!"Simple C++ TBAA"}
94 !25 = distinct !DIAssignID()
95 !26 = !DILocation(line: 11, column: 7, scope: !27)
96 !27 = distinct !DILexicalBlock(scope: !10, file: !1, line: 9, column: 5)
97 !28 = !DILocation(line: 14, column: 5, scope: !10)
98 !29 = !DILocation(line: 15, column: 12, scope: !10)
99 !30 = !DILocation(line: 16, column: 1, scope: !10)
100 !31 = !DILocation(line: 15, column: 5, scope: !10)
101 !32 = !DISubprogram(name: "f1", linkageName: "_Z2f1Pi", scope: !1, file: !1, line: 1, type: !33, flags: DIFlagPrototyped, spFlags: DISPFlagOptimized)
102 !33 = !DISubroutineType(types: !34)
103 !34 = !{null, !35}
104 !35 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !13, size: 64)
105 !36 = !DISubprogram(name: "f2", linkageName: "_Z2f2i", scope: !1, file: !1, line: 2, type: !37, flags: DIFlagPrototyped, spFlags: DISPFlagOptimized)
106 !37 = !DISubroutineType(types: !38)
107 !38 = !{null, !13}