LispWorks User Guide and Reference Manual > 27 The COMMON-LISP Package

NextPrevUpTopContentsIndex

declare

Special Form
Summary

Declares a variable as special, provides advice to the Common Lisp system, or helps the programmer to optimize code.

Package

common-lisp

Signature

declare declaration *

Arguments

declaration

A declaration specifier, not evaluated.

Values

The special form declare behaves computationally as if it is not present (other than to affect the semantics), and is only allowed in certain contexts, such as after the variable list in a let , do , defun and so on.

(Consult the syntax definition of each special form to see if it takes declare forms and/or documentation strings.)

Description

There are three distinct uses of declare : one is to declare Lisp variables as "special" (this affects the semantics of the appropriate bindings of the variables), the second is to provide advice to help the Common Lisp system (in reality the compiler) run your Lisp code faster or with more sophisticated debugging options, and the third (using the :explain declaration) is to help you optimize your code.

If you use declare to specify types (and so eliminate type-checking for the specified symbols) and then supply the wrong type, you may obtain a "Segmentation Violation". You can check this by interpreting the code (rather than compiling it).

The following are extensions to the Common Lisp definition of declare :

In SMP LispWorks the compiler signals error if it detects that a symbol declared as hcl:special-global is bound, and at runtime it also signals an error.

In non-SMP LispWorks the compiler gives an error, but there is no runtime check. The runtime behavior is the same as cl:special , with all accesses to the symbol in low safety.

hcl:special-global is very useful, and because of the checks it is reasonably safe. It is useful not only for speed, but also to guard against unintentionally binding variables that should not be bound.

See also defglobal-parameter.

In high safety code accessing the symbol outside the scope of binding signals an error. In low safety code it may result in unpredictable behavior.

In non-SMP LispWorks the only effect of this declaration is to make all access to the variable low safety.

hcl:special-dynamic is useful, but because it can lead to unpredictable behavior you need to ensure that you test your program in high safety when you use it.

The semantics of the declaration is the same as cl:special , except that access to the variable is low safety. In addition, the compiler compiles access to the symbol in a way that speeds up the access, but also introduces a tiny reduction in the speed of the whole system. The balance between these effects is not obvious.

It is not obvious where hcl:special-fast-access is useful. If you can ensure that the symbol is always bound or never bound then hcl:special-dynamic or hcl:special-global are certainly better.

The remainder of this description documents the syntax and use of :explain declarations.

declaration ::= (:explain option *)

option ::= optionkey | ( optionkey optionvalue )

optionkey ::= :none | :variables | :types | :floats | :non-floats | :all-calls | :all-calls-with-arg-types | :calls | :boxing | :print-original-form | :print-expanded-form | :print-length | :print-level

The :explain declaration controls messages printed by the compiler while it is processing forms. The declaration can be used with proclaim or declaim as a top level form to give it global or file scope. It can also be used at the start of a #'lambda form or function body to give it the scope of that function. The declaration has unspecified effect when used in other contexts, for example in the body of a let form.

An :explain declaration consists of a set of options of the form ( optionkey optionvalue ) which associates optionvalue with optionkey or optionkey which associates t with optionkey . By default, all of the optionkey s have an associated value nil . All optionkey s not specified by a declaration remain unchanged (except for the special action of the :none optionkey described below).

The optionkey should be one of the following:

:none

Set value associated with all optionkey s to nil . This turns off all explanations.

:variables

If optionvalue is non-nil, list all the variables of each function, specifying whether they are floating point or not.

:types

If optionvalue is non-nil, print information about compiler transformations that depend on declared or deduced type information.

:floats

If optionvalue is non-nil, print information about calls to functions that may allocate floats.

:non-floats

If optionvalue is non-nil, print information about calls to functions that may allocate non-float numbers, for example bignums.

:all-calls

If optionvalue is non-nil, print information about calls to normal functions.

:all-calls-with-arg-types

If optionvalue is non-nil, print the argument types for calls to normal functions. Must be combined with :all-calls .

:calls

A synonym for :all-calls .

:boxing

If optionvalue is non-nil, print information about calls to functions that may allocate numbers, for example floats or bignums.

:print-original-form

If optionvalue is non-nil, modifies the :all-calls , :floats and :non-floats explanations to include the original source code form that contains the call.

:print-expanded-form

If optionvalue is non-nil, modifies the :all-calls , :floats and :non-floats explanations to include the macroexpanded source code form that contains the call.

:print-length

Use the optionvalue as the value of *print-length* for :all-calls , :floats and :non-floats explanations.

:print-level

Use the optionvalue as the value of *print-level* for :all-calls , :floats and :non-floats explanations.

Example
(defun foo (arg)
  (declare
	(:explain :variables)
	(optimize (float 0)))
  (let* ((double-arg (coerce arg 'double-float))
         (next (+ double-arg 1d0))
         (other (* double-arg 1/2)))
    (values next other)))
;;- Variables with non-floating point types:
;;-  ARG OTHER
;;- Variables with floating point types:
;;-  DOUBLE-ARG NEXT
See also

compile
compile-file
proclaim


LispWorks User Guide and Reference Manual - 22 Dec 2009

NextPrevUpTopContentsIndex