




 
:allocation
 form
If 
form
 is non-
nil
, this prints the memory allocation, in bytes, made during a function call. The symbol that 
form
 evaluates to is used to accumulate the amount of memory allocated between entering and exiting the traced function. 
Note that this symbol continues to be used as an accumulator on subsequent calls to the traced function; the value is compounded, rather than over-written.
fac
 function, set the value of 
:allocation
 to 
$$fac-alloc
.
fac
, and then examine the value of 
$$fac-alloc
.CL-USER 152 > $$fac-alloc
744