[sanitizer] Improve FreeBSD ASLR detection
[llvm-project.git] / llvm / test / tools / llvm-profdata / memprof-basic.test
blob321119ba566ae446bb3045254a07d120e8c7a01a
1 REQUIRES: x86_64-linux
3 The input raw profile test has been generated from the following source code:
5 ```
6 #include <stdlib.h>
7 #include <string.h>
8 int main(int argc, char **argv) {
9   char *x = (char *)malloc(10);
10   memset(x, 0, 10);
11   free(x);
12   x = (char *)malloc(10);
13   memset(x, 0, 10);
14   free(x);
15   return 0;
17 ```
19 The following commands were used to compile the source to a memprof instrumented
20 executable and collect a raw binary format profile. Since the profile contains
21 virtual addresses for the callstack, we do not expect the raw binary profile to
22 be deterministic. The summary should be deterministic apart from changes to
23 the shared libraries linked in which could change the number of segments
24 recorded.
26 ```
27 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
29 env MEMPROF_OPTIONS=log_path=stdout ./rawprofile.out > basic.memprofraw
30 ```
32 RUN: llvm-profdata show --memory %p/Inputs/basic.memprofraw -o - | FileCheck %s
34 We expect 3 MIB entries, 1 each for the malloc calls in the program and one
35 additional entry from a realloc in glibc/libio/vasprintf.c.
37 CHECK: MemProf Profile 1
38 CHECK:   Version: 1
39 CHECK:   TotalSizeBytes: 1016
40 CHECK:   NumSegments: 9
41 CHECK:   NumMIBInfo: 3
42 CHECK:   NumStackOffsets: 3