[sanitizer] Improve FreeBSD ASLR detection
[llvm-project.git] / llvm / test / tools / llvm-profdata / memprof-multi.test
blobf1439556b1fc9aaa69ff1f1839f32388b548ff7b
1 REQUIRES: x86_64-linux
3 The input raw profile test has been generated from the following source code:
5 ```
6 #include <sanitizer/memprof_interface.h>
7 #include <stdlib.h>
8 #include <string.h>
9 int main(int argc, char **argv) {
10   char *x = (char *)malloc(10);
11   memset(x, 0, 10);
12   free(x);
13   __memprof_profile_dump();
14   x = (char *)malloc(10);
15   memset(x, 0, 10);
16   free(x);
17   return 0;
19 ```
21 The following commands were used to compile the source to a memprof instrumented
22 executable and collect a raw binary format profile. Since the profile contains
23 virtual addresses for the callstack, we do not expect the raw binary profile to
24 be deterministic. The summary should be deterministic apart from changes to
25 the shared libraries linked in which could change the number of segments
26 recorded.
28 ```
29 clang -fmemory-profile -mno-omit-leaf-frame-pointer -fno-omit-frame-pointer -fno-optimize-sibling-calls -gline-tables-only -m64 -Wl,-build-id source.c -o rawprofile.out
31 env MEMPROF_OPTIONS=log_path=stdout ./rawprofile.out > multi.memprofraw
32 ```
34 RUN: llvm-profdata show --memory %p/Inputs/multi.memprofraw -o - | FileCheck %s
36 We expect 2 MIB entries, 1 each for the malloc calls in the program. Unlike the
37 memprof-basic.test we do not see any allocation from glibc.
39 CHECK: MemProf Profile 1
40 CHECK:   Version: 1
41 CHECK:   TotalSizeBytes: 864
42 CHECK:   NumSegments: 9
43 CHECK:   NumMIBInfo: 2
44 CHECK:   NumStackOffsets: 2
45 CHECK: MemProf Profile 2
46 CHECK:   Version: 1
47 CHECK:   TotalSizeBytes: 864
48 CHECK:   NumSegments: 9
49 CHECK:   NumMIBInfo: 2
50 CHECK:   NumStackOffsets: 2