2012-03-28 04:14:00 +08:00
|
|
|
/*
|
|
|
|
* pg_test_timing.c
|
2012-06-11 03:20:04 +08:00
|
|
|
* tests overhead of timing calls and their monotonicity: that
|
|
|
|
* they always move forward
|
2012-03-28 04:14:00 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "postgres_fe.h"
|
|
|
|
|
|
|
|
#include "getopt_long.h"
|
|
|
|
#include "portability/instr_time.h"
|
|
|
|
|
|
|
|
static const char *progname;
|
|
|
|
|
|
|
|
static int32 test_duration = 3;
|
|
|
|
|
|
|
|
static void handle_args(int argc, char *argv[]);
|
2012-08-29 00:57:13 +08:00
|
|
|
static uint64 test_timing(int32);
|
|
|
|
static void output(uint64 loop_count);
|
|
|
|
|
|
|
|
/* record duration in powers of 2 microseconds */
|
2013-05-30 04:58:43 +08:00
|
|
|
int64 histogram[32];
|
2012-03-28 04:14:00 +08:00
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
2012-08-29 00:57:13 +08:00
|
|
|
uint64 loop_count;
|
|
|
|
|
2012-03-28 04:14:00 +08:00
|
|
|
progname = get_progname(argv[0]);
|
|
|
|
|
|
|
|
handle_args(argc, argv);
|
|
|
|
|
2012-08-29 00:57:13 +08:00
|
|
|
loop_count = test_timing(test_duration);
|
|
|
|
|
|
|
|
output(loop_count);
|
2012-03-28 04:14:00 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
handle_args(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
static struct option long_options[] = {
|
|
|
|
{"duration", required_argument, NULL, 'd'},
|
|
|
|
{NULL, 0, NULL, 0}
|
|
|
|
};
|
2012-12-01 03:49:55 +08:00
|
|
|
|
2012-06-11 03:20:04 +08:00
|
|
|
int option; /* Command line option */
|
|
|
|
int optindex = 0; /* used by getopt_long */
|
2012-03-28 04:14:00 +08:00
|
|
|
|
|
|
|
if (argc > 1)
|
|
|
|
{
|
2013-07-02 00:40:02 +08:00
|
|
|
if (strcmp(argv[1], "--help") == 0 || strcmp(argv[1], "-?") == 0)
|
2012-03-28 04:14:00 +08:00
|
|
|
{
|
|
|
|
printf("Usage: %s [-d DURATION]\n", progname);
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
if (strcmp(argv[1], "--version") == 0 || strcmp(argv[1], "-V") == 0)
|
|
|
|
{
|
|
|
|
puts("pg_test_timing (PostgreSQL) " PG_VERSION);
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
while ((option = getopt_long(argc, argv, "d:",
|
|
|
|
long_options, &optindex)) != -1)
|
|
|
|
{
|
|
|
|
switch (option)
|
|
|
|
{
|
|
|
|
case 'd':
|
|
|
|
test_duration = atoi(optarg);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
fprintf(stderr, "Try \"%s --help\" for more information.\n",
|
|
|
|
progname);
|
|
|
|
exit(1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (argc > optind)
|
|
|
|
{
|
|
|
|
fprintf(stderr,
|
|
|
|
"%s: too many command-line arguments (first is \"%s\")\n",
|
|
|
|
progname, argv[optind]);
|
|
|
|
fprintf(stderr, "Try \"%s --help\" for more information.\n",
|
|
|
|
progname);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (test_duration > 0)
|
|
|
|
{
|
|
|
|
printf("Testing timing overhead for %d seconds.\n", test_duration);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fprintf(stderr,
|
2012-06-11 03:20:04 +08:00
|
|
|
"%s: duration must be a positive integer (duration is \"%d\")\n",
|
2012-03-28 04:14:00 +08:00
|
|
|
progname, test_duration);
|
|
|
|
fprintf(stderr, "Try \"%s --help\" for more information.\n",
|
|
|
|
progname);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-29 00:57:13 +08:00
|
|
|
static uint64
|
2012-03-28 04:14:00 +08:00
|
|
|
test_timing(int32 duration)
|
|
|
|
{
|
2012-06-11 03:20:04 +08:00
|
|
|
uint64 total_time;
|
|
|
|
int64 time_elapsed = 0;
|
|
|
|
uint64 loop_count = 0;
|
2013-05-30 04:58:43 +08:00
|
|
|
uint64 prev,
|
|
|
|
cur;
|
|
|
|
instr_time start_time,
|
|
|
|
end_time,
|
|
|
|
temp;
|
2012-03-28 04:14:00 +08:00
|
|
|
|
2015-01-04 22:44:49 +08:00
|
|
|
total_time = duration > 0 ? duration * INT64CONST(1000000) : 0;
|
2012-03-28 04:14:00 +08:00
|
|
|
|
|
|
|
INSTR_TIME_SET_CURRENT(start_time);
|
|
|
|
cur = INSTR_TIME_GET_MICROSEC(start_time);
|
|
|
|
|
|
|
|
while (time_elapsed < total_time)
|
|
|
|
{
|
2013-05-30 04:58:43 +08:00
|
|
|
int32 diff,
|
|
|
|
bits = 0;
|
2012-08-29 00:57:13 +08:00
|
|
|
|
2012-03-28 04:14:00 +08:00
|
|
|
prev = cur;
|
|
|
|
INSTR_TIME_SET_CURRENT(temp);
|
|
|
|
cur = INSTR_TIME_GET_MICROSEC(temp);
|
|
|
|
diff = cur - prev;
|
|
|
|
|
2012-08-29 00:57:13 +08:00
|
|
|
/* Did time go backwards? */
|
2012-03-28 04:14:00 +08:00
|
|
|
if (diff < 0)
|
|
|
|
{
|
|
|
|
printf("Detected clock going backwards in time.\n");
|
|
|
|
printf("Time warp: %d microseconds\n", diff);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2012-08-29 00:57:13 +08:00
|
|
|
/* What is the highest bit in the time diff? */
|
2012-03-28 04:14:00 +08:00
|
|
|
while (diff)
|
|
|
|
{
|
|
|
|
diff >>= 1;
|
|
|
|
bits++;
|
|
|
|
}
|
2012-08-29 00:57:13 +08:00
|
|
|
|
|
|
|
/* Update appropriate duration bucket */
|
2012-03-28 04:14:00 +08:00
|
|
|
histogram[bits]++;
|
|
|
|
|
|
|
|
loop_count++;
|
|
|
|
INSTR_TIME_SUBTRACT(temp, start_time);
|
|
|
|
time_elapsed = INSTR_TIME_GET_MICROSEC(temp);
|
|
|
|
}
|
|
|
|
|
|
|
|
INSTR_TIME_SET_CURRENT(end_time);
|
|
|
|
|
|
|
|
INSTR_TIME_SUBTRACT(end_time, start_time);
|
|
|
|
|
|
|
|
printf("Per loop time including overhead: %0.2f nsec\n",
|
2012-06-11 03:20:04 +08:00
|
|
|
INSTR_TIME_GET_DOUBLE(end_time) * 1e9 / loop_count);
|
2012-08-29 00:57:13 +08:00
|
|
|
|
|
|
|
return loop_count;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
output(uint64 loop_count)
|
|
|
|
{
|
2013-05-30 04:58:43 +08:00
|
|
|
int64 max_bit = 31,
|
|
|
|
i;
|
2012-08-29 00:57:13 +08:00
|
|
|
|
|
|
|
/* find highest bit value */
|
|
|
|
while (max_bit > 0 && histogram[max_bit] == 0)
|
|
|
|
max_bit--;
|
2013-05-30 04:58:43 +08:00
|
|
|
|
2012-03-28 04:14:00 +08:00
|
|
|
printf("Histogram of timing durations:\n");
|
2012-08-29 00:57:13 +08:00
|
|
|
printf("%6s %10s %10s\n", "< usec", "% of total", "count");
|
2012-03-28 04:14:00 +08:00
|
|
|
|
2012-08-29 00:57:13 +08:00
|
|
|
for (i = 0; i <= max_bit; i++)
|
2012-03-30 20:15:25 +08:00
|
|
|
{
|
2012-08-29 00:57:13 +08:00
|
|
|
char buf[100];
|
|
|
|
|
|
|
|
/* lame hack to work around INT64_FORMAT deficiencies */
|
|
|
|
snprintf(buf, sizeof(buf), INT64_FORMAT, histogram[i]);
|
|
|
|
printf("%6ld %9.5f %10s\n", 1l << i,
|
2013-05-30 04:58:43 +08:00
|
|
|
(double) histogram[i] * 100 / loop_count, buf);
|
2012-03-30 20:15:25 +08:00
|
|
|
}
|
2012-03-28 04:14:00 +08:00
|
|
|
}
|