mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-09 12:23:04 +00:00
* data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on the user's name space. All uses changed to __attribute__ ((__unused__)). (yyFail, yyMemoryExhausted, yyreportAmbiguity): Add __attribute__ ((__noreturn__)). * etc/clcommit: Remove. We weren't using it, and it failed "make maintainer-distcheck". * Makefile.maint: Merge from coreutils. (CVS_LIST, CVS_LIST_EXCEPT): New macros. (syntax-check-rules): Change list of rules as described below. (sc_cast_of_alloca_return_value, sc_dd_max_sym_length): (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof): (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope): (sc_trailing_space): New rules. (sc_xalloc_h_in_src): Remove. (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value): (sc_space_tab, sc_error_exit_success, sc_changelog): (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics): (makefile-check, po-check, author_mark_check): (makefile_path_separator_check, copyright-check): Use grep -n, to make it easier to find violations. Use CVS_LIST and CVS_LIST_EXCEPT. (header_regexp, h_re): Remove. (dd_c): New macro. (sc_dd_max_sym_length, .re-list, news-date-check): New rules. (my-distcheck): Use more-modern GCC flags. (signatures, %.asc): Remove. (rel-files, announcement): Remove signatures. Restore old updating code, even though we don't use it, so that we're the same as coreutils. (alpha, beta, major): Depend on news-date-check. Make the upload commands. * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space. * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise. * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise. * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise. * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise. * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise. * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise. * tests/sets.at: Likewise. * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that we comment out the Autoconf version number. * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as it's error-prone and "make maintainer-distcheck" rejects it. * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H. Indent calls to "error" to pacify "make maintainer-distcheck", when the calls are not intended to be translated. * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h. * src/Makefile.am (DEFS): Use +=, to pacify "make maintainer-distcheck". (bison_SOURCES): Add scan-skel.h. (sc_tight_scope): New rule, from coreutils. * src/files.c (src_extension, header_extension): Now static, not extern. * src/getargs.c (short_options): Likewise. * src/muscle_tab.c (muscle_table): Likewise. * src/parse-gram.y (current_class, current_type, current_prec): Likewise. * src/reader.c (grammar_end, previous_rule_end): Likewise. * src/getargs.h: Redo comments to pacify "make maintainer-distcheck". * src/main.c (main): Cast bindtextdomain and textdomain calls to void, to avoid warning when NLS is disabled. * src/output.c: Include scan-skel.h. (scan_skel): Remove decl, since scan-skel.h does this. (output_skeleton): Indent calls to "error" to pacify "make maintainer-distcheck". * src/print_graph.c: Don't include <obstack.h>, as system.h does this. * src/reader.h (gram_end, gram_lineno): New decls to pacify "make maintainer-distcheck". * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in): (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno): (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug): (skel_lex_destroy, scan_skel): Move these decls to... * src/scan-skel.h: New file. * src/uniqstr.c (uniqstr_assert): Indent calls to "error" to pacify "make maintainer-distcheck". * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR), not @VAR@. * tests/torture.at: Revamp to avoid misuse of atoi that "make maintainer-distcheck" complained about.
566 lines
14 KiB
C
566 lines
14 KiB
C
/* Timing variables for measuring compiler performance.
|
|
Copyright (C) 2000, 2002, 2004 Free Software Foundation, Inc.
|
|
Contributed by Alex Samuel <samuel@codesourcery.com>
|
|
|
|
This file is part of Bison, the GNU Compiler Compiler.
|
|
|
|
Bison 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 2, or (at your option) any later
|
|
version.
|
|
|
|
Bison 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 Bison; see the file COPYING. If not, write to the Free
|
|
Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
|
|
02110-1301, USA. */
|
|
|
|
#if IN_GCC
|
|
|
|
#include "config.h"
|
|
#include "system.h"
|
|
#include "intl.h"
|
|
#include "rtl.h"
|
|
|
|
#else
|
|
|
|
/* This source file is taken from the GCC source code, with slight
|
|
modifications that are under control of the IN_GCC preprocessor
|
|
variable. The !IN_GCC part of this file is specific to Bison. */
|
|
|
|
# include "../src/system.h"
|
|
# if HAVE_SYS_TIME_H
|
|
# include <sys/time.h>
|
|
# endif
|
|
int timevar_report = 0;
|
|
|
|
#endif
|
|
|
|
|
|
#ifdef HAVE_SYS_TIMES_H
|
|
# include <sys/times.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_RESOURCE_H
|
|
#include <sys/resource.h>
|
|
#endif
|
|
|
|
#ifndef HAVE_CLOCK_T
|
|
typedef int clock_t;
|
|
#endif
|
|
|
|
#ifndef HAVE_STRUCT_TMS
|
|
struct tms
|
|
{
|
|
clock_t tms_utime;
|
|
clock_t tms_stime;
|
|
clock_t tms_cutime;
|
|
clock_t tms_cstime;
|
|
};
|
|
#endif
|
|
|
|
#if defined HAVE_DECL_GETRUSAGE && !HAVE_DECL_GETRUSAGE
|
|
extern int getrusage (int, struct rusage *);
|
|
#endif
|
|
#if defined HAVE_DECL_TIMES && !HAVE_DECL_TIMES
|
|
extern clock_t times (struct tms *);
|
|
#endif
|
|
#if defined HAVE_DECL_CLOCK && !HAVE_DECL_CLOCK
|
|
extern clock_t clock (void);
|
|
#endif
|
|
|
|
#ifndef RUSAGE_SELF
|
|
# define RUSAGE_SELF 0
|
|
#endif
|
|
|
|
/* Calculation of scale factor to convert ticks to microseconds.
|
|
We mustn't use CLOCKS_PER_SEC except with clock(). */
|
|
#if HAVE_SYSCONF && defined _SC_CLK_TCK
|
|
# define TICKS_PER_SECOND sysconf (_SC_CLK_TCK) /* POSIX 1003.1-1996 */
|
|
#else
|
|
# ifdef CLK_TCK
|
|
# define TICKS_PER_SECOND CLK_TCK /* POSIX 1003.1-1988; obsolescent */
|
|
# else
|
|
# ifdef HZ
|
|
# define TICKS_PER_SECOND HZ /* traditional UNIX */
|
|
# else
|
|
# define TICKS_PER_SECOND 100 /* often the correct value */
|
|
# endif
|
|
# endif
|
|
#endif
|
|
|
|
/* Prefer times to getrusage to clock (each gives successively less
|
|
information). */
|
|
#ifdef HAVE_TIMES
|
|
# define USE_TIMES
|
|
# define HAVE_USER_TIME
|
|
# define HAVE_SYS_TIME
|
|
# define HAVE_WALL_TIME
|
|
#else
|
|
#ifdef HAVE_GETRUSAGE
|
|
# define USE_GETRUSAGE
|
|
# define HAVE_USER_TIME
|
|
# define HAVE_SYS_TIME
|
|
#else
|
|
#ifdef HAVE_CLOCK
|
|
# define USE_CLOCK
|
|
# define HAVE_USER_TIME
|
|
#endif
|
|
#endif
|
|
#endif
|
|
|
|
/* libc is very likely to have snuck a call to sysconf() into one of
|
|
the underlying constants, and that can be very slow, so we have to
|
|
precompute them. Whose wonderful idea was it to make all those
|
|
_constants_ variable at run time, anyway? */
|
|
#ifdef USE_TIMES
|
|
static float ticks_to_msec;
|
|
#define TICKS_TO_MSEC (1.0 / TICKS_PER_SECOND)
|
|
#endif
|
|
|
|
#ifdef USE_CLOCK
|
|
static float clocks_to_msec;
|
|
#define CLOCKS_TO_MSEC (1.0 / CLOCKS_PER_SEC)
|
|
#endif
|
|
|
|
#if IN_GCC
|
|
#include "flags.h"
|
|
#endif
|
|
#include "timevar.h"
|
|
|
|
/* See timevar.h for an explanation of timing variables. */
|
|
|
|
/* This macro evaluates to nonzero if timing variables are enabled. */
|
|
#define TIMEVAR_ENABLE (timevar_report)
|
|
|
|
/* A timing variable. */
|
|
|
|
struct timevar_def
|
|
{
|
|
/* Elapsed time for this variable. */
|
|
struct timevar_time_def elapsed;
|
|
|
|
/* If this variable is timed independently of the timing stack,
|
|
using timevar_start, this contains the start time. */
|
|
struct timevar_time_def start_time;
|
|
|
|
/* The name of this timing variable. */
|
|
const char *name;
|
|
|
|
/* Non-zero if this timing variable is running as a standalone
|
|
timer. */
|
|
unsigned standalone : 1;
|
|
|
|
/* Non-zero if this timing variable was ever started or pushed onto
|
|
the timing stack. */
|
|
unsigned used : 1;
|
|
};
|
|
|
|
/* An element on the timing stack. Elapsed time is attributed to the
|
|
topmost timing variable on the stack. */
|
|
|
|
struct timevar_stack_def
|
|
{
|
|
/* The timing variable at this stack level. */
|
|
struct timevar_def *timevar;
|
|
|
|
/* The next lower timing variable context in the stack. */
|
|
struct timevar_stack_def *next;
|
|
};
|
|
|
|
/* Declared timing variables. Constructed from the contents of
|
|
timevar.def. */
|
|
static struct timevar_def timevars[TIMEVAR_LAST];
|
|
|
|
/* The top of the timing stack. */
|
|
static struct timevar_stack_def *stack;
|
|
|
|
/* A list of unused (i.e. allocated and subsequently popped)
|
|
timevar_stack_def instances. */
|
|
static struct timevar_stack_def *unused_stack_instances;
|
|
|
|
/* The time at which the topmost element on the timing stack was
|
|
pushed. Time elapsed since then is attributed to the topmost
|
|
element. */
|
|
static struct timevar_time_def start_time;
|
|
|
|
static void get_time (struct timevar_time_def *);
|
|
static void timevar_accumulate (struct timevar_time_def *,
|
|
struct timevar_time_def *,
|
|
struct timevar_time_def *);
|
|
|
|
/* Fill the current times into TIME. The definition of this function
|
|
also defines any or all of the HAVE_USER_TIME, HAVE_SYS_TIME, and
|
|
HAVE_WALL_TIME macros. */
|
|
|
|
static void
|
|
get_time (now)
|
|
struct timevar_time_def *now;
|
|
{
|
|
now->user = 0;
|
|
now->sys = 0;
|
|
now->wall = 0;
|
|
|
|
if (!TIMEVAR_ENABLE)
|
|
return;
|
|
|
|
{
|
|
#ifdef USE_TIMES
|
|
struct tms tms;
|
|
now->wall = times (&tms) * ticks_to_msec;
|
|
#if IN_GCC
|
|
now->user = tms.tms_utime * ticks_to_msec;
|
|
now->sys = tms.tms_stime * ticks_to_msec;
|
|
#else
|
|
now->user = (tms.tms_utime + tms.tms_cutime) * ticks_to_msec;
|
|
now->sys = (tms.tms_stime + tms.tms_cstime) * ticks_to_msec;
|
|
#endif
|
|
#endif
|
|
#ifdef USE_GETRUSAGE
|
|
struct rusage rusage;
|
|
#if IN_GCC
|
|
getrusage (RUSAGE_SELF, &rusage);
|
|
#else
|
|
getrusage (RUSAGE_CHILDREN, &rusage);
|
|
#endif
|
|
now->user = rusage.ru_utime.tv_sec + rusage.ru_utime.tv_usec * 1e-6;
|
|
now->sys = rusage.ru_stime.tv_sec + rusage.ru_stime.tv_usec * 1e-6;
|
|
#endif
|
|
#ifdef USE_CLOCK
|
|
now->user = clock () * clocks_to_msec;
|
|
#endif
|
|
}
|
|
}
|
|
|
|
/* Add the difference between STOP and START to TIMER. */
|
|
|
|
static void
|
|
timevar_accumulate (timer, start, stop)
|
|
struct timevar_time_def *timer;
|
|
struct timevar_time_def *start;
|
|
struct timevar_time_def *stop;
|
|
{
|
|
timer->user += stop->user - start->user;
|
|
timer->sys += stop->sys - start->sys;
|
|
timer->wall += stop->wall - start->wall;
|
|
}
|
|
|
|
/* Initialize timing variables. */
|
|
|
|
void
|
|
init_timevar ()
|
|
{
|
|
if (!TIMEVAR_ENABLE)
|
|
return;
|
|
|
|
/* Zero all elapsed times. */
|
|
memset ((void *) timevars, 0, sizeof (timevars));
|
|
|
|
/* Initialize the names of timing variables. */
|
|
#define DEFTIMEVAR(identifier__, name__) \
|
|
timevars[identifier__].name = name__;
|
|
#include "timevar.def"
|
|
#undef DEFTIMEVAR
|
|
|
|
#ifdef USE_TIMES
|
|
ticks_to_msec = TICKS_TO_MSEC;
|
|
#endif
|
|
#ifdef USE_CLOCK
|
|
clocks_to_msec = CLOCKS_TO_MSEC;
|
|
#endif
|
|
}
|
|
|
|
/* Push TIMEVAR onto the timing stack. No further elapsed time is
|
|
attributed to the previous topmost timing variable on the stack;
|
|
subsequent elapsed time is attributed to TIMEVAR, until it is
|
|
popped or another element is pushed on top.
|
|
|
|
TIMEVAR cannot be running as a standalone timer. */
|
|
|
|
void
|
|
timevar_push (timevar)
|
|
timevar_id_t timevar;
|
|
{
|
|
struct timevar_def *tv = &timevars[timevar];
|
|
struct timevar_stack_def *context;
|
|
struct timevar_time_def now;
|
|
|
|
if (!TIMEVAR_ENABLE)
|
|
return;
|
|
|
|
/* Mark this timing variable as used. */
|
|
tv->used = 1;
|
|
|
|
/* Can't push a standalone timer. */
|
|
if (tv->standalone)
|
|
abort ();
|
|
|
|
/* What time is it? */
|
|
get_time (&now);
|
|
|
|
/* If the stack isn't empty, attribute the current elapsed time to
|
|
the old topmost element. */
|
|
if (stack)
|
|
timevar_accumulate (&stack->timevar->elapsed, &start_time, &now);
|
|
|
|
/* Reset the start time; from now on, time is attributed to
|
|
TIMEVAR. */
|
|
start_time = now;
|
|
|
|
/* See if we have a previously-allocated stack instance. If so,
|
|
take it off the list. If not, malloc a new one. */
|
|
if (unused_stack_instances != NULL)
|
|
{
|
|
context = unused_stack_instances;
|
|
unused_stack_instances = unused_stack_instances->next;
|
|
}
|
|
else
|
|
context = (struct timevar_stack_def *)
|
|
xmalloc (sizeof (struct timevar_stack_def));
|
|
|
|
/* Fill it in and put it on the stack. */
|
|
context->timevar = tv;
|
|
context->next = stack;
|
|
stack = context;
|
|
}
|
|
|
|
/* Pop the topmost timing variable element off the timing stack. The
|
|
popped variable must be TIMEVAR. Elapsed time since the that
|
|
element was pushed on, or since it was last exposed on top of the
|
|
stack when the element above it was popped off, is credited to that
|
|
timing variable. */
|
|
|
|
void
|
|
timevar_pop (timevar)
|
|
timevar_id_t timevar;
|
|
{
|
|
struct timevar_time_def now;
|
|
struct timevar_stack_def *popped = stack;
|
|
|
|
if (!TIMEVAR_ENABLE)
|
|
return;
|
|
|
|
if (&timevars[timevar] != stack->timevar)
|
|
abort ();
|
|
|
|
/* What time is it? */
|
|
get_time (&now);
|
|
|
|
/* Attribute the elapsed time to the element we're popping. */
|
|
timevar_accumulate (&popped->timevar->elapsed, &start_time, &now);
|
|
|
|
/* Reset the start time; from now on, time is attributed to the
|
|
element just exposed on the stack. */
|
|
start_time = now;
|
|
|
|
/* Take the item off the stack. */
|
|
stack = stack->next;
|
|
|
|
/* Don't delete the stack element; instead, add it to the list of
|
|
unused elements for later use. */
|
|
popped->next = unused_stack_instances;
|
|
unused_stack_instances = popped;
|
|
}
|
|
|
|
/* Start timing TIMEVAR independently of the timing stack. Elapsed
|
|
time until timevar_stop is called for the same timing variable is
|
|
attributed to TIMEVAR. */
|
|
|
|
void
|
|
timevar_start (timevar)
|
|
timevar_id_t timevar;
|
|
{
|
|
struct timevar_def *tv = &timevars[timevar];
|
|
|
|
if (!TIMEVAR_ENABLE)
|
|
return;
|
|
|
|
/* Mark this timing variable as used. */
|
|
tv->used = 1;
|
|
|
|
/* Don't allow the same timing variable to be started more than
|
|
once. */
|
|
if (tv->standalone)
|
|
abort ();
|
|
tv->standalone = 1;
|
|
|
|
get_time (&tv->start_time);
|
|
}
|
|
|
|
/* Stop timing TIMEVAR. Time elapsed since timevar_start was called
|
|
is attributed to it. */
|
|
|
|
void
|
|
timevar_stop (timevar)
|
|
timevar_id_t timevar;
|
|
{
|
|
struct timevar_def *tv = &timevars[timevar];
|
|
struct timevar_time_def now;
|
|
|
|
if (!TIMEVAR_ENABLE)
|
|
return;
|
|
|
|
/* TIMEVAR must have been started via timevar_start. */
|
|
if (!tv->standalone)
|
|
abort ();
|
|
|
|
get_time (&now);
|
|
timevar_accumulate (&tv->elapsed, &tv->start_time, &now);
|
|
}
|
|
|
|
/* Fill the elapsed time for TIMEVAR into ELAPSED. Returns
|
|
update-to-date information even if TIMEVAR is currently running. */
|
|
|
|
void
|
|
timevar_get (timevar, elapsed)
|
|
timevar_id_t timevar;
|
|
struct timevar_time_def *elapsed;
|
|
{
|
|
struct timevar_def *tv = &timevars[timevar];
|
|
struct timevar_time_def now;
|
|
|
|
*elapsed = tv->elapsed;
|
|
|
|
/* Is TIMEVAR currently running as a standalone timer? */
|
|
if (tv->standalone)
|
|
{
|
|
get_time (&now);
|
|
timevar_accumulate (elapsed, &tv->start_time, &now);
|
|
}
|
|
/* Or is TIMEVAR at the top of the timer stack? */
|
|
else if (stack->timevar == tv)
|
|
{
|
|
get_time (&now);
|
|
timevar_accumulate (elapsed, &start_time, &now);
|
|
}
|
|
}
|
|
|
|
/* Summarize timing variables to FP. The timing variable TV_TOTAL has
|
|
a special meaning -- it's considered to be the total elapsed time,
|
|
for normalizing the others, and is displayed last. */
|
|
|
|
void
|
|
timevar_print (fp)
|
|
FILE *fp;
|
|
{
|
|
/* Only print stuff if we have some sort of time information. */
|
|
#if defined (HAVE_USER_TIME) || defined (HAVE_SYS_TIME) || defined (HAVE_WALL_TIME)
|
|
unsigned int /* timevar_id_t */ id;
|
|
struct timevar_time_def *total = &timevars[TV_TOTAL].elapsed;
|
|
struct timevar_time_def now;
|
|
|
|
if (!TIMEVAR_ENABLE)
|
|
return;
|
|
|
|
/* Update timing information in case we're calling this from GDB. */
|
|
|
|
if (fp == 0)
|
|
fp = stderr;
|
|
|
|
/* What time is it? */
|
|
get_time (&now);
|
|
|
|
/* If the stack isn't empty, attribute the current elapsed time to
|
|
the old topmost element. */
|
|
if (stack)
|
|
timevar_accumulate (&stack->timevar->elapsed, &start_time, &now);
|
|
|
|
/* Reset the start time; from now on, time is attributed to
|
|
TIMEVAR. */
|
|
start_time = now;
|
|
|
|
fputs (_("\nExecution times (seconds)\n"), fp);
|
|
for (id = 0; id < (unsigned int) TIMEVAR_LAST; ++id)
|
|
{
|
|
struct timevar_def *tv = &timevars[(timevar_id_t) id];
|
|
const float tiny = 5e-3;
|
|
|
|
/* Don't print the total execution time here; that goes at the
|
|
end. */
|
|
if ((timevar_id_t) id == TV_TOTAL)
|
|
continue;
|
|
|
|
/* Don't print timing variables that were never used. */
|
|
if (!tv->used)
|
|
continue;
|
|
|
|
/* Don't print timing variables if we're going to get a row of
|
|
zeroes. */
|
|
if (tv->elapsed.user < tiny
|
|
&& tv->elapsed.sys < tiny
|
|
&& tv->elapsed.wall < tiny)
|
|
continue;
|
|
|
|
/* The timing variable name. */
|
|
fprintf (fp, " %-22s:", tv->name);
|
|
|
|
#ifdef HAVE_USER_TIME
|
|
/* Print user-mode time for this process. */
|
|
fprintf (fp, "%7.2f (%2.0f%%) usr",
|
|
tv->elapsed.user,
|
|
(total->user == 0 ? 0 : tv->elapsed.user / total->user) * 100);
|
|
#endif /* HAVE_USER_TIME */
|
|
|
|
#ifdef HAVE_SYS_TIME
|
|
/* Print system-mode time for this process. */
|
|
fprintf (fp, "%7.2f (%2.0f%%) sys",
|
|
tv->elapsed.sys,
|
|
(total->sys == 0 ? 0 : tv->elapsed.sys / total->sys) * 100);
|
|
#endif /* HAVE_SYS_TIME */
|
|
|
|
#ifdef HAVE_WALL_TIME
|
|
/* Print wall clock time elapsed. */
|
|
fprintf (fp, "%7.2f (%2.0f%%) wall",
|
|
tv->elapsed.wall,
|
|
(total->wall == 0 ? 0 : tv->elapsed.wall / total->wall) * 100);
|
|
#endif /* HAVE_WALL_TIME */
|
|
|
|
putc ('\n', fp);
|
|
}
|
|
|
|
/* Print total time. */
|
|
fputs (_(" TOTAL :"), fp);
|
|
#ifdef HAVE_USER_TIME
|
|
fprintf (fp, "%7.2f ", total->user);
|
|
#endif
|
|
#ifdef HAVE_SYS_TIME
|
|
fprintf (fp, "%7.2f ", total->sys);
|
|
#endif
|
|
#ifdef HAVE_WALL_TIME
|
|
fprintf (fp, "%7.2f\n", total->wall);
|
|
#endif
|
|
|
|
#endif /* defined (HAVE_USER_TIME) || defined (HAVE_SYS_TIME)
|
|
|| defined (HAVE_WALL_TIME) */
|
|
}
|
|
|
|
/* Returns time (user + system) used so far by the compiler process,
|
|
in microseconds. */
|
|
|
|
long
|
|
get_run_time ()
|
|
{
|
|
struct timevar_time_def total_elapsed;
|
|
timevar_get (TV_TOTAL, &total_elapsed);
|
|
return total_elapsed.user + total_elapsed.sys;
|
|
}
|
|
|
|
/* Prints a message to stderr stating that time elapsed in STR is
|
|
TOTAL (given in microseconds). */
|
|
|
|
void
|
|
print_time (str, total)
|
|
const char *str;
|
|
long total;
|
|
{
|
|
long all_time = get_run_time ();
|
|
fprintf (stderr,
|
|
_("time in %s: %ld.%06ld (%ld%%)\n"),
|
|
str, total / 1000000, total % 1000000,
|
|
all_time == 0 ? 0
|
|
: (long) (((100.0 * (double) total) / (double) all_time) + .5));
|
|
}
|