annotate lib-src/profile.c @ 18:d95e72db5c07 r19-15b92

Import from CVS: tag r19-15b92
author cvs
date Mon, 13 Aug 2007 08:49:43 +0200
parents 376386a54a3c
children 538048ae2ab8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* profile.c --- generate periodic events for profiling of Emacs Lisp code.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1992, 1994 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 Author: Boaz Ben-Zvi <boaz@lcs.mit.edu>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 This file is part of GNU Emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 GNU Emacs is free software; you can redistribute it and/or modify
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 it under the terms of the GNU General Public License as published by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 the Free Software Foundation; either version 2, or (at your option)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 GNU Emacs is distributed in the hope that it will be useful,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 GNU General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 along with GNU Emacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 the Free the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 /* Synched up with: FSF 19.28. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 /* #### Not sure if this is needed for XEmacs. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 /**
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 ** To be run as an emacs process. Input string that starts with:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 ** 'z' -- resets the watch (to zero).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 ** 'p' -- return time (on stdout) as string with format <sec>.<micro-sec>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 ** 'q' -- exit.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 **
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 ** abstraction : a stopwatch
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 ** operations: reset_watch, get_time
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 #include <stdio.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 #if __STDC__ || defined(STDC_HEADERS)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 #include <stdlib.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 #include <config.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 #include <../src/systime.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 static struct timeval TV1, TV2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 static int watch_not_started = 1; /* flag */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 static char time_string[30];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 /* Reset the stopwatch to zero. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 reset_watch (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 EMACS_GET_TIME (TV1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 watch_not_started = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 /* This call returns the time since the last reset_watch call. The time
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 is returned as a string with the format <seconds>.<micro-seconds>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 If reset_watch was not called yet, exit. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 static char *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 get_time (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 if (watch_not_started)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 exit (1); /* call reset_watch first ! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 EMACS_GET_TIME (TV2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 if (TV1.tv_usec > TV2.tv_usec)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 TV2.tv_usec += 1000000;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 TV2.tv_sec--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 sprintf (time_string, "%lu.%06lu",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 (unsigned long) TV2.tv_sec - TV1.tv_sec,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 (unsigned long) TV2.tv_usec - TV1.tv_usec);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 return time_string;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 main (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 int c;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 while ((c = getchar ()) != EOF)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 switch (c)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 case 'z':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 reset_watch ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 case 'p':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 puts (get_time ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 case 'q':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 exit (0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 /* Anything remaining on the line is ignored. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 while (c != '\n' && c != EOF)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 c = getchar ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 exit (1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 }