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 (time_report)
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_accumulate
99 PARAMS ((struct timevar_time_def
*, struct timevar_time_def
*,
100 struct timevar_time_def
*));
102 /* Fill the current times into TIME. The definition of this function
103 also defines any or all of the HAVE_USER_TIME, HAVE_SYS_TIME, and
104 HAVA_WALL_TIME macros. */
108 struct timevar_time_def
*now
;
120 #if defined (_WIN32) && !defined (__CYGWIN__)
122 now
->user
= clock () * 1000;
123 #define HAVE_USER_TIME
125 #else /* not _WIN32 */
131 tick
= 1000000 / sysconf (_SC_CLK_TCK
);
132 now
->wall
= times (&tms
) * tick
;
133 now
->user
= tms
.tms_utime
* tick
;
134 now
->sys
= tms
.tms_stime
* tick
;
136 #define HAVE_USER_TIME
137 #define HAVE_SYS_TIME
138 #define HAVE_WALL_TIME
144 # if HAVE_SYSCONF && defined _SC_CLK_TCK
145 # define TICKS_PER_SECOND sysconf (_SC_CLK_TCK) /* POSIX 1003.1-1996 */
148 # define TICKS_PER_SECOND CLK_TCK /* POSIX 1003.1-1988; obsolescent */
150 # define TICKS_PER_SECOND HZ /* traditional UNIX */
153 now
->wall
= times (&tms
) * (1000000 / TICKS_PER_SECOND
);
154 now
->user
= tms
.tms_utime
* (1000000 / TICKS_PER_SECOND
);
155 now
->sys
= tms
.tms_stime
* (1000000 / TICKS_PER_SECOND
);
157 #define HAVE_USER_TIME
158 #define HAVE_SYS_TIME
159 #define HAVE_WALL_TIME
164 struct rusage rusage
;
165 getrusage (0, &rusage
);
167 = rusage
.ru_utime
.tv_sec
* 1000000 + rusage
.ru_utime
.tv_usec
;
169 = rusage
.ru_stime
.tv_sec
* 1000000 + rusage
.ru_stime
.tv_usec
;
171 #define HAVE_USER_TIME
172 #define HAVE_SYS_TIME
179 int proc_system_time
;
181 int child_system_time
;
183 now
->wall
= times ((void *) &vms_times
) * 10000;
184 now
->user
= vms_times
.proc_user_time
* 10000;
185 now
->sys
= vms_times
.proc_system_time
* 10000;
187 #define HAVE_USER_TIME
188 #define HAVE_SYS_TIME
189 #define HAVE_WALL_TIME
193 #endif /* _SC_CLK_TCK */
195 #endif /* __BEOS__ */
198 /* Add the difference between STOP_TIME and START_TIME to TIMER. */
201 timevar_accumulate (timer
, start_time
, stop_time
)
202 struct timevar_time_def
*timer
;
203 struct timevar_time_def
*start_time
;
204 struct timevar_time_def
*stop_time
;
206 timer
->user
+= stop_time
->user
- start_time
->user
;
207 timer
->sys
+= stop_time
->sys
- start_time
->sys
;
208 timer
->wall
+= stop_time
->wall
- start_time
->wall
;
211 /* Initialize timing variables. */
219 /* Zero all elapsed times. */
220 memset ((void *) timevars
, 0, sizeof (timevars
));
222 /* Initialize the names of timing variables. */
223 #define DEFTIMEVAR(identifer__, name__) \
224 timevars[identifer__].name = name__;
225 #include "timevar.def"
229 /* Push TIMEVAR onto the timing stack. No further elapsed time is
230 attributed to the previous topmost timing variable on the stack;
231 subsequent elapsed time is attributed to TIMEVAR, until it is
232 popped or another element is pushed on top.
234 TIMEVAR cannot be running as a standalone timer. */
237 timevar_push (timevar
)
238 timevar_id_t timevar
;
240 struct timevar_def
*tv
= &timevars
[timevar
];
241 struct timevar_stack_def
*context
;
242 struct timevar_time_def now
;
247 /* Mark this timing variable as used. */
250 /* Can't push a standalone timer. */
254 /* What time is it? */
257 /* If the stack isn't empty, attribute the current elapsed time to
258 the old topmost element. */
260 timevar_accumulate (&stack
->timevar
->elapsed
, &start_time
, &now
);
262 /* Reset the start time; from now on, time is attributed to
266 /* See if we have a previously-allocated stack instance. If so,
267 take it off the list. If not, malloc a new one. */
268 if (unused_stack_instances
!= NULL
)
270 context
= unused_stack_instances
;
271 unused_stack_instances
= unused_stack_instances
->next
;
274 context
= (struct timevar_stack_def
*)
275 xmalloc (sizeof (struct timevar_stack_def
));
277 /* Fill it in and put it on the stack. */
278 context
->timevar
= tv
;
279 context
->next
= stack
;
283 /* Pop the topmost timing variable element off the timing stack. The
284 popped variable must be TIMEVAR. Elapsed time since the that
285 element was pushed on, or since it was last exposed on top of the
286 stack when the element above it was popped off, is credited to that
290 timevar_pop (timevar
)
291 timevar_id_t timevar
;
293 struct timevar_time_def now
;
294 struct timevar_stack_def
*popped
= stack
;
299 if (&timevars
[timevar
] != stack
->timevar
)
302 /* What time is it? */
305 /* Attribute the elapsed time to the element we're popping. */
306 timevar_accumulate (&popped
->timevar
->elapsed
, &start_time
, &now
);
308 /* Reset the start time; from now on, time is attributed to the
309 element just exposed on the stack. */
312 /* Take the item off the stack. */
315 /* Don't delete the stack element; instead, add it to the list of
316 unused elements for later use. */
317 popped
->next
= unused_stack_instances
;
318 unused_stack_instances
= popped
;
321 /* Start timing TIMEVAR independently of the timing stack. Elapsed
322 time until timevar_stop is called for the same timing variable is
323 attributed to TIMEVAR. */
326 timevar_start (timevar
)
327 timevar_id_t timevar
;
329 struct timevar_def
*tv
= &timevars
[timevar
];
334 /* Mark this timing variable as used. */
337 /* Don't allow the same timing variable to be started more than
343 get_time (&tv
->start_time
);
346 /* Stop timing TIMEVAR. Time elapsed since timevar_start was called
347 is attributed to it. */
350 timevar_stop (timevar
)
351 timevar_id_t timevar
;
353 struct timevar_def
*tv
= &timevars
[timevar
];
354 struct timevar_time_def now
;
359 /* TIMEVAR must have been started via timevar_start. */
364 timevar_accumulate (&tv
->elapsed
, &tv
->start_time
, &now
);
367 /* Fill the elapsed time for TIMEVAR into ELAPSED. Returns
368 update-to-date information even if TIMEVAR is currently running. */
371 timevar_get (timevar
, elapsed
)
372 timevar_id_t timevar
;
373 struct timevar_time_def
*elapsed
;
375 struct timevar_def
*tv
= &timevars
[timevar
];
376 struct timevar_time_def now
;
378 *elapsed
= tv
->elapsed
;
380 /* Is TIMEVAR currently running as a standalone timer? */
384 timevar_accumulate (elapsed
, &tv
->start_time
, &now
);
386 /* Or is TIMEVAR at the top of the timer stack? */
387 else if (stack
->timevar
== tv
)
390 timevar_accumulate (elapsed
, &start_time
, &now
);
394 /* Summarize timing variables to FP. The timing variable TV_TOTAL has
395 a special meaning -- it's considered to be the total elapsed time,
396 for normalizing the others, and is displayed last. */
402 /* Only print stuff if we have some sort of time information. */
403 #if defined (HAVE_USER_TIME) || defined (HAVE_SYS_TIME) || defined (HAVE_WALL_TIME)
404 unsigned int /* timevar_id_t */ id
;
405 struct timevar_time_def
*total
= &timevars
[TV_TOTAL
].elapsed
;
406 struct timevar_time_def now
;
411 /* Update timing information in case we're calling this from GDB. */
416 /* What time is it? */
419 /* If the stack isn't empty, attribute the current elapsed time to
420 the old topmost element. */
422 timevar_accumulate (&stack
->timevar
->elapsed
, &start_time
, &now
);
424 /* Reset the start time; from now on, time is attributed to
428 fprintf (fp
, _("\nExecution times (seconds)\n"));
429 for (id
= 0; id
< (unsigned int) TIMEVAR_LAST
; ++id
)
431 struct timevar_def
*tv
= &timevars
[(timevar_id_t
) id
];
433 /* Don't print the total execution time here; that goes at the
435 if ((timevar_id_t
) id
== TV_TOTAL
)
438 /* Don't print timing variables that were never used. */
442 /* The timing variable name. */
443 fprintf (fp
, " %-22s:", tv
->name
);
445 #ifdef HAVE_USER_TIME
446 /* Print user-mode time for this process. */
447 fprintf (fp
, "%4ld.%02ld (%2.0f%%) usr",
448 tv
->elapsed
.user
/ 1000000,
449 (tv
->elapsed
.user
% 1000000) / 10000,
450 (total
->user
== 0) ? 0.0
451 : (100.0 * tv
->elapsed
.user
/ (double) total
->user
));
452 #endif /* HAVE_USER_TIME */
455 /* Print system-mode time for this process. */
456 fprintf (fp
, "%4ld.%02ld (%2.0f%%) sys",
457 tv
->elapsed
.sys
/ 1000000,
458 (tv
->elapsed
.sys
% 1000000) / 10000,
459 (total
->sys
== 0) ? 0.0
460 : (100.0 * tv
->elapsed
.sys
/ (double) total
->sys
));
461 #endif /* HAVE_SYS_TIME */
463 #ifdef HAVE_WALL_TIME
464 /* Print wall clock time elapsed. */
465 fprintf (fp
, "%4ld.%02ld (%2.0f%%) wall",
466 tv
->elapsed
.wall
/ 1000000,
467 (tv
->elapsed
.wall
% 1000000) / 10000,
468 (total
->wall
== 0) ? 0.0
469 : (100.0 * tv
->elapsed
.wall
/ (double) total
->wall
));
470 #endif /* HAVE_WALL_TIME */
475 /* Print total time. */
476 fprintf (fp
, _(" TOTAL :"));
477 #ifdef HAVE_USER_TIME
478 fprintf (fp
, "%4ld.%02ld ",
479 total
->user
/ 1000000, (total
->user
% 1000000) / 10000);
482 fprintf (fp
, "%4ld.%02ld ",
483 total
->sys
/ 1000000, (total
->sys
% 1000000) / 10000);
485 #ifdef HAVE_WALL_TIME
486 fprintf (fp
, "%4ld.%02ld\n",
487 total
->wall
/ 1000000, (total
->wall
% 1000000) / 10000);
490 #endif /* defined (HAVE_USER_TIME) || defined (HAVE_SYS_TIME)
491 || defined (HAVE_WALL_TIME) */
494 /* Returns time (user + system) used so far by the compiler process,
500 struct timevar_time_def total_elapsed
;
501 timevar_get (TV_TOTAL
, &total_elapsed
);
502 return total_elapsed
.user
+ total_elapsed
.sys
;
505 /* Prints a message to stderr stating that time elapsed in STR is
506 TOTAL (given in microseconds). */
509 print_time (str
, total
)
513 long all_time
= get_run_time ();
515 _("time in %s: %ld.%06ld (%ld%%)\n"),
516 str
, total
/ 1000000, total
% 1000000,
518 : (long) (((100.0 * (double) total
) / (double) all_time
) + .5));