xref: /llvm-project/llvm/test/Transforms/Util/strip-nonlinetable-debuginfo-heapallocsite.ll (revision 211cf8a384ebb29787367c8fd5858e2a5ed3c10f)
1; RUN: opt -S -passes=strip-nonlinetable-debuginfo %s -o - |  FileCheck %s
2; RUN: opt -S -strip-debug %s -o - |  FileCheck %s
3; int *get() { return new int[256]; }
4; ModuleID = '/tmp/heapallocsite.cpp'
5source_filename = "/tmp/heapallocsite.cpp"
6target datalayout = "e-m:o-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
7target triple = "x86_64-apple-macosx11.0.0"
8
9; Function Attrs: noinline optnone ssp uwtable mustprogress
10define dso_local ptr @_Z3getv() #0 !dbg !8 {
11entry:
12; CHECK-LABEL: entry:
13; CHECK-NOT: !heapallocsite
14  %call = call noalias nonnull ptr @_Znam(i64 1024) #2, !dbg !14, !heapallocsite !13
15  ret ptr %call, !dbg !15
16}
17
18; Function Attrs: nobuiltin allocsize(0)
19declare nonnull ptr @_Znam(i64) #1
20
21attributes #0 = { noinline optnone ssp uwtable mustprogress }
22attributes #1 = { nobuiltin allocsize(0) "frame-pointer"="all" }
23attributes #2 = { builtin allocsize(0) }
24
25!llvm.dbg.cu = !{!0}
26!llvm.module.flags = !{!3, !4, !5, !6}
27!llvm.ident = !{!7}
28
29; CHECK-LABEL: !llvm.ident
30; CHECK-NOT: !DIBasicType(name: "int"
31!0 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus_14, file: !1, producer: "clang version 13.0.0 (git@github.com:llvm/llvm-project 6d4ce49dae17715de502acbd50ab4c9b3c18215b)", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !2, nameTableKind: None, sysroot: "/")
32!1 = !DIFile(filename: "/tmp/heapallocsite.cpp", directory: "/Volumes/Data/llvm-project")
33!2 = !{}
34!3 = !{i32 7, !"Dwarf Version", i32 4}
35!4 = !{i32 2, !"Debug Info Version", i32 3}
36!5 = !{i32 1, !"wchar_size", i32 4}
37!6 = !{i32 7, !"PIC Level", i32 2}
38!7 = !{!"clang version 13.0.0 (git@github.com:llvm/llvm-project 6d4ce49dae17715de502acbd50ab4c9b3c18215b)"}
39!8 = distinct !DISubprogram(name: "get", linkageName: "_Z3getv", scope: !9, file: !9, line: 1, type: !10, scopeLine: 1, flags: DIFlagPrototyped, spFlags: DISPFlagDefinition, unit: !0, retainedNodes: !2)
40!9 = !DIFile(filename: "/tmp/heapallocsite.cpp", directory: "")
41!10 = !DISubroutineType(types: !11)
42!11 = !{!12}
43!12 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !13, size: 64)
44!13 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
45!14 = !DILocation(line: 1, column: 21, scope: !8)
46!15 = !DILocation(line: 1, column: 14, scope: !8)
47