File: instrprof-dlopen-dlclose-main.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 (86 lines) | stat: -rw-r--r-- 2,210 bytes parent folder | download | duplicates (26)
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#include <dlfcn.h>
#include <stdio.h>
#include <stdlib.h>

int main(int argc, char *argv[]) {
  dlerror();
  void *f1_handle = dlopen("func.shared", RTLD_LAZY | RTLD_GLOBAL);
  if (f1_handle == NULL) {
    fprintf(stderr, "unable to open 'func.shared': %s\n", dlerror());
    return EXIT_FAILURE;
  }

  void (*func)(void) = (void (*)(void))dlsym(f1_handle, "func");
  if (func == NULL) {
    fprintf(stderr, "unable to lookup symbol 'func': %s\n", dlerror());
    return EXIT_FAILURE;
  }

  dlerror();
  void *f2_handle = dlopen("func2.shared", RTLD_LAZY | RTLD_GLOBAL);
  if (f2_handle == NULL) {
    fprintf(stderr, "unable to open 'func2.shared': %s\n", dlerror());
    return EXIT_FAILURE;
  }

  void (*func2)(void) = (void (*)(void))dlsym(f2_handle, "func2");
  if (func2 == NULL) {
    fprintf(stderr, "unable to lookup symbol 'func2': %s\n", dlerror());
    return EXIT_FAILURE;
  }
  func2();

#ifdef USE_LIB3
  void *f3_handle = dlopen("func3.shared", RTLD_LAZY | RTLD_GLOBAL);
  if (f3_handle == NULL) {
    fprintf(stderr, "unable to open 'func3.shared': %s\n", dlerror());
    return EXIT_FAILURE;
  }

  void (*func3)(void) = (void (*)(void))dlsym(f3_handle, "func3");
  if (func3 == NULL) {
    fprintf(stderr, "unable to lookup symbol 'func3': %s\n", dlerror());
    return EXIT_FAILURE;
  }
  func3();
#endif

  dlerror();
  void (*gcov_reset1)() = (void (*)())dlsym(f1_handle, "__gcov_reset");
  if (gcov_reset1 == NULL) {
    fprintf(stderr, "unable to find __gcov_reset in func.shared': %s\n", dlerror());
    return EXIT_FAILURE;
  }

  dlerror();
  void (*gcov_reset2)() = (void (*)())dlsym(f2_handle, "__gcov_reset");
  if (gcov_reset2 == NULL) {
    fprintf(stderr, "unable to find __gcov_reset in func2.shared': %s\n", dlerror());
    return EXIT_FAILURE;
  }

  if (gcov_reset1 == gcov_reset2) {
    fprintf(stderr, "Same __gcov_reset found in func.shared and func2.shared\n");
    return EXIT_FAILURE;
  }

  dlerror();
  if (dlclose(f2_handle) != 0) {
    fprintf(stderr, "unable to close 'func2.shared': %s\n", dlerror());
    return EXIT_FAILURE;
  }

  func();

  int g1 = 0;
  int g2 = 0;
  int n = 10;

  if (n % 5 == 0)
    g1++;
  else
    g2++;

  return EXIT_SUCCESS;
}