1 /* Timing variables for measuring compiler performance.
2 Copyright (C) 2000 Free Software Foundation, Inc.
3 Contributed by Alex Samuel <samuel@codesourcery.com>
5 This file is part of GNU CC.
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
26 #ifdef HAVE_SYS_TIMES_H
27 # include <sys/times.h>
30 #ifdef HAVE_SYS_RESOURCE_H
31 #include <sys/resource.h>
33 #ifdef NEED_DECLARATION_GETRUSAGE
34 extern int getrusage
PARAMS ((int, struct rusage
*));
40 /* See timevar.h for an explanation of timing variables. */
42 /* This macro evaluates to non-zero if timing variables are enabled. */
43 #define TIMEVAR_ENABLE (!quiet_flag)
45 /* A timing variable. */
49 /* Elapsed time for this variable. */
50 struct timevar_time_def elapsed
;
52 /* If this variable is timed independently of the timing stack,
53 using timevar_start, this contains the start time. */
54 struct timevar_time_def start_time
;
56 /* The name of this timing variable. */
59 /* Non-zero if this timing variable is running as a standalone
61 unsigned standalone
: 1;
63 /* Non-zero if this timing variable was ever started or pushed onto
68 /* An element on the timing stack. Elapsed time is attributed to the
69 topmost timing variable on the stack. */
71 struct timevar_stack_def
73 /* The timing variable at this stack level. */
74 struct timevar_def
*timevar
;
76 /* The next lower timing variable context in the stack. */
77 struct timevar_stack_def
*next
;
80 /* Declared timing variables. Constructed from the contents of
82 static struct timevar_def timevars
[TIMEVAR_LAST
];
84 /* The top of the timing stack. */
85 static struct timevar_stack_def
*stack
;
87 /* A list of unused (i.e. allocated and subsequently popped)
88 timevar_stack_def instances. */
89 static struct timevar_stack_def
*unused_stack_instances
;
91 /* The time at which the topmost element on the timing stack was
92 pushed. Time elapsed since then is attributed to the topmost
94 static struct timevar_time_def start_time
;
97 PARAMS ((struct timevar_time_def
*));
98 static void timevar_add
99 PARAMS ((struct timevar_time_def
*, struct timevar_time_def
*));
100 static void timevar_accumulate
101 PARAMS ((struct timevar_time_def
*, struct timevar_time_def
*,
102 struct timevar_time_def
*));
104 /* Fill the current times into TIME. The definition of this function
105 also defines any or all of the HAVE_USER_TIME, HAVE_SYS_TIME, and
106 HAVA_WALL_TIME macros. */
110 struct timevar_time_def
*now
;
122 #if defined (_WIN32) && !defined (__CYGWIN__)
124 now
->user
= clock () * 1000;
125 #define HAVE_USER_TIME
127 #else /* not _WIN32 */
133 tick
= 1000000 / sysconf (_SC_CLK_TCK
);
134 now
->wall
= times (&tms
) * tick
;
135 now
->user
= tms
.tms_utime
* tick
;
136 now
->sys
= tms
.tms_stime
* tick
;
138 #define HAVE_USER_TIME
139 #define HAVE_SYS_TIME
140 #define HAVE_WALL_TIME
146 # if HAVE_SYSCONF && defined _SC_CLK_TCK
147 # define TICKS_PER_SECOND sysconf (_SC_CLK_TCK) /* POSIX 1003.1-1996 */
150 # define TICKS_PER_SECOND CLK_TCK /* POSIX 1003.1-1988; obsolescent */
152 # define TICKS_PER_SECOND HZ /* traditional UNIX */
155 now
->wall
= times (&tms
) * (1000000 / TICKS_PER_SECOND
);
156 now
->user
= tms
.tms_utime
* (1000000 / TICKS_PER_SECOND
);
157 now
->sys
= tms
.tms_stime
* (1000000 / TICKS_PER_SECOND
);
159 #define HAVE_USER_TIME
160 #define HAVE_SYS_TIME
161 #define HAVE_WALL_TIME
166 struct rusage rusage
;
167 getrusage (0, &rusage
);
169 = rusage
.ru_utime
.tv_sec
* 1000000 + rusage
.ru_utime
.tv_usec
;
171 = rusage
.ru_stime
.tv_sec
* 1000000 + rusage
.ru_stime
.tv_usec
;
173 #define HAVE_USER_TIME
174 #define HAVE_SYS_TIME
181 int proc_system_time
;
183 int child_system_time
;
185 now
->wall
= times ((void *) &vms_times
) * 10000;
186 now
->user
= vms_times
.proc_user_time
* 10000;
187 now
->sys
= vms_times
.proc_system_time
* 10000;
189 #define HAVE_USER_TIME
190 #define HAVE_SYS_TIME
191 #define HAVE_WALL_TIME
195 #endif /* _SC_CLK_TCK */
197 #endif /* __BEOS__ */
200 /* Add ELAPSED to TIMER. */
203 timevar_add (timer
, elapsed
)
204 struct timevar_time_def
*timer
;
205 struct timevar_time_def
*elapsed
;
207 timer
->user
+= elapsed
->user
;
208 timer
->sys
+= elapsed
->sys
;
209 timer
->wall
+= elapsed
->wall
;
212 /* Add the difference between STOP_TIME and START_TIME to TIMER. */
215 timevar_accumulate (timer
, start_time
, stop_time
)
216 struct timevar_time_def
*timer
;
217 struct timevar_time_def
*start_time
;
218 struct timevar_time_def
*stop_time
;
220 timer
->user
+= stop_time
->user
- start_time
->user
;
221 timer
->sys
+= stop_time
->sys
- start_time
->sys
;
222 timer
->wall
+= stop_time
->wall
- start_time
->wall
;
225 /* Initialize timing variables. */
233 /* Zero all elapsed times. */
234 memset ((void *) timevars
, 0, sizeof (timevars
));
236 /* Initialize the names of timing variables. */
237 #define DEFTIMEVAR(identifer__, name__) \
238 timevars[identifer__].name = name__;
239 #include "timevar.def"
243 /* Push TIMEVAR onto the timing stack. No further elapsed time is
244 attributed to the previous topmost timing variable on the stack;
245 subsequent elapsed time is attributed to TIMEVAR, until it is
246 popped or another element is pushed on top.
248 TIMEVAR cannot be running as a standalone timer. */
251 timevar_push (timevar
)
252 timevar_id_t timevar
;
254 struct timevar_def
*tv
= &timevars
[timevar
];
255 struct timevar_stack_def
*context
;
256 struct timevar_time_def now
;
261 /* Mark this timing variable as used. */
264 /* Can't push a standalone timer. */
268 /* What time is it? */
271 /* If the stack isn't empty, attribute the current elapsed time to
272 the old topmost element. */
274 timevar_accumulate (&stack
->timevar
->elapsed
, &start_time
, &now
);
276 /* Reset the start time; from now on, time is attributed to
280 /* See if we have a previously-allocated stack instance. If so,
281 take it off the list. If not, malloc a new one. */
282 if (unused_stack_instances
!= NULL
)
284 context
= unused_stack_instances
;
285 unused_stack_instances
= unused_stack_instances
->next
;
288 context
= (struct timevar_stack_def
*)
289 xmalloc (sizeof (struct timevar_stack_def
));
291 /* Fill it in and put it on the stack. */
292 context
->timevar
= tv
;
293 context
->next
= stack
;
297 /* Pop the topmost timing variable element off the timing stack. The
298 popped variable must be TIMEVAR. Elapsed time since the that
299 element was pushed on, or since it was last exposed on top of the
300 stack when the element above it was popped off, is credited to that
304 timevar_pop (timevar
)
305 timevar_id_t timevar
;
307 struct timevar_time_def now
;
308 struct timevar_stack_def
*popped
= stack
;
313 if (&timevars
[timevar
] != stack
->timevar
)
316 /* What time is it? */
319 /* Attribute the elapsed time to the element we're popping. */
320 timevar_accumulate (&popped
->timevar
->elapsed
, &start_time
, &now
);
322 /* Reset the start time; from now on, time is attributed to the
323 element just exposed on the stack. */
326 /* Take the item off the stack. */
329 /* Don't delete the stack element; instead, add it to the list of
330 unused elements for later use. */
331 popped
->next
= unused_stack_instances
;
332 unused_stack_instances
= popped
;
335 /* Start timing TIMEVAR independently of the timing stack. Elapsed
336 time until timevar_stop is called for the same timing variable is
337 attributed to TIMEVAR. */
340 timevar_start (timevar
)
341 timevar_id_t timevar
;
343 struct timevar_def
*tv
= &timevars
[timevar
];
348 /* Mark this timing variable as used. */
351 /* Don't allow the same timing variable to be started more than
357 get_time (&tv
->start_time
);
360 /* Stop timing TIMEVAR. Time elapsed since timevar_start was called
361 is attributed to it. */
364 timevar_stop (timevar
)
365 timevar_id_t timevar
;
367 struct timevar_def
*tv
= &timevars
[timevar
];
368 struct timevar_time_def now
;
373 /* TIMEVAR must have been started via timevar_start. */
378 timevar_accumulate (&tv
->elapsed
, &tv
->start_time
, &now
);
381 /* Fill the elapsed time for TIMEVAR into ELAPSED. Returns
382 update-to-date information even if TIMEVAR is currently running. */
385 timevar_get (timevar
, elapsed
)
386 timevar_id_t timevar
;
387 struct timevar_time_def
*elapsed
;
389 struct timevar_def
*tv
= &timevars
[timevar
];
391 *elapsed
= tv
->elapsed
;
393 /* Is TIMEVAR currently running as a standalone timer? */
395 /* Add the time elapsed since the it was started. */
396 timevar_add (elapsed
, &tv
->start_time
);
398 /* Is TIMEVAR at the top of the timer stack? */
399 if (stack
->timevar
== tv
)
400 /* Add the elapsed time since it was pushed. */
401 timevar_add (elapsed
, &start_time
);
404 /* Summarize timing variables to FP. The timing variable TV_TOTAL has
405 a special meaning -- it's considered to be the total elapsed time,
406 for normalizing the others, and is displayed last. */
412 /* Only print stuff if we have some sort of time information. */
413 #if defined (HAVE_USER_TIME) || defined (HAVE_SYS_TIME) || defined (HAVE_WALL_TIME)
415 struct timevar_time_def
*total
= &timevars
[TV_TOTAL
].elapsed
;
416 struct timevar_time_def now
;
421 /* Update timing information in case we're calling this from GDB. */
426 /* What time is it? */
429 /* If the stack isn't empty, attribute the current elapsed time to
430 the old topmost element. */
432 timevar_accumulate (&stack
->timevar
->elapsed
, &start_time
, &now
);
434 /* Reset the start time; from now on, time is attributed to
438 fprintf (fp
, _("\nExecution times (seconds)\n"));
439 for (id
= 0; id
< TIMEVAR_LAST
; ++id
)
441 struct timevar_def
*tv
= &timevars
[id
];
443 /* Don't print the total execution time here; that goes at the
448 /* Don't print timing variables that were never used. */
452 /* The timing variable name. */
453 fprintf (fp
, " %-22s:", tv
->name
);
455 #ifdef HAVE_USER_TIME
456 /* Print user-mode time for this process. */
457 fprintf (fp
, "%4ld.%02ld (%2.0f%%) usr",
458 tv
->elapsed
.user
/ 1000000,
459 (tv
->elapsed
.user
% 1000000) / 10000,
460 (total
->user
== 0) ? 0.0
461 : (100.0 * tv
->elapsed
.user
/ (double) total
->user
));
462 #endif /* HAVE_USER_TIME */
465 /* Print system-mode time for this process. */
466 fprintf (fp
, "%4ld.%02ld (%2.0f%%) sys",
467 tv
->elapsed
.sys
/ 1000000,
468 (tv
->elapsed
.sys
% 1000000) / 10000,
469 (total
->sys
== 0) ? 0.0
470 : (100.0 * tv
->elapsed
.sys
/ (double) total
->sys
));
471 #endif /* HAVE_SYS_TIME */
473 #ifdef HAVE_WALL_TIME
474 /* Print wall clock time elapsed. */
475 fprintf (fp
, "%4ld.%02ld (%2.0f%%) wall",
476 tv
->elapsed
.wall
/ 1000000,
477 (tv
->elapsed
.wall
% 1000000) / 10000,
478 (total
->wall
== 0) ? 0.0
479 : (100.0 * tv
->elapsed
.wall
/ (double) total
->wall
));
480 #endif /* HAVE_WALL_TIME */
485 /* Print total time. */
486 fprintf (fp
, _(" TOTAL :"));
487 #ifdef HAVE_USER_TIME
488 fprintf (fp
, "%4ld.%02ld ",
489 total
->user
/ 1000000, (total
->user
% 1000000) / 10000);
492 fprintf (fp
, "%4ld.%02ld ",
493 total
->sys
/ 1000000, (total
->sys
% 1000000) / 10000);
495 #ifdef HAVE_WALL_TIME
496 fprintf (fp
, "%4ld.%02ld\n",
497 total
->wall
/ 1000000, (total
->wall
% 1000000) / 10000);
500 #endif /* defined (HAVE_USER_TIME) || defined (HAVE_SYS_TIME)
501 || defined (HAVE_WALL_TIME) */
504 /* Returns time (user + system) used so far by the compiler process,
510 struct timevar_time_def total_elapsed
;
511 timevar_get (TV_TOTAL
, &total_elapsed
);
512 return total_elapsed
.user
+ total_elapsed
.sys
;
515 /* Prints a message to stderr stating that time elapsed in STR is
516 TOTAL (given in microseconds). */
519 print_time (str
, total
)
523 long all_time
= get_run_time ();
525 _("time in %s: %ld.%06ld (%ld%%)\n"),
526 str
, total
/ 1000000, total
% 1000000,
528 : (long) (((100.0 * (double) total
) / (double) all_time
) + .5));