[sanitizer] Improve FreeBSD ASLR detection
[llvm-project.git] / llvm / test / Transforms / GlobalOpt / deadglobal-diarglist-use.ll
blob635030e608d5168ed2622caf4f0abe92b66ad552
1 ; RUN: opt < %s -passes=globalopt -S | llvm-as | llvm-dis | FileCheck %s
3 ; The %struct.S type would not get emitted after @s was removed, resulting in
4 ; llvm-as failing to parse the dbg.value intrinsic using that type. The
5 ; FileCheck checks are just added to verify that the desired transformation is
6 ; done.
8 ; CHECK-NOT: @s
9 ; CHECK: %struct.S = type { i32 }
10 ; CHECK-NOT: @s
12 ; CHECK: call void @llvm.dbg.value(metadata !DIArgList([1 x %struct.S]* undef
14 %struct.S = type { i32 }
16 @s = internal global [1 x %struct.S] zeroinitializer, align 4, !dbg !0
17 @idx = dso_local global i32 0, align 4, !dbg !6
19 define dso_local void @fn() !dbg !20 {
20 entry:
21   %0 = load i32, i32* @idx, align 4, !dbg !26
22   %idxprom = sext i32 %0 to i64, !dbg !26
23   call void @llvm.dbg.value(metadata !DIArgList([1 x %struct.S]* @s, i64 %idxprom), metadata !24, metadata !DIExpression(DW_OP_LLVM_arg, 0, DW_OP_LLVM_arg, 1, DW_OP_constu, 4, DW_OP_mul, DW_OP_plus, DW_OP_stack_value)), !dbg !26
24   ret void, !dbg !26
27 declare void @llvm.dbg.value(metadata, metadata, metadata)
29 !llvm.dbg.cu = !{!2}
30 !llvm.module.flags = !{!15, !16, !17, !18}
31 !llvm.ident = !{!19}
33 !0 = !DIGlobalVariableExpression(var: !1, expr: !DIExpression())
34 !1 = distinct !DIGlobalVariable(name: "s", scope: !2, file: !3, line: 1, type: !9, isLocal: true, isDefinition: true)
35 !2 = distinct !DICompileUnit(language: DW_LANG_C99, file: !3, producer: "clang version 13.0.0", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !4, globals: !5, splitDebugInlining: false, nameTableKind: None)
36 !3 = !DIFile(filename: "foo.c", directory: "/")
37 !4 = !{}
38 !5 = !{!0, !6}
39 !6 = !DIGlobalVariableExpression(var: !7, expr: !DIExpression())
40 !7 = distinct !DIGlobalVariable(name: "idx", scope: !2, file: !3, line: 2, type: !8, isLocal: false, isDefinition: true)
41 !8 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
42 !9 = !DICompositeType(tag: DW_TAG_array_type, baseType: !10, size: 32, elements: !13)
43 !10 = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "S", file: !3, line: 1, size: 32, elements: !11)
44 !11 = !{!12}
45 !12 = !DIDerivedType(tag: DW_TAG_member, name: "data", scope: !10, file: !3, line: 1, baseType: !8, size: 32)
46 !13 = !{!14}
47 !14 = !DISubrange(count: 1)
48 !15 = !{i32 7, !"Dwarf Version", i32 4}
49 !16 = !{i32 2, !"Debug Info Version", i32 3}
50 !17 = !{i32 1, !"wchar_size", i32 4}
51 !18 = !{i32 7, !"uwtable", i32 1}
52 !19 = !{!"clang version 13.0.0"}
53 !20 = distinct !DISubprogram(name: "fn", scope: !3, file: !3, line: 4, type: !21, scopeLine: 4, flags: DIFlagPrototyped | DIFlagAllCallsDescribed, spFlags: DISPFlagDefinition | DISPFlagOptimized, unit: !2, retainedNodes: !23)
54 !21 = !DISubroutineType(types: !22)
55 !22 = !{null}
56 !23 = !{!24}
57 !24 = !DILocalVariable(name: "local", scope: !20, file: !3, line: 5, type: !25)
58 !25 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !10, size: 64)
59 !26 = !DILocation(line: 5, scope: !20)