Next: Profiling Techniques, Up: Profiling [Contents][Index]
This variable holds a list of all functions that are currently being profiled.
:callers
t
}* ¶This macro wraps profiling code around the named functions. As in
trace
, the names are not evaluated. If a function is
already profiled, then the function is unprofiled and reprofiled
(useful to notice function redefinition.) A warning is printed for
each name that is not a defined function.
If :callers t
is specified, then each function that calls
this function is recorded along with the number of calls made.
This macro removes profiling code from the named functions. If no names are supplied, all currently profiled functions are unprofiled.
:package
:callers-p
¶This macro in effect calls profile:profile
for each
function in the specified package which defaults to
*package*
. :callers-p
has the same meaning as in
profile:profile
.
This macro prints a report for each named function of the following information:
Summary totals of the CPU time, consing and calls columns are printed. An estimate of the profiling overhead is also printed (see below). If no names are supplied, then the times for all currently profiled functions are printed.
This macro resets the profiling counters associated with the named functions. If no names are supplied, then all currently profiled functions are reset.
Next: Profiling Techniques, Up: Profiling [Contents][Index]