mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-26 00:57:39 +01:00
(Logical change 1.98)
This commit is contained in:
parent
ee803e7acc
commit
12876ef781
2 changed files with 81 additions and 0 deletions
|
@ -0,0 +1,76 @@
|
|||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include <sys/time.h>
|
||||
|
||||
#include <libunwind.h>
|
||||
|
||||
#define panic(args...) \
|
||||
do { fprintf (stderr, args); exit (-1); } while (0)
|
||||
|
||||
static inline double
|
||||
gettime (void)
|
||||
{
|
||||
struct timeval tv;
|
||||
|
||||
gettimeofday(&tv, NULL);
|
||||
return tv.tv_sec + 1e-6*tv.tv_usec;
|
||||
}
|
||||
|
||||
static int
|
||||
measure_unwind (int maxlevel)
|
||||
{
|
||||
double stop, mid, start;
|
||||
unw_cursor_t cursor;
|
||||
unw_context_t uc;
|
||||
int ret, level = 0;
|
||||
|
||||
start = gettime ();
|
||||
|
||||
unw_getcontext (&uc);
|
||||
if (unw_init_local (&cursor, &uc) < 0)
|
||||
panic ("unw_init_local() failed\n");
|
||||
|
||||
mid = gettime ();
|
||||
|
||||
do
|
||||
{
|
||||
ret = unw_step (&cursor);
|
||||
if (ret < 0)
|
||||
panic ("unw_step() failed\n");
|
||||
++level;
|
||||
}
|
||||
while (ret > 0);
|
||||
|
||||
stop = gettime ();
|
||||
|
||||
if (level <= maxlevel)
|
||||
panic ("Unwound only %d levels, expected at least %d levels",
|
||||
level, maxlevel);
|
||||
|
||||
printf ("initialization time = %gnsec, time per unwind-step = %gnsec\n",
|
||||
1e9*(mid - start), 1e9*(stop - mid)/level);
|
||||
}
|
||||
|
||||
static int
|
||||
f1 (int level, int maxlevel)
|
||||
{
|
||||
if (level == maxlevel)
|
||||
return measure_unwind (maxlevel);
|
||||
else
|
||||
/* defeat last-call/sibcall optimization */
|
||||
return f1 (level + 1, maxlevel) + level;
|
||||
}
|
||||
|
||||
int
|
||||
main (int argc, char **argv)
|
||||
{
|
||||
int i, maxlevel = 100;
|
||||
|
||||
if (argc > 1)
|
||||
maxlevel = atol (argv[1]);
|
||||
|
||||
for (i = 0; i < 10; ++i)
|
||||
f1 (0, maxlevel);
|
||||
return 0;
|
||||
}
|
|
@ -0,0 +1,5 @@
|
|||
#define UNW_LOCAL_ONLY
|
||||
#include <libunwind.h>
|
||||
#if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY)
|
||||
#include "Gperf-simple.c"
|
||||
#endif
|
Loading…
Reference in a new issue