aboutsummaryrefslogtreecommitdiff
path: root/gprofng/testsuite/gprofng.display/synprog/callso.c
blob: 7c5acde469cbb4f458f5aba177b998774490df1b (plain)
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
/* Copyright (C) 2021-2024 Free Software Foundation, Inc.
   Contributed by Oracle.

   This file is part of GNU Binutils.

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3, or (at your option)
   any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, 51 Franklin Street - Fifth Floor, Boston,
   MA 02110-1301, USA.  */

#include <stdio.h>
#include <stdlib.h>
#include <dlfcn.h>
#include <errno.h>
#include <string.h>
#include "stopwatch.h"


#define DYNSOROUTINE    "so_cputime"
#define DYNSONAME       "./so_syn.so"

/* callso -- dynamically link a shared object, and call a routine in it */

#ifndef NONSHARED

static void *so_object = NULL;
static void closeso (void);

int
callso (int k)
{
  int i;
  char buf[1024];
  char *p;
  char *q = DYNSONAME;
  int errnum;

  hrtime_t start = gethrtime ();
  hrtime_t vstart = gethrvtime ();

  /* Log the event */
  wlog ("start of callso", NULL);

  /* see if already linked */
  if (so_object != NULL)
    {
      fprintf (stderr, "Execution error -- callso: so_object already linked\n");
      return 0;
    }

  /* open the dynamic shared object */
  so_object = NULL;
  while (so_object == NULL)
    {
      so_object = dlopen (DYNSONAME, RTLD_NOW);
      if (so_object != NULL)
        break;
      p = dlerror ();
      if (q == NULL)
        q = "DYNSONAME";
      if (p == NULL)
        p = "dlerror() returns NULL";
      errnum = errno;
      if (errnum == EINTR)
        continue;   /* retry */
      else
        {
          fprintf (stderr, "Execution error -- callso: dlopen of %s failed--%s, errno=%d (%s)\n",
                   q, p, errnum, strerror (errnum));
          return (0);
        }
    }

  /* look up the routine name in it */
  int (*so_routine)() = (int (*)())dlsym (so_object, DYNSOROUTINE);
  if (so_routine == NULL)
    {
      fprintf (stderr, "Execution error -- callso: dlsym %s not found\n",
               DYNSOROUTINE);
      return (0);
    }

  /* invoke the routine */
  long long count = 0;
  do
    {
      i = (*so_routine)();
      count++;
    }
  while (start + testtime * 1e9 > gethrtime ());

  closeso ();
  sprintf (buf, "end of callso, %s returned %d", DYNSOROUTINE, i);
  wlog (buf, NULL);
  fprintf (stderr, "   Performed %lld while-loop iterations\n", count);
  whrvlog ((gethrtime () - start), (gethrvtime () - vstart), "callso", NULL);
  return 0;
}

/* closeso -- close a DSO */
void
closeso (void)
{
  /* Log the event */
  wlog ("start of closeso", NULL);

  /* ensure already linked */
  if (so_object == NULL)
    {
      fprintf (stderr, "Execution error -- closeso: so_object not linked\n");
      return;
    }

  /* close the dynamic shared object */
  int rc = dlclose (so_object);
  if (rc != 0)
    {
      fprintf (stderr, "Execution error -- closeso: dlclose() failed--%s\n",
               dlerror ());
      return;
    }

  /* clear the pointer */
  so_object = NULL;
  wlog ("end of closeso", NULL);
  return;
}

#else /* NONSHARED */

int
callso (int i)
{
  return 0;
}

void
closeso (void)
{
  return;
}
#endif /* NONSHARED */