Mercurial > hg > xemacs-beta
view src/profile.c @ 1315:70921960b980
[xemacs-hg @ 2003-02-20 08:19:28 by ben]
check in makefile fixes et al
Makefile.in.in: Major surgery. Move all stuff related to building anything in the
src/ directory into src/. Simplify the dependencies -- everything
in src/ is dependent on the single entry `src' in MAKE_SUBDIRS.
Remove weirdo targets like `all-elc[s]', dump-elc[s], etc.
mule/mule-msw-init.el: Removed.
Delete this file.
mule/mule-win32-init.el: New file, with stuff from mule-msw-init.el -- not just for MS Windows
native, boys and girls!
bytecomp.el: Change code inserted to catch trying to load a Mule-only .elc
file in a non-Mule XEmacs. Formerly you got the rather cryptic
"The required feature `mule' cannot be provided". Now you get
"Loading this file requires Mule support".
finder.el: Remove dependency on which directory this function is invoked
from.
update-elc.el: Don't mess around with ../src/BYTECOMPILE_CHANGE. Now that
Makefile.in.in and xemacs.mak are in sync, both of them use
NEEDTODUMP and the other one isn't used.
dumped-lisp.el: Rewrite in terms of `list' and `nconc' instead of assemble-list, so
we can have arbitrary forms, not just `when-feature'.
very-early-lisp.el: Nuke this file.
finder-inf.el, packages.el, update-elc.el, update-elc-2.el, loadup.el, make-docfile.el: Eliminate references to very-early-lisp.
msw-glyphs.el: Comment clarification.
xemacs.mak: Add macros DO_TEMACS, DO_XEMACS, and a few others; this macro
section is now completely in sync with src/Makefile.in.in. Copy
check-features, load-shadows, and rebuilding finder-inf.el from
src/Makefile.in.in. The main build/dump/recompile process is now
synchronized with src/Makefile.in.in. Change `WARNING' to `NOTE'
and `error checking' to `error-checking' TO avoid tripping
faux warnings and errors in the VC++ IDE.
Makefile.in.in: Major surgery. Move all stuff related to building anything in the
src/ directory from top-level Makefile.in.in to here. Simplify
the dependencies. Rearrange into logical subsections.
Synchronize the main compile/dump/build-elcs section with
xemacs.mak, which is already clean and in good working order.
Remove weirdo targets like `all-elc[s]', dump-elc[s], etc. Add
additional levels of macros \(e.g. DO_TEMACS, DO_XEMACS,
TEMACS_BATCH, XEMACS_BATCH, XEMACS_BATCH_PACKAGES) to factor out
duplicated stuff. Clean up handling of "HEAP_IN_DATA" (Cygwin) so
it doesn't need to ignore the return value from dumping. Add
.NO_PARALLEL since various aspects of building and dumping must be
serialized but do not always have dependencies between them
(this is impossible in some cases). Everything related to src/
now gets built in one pass in this directory by just running
`make' (except the Makefiles themselves and config.h, paths.h,
Emacs.ad.h, and other generated .h files).
console.c: Update list of possibly valid console types.
emacs.c: Rationalize the specifying and handling of the type of the first
frame. This was originally prompted by a workspace in which I got
GTK to compile under C++ and in the process fixed it so it could
coexist with X in the same build -- hence, a combined
TTY/X/MS-Windows/GTK build is now possible under Cygwin. (However,
you can't simultaneously *display* more than one kind of device
connection -- but getting that to work is not that difficult.
Perhaps a project for a bored grad student. I (ben) would do it
but don't see the use.) To make sense of this, I added new
switches that can be used to specifically indicate the window
system: -x [aka --use-x], -tty \[aka --use-tty], -msw [aka
--use-ms-windows], -gtk [aka --use-gtk], and -gnome [aka
--use-gnome, same as --use-gtk]. -nw continues as an alias for
-tty. When none have been given, XEmacs checks for other
parameters implying particular device types (-t -> tty, -display
-> x [or should it have same treatment as DISPLAY below?]), and
has ad-hoc logic afterwards: if env var DISPLAY is set, use x (or
gtk? perhaps should check whether gnome is running), else MS
Windows if it exsits, else TTY if it exists, else stream, and you
must be running in batch mode. This also fixes an existing bug
whereby compiling with no x, no mswin, no tty, when running non-
interactively (e.g. to dump) I get "sorry, must have TTY support".
emacs.c: Turn on Vstack_trace_on_error so that errors are debuggable even
when occurring extremely early in reinitialization.
emacs.c: Try to make sure that the user can see message output under
Windows (i.e. it doesn't just disappear right away) regardless of
when it occurs, e.g. in the middle of creating the first frame.
emacs.c: Define new function `emacs-run-status', indicating whether XEmacs
is noninteractive or interactive, whether raw,
post-dump/pdump-load or run-temacs, whether we are dumping,
whether pdump is in effect.
event-stream.c: It's "mommas are fat", not "momas are fat".
Fix other typo.
event-stream.c: Conditionalize in_menu_callback check on HAVE_MENUBARS,
because it won't exist on w/o menubar support,
lisp.h: More hackery on RETURN_NOT_REACHED. Cygwin v3.2 DOES complain here
if RETURN_NOT_REACHED() is blank, as it is for GCC 2.5+. So make it
blank only for GCC 2.5 through 2.999999999999999.
Declare Vstack_trace_on_error.
profile.c: Need to include "profile.h" to fix warnings.
sheap.c: Don't fatal() when need to rerun Make, just stderr_out() and exit(0).
That way we can distinguish between a dumping failing expectedly
(due to lack of stack space, triggering another dump) and unexpectedly,
in which case, we want to stop building. (or go on, if -K is given)
syntax.c, syntax.h: Use ints where they belong, and enum syntaxcode's where they belong,
and fix warnings thereby.
syntax.h: Fix crash caused by an edge condition in the syntax-cache macros.
text.h: Spacing fixes.
xmotif.h: New file, to get around shadowing warnings.
EmacsManager.c, event-Xt.c, glyphs-x.c, gui-x.c, input-method-motif.c, xmmanagerp.h, xmprimitivep.h: Include xmotif.h.
alloc.c: Conditionalize in_malloc on ERROR_CHECK_MALLOC.
config.h.in, file-coding.h, fileio.c, getloadavg.c, select-x.c, signal.c, sysdep.c, sysfile.h, systime.h, text.c, unicode.c: Eliminate HAVE_WIN32_CODING_SYSTEMS, use WIN32_ANY instead.
Replace defined (WIN32_NATIVE) || defined (CYGWIN) with WIN32_ANY.
lisp.h: More futile attempts to walk and chew gum at the same time when
dealing with subr's that don't return.
author | ben |
---|---|
date | Thu, 20 Feb 2003 08:19:44 +0000 |
parents | f3437b56874d |
children | 01c57eb70ae9 |
line wrap: on
line source
/* Why the hell is XEmacs so fucking slow? Copyright (C) 1996, 2002, 2003 Ben Wing. Copyright (C) 1998 Free Software Foundation, Inc. This file is part of XEmacs. XEmacs is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. XEmacs is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with XEmacs; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include <config.h> #include "lisp.h" #include "backtrace.h" #include "bytecode.h" #include "elhash.h" #include "hash.h" #include "profile.h" #include "syssignal.h" #include "systime.h" #ifndef HAVE_SETITIMER #error Sorry charlie. We need a scalpel and all we have is a lawnmower. #endif #ifdef WIN32_ANY int mswindows_is_blocking; #endif /* Written by Ben Wing. We implement our own profiling scheme so that we can determine things like which Lisp functions are occupying the most time. Any standard OS-provided profiling works on C functions, which is not always that useful -- and inconvenient, since it requires compiling with profile info and can't be retrieved dynamically, as XEmacs is running. The basic idea is simple. We set a profiling timer using setitimer (ITIMER_PROF), which generates a SIGPROF every so often. (This runs not in real time but rather when the process is executing or the system is running on behalf of the process.) When the signal goes off, we see what we're in, and add 1 to the count associated with that function. It would be nice to use the Lisp allocation mechanism etc. to keep track of the profiling information (i.e. to use Lisp hash tables), but we can't because that's not safe -- updating the timing information happens inside of a signal handler, so we can't rely on not being in the middle of Lisp allocation, garbage collection, malloc(), etc. Trying to make it work would be much more work than it's worth. Instead we use a basic (non-Lisp) hash table, which will not conflict with garbage collection or anything else as long as it doesn't try to resize itself. Resizing itself, however (which happens as a result of a puthash()), could be deadly. To avoid this, we make sure, at points where it's safe (e.g. profile_record_about_to_call() -- recording the entry into a function call), that the table always has some breathing room in it so that no resizes will occur until at least that many items are added. This is safe because any new item to be added in the sigprof would likely have the profile_record_about_to_call() called just before it, and the breathing room is checked. In general: any entry that the sigprof handler puts into the table comes from a backtrace frame (except "Processing Events at Top Level", and there's only one of those). Either that backtrace frame was added when profiling was on (in which case profile_record_about_to_call() was called and the breathing space updated), or when it was off -- and in this case, no such frames can have been added since the last time `start-profile' was called, so when `start-profile' is called we make sure there is sufficient breathing room to account for all entries currently on the stack. Jan 1998: In addition to timing info, I have added code to remember call counts of Lisp funcalls. The profile_increase_call_count() function is called from Ffuncall(), and serves to add data to Vcall_count_profile_table. This mechanism is much simpler and independent of the SIGPROF-driven one. It uses the Lisp allocation mechanism normally, since it is not called from a handler. It may even be useful to provide a way to turn on only one profiling mechanism, but I haven't done so yet. --hniksic Dec 2002: Total overhaul of the interface, making it sane and easier to use. --ben Feb 2003: Lots of rewriting of the internal code. Add GC-consing-usage, total GC usage, and total timing to the information tracked. Track profiling overhead and allow the ability to have internal sections (e.g. internal-external conversion, byte-char conversion) that are treated like Lisp functions for the purpose of profiling. --ben BEWARE: If you are modifying this file, be *very* careful. Correctly implementing the "total" values is very tricky due to the possibility of recursion and of functions already on the stack when starting to profile/still on the stack when stopping. */ /* We use a plain table here because we're recording inside of a signal handler. */ static struct hash_table *big_profile_table; Lisp_Object Vtotal_timing_profile_table; Lisp_Object Vcall_count_profile_table; Lisp_Object Vtotal_gc_usage_profile_table; Lisp_Object Vgc_usage_profile_table; extern int lisp_eval_depth; extern EMACS_UINT total_consing; static volatile EMACS_UINT total_ticks; Fixnum default_profiling_interval; int profiling_active; static Lisp_Object QSprocessing_events_at_top_level; static Lisp_Object QSunknown, QSprofile_overhead; static Lisp_Object Qtiming, Qtotal_timing, Qcall_count; static Lisp_Object Qgc_usage, Qtotal_gc_usage; /* This needs to be >= the total number of defined internal sections, plus 1 or 2?? Set it extra big just to be ultra-paranoid. */ #define EXTRA_BREATHING_ROOM 100 /* We use profiling_lock to prevent the signal handler from writing to the table while another routine is operating on it. We also set profiling_lock in case the timeout between signal calls is short enough to catch us while we're already in there. */ static volatile int profiling_lock; /* Whether we're in the process of doing *any* profiling-related stuff. Used to indicate amount of time spent profiling. */ static int in_profiling; #if 0 /* #### for KKCC, eventually */ static const struct memory_description hentry_description_1[] = { { XD_LISP_OBJECT, offsetof (hentry, key) }, { XD_END } }; static const struct sized_memory_description hentry_description = { sizeof (hentry), hentry_description_1 }; static const struct memory_description plain_hash_table_description_1[] = { { XD_ELEMCOUNT, offsetof (struct hash_table, size) }, { XD_STRUCT_PTR, offsetof (struct hash_table, harray), XD_INDIRECT (0, 0), &hentry_description }, { XD_END } }; static const struct sized_memory_description plain_hash_table_description = { sizeof (struct hash_table), plain_hash_table_description_1 }; #endif /* 0 */ static void create_timing_profile_table (void) { /* The hash code can safely be called from a signal handler except when it has to grow the hash table. In this case, it calls realloc(), which is not (in general) re-entrant. The way we deal with this is documented at the top of this file. */ if (!big_profile_table) big_profile_table = make_hash_table (2000); } static void create_profile_tables (void) { create_timing_profile_table (); if (NILP (Vtotal_timing_profile_table)) Vtotal_timing_profile_table = make_lisp_hash_table (100, HASH_TABLE_NON_WEAK, HASH_TABLE_EQ); if (NILP (Vcall_count_profile_table)) Vcall_count_profile_table = make_lisp_hash_table (100, HASH_TABLE_NON_WEAK, HASH_TABLE_EQ); if (NILP (Vgc_usage_profile_table)) Vgc_usage_profile_table = make_lisp_hash_table (100, HASH_TABLE_NON_WEAK, HASH_TABLE_EQ); if (NILP (Vtotal_gc_usage_profile_table)) Vtotal_gc_usage_profile_table = make_lisp_hash_table (100, HASH_TABLE_NON_WEAK, HASH_TABLE_EQ); } static Lisp_Object current_profile_function (void) { Lisp_Object fun; struct backtrace *bt = backtrace_list; /* 2 because we set in_profiling when we entered the current routine. */ if (in_profiling >= 2) return QSprofile_overhead; /* Find a function actually being called. Potentially (?) there could be a number of non-calling funs -- calling foo autoloads, which tries to call bar, but requires evalling its args first, which calls baz, ... If profiling was not enabled when the function was called, just treat the function as actually called, because the info about whether we've finished the preamble will not have been recorded. */ for (; bt && !bt->function_being_called; bt = bt->next) ; if (bt) { fun = *bt->function; if (!SYMBOLP (fun) && !COMPILED_FUNCTIONP (fun) && !SUBRP (fun) && !CONSP (fun) && !STRINGP (fun)) fun = QSunknown; } else fun = QSprocessing_events_at_top_level; return fun; } void profile_record_consing (EMACS_INT size) { Lisp_Object fun; Lisp_Object count; in_profiling++; fun = current_profile_function (); count = Fgethash (fun, Vgc_usage_profile_table, Qzero); Fputhash (fun, make_int (size + XINT (count)), Vgc_usage_profile_table); in_profiling--; } void profile_record_unconsing (EMACS_INT size) { /* If we don't want to record values less than 0, change this; but then the totals won't be accurate. */ profile_record_consing (-size); } inline static void profile_sow_backtrace (struct backtrace *bt) { bt->current_total_timing_val = XINT (Fgethash (*bt->function, Vtotal_timing_profile_table, Qzero)); bt->current_total_gc_usage_val = XINT (Fgethash (*bt->function, Vtotal_gc_usage_profile_table, Qzero)); bt->function_being_called = 1; /* Need to think carefully about the exact order of operations here so that we don't end up with totals being less than function-only values; */ bt->total_consing_at_start = total_consing; /* Order of operation is tricky here because we want the total function time to be as close as possible to (and absolutely not less than) the function-only time. From the sigprof-handler's perspective, the function is "entered" the moment we finish executing the in_profiling-- statement below, and ends the moment we finish executing the in_profiling++ statement in profile_record_just_called(). By recording the tick value as close as possible to the "in-function" window but not in it, we satisfy the conditions just mentioned. */ bt->total_ticks_at_start = total_ticks; } void profile_record_about_to_call (struct backtrace *bt) { in_profiling++; profiling_lock = 1; /* See comments in create_timing_profile_table(). */ pregrow_hash_table_if_necessary (big_profile_table, EXTRA_BREATHING_ROOM); profiling_lock = 0; Fputhash (*bt->function, make_int (1 + XINT (Fgethash (*bt->function, Vcall_count_profile_table, Qzero))), Vcall_count_profile_table); /* This may be set if the function was in its preamble at the time that `start-profiling' was called. If so, we shouldn't reset the values because we may get inconsistent results, since we have already started recording ticks and consing for the function. */ if (!bt->function_being_called) profile_sow_backtrace (bt); in_profiling--; } inline static void profile_reap_backtrace (struct backtrace *bt) { EMACS_UINT ticks; /* The following statement *MUST* come directly after the preceding one! See the comment above. */ ticks = total_ticks; /* We need to reset the "in-function" flag here. Otherwise the sigprof handler will record more ticks for the function while the post-amble is executing, and its value will be > our total value. */ bt->function_being_called = 0; Fputhash (*bt->function, /* This works even when the total_ticks value has overwrapped. Same for total_consing below. */ make_int ((EMACS_INT) (ticks - bt->total_ticks_at_start) + bt->current_total_timing_val), Vtotal_timing_profile_table); Fputhash (*bt->function, make_int ((EMACS_INT) (total_consing - bt->total_consing_at_start) + bt->current_total_gc_usage_val), Vtotal_gc_usage_profile_table); } void profile_record_just_called (struct backtrace *bt) { in_profiling++; profile_reap_backtrace (bt); in_profiling--; } /* Called when unwinding the catch stack after a throw or signal, to note that we are exiting the function. */ void profile_record_unwind (struct backtrace *bt) { /* We may have thrown while still in a function's preamble. */ if (bt->function_being_called) profile_record_just_called (bt); } static SIGTYPE sigprof_handler (int signo) { #ifdef WIN32_ANY /* Windows unfortunately does not have any such thing as setitimer (ITIMER_PROF, ...), which runs in process time. Everything is real time. So to get slightly more reasonable results, ignore completely the times when we're blocking. Same applies, of course, to Cygwin. */ if (mswindows_is_blocking) return; #endif in_profiling++; total_ticks++; /* Don't do anything if we are shutting down, or are doing a maphash or clrhash on the table. */ if (!profiling_lock && !preparing_for_armageddon) { Lisp_Object fun = current_profile_function (); /* If something below causes an error to be signaled, we'll not correctly reset this flag. But we'll be in worse shape than that anyways, since we'll longjmp back to the last condition case. */ profiling_lock = 1; { long count; const void *vval; if (gethash (LISP_TO_VOID (fun), big_profile_table, &vval)) count = (long) vval; else count = 0; count++; vval = (const void *) count; puthash (LISP_TO_VOID (fun), (void *) vval, big_profile_table); } profiling_lock = 0; } in_profiling--; } DEFUN ("start-profiling", Fstart_profiling, 0, 1, "", /* Start profiling, with profile queries every MICROSECS. If MICROSECS is nil or omitted, the value of `default-profiling-interval' is used. Information on function timings and call counts is currently recorded. You can retrieve the recorded profiling info using `get-profiling-info', or the higher-level function `profile-results'. Starting and stopping profiling does not clear the currently recorded info. Thus you can start and stop as many times as you want and everything will be properly accumulated. (To clear, use `clear-profiling-info'.) */ (microsecs)) { /* This function can GC */ int msecs; struct itimerval foo; int depth; if (profiling_active) return Qnil; depth = internal_bind_int (&in_profiling, 1 + in_profiling); create_profile_tables (); /* See comments at top of file and in create_timing_profile_table(). We ensure enough breathing room for all entries currently on the stack. */ pregrow_hash_table_if_necessary (big_profile_table, EXTRA_BREATHING_ROOM + lisp_eval_depth); if (NILP (microsecs)) msecs = default_profiling_interval; else { CHECK_NATNUM (microsecs); msecs = XINT (microsecs); } if (msecs <= 0) msecs = 1000; set_timeout_signal (SIGPROF, sigprof_handler); { struct backtrace *bt = backtrace_list; /* When we begin profiling, pretend like we just entered all the functions currently on the stack. When we stop profiling, do the opposite. This ensures consistent values being recorded for both function-only and total in such cases. */ for (; bt; bt = bt->next) profile_sow_backtrace (bt); } profiling_active = 1; profiling_lock = 0; foo.it_value.tv_sec = 0; foo.it_value.tv_usec = msecs; EMACS_NORMALIZE_TIME (foo.it_value); foo.it_interval = foo.it_value; qxe_setitimer (ITIMER_PROF, &foo, 0); unbind_to (depth); return Qnil; } DEFUN ("stop-profiling", Fstop_profiling, 0, 0, "", /* Stop profiling. */ ()) { /* This function does not GC */ struct itimerval foo; if (!profiling_active) return Qnil; in_profiling++; foo.it_value.tv_sec = 0; foo.it_value.tv_usec = 0; foo.it_interval = foo.it_value; qxe_setitimer (ITIMER_PROF, &foo, 0); profiling_active = 0; { struct backtrace *bt = backtrace_list; for (; bt; bt = bt->next) profile_reap_backtrace (bt); } set_timeout_signal (SIGPROF, fatal_error_signal); in_profiling--; return Qnil; } DEFUN ("clear-profiling-info", Fclear_profiling_info, 0, 0, "", /* Clear out the recorded profiling info. This clears both the internal timing information and the call counts in `call-count-profile-table'. */ ()) { in_profiling++; /* This function does not GC */ if (big_profile_table) { profiling_lock = 1; clrhash (big_profile_table); profiling_lock = 0; } if (!NILP (Vtotal_timing_profile_table)) Fclrhash (Vtotal_timing_profile_table); if (!NILP (Vcall_count_profile_table)) Fclrhash (Vcall_count_profile_table); if (!NILP (Vgc_usage_profile_table)) Fclrhash (Vgc_usage_profile_table); if (!NILP (Vtotal_gc_usage_profile_table)) Fclrhash (Vtotal_gc_usage_profile_table); in_profiling--; return Qnil; } struct get_profiling_info_closure { Lisp_Object timing; }; static int get_profiling_info_timing_maphash (const void *void_key, void *void_val, void *void_closure) { /* This function does not GC */ Lisp_Object key; struct get_profiling_info_closure *closure = (struct get_profiling_info_closure *) void_closure; EMACS_INT val; key = VOID_TO_LISP (void_key); val = (EMACS_INT) void_val; Fputhash (key, make_int (val), closure->timing); return 0; } static Lisp_Object copy_hash_table_or_blank (Lisp_Object table) { return !NILP (table) ? Fcopy_hash_table (table) : make_lisp_hash_table (100, HASH_TABLE_NON_WEAK, HASH_TABLE_EQ); } DEFUN ("get-profiling-info", Fget_profiling_info, 0, 0, 0, /* Return the currently recorded profiling info. The format is a plist of symbols describing type of info recorded and an associated type-specific entry. Currently, the following info types are recorded `timing' A hash table of function descriptions (funcallable objects or strings describing internal processing operations -- redisplay, garbage collection, etc.), along with associated tick counts (the frequency of ticks is controlled by `default-profiling-interval' or the argument to `start-profiling'). `total-timing' A hash table of function descriptions and associated timing count for the function and all descendants. `call-count' A hash table of function descriptions and associated call counts. `gc-usage' A hash table of function descriptions and associated amount of consing. `total-gc-usage' A hash table of function descriptions and associated amount of consing in the function and all descendants. */ ()) { /* This function does not GC */ struct get_profiling_info_closure closure; Lisp_Object retv; int depth = internal_bind_int (&in_profiling, 1 + in_profiling); const void *overhead; closure.timing = make_lisp_hash_table (100, HASH_TABLE_NON_WEAK, HASH_TABLE_EQUAL); if (big_profile_table) { int count = internal_bind_int ((int *) &profiling_lock, 1); maphash (get_profiling_info_timing_maphash, big_profile_table, &closure); /* OK, OK ... the total-timing table is not going to have an entry for profile overhead, and it looks strange for it to come out 0, so make sure it looks reasonable. */ if (!gethash (LISP_TO_VOID (QSprofile_overhead), big_profile_table, &overhead)) overhead = 0; Fputhash (QSprofile_overhead, make_int ((EMACS_INT) overhead), Vtotal_timing_profile_table); unbind_to (count); } retv = nconc2 (list6 (Qtiming, closure.timing, Qtotal_timing, copy_hash_table_or_blank (Vtotal_timing_profile_table), Qcall_count, copy_hash_table_or_blank (Vcall_count_profile_table)), list4 (Qgc_usage, copy_hash_table_or_blank (Vgc_usage_profile_table), Qtotal_gc_usage, copy_hash_table_or_blank (Vtotal_gc_usage_profile_table ))); unbind_to (depth); return retv; } static int set_profiling_info_timing_maphash (Lisp_Object key, Lisp_Object val, void *void_closure) { /* This function does not GC */ if (!INTP (val)) invalid_argument_2 ("Function timing count is not an integer in given entry", key, val); puthash (LISP_TO_VOID (key), (void *) XINT (val), big_profile_table); return 0; } DEFUN ("set-profiling-info", Fset_profiling_info, 1, 1, 0, /* Set the currently recorded profiling info. INFO should be in the same format returned by `get-profiling-info', as described there. */ (info)) { int depth; /* This function does not GC */ Fclear_profiling_info (); depth = internal_bind_int (&in_profiling, 1 + in_profiling); { EXTERNAL_PROPERTY_LIST_LOOP_3 (key, value, info) { if (EQ (key, Qtiming)) { CHECK_HASH_TABLE (value); create_timing_profile_table (); profiling_lock = 1; elisp_maphash_unsafe (set_profiling_info_timing_maphash, value, NULL); profiling_lock = 0; } else if (EQ (key, Qcall_count)) Vcall_count_profile_table = Fcopy_hash_table (value); else if (EQ (key, Qtotal_timing)) Vtotal_timing_profile_table = Fcopy_hash_table (value); else if (EQ (key, Qgc_usage)) Vgc_usage_profile_table = Fcopy_hash_table (value); else if (EQ (key, Qtotal_gc_usage)) Vtotal_gc_usage_profile_table = Fcopy_hash_table (value); else invalid_constant ("Unrecognized profiling-info keyword", key); } } unbind_to (depth); return Qnil; } static int mark_profiling_info_maphash (const void *void_key, void *void_val, void *void_closure) { mark_object (VOID_TO_LISP (void_key)); return 0; } void mark_profiling_info (void) { /* This function does not GC */ if (big_profile_table) { profiling_lock = 1; maphash (mark_profiling_info_maphash, big_profile_table, 0); profiling_lock = 0; } } DEFUN ("profiling-active-p", Fprofiling_active_p, 0, 0, 0, /* Return non-nil if profiling information is currently being recorded. */ ()) { return profiling_active ? Qt : Qnil; } void syms_of_profile (void) { DEFSUBR (Fstart_profiling); DEFSUBR (Fstop_profiling); DEFSUBR (Fget_profiling_info); DEFSUBR (Fset_profiling_info); DEFSUBR (Fclear_profiling_info); DEFSUBR (Fprofiling_active_p); } void vars_of_profile (void) { DEFVAR_INT ("default-profiling-interval", &default_profiling_interval /* Default CPU time in microseconds between profiling sampling. Used when the argument to `start-profiling' is nil or omitted. Note that the time in question is CPU time (when the program is executing or the kernel is executing on behalf of the program) and not real time, and there is usually a machine-dependent limit on how small this value can be. */ ); default_profiling_interval = 1000; staticpro (&Vcall_count_profile_table); Vcall_count_profile_table = Qnil; staticpro (&Vgc_usage_profile_table); Vgc_usage_profile_table = Qnil; staticpro (&Vtotal_gc_usage_profile_table); Vtotal_gc_usage_profile_table = Qnil; staticpro (&Vtotal_timing_profile_table); Vtotal_timing_profile_table = Qnil; #if 0 /* #### This is supposed to be for KKCC but KKCC doesn't use this stuff currently. */ dump_add_root_struct_ptr (&big_profile_table, &plain_hash_table_description); #endif /* 0 */ profiling_lock = 0; QSunknown = build_msg_string ("(unknown)"); staticpro (&QSunknown); QSprocessing_events_at_top_level = build_msg_string ("(processing events at top level)"); staticpro (&QSprocessing_events_at_top_level); QSprofile_overhead = build_msg_string ("(profile overhead)"); staticpro (&QSprofile_overhead); DEFSYMBOL (Qtiming); DEFSYMBOL (Qtotal_timing); DEFSYMBOL (Qcall_count); DEFSYMBOL (Qgc_usage); DEFSYMBOL (Qtotal_gc_usage); }