[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / CodeGen / AArch64 / stack-tagging-dbg.ll
blob8b6c0c86bb4e23544e71c2f327cbb2493a478c29
1 ; RUN: opt < %s -aarch64-stack-tagging -S -o - | FileCheck %s
3 target datalayout = "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128"
4 target triple = "aarch64--linux-android"
6 declare void @use32(ptr)
7 declare void @llvm.dbg.declare(metadata, metadata, metadata) nounwind readnone speculatable
8 declare void @llvm.dbg.value(metadata, metadata, metadata) nounwind readnone speculatable
10 ; Debug intrinsics use the new alloca directly, not through a GEP or a tagp.
11 define void @DbgIntrinsics() sanitize_memtag {
12 entry:
13   %x = alloca i32, align 4
14   call void @llvm.dbg.declare(metadata ptr %x, metadata !6, metadata !DIExpression()), !dbg !10
15   call void @llvm.dbg.value(metadata !DIArgList(ptr %x, ptr %x), metadata !6, metadata !DIExpression(DW_OP_LLVM_arg, 0, DW_OP_LLVM_arg, 1, DW_OP_plus)), !dbg !10
16   store i32 42, ptr %x, align 4
17   call void @use32(ptr %x)
18   ret void
21 ; CHECK-LABEL: define void @DbgIntrinsics(
22 ; CHECK:  [[X:%.*]] = alloca { i32, [12 x i8] }, align 16
23 ; CHECK:  call void @llvm.dbg.declare(metadata ptr [[X]],
24 ; CHECK:  call void @llvm.dbg.value(metadata !DIArgList(ptr [[X]], ptr [[X]])
27 !llvm.dbg.cu = !{!0}
28 !llvm.module.flags = !{!8, !9}
30 !0 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !1, producer: "clang version 9.0.0", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !2, nameTableKind: None)
31 !1 = !DIFile(filename: "stack-tagging.cc", directory: "/tmp")
32 !2 = !{}
33 !3 = distinct !DISubprogram(name: "DbgIntrinsics", linkageName: "DbgIntrinsics", scope: !1, file: !1, line: 3, type: !4, scopeLine: 3, flags: DIFlagPrototyped, spFlags: DISPFlagDefinition, unit: !0, retainedNodes: !2)
34 !4 = !DISubroutineType(types: !5)
35 !5 = !{null}
36 !6 = !DILocalVariable(name: "x", scope: !3, file: !1, line: 4, type: !7)
37 !7 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
38 !8 = !{i32 2, !"Dwarf Version", i32 4}
39 !9 = !{i32 2, !"Debug Info Version", i32 3}
40 !10 = !DILocation(line: 1, column: 2, scope: !3)