File: instrumentation-shlib.c

package info (click to toggle)
swiftlang 6.0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,519,992 kB
  • sloc: cpp: 9,107,863; ansic: 2,040,022; asm: 1,135,751; python: 296,500; objc: 82,456; f90: 60,502; lisp: 34,951; pascal: 19,946; sh: 18,133; perl: 7,482; ml: 4,937; javascript: 4,117; makefile: 3,840; awk: 3,535; xml: 914; fortran: 619; cs: 573; ruby: 573
file content (69 lines) | stat: -rw-r--r-- 1,590 bytes parent folder | download | duplicates (15)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/* Checks that BOLT correctly handles instrumentation shared libraries
 * with further optimization.
 */
#include <dlfcn.h>
#include <stdio.h>

#ifdef LIB
int foo(int x) { return x + 1; }

int fib(int x) {
  if (x < 2)
    return x;
  return fib(x - 1) + fib(x - 2);
}

int bar(int x) { return x - 1; }
#endif

#ifndef LIB
int main(int argc, char **argv) {
  int (*fib_func)(int);
  char *libname;
  void *hndl;
  int val;
  if (argc < 2)
    return -1;
  /*
   * Expected library name as input to switch
   * between original and instrumented file
   */
  libname = argv[1];
  hndl = dlopen(libname, RTLD_LAZY);
  if (!hndl) {
    printf("library load failed\n");
    return -1;
  }
  fib_func = dlsym(hndl, "fib");
  if (!fib_func) {
    printf("fib_func load failed\n");
    return -1;
  }
  val = fib_func(argc);
  dlclose(hndl);
  printf("fib(%d) = %d\n", argc, val);
  return 0;
}
#endif

/*
REQUIRES: system-linux,bolt-runtime

RUN: %clang %cflags %s -o %t.so -Wl,-q -fpie -fPIC -shared -DLIB
RUN: %clang %cflags %s -o %t.exe -Wl,-q -ldl

RUN: llvm-bolt %t.so --instrument --instrumentation-file=%t.so.fdata \
RUN:   -o %t.so.instrumented

# Program with instrumented shared library needs to finish returning zero
RUN: %t.exe %t.so.instrumented 1 2 | FileCheck %s -check-prefix=CHECK-OUTPUT
RUN: test -f %t.so.fdata

# Test that the instrumented data makes sense
RUN: llvm-bolt %t.so -o %t.so.bolted --data %t.so.fdata \
RUN:    --reorder-blocks=ext-tsp --reorder-functions=hfsort+

RUN: %t.exe %t.so.bolted 1 2 | FileCheck %s -check-prefix=CHECK-OUTPUT

CHECK-OUTPUT: fib(4) = 3
*/