annotate lib-src/profile.c @ 345:b2046b8c83c9 r21-1-2

Import from CVS: tag r21-1-2
author cvs
date Mon, 13 Aug 2007 10:53:19 +0200
parents c5d627a313b1
children 74fd4e045ea6
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 */
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 157
diff changeset
35 #include <../src/config.h>
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 #include <stdio.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 #include <stdlib.h>
157
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 155
diff changeset
38 #include "../src/systime.h"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 static struct timeval TV1, TV2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 static int watch_not_started = 1; /* flag */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 static char time_string[30];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 /* Reset the stopwatch to zero. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 reset_watch (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 EMACS_GET_TIME (TV1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 watch_not_started = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 /* This call returns the time since the last reset_watch call. The time
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 is returned as a string with the format <seconds>.<micro-seconds>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 If reset_watch was not called yet, exit. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 static char *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 get_time (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 if (watch_not_started)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 exit (1); /* call reset_watch first ! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 EMACS_GET_TIME (TV2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 if (TV1.tv_usec > TV2.tv_usec)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 TV2.tv_usec += 1000000;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 TV2.tv_sec--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 sprintf (time_string, "%lu.%06lu",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 (unsigned long) TV2.tv_sec - TV1.tv_sec,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 (unsigned long) TV2.tv_usec - TV1.tv_usec);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 return time_string;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 0
diff changeset
74 int
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 0
diff changeset
75 main (int argc, char *argv[])
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 int c;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 while ((c = getchar ()) != EOF)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 switch (c)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 case 'z':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 reset_watch ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 case 'p':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 puts (get_time ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 case 'q':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 exit (0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 /* Anything remaining on the line is ignored. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 while (c != '\n' && c != EOF)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 c = getchar ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 }
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 0
diff changeset
95 return 1;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 }