All Manuals > LispWorks® User Guide and Reference Manual > 33 The COMMON-LISP Package

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.
Description

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.)

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 declare special form can be used as specified in ANSI Common Lisp as well as with the following extensions to the car or each declaration:

You can also use define-declaration to add your own declarations, which do not affect compilation but are useful for code walkers.

Description: of hcl:lambda-name

This section documents the hcl:lambda-name declaration, which declares the name of the surrounding lambda. This declaration is useful only for a lambda that becomes a standalone function, that is lambda forms that are passed to function.

The dspec of the function that is returned by function is specified by the second element in the declaration. In the special case when the second element is a two-element list starting with the symbol subfunction, the dspec is that list with the dspec of the parent function added as a third element. For example, if you have:

(defun my-parent (x) 
  #'(lambda (y)
      (declare (lambda-name (subfunction sub-name)))
      (* x y)))

then the dspec of the subfunction that my-parent returns would be (subfunction sub-name my-parent).

hcl:lambda-name is useful for debugging purposes and does not affect the behavior of the program. There are two different situations when hcl:lambda-name is useful:

hcl:lambda-name will also modify the function name of flet and labels, but these already have a name, so this is not often useful.

Naming functions and subfunctions is useful because it makes it easier to understand the flow of control when you see them in a backtrace. For subfunctions, it makes it easier to trace and advise them (see trace and defadvice).

Description: of :explain

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 optionkeys have an associated value nil. All optionkeys 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 optionkeys 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.
Examples
(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

declare in the Common Lisp HyperSpec
9.5 Compiler control
compile
compile-file
proclaim
define-declaration
declaration-information


LispWorks® User Guide and Reference Manual - 01 Dec 2021 19:30:30