|
| 1 | +; Tests that the compiler dumps an allocation site with multiple inlined frames. |
| 2 | +; |
| 3 | +; The test case is generated from: |
| 4 | +; |
| 5 | +; // main |
| 6 | +; // | |
| 7 | +; // f1 (noinline) |
| 8 | +; // | |
| 9 | +; // f2 |
| 10 | +; // | |
| 11 | +; // f3 |
| 12 | +; // | |
| 13 | +; // new |
| 14 | +; |
| 15 | +; char *f1() { return new char[3]; } |
| 16 | +; char *f2() { return f1(); } |
| 17 | +; __attribute__((noinline)) char *f3() { return f2(); } |
| 18 | +; |
| 19 | +; int main() { |
| 20 | +; f3(); |
| 21 | +; return 0; |
| 22 | +; } |
| 23 | +; |
| 24 | +; Here we expect to match the allocation site to encompass 3 frames. |
| 25 | + |
| 26 | +; REQUIRES: x86_64-linux |
| 27 | +; RUN: split-file %s %t |
| 28 | +; RUN: llvm-profdata merge %t/memprof-dump-matched-alloc-site.yaml -o %t/memprof-dump-matched-alloc-site.memprofdata |
| 29 | +; RUN: opt < %t/memprof-dump-matched-alloc-site.ll -passes='memprof-use<profile-filename=%t/memprof-dump-matched-alloc-site.memprofdata>' -memprof-print-match-info -S 2>&1 | FileCheck %s |
| 30 | + |
| 31 | +;--- memprof-dump-matched-alloc-site.yaml |
| 32 | +--- |
| 33 | +HeapProfileRecords: |
| 34 | + - GUID: _Z2f3v |
| 35 | + AllocSites: |
| 36 | + - Callstack: |
| 37 | + - { Function: _ZL2f1v, LineOffset: 0, Column: 35, IsInlineFrame: true } |
| 38 | + - { Function: _ZL2f2v, LineOffset: 0, Column: 35, IsInlineFrame: true } |
| 39 | + - { Function: _Z2f3v, LineOffset: 0, Column: 47, IsInlineFrame: false } |
| 40 | + - { Function: main, LineOffset: 1, Column: 3, IsInlineFrame: false } |
| 41 | + MemInfoBlock: |
| 42 | + AllocCount: 1 |
| 43 | + TotalSize: 3 |
| 44 | + TotalLifetime: 0 |
| 45 | + TotalLifetimeAccessDensity: 0 |
| 46 | + CallSites: |
| 47 | + # Kept empty here because this section is irrelevant for this test. |
| 48 | +... |
| 49 | +;--- memprof-dump-matched-alloc-site.ll |
| 50 | +; CHECK: MemProf notcold context with id 12978026349401156968 has total profiled size 3 is matched with 3 frames |
| 51 | + |
| 52 | +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-i128:128-f80:128-n8:16:32:64-S128" |
| 53 | +target triple = "x86_64-unknown-linux-gnu" |
| 54 | + |
| 55 | +define ptr @_Z2f3v() { |
| 56 | +entry: |
| 57 | + %call.i.i = call ptr @_Znam(i64 0), !dbg !3 |
| 58 | + ret ptr null |
| 59 | +} |
| 60 | + |
| 61 | +declare ptr @_Znam(i64) |
| 62 | + |
| 63 | +!llvm.dbg.cu = !{!0} |
| 64 | +!llvm.module.flags = !{!2} |
| 65 | + |
| 66 | +!0 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus_14, file: !1) |
| 67 | +!1 = !DIFile(filename: "memprof-dump-matched-alloc-site.cc", directory: "/") |
| 68 | +!2 = !{i32 2, !"Debug Info Version", i32 3} |
| 69 | +!3 = !DILocation(line: 1, column: 35, scope: !4, inlinedAt: !7) |
| 70 | +!4 = distinct !DISubprogram(name: "f1", linkageName: "_ZL2f1v", scope: !1, file: !1, line: 1, type: !5, scopeLine: 1, flags: DIFlagPrototyped | DIFlagAllCallsDescribed, spFlags: DISPFlagLocalToUnit | DISPFlagDefinition | DISPFlagOptimized, unit: !0) |
| 71 | +!5 = !DISubroutineType(types: !6) |
| 72 | +!6 = !{} |
| 73 | +!7 = distinct !DILocation(line: 2, column: 35, scope: !8, inlinedAt: !9) |
| 74 | +!8 = distinct !DISubprogram(name: "f2", linkageName: "_ZL2f2v", scope: !1, file: !1, line: 2, type: !5, scopeLine: 2, flags: DIFlagPrototyped | DIFlagAllCallsDescribed, spFlags: DISPFlagLocalToUnit | DISPFlagDefinition | DISPFlagOptimized, unit: !0) |
| 75 | +!9 = distinct !DILocation(line: 3, column: 47, scope: !10) |
| 76 | +!10 = distinct !DISubprogram(name: "f3", linkageName: "_Z2f3v", scope: !1, file: !1, line: 3, type: !5, scopeLine: 3, flags: DIFlagPrototyped | DIFlagAllCallsDescribed, spFlags: DISPFlagDefinition | DISPFlagOptimized, unit: !0) |
| 77 | +!11 = !DILocation(line: 6, column: 3, scope: !12) |
| 78 | +!12 = distinct !DISubprogram(name: "main", scope: !1, file: !1, line: 5, type: !5, scopeLine: 5, flags: DIFlagPrototyped | DIFlagAllCallsDescribed, spFlags: DISPFlagDefinition | DISPFlagOptimized, unit: !0) |
0 commit comments