| Allegro CL version 8.2 Unrevised from 8.1 to 8.2. 8.1 version |
Arguments: (&key type except-processes count count-list verbose start-sampling-p interpret-closures) &body body
This macro collects runtime analyzer data for the execution of body by starting data collection, executing body, and then stopping data collection. This call to this macro:
(with-profiling (:type :time [other args]) body)
is equivalent to the following code sequence with the exception that the macro returns the result of the body.
(start-profiler :type :time [other args specified to with-profiling]) <body> (stop-profiler)
The type keyword argument specifes the
type or profile to conduct (time, space, call-counting). The values
can
be :time
,
:space
, or :count-only
. Call
counts are done (perhaps in addition to time or space) if either
count
or count-list are
non-nil
. See start-profiler for a complete description
of the choices and for proper values
for count
and count-list if you wish to have calls
counted.
The keyword arguments (except-processes, count, count-list, verbose, start-sampling-p, and interpret-closures) are the same as the equivalent arguments to start-profiler and are described on that page. See also stop-profiler.
The body argument must be a form or sequence of forms. The system will collect data until the last form in body has been evaluated. Then data collection will stop.
This macro returns the value returned by the body.
See runtime-analyzer.htm for general information on the runtime analyzer.
Copyright (c) 1998-2016, Franz Inc. Oakland, CA., USA. All rights reserved.
This page was not revised from the 8.1 page.
Created 2010.1.21.
| Allegro CL version 8.2 Unrevised from 8.1 to 8.2. 8.1 version |