#include <sys/time.h>
#include <memusage.h>
+#include <hp-timing.h>
/* Pointer to the real functions. These are determined used `dlsym'
when really needed. */
static uint32_t buffer_cnt;
static struct entry first;
+static void
+gettime (struct entry *e)
+{
+#if HP_TIMING_INLINE
+ hp_timing_t now;
+ HP_TIMING_NOW (now);
+ e->time_low = now & 0xffffffff;
+ e->time_high = now >> 32;
+#else
+ struct __timespec64 now;
+ uint64_t usecs;
+ __clock_gettime64 (CLOCK_REALTIME, &now);
+ usecs = (uint64_t)now.tv_nsec / 1000 + (uint64_t)now.tv_sec * 1000000;
+ e->time_low = usecs & 0xffffffff;
+ e->time_high = usecs >> 32;
+#endif
+}
/* Update the global data after a successful function call. */
static void
buffer[idx].heap = current_heap;
buffer[idx].stack = current_stack;
- GETTIME (buffer[idx].time_low, buffer[idx].time_high);
+ gettime (&buffer[idx]);
/* Write out buffer if it is full. */
if (idx + 1 == buffer_size)
/* Write the first entry. */
first.heap = 0;
first.stack = 0;
- GETTIME (first.time_low, first.time_high);
+ gettime (&first);
/* Write it two times since we need the starting and end time. */
write (fd, &first, sizeof (first));
write (fd, &first, sizeof (first));
stack. */
first.heap = peak_heap;
first.stack = peak_stack;
- GETTIME (first.time_low, first.time_high);
+ gettime (&first);
write (fd, &first, sizeof (struct entry));
/* Close the file. */
# warning "GETSP is not defined for this architecture."
# define GETSP 0
#endif
-
-#ifndef GETTIME
-# define GETTIME(low,high) \
- { \
- struct __timespec64 now; \
- uint64_t usecs; \
- __clock_gettime64 (CLOCK_REALTIME, &now); \
- usecs = (uint64_t)now.tv_nsec / 1000 + (uint64_t)now.tv_sec * 1000000; \
- low = usecs & 0xffffffff; \
- high = usecs >> 32; \
- }
-#endif
#include <hp-timing.h>
#define GETSP() ({ register uintptr_t stack_ptr asm ("%r12"); stack_ptr; })
-#define GETTIME(low, high) \
- { \
- hp_timing_t __now; \
- HP_TIMING_NOW (__now); \
- low = __now & 0xffffffff; \
- high = __now >> 32; \
- }
#include <sysdeps/generic/memusage.h>