[ELF] Avoid make in elf::writeARMCmseImportLib
[llvm-project.git] / llvm / test / CodeGen / AArch64 / dbg-assign-tag-offset-mix-loc.ll
blobd9d0d982fd9e89e9ece6f98a93cf5c7236664d06
1 ; RUN: llc -filetype=obj -o - %s | llvm-dwarfdump - | FileCheck %s
2 ; RUN: llc --try-experimental-debuginfo-iterators -filetype=obj -o - %s | llvm-dwarfdump - | FileCheck %s
4 ;; Similar to dbg-assign-tag-offset.ll except the variable 'x' has been removed
5 ;; and 'y' has an implicit location range as well as stack location range
6 ;; (according to the hand-modified debug info -- see the dbg.value).
8 target datalayout = "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128"
9 target triple = "aarch64-unknown-linux-android24"
11 ; CHECK:      DW_TAG_variable
12 ; CHECK-NOT:  DW_TAG
13 ; CHECK:        DW_AT_LLVM_tag_offset (0x80)
14 ; CHECK-NEXT:   DW_AT_name    ("y")
16 define dso_local void @f() !dbg !14 {
17   %1 = alloca i32, align 4, !DIAssignID !31
18   %2 = alloca i32, align 4, !DIAssignID !32
19   call void @llvm.dbg.assign(metadata i1 undef, metadata !20, metadata !DIExpression(), metadata !32, metadata ptr %2, metadata !DIExpression(DW_OP_LLVM_tag_offset, 128)), !dbg !22
20   call void @llvm.dbg.value(metadata i32 2, metadata !20, metadata !DIExpression()), !dbg !22
21   call void @use(ptr null), !dbg !28
22   store i32 1, ptr %2, align 4, !dbg !23, !tbaa !24, !DIAssignID !33
23   call void @llvm.dbg.assign(metadata i32 1, metadata !20, metadata !DIExpression(), metadata !33, metadata ptr %2, metadata !DIExpression(DW_OP_LLVM_tag_offset, 128)), !dbg !22
24   call void @use(ptr nonnull %1), !dbg !28
25   call void @use(ptr nonnull %2), !dbg !29
26   ret void, !dbg !30
29 declare !dbg !5 void @use(ptr)
31 declare void @llvm.dbg.value(metadata, metadata, metadata)
32 declare void @llvm.dbg.assign(metadata, metadata, metadata, metadata, metadata, metadata)
34 !llvm.dbg.cu = !{!0}
35 !llvm.module.flags = !{!8, !9, !10, !11, !12, !34}
36 !llvm.ident = !{!13}
38 !0 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus_14, file: !1, producer: "clang version 10.0.0", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2, retainedTypes: !3, nameTableKind: None)
39 !1 = !DIFile(filename: "dbg.cc", directory: "/tmp")
40 !2 = !{}
41 !3 = !{!4, !5}
42 !4 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: null, size: 64)
43 !5 = !DISubprogram(name: "use", scope: !1, file: !1, line: 2, type: !6, flags: DIFlagPrototyped, spFlags: DISPFlagOptimized, retainedNodes: !2)
44 !6 = !DISubroutineType(types: !7)
45 !7 = !{null, !4}
46 !8 = !{i32 7, !"Dwarf Version", i32 4}
47 !9 = !{i32 2, !"Debug Info Version", i32 3}
48 !10 = !{i32 1, !"wchar_size", i32 4}
49 !11 = !{i32 7, !"PIC Level", i32 2}
50 !12 = !{i32 7, !"PIE Level", i32 2}
51 !13 = !{!"clang version 10.0.0"}
52 !14 = distinct !DISubprogram(name: "f", scope: !1, file: !1, line: 4, type: !15, scopeLine: 4, flags: DIFlagPrototyped | DIFlagAllCallsDescribed, spFlags: DISPFlagDefinition | DISPFlagOptimized, unit: !0, retainedNodes: !17)
53 !15 = !DISubroutineType(types: !16)
54 !16 = !{null}
55 !17 = !{!18, !20}
56 !18 = !DILocalVariable(name: "x", scope: !14, file: !1, line: 5, type: !19)
57 !19 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
58 !20 = !DILocalVariable(name: "y", scope: !14, file: !1, line: 5, type: !19)
59 !21 = !DILocation(line: 5, column: 3, scope: !14)
60 !22 = !DILocation(line: 0, scope: !14)
61 !23 = !DILocation(line: 5, column: 10, scope: !14)
62 !24 = !{!25, !25, i64 0}
63 !25 = !{!"int", !26, i64 0}
64 !26 = !{!"omnipotent char", !27, i64 0}
65 !27 = !{!"Simple C++ TBAA"}
66 !28 = !DILocation(line: 6, column: 3, scope: !14)
67 !29 = !DILocation(line: 7, column: 3, scope: !14)
68 !30 = !DILocation(line: 8, column: 1, scope: !14)
69 !31 = distinct !DIAssignID()
70 !32 = distinct !DIAssignID()
71 !33 = distinct !DIAssignID()
72 !34 = !{i32 7, !"debug-info-assignment-tracking", i1 true}