In addition to the core forms, there are a number of core macros, functions, structs and variables provided by the compiler to each program by default. This reference is limited to forms usable from within procedures.
Copies source
to destination
.
May be overridden by way of setf-copy-init
, setf-copy-assign
,
setf-move-init
, and setf-move-assign
.
Returns the value pointed to by pointer
.
May be overridden.
Returns the address of value
.
May be overridden.
Returns a pointer to the specified array index in array-value
.
May be overridden.
Returns a pointer to the specified struct member in struct-value
.
Returns a boolean indicating whether expression
evaluates to a null
pointer.
Returns a null pointer to type
.
Casts from-value
to the specified type and returns it.
Depending on the types involved, casting may change the underlying representation of the data. The instances where casting may occur are listed below, with instances that may change representation marked with an asterisk:
- where the source and target types are integer types (includes
bool
) ( * ); - where the source and target types are floating-point types ( * );
- where the source type is a floating-point type and the targer type is an integer type, or vice-versa ( * );
- where the source and target types are pointer types;
- where the source type is a non-const struct type and the target type is a const struct type; and
- where the source type is a pointer type and the target type is an integer type, or vice-versa ( * );
Casts may also occur implicitly during the compilation process. The instances where this occurs are:
- during struct literal parsing, but only when both the source and target types are integer types or floating-point types; and
- during
extern-c
function processing, for each argument.
Executes function-pointer
using the provided arguments, and returns
its result.
Evaluates each form in order. Returns the result of evaluating the final form.
Introduces a new lexical scope, and evaluates each form within that
scope. As per do
, the result is that of the final form.
Marks a point in the code, for later use by goto
.
Branches unconditionally to the specified label and continues execution.
Executes true-case
if condition
is true; otherwise, executes
false-case
.
Returns value
from the current procedure to the caller.
Converts an lvalue into an rvalue.
Initialises the va-list
, for later use with va-arg
.
Returns the next argument from the va-list
, cast to the specified
type.
Performs any necessary cleanup required by way of the use of the
va-list
.
Constructs and returns a new array literal of the specified type.
Returns the size (in bytes) of the specified type.
Returns the offset (in bytes) of the specified struct member within the struct.
Returns the required alignment (in bytes) of the specified type.
Pointer comparison and modification forms. The first three return
bool
values, and the remaining two return pointers that have the
type of the first argument.
Adds the specified namespace to the list of namespaces used for
lookup, and evaluates each of the forms in that context. As per do
,
the result is that of the final form.
Converts the form into a pointer to DNode
(static), and returns that
pointer.
Variables and structs may be defined within procedures in the same way as they are defined at the top-level.
These are indistinguishable from core forms from a user's perspective, but are implemented internally as macros.
Expands to (setf
(#
{destination
}) {source
}).
Expands to (@
($
{array-value
} {array-index
})).
Expands to (@
(:
{struct-value
} {struct-member-name
})).
Expands to (:
(@
{struct-value
}) {struct-member-name
}).
Expands to (@
(:
(@
{struct-value-pointer
}) {struct-member-name
})).
The following functions are provided for the numeric types:
+
,-
,*
,/
,%
,=
,!=
,<
,<=
,>
,>=
(all)<<
,>>
,&
,|
,^
(integral types only)
They operate in the same way as normal functions, i.e. they can be
addressed, cf. the core forms and macros. The last five operations are
'left shift', 'right shift', 'bitwise and', 'bitwise or' and 'bitwise
xor', respectively. -
is defined for both one argument (unary
negation) and two (standard subtraction).
Each shift function takes an int
value as its second argument, and
returns a value of the type of its first argument.
Allocates and returns uninitialised memory, as per malloc
. For use
within macros. The memory will be freed by the compiler after the
macro has been evaluated.
Returns the number of arguments passed to the macro.
If the argument evaluates to false, returns true, and vice-versa.
(def DNode
(struct extern ((is-list int)
(token-str (p char))
(list-node (p DNode))
(next-node (p DNode)))))
See Macros.
See Functions for more information about this struct.
The following variables, defined by default, have the same meaning as their analogues in C.
- JMP_BUF_SIZE
- FPOS_T
- TIME_T
- CLOCK_T
- SIZEOF_LONG
- SIZEOF_LONG_LONG
- FLT_RADIX
- FLT_MANT_DIG
- FLT_DIG
- FLT_EPSILON
- FLT_ROUNDS
- FLT_MIN_EXP
- FLT_MAX_EXP
- FLT_MIN
- FLT_MAX
- DBL_MANT_DIG
- DBL_DIG
- DBL_EPSILON
- DBL_MIN_EXP
- DBL_MAX_EXP
- DBL_MIN
- DBL_MAX
- LDBL_MANT_DIG
- LDBL_DIG
- LDBL_EPSILON
- LDBL_MIN_EXP
- LDBL_MAX_EXP
- LDBL_MIN
- LDBL_MAX
- HUGE_VAL
- HUGE_VALF
- HUGE_VALL
- L_tmpnam
- TMP_MAX
- FILENAME_MAX
- FOPEN_MAX
- RAND_MAX
- EXIT_FAILURE
- EXIT_SUCCESS