annotate lib-src/profile.c @ 412:697ef44129c6 r21-2-14

Import from CVS: tag r21-2-14
author cvs
date Mon, 13 Aug 2007 11:20:41 +0200
parents de805c49cfc1
children
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 */
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
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
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
44 #ifdef WINDOWSNT
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 272
diff changeset
45 #include <sys/timeb.h>
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 272
diff changeset
46 /* Emulate gettimeofday (Ulrich Leodolter, 1/11/95). */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 272
diff changeset
47 void
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 272
diff changeset
48 gettimeofday (struct timeval *tv, struct timezone *tz)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 272
diff changeset
49 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 272
diff changeset
50 struct _timeb tb;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 272
diff changeset
51 _ftime (&tb);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 272
diff changeset
52
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 272
diff changeset
53 tv->tv_sec = tb.time;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 272
diff changeset
54 tv->tv_usec = tb.millitm * 1000L;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 272
diff changeset
55 if (tz)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 272
diff changeset
56 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 272
diff changeset
57 tz->tz_minuteswest = tb.timezone; /* minutes west of Greenwich */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 272
diff changeset
58 tz->tz_dsttime = tb.dstflag; /* type of dst correction */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 272
diff changeset
59 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 272
diff changeset
60 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 272
diff changeset
61 #endif
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 272
diff changeset
62
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 /* Reset the stopwatch to zero. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 reset_watch (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 EMACS_GET_TIME (TV1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 watch_not_started = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 /* This call returns the time since the last reset_watch call. The time
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 is returned as a string with the format <seconds>.<micro-seconds>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 If reset_watch was not called yet, exit. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 static char *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 get_time (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 if (watch_not_started)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 exit (1); /* call reset_watch first ! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 EMACS_GET_TIME (TV2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 if (TV1.tv_usec > TV2.tv_usec)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 TV2.tv_usec += 1000000;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 TV2.tv_sec--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 sprintf (time_string, "%lu.%06lu",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 (unsigned long) TV2.tv_sec - TV1.tv_sec,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 (unsigned long) TV2.tv_usec - TV1.tv_usec);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 return time_string;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 0
diff changeset
93 int
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 0
diff changeset
94 main (int argc, char *argv[])
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 int c;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 while ((c = getchar ()) != EOF)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 switch (c)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 case 'z':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 reset_watch ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 case 'p':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 puts (get_time ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 case 'q':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 exit (0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 /* Anything remaining on the line is ignored. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 while (c != '\n' && c != EOF)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 c = getchar ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 }
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 0
diff changeset
114 return 1;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 }