0.8.6.1:
[sbcl.git] / doc / beyond-ansi.xml
1 <?xml version="1.0" encoding="iso-8859-1"?>
2 <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
3 "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" [
4 <!ENTITY % myents SYSTEM "entities.inc">
5 %myents;
6 ]>
7
8 <chapter id="beyond-ansi"><title>Beyond The &ANSI; Standard</title>
9
10 <para>&SBCL; is mostly an implementation of the &ANSI; standard for
11 Common Lisp. However, there's some important behavior which extends
12 or clarifies the standard, and various behavior which outright
13 violates the standard.
14 </para>
15
16 <sect1 id="non-conformance"><title>Non-Conformance With The &ANSI; Standard</title>
17
18 <para>
19   Essentially every type of non-conformance is considered a bug.
20   (The exceptions involve internal inconsistencies in the standard.)
21   In &SBCL; 0.7.6, the master record of known bugs is in
22   the <filename>BUGS</filename> file in the distribution.
23   Some highlight information about bugs may also be found in the
24   manual page. The recommended way to report bugs is through the sbcl-help or
25   sbcl-devel mailings lists.
26 </para>
27
28 </sect1>
29
30 <sect1 id="idiosyncrasies"><title>Idiosyncrasies</title>
31
32 <para>The information in this section describes some of the ways
33 that &SBCL; deals with choices that the &ANSI; standard 
34 leaves to the implementation.</para>
35
36 <para>Declarations are generally treated as assertions. This general
37 principle, and its implications, and the bugs which still keep the
38 compiler from quite satisfying this principle, are discussed in the
39 <link linkend="compiler">chapter on the compiler</link>.</para>
40
41 <para>&SBCL; is essentially a compiler-only implementation of
42 &CommonLisp;. That is, for all but a few special cases,
43 <function>eval</function> creates a
44 lambda expression, calls <function>compile</function> on the lambda
45 expression to create a compiled function, and then calls
46 <function>funcall</function> on the resulting function object. This 
47 is explicitly allowed by the &ANSI; standard, but leads to some
48 oddities, e.g. collapsing <function>functionp</function> and 
49 <function>compiled-function-p</function> into the same predicate.</para>
50
51 <para>&SBCL; is quite strict about ANSI's definition of
52 <function>defconstant</function>. ANSI says that doing <function>defconstant</function>
53 of the same symbol more than once is undefined unless the new value
54 is <function>eql</function> to the old value. Conforming to this specification
55 is a nuisance when the "constant" value is only constant under some
56 weaker test like <function>string=</function> or <function>equal</function>. It's
57 especially annoying because, in &SBCL;, <function>defconstant</function> takes effect
58 not only at load time but also at compile time, so that just 
59 compiling and loading reasonable code like 
60 <programlisting>(defconstant +foobyte+ '(1 4))</programlisting>
61 runs into this undefined behavior. Many
62 implementations of Common Lisp try to help the programmer around
63 this annoyance by silently accepting the undefined code and 
64 trying to do what the programmer probably meant. &SBCL; instead
65 treats the undefined behavior as an error. Often
66 such code can be rewritten
67 in portable &ANSI; Common Lisp which has the desired behavior.
68 E.g., the code above can be given an exactly defined meaning by replacing
69 <function>defconstant</function> either with <function>defparameter</function> or 
70 with a customized macro which does the right thing, possibly along the
71 lines of the <function>defconstant-eqx</function> macro used internally in the
72 implementation of &SBCL; itself.  In circumstances where this is not 
73 appropriate, the programmer can handle the condition type 
74 <errortype>sb-ext:defconstant-uneql</errortype>, and choose either the 
75 <action>continue</action> or <action>abort</action> restart as 
76 appropriate.</para>
77
78 <para>&SBCL; gives style warnings about various kinds of perfectly
79 legal code, e.g.
80 <itemizedlist>
81   <listitem><para><function>defmethod</function> without
82   <function>defgeneric</function></para></listitem>
83   <listitem><para>multiple <function>defun</function>s of the same
84   symbol</para></listitem>
85   <listitem><para>special variables not named in the conventional
86   <varname>*foo*</varname> style, and lexical variables unconventionally named
87   in the <varname>*foo*</varname> style</para></listitem>
88 </itemizedlist>
89 This causes friction with people
90 who point out that other ways of organizing code (especially
91 avoiding the use of <function>defgeneric</function>)
92 are just as aesthetically stylish.
93 However, these warnings should be read not
94 as "warning, bad aesthetics detected, you have no style" but
95 "warning, this style keeps the compiler from understanding
96 the code as well as you might like." That is, 
97 unless the compiler warns about such conditions, there's no
98 way for the compiler to warn 
99 about some programming errors which would otherwise be
100 easy to overlook. (related bug: The warning about
101 multiple <function>defun</function>s is pointlessly annoying when you compile
102 and then load a function containing <function>defun</function> wrapped
103 in <function>eval-when</function>, and ideally should be suppressed in 
104 that case, but still isn't as of &SBCL; 0.7.6.)</para>
105
106 </sect1>
107
108 <sect1 id="extensions"><title>Extensions</title>
109
110 <para>&SBCL; is derived from &CMUCL;, which implements many extensions
111 to the &ANSI; standard. &SBCL; doesn't support as many extensions as
112 &CMUCL;, but it still has quite a few.</para>
113
114 <sect2><title>Things Which Might Be In The Next &ANSI; Standard</title>
115
116 <para>&SBCL; provides extensive support for 
117 calling external C code, described 
118 <link linkend="ffi">in its own chapter</link>.</para>
119
120 <para>&SBCL; provides additional garbage collection functionality not
121 specified by &ANSI;. Weak pointers allow references to objects to be
122 maintained without keeping them from being GCed. And "finalization"
123 hooks are available to cause code to be executed when an object has been
124 GCed.</para> <!-- FIXME: Actually documenting these would be good.:-| -->
125
126 <para>&SBCL; supports Gray streams, user-overloadable CLOS classes
127 whose instances can be used as Lisp streams (e.g. passed as the
128 first argument to <function>format</function>).  Additionally, the 
129 bundled contrib module <interface>sb-simple-streams</interface>
130 implements a subset of the Franz Allegro simple-streams proposal.</para>  
131
132 <para>&SBCL; supports a MetaObject Protocol which is intended to be
133 compatible with &AMOP;; present exceptions to this (as distinct from
134 current bugs) are:</para>
135 <itemizedlist>
136   <listitem><para>the abstract <classname>metaobject</classname> class is not
137   present in the class hierarchy;</para></listitem>
138   <listitem><para>the <classname>standard-object</classname> and
139   <classname>funcallable-standard-object</classname> classes are
140   disjoint;</para></listitem>
141   <listitem><para><function>compute-effective-method</function> only returns
142   one value, not two;</para></listitem>
143   <listitem><para>the system-supplied <property>:around</property> method for
144   <function>compute-slots</function> specialized on
145   <classname>funcallable-standard-class</classname> does not respect the
146   requested order from a user-supplied primary method.</para>
147   </listitem>
148 </itemizedlist>
149
150 </sect2>
151
152 <sect2><title>Threading (a.k.a Multiprocessing)</title>
153
154 <para>&SBCL; (as of version 0.8.3, on Linux x86 only) supports a
155 fairly low-level threading interface that maps onto the host operating
156 system's concept of threads or lightweight processes.  </para>
157
158 <sect3><title>Lisp-level view</title>
159
160 <para>A rudimentary interface to creating and managing multiple threads
161 can be found in the <literal>sb-thread</literal> package.  This is
162 intended for public consumption, so look at the exported symbols and
163 their documentation strings.  
164 </para>
165
166 <para>Dynamic bindings to symbols are per-thread.   Signal handlers
167 are per-thread.
168 </para>
169
170 <para><function>sb-ext:quit</function> exits the current thread, not
171 necessarily the whole environment.  The environment will be shut down
172 when the last thread exits.  
173 </para>
174
175 <para>Threads arbitrate between themselves for the user's attention.
176 A thread may be in one of three notional states: foreground,
177 background, or stopped.  When a background process attempts to print a
178 repl prompt or to enter the debugger, it will stop and print a message
179 saying that it has stopped.  The user at his leisure may switch to
180 that thread to find out what it needs.  If a background thread enters
181 the debugger, selecting any restart will put it back into the
182 background before it resumes.
183 </para>
184
185 <para>If the user has multiple views onto the same Lisp image (for
186 example, using multiple terminals, or a windowing system, or network
187 access) they are typically set up as multiple `sessions' such that each 
188 view has its own collection of foreground/background/stopped threads.
189 <function>sb-thread:make-listener-thread</function> can be used to
190 start a new thread in its own `session'.
191 </para>
192
193 <para>Mutexes and condition variables are available for 
194 managing access to shared data: see 
195 <itemizedlist>
196   <listitem>
197     <programlisting>(apropos "mutex" :sb-thread)</programlisting> 
198   </listitem>
199   <listitem>
200     <programlisting>(apropos "condition" :sb-thread)</programlisting> 
201   </listitem>
202   <listitem> <para>and the <structname>waitqueue</structname> structure
203   </para>
204   </listitem>
205 </itemizedlist>
206 and poke around in their documentation strings.</para>
207 </sect3>
208
209 <sect3><title>Implementation (Linux x86)</title>
210
211 <para>On Linux x86, this is implemented using
212 <function>clone()</function> and does not involve pthreads.  This is
213 not because there is anything wrong with pthreads <emphasis>per
214 se</emphasis>, but there is plenty wrong (from our perspective) with
215 LinuxThreads.  &SBCL; threads are mapped 1:1 onto Linux tasks which
216 share a VM but nothing else - each has its own process id and can be
217 seen in e.g. <command>ps</command> output.
218 </para>
219
220 <para>Per-thread local bindings for special variables is achieved
221 using the %fs segment register to point to a per-thread storage area.
222 This may cause interesting results if you link to foreign code that
223 expects threading or creates new threads, and the thread library in
224 question uses %fs in an incompatible way.
225 </para>
226
227 <para>Threads waiting on queues (e.g. for locks or condition
228 variables) are put to sleep using <function>sigtimedwait()</function>
229 and woken with SIGCONT.
230 </para>
231
232 <para>&SBCL; at present will alway have at least two tasks running as
233 seen from Linux: when the first process has done startup
234 initialization (mapping files in place, installing signal handlers
235 etc) it creates a new thread to run the Lisp startup and initial
236 listener.  The original thread stays around to reap dead subthreads
237 and deallocate their resources (e.g. stacks) when they exit.
238 </para>
239
240 <para>Garbage collection is done with the existing Conservative
241 Generational GC.  Allocation is done in small (typically 8k) regions :
242 each thread has its own region so this involves no stopping. However,
243 when a region fills, a lock must be obtained while another is
244 allocated, and when a collection is required, all processes are
245 stopped.  This is achieved by sending them signals, which may make for 
246 interesting behaviour if they are interrupted in system calls.  The
247 streams interface is believed to handle the required system call
248 restarting correctly, but this may be a consideration when making
249 other blocking calls e.g. from foreign library code.
250 </para>
251
252 <para>Large amounts of the &SBCL; library have not been inspected for
253 thread-safety.  Some of the obviously unsafe areas have large locks
254 around them, so compilation and fasl loading, for example, cannot be
255 parallelized.  Work is ongoing in this area.
256 </para>
257
258 <para>A new thread by default is created in the same POSIX process
259 group and session as the thread it was created by.  This has an impact
260 on keyboard interrupt handling: pressing your terminal's intr key
261 (typically Control-C) will interrupt all processes in the foreground
262 process group, including Lisp threads that &SBCL; considers to be
263 notionally `background'.  This is undesirable, so background threads
264 are set to ignore the SIGINT signal.  Arbitration for the input stream
265 is managed by locking on <varname>sb-thread::*session-lock*</varname>
266 </para>
267
268 <para>A thread can be created in a new Lisp 'session' (new terminal or
269 window) using <function>sb-thread:make-listener-thread</function>.
270 These sessions map directly onto POSIX sessions, so that pressing
271 Control-C in the wrong window will not interrupt them - this has been
272 found to be embarrassing.
273 </para>
274
275 </sect3>
276
277 </sect2>
278
279 <sect2><title>Support For Unix</title>
280
281 <para>The UNIX command line can be read from the variable
282 <varname>sb-ext:*posix-argv*</varname>. The UNIX environment can be queried with the
283 <function>sb-ext:posix-getenv</function> function.</para>
284
285 <para>The &SBCL; system can be terminated with <function>sb-ext:quit</function>,
286 optionally returning a specified numeric value to the calling Unix
287 process. The normal Unix idiom of terminating on end of file on input
288 is also supported.</para>
289
290 </sect2>
291
292 <sect2><title>Customization Hooks for Users</title>
293
294 <para>The behaviour of <function>require</function> when called with only
295 one argument is implementation-defined.  In &SBCL; it calls functions
296 on the user-settable list <varname>sb-ext:*module-provider-functions*</varname>
297 - see the <function>require</function> documentation string for details.
298 </para>
299
300 <para>The toplevel repl prompt may be customized, and the function
301 that reads user input may be replaced completely.  <!-- FIXME but I 
302 don't currently remember how -->
303 </para>
304
305 </sect2>
306
307 <sect2><title>Tools To Help Developers</title>
308
309 <para>&SBCL; provides a profiler and other extensions to the &ANSI;
310 <function>trace</function> facility. See the online function documentation for
311 <function>trace</function> for more information.</para>
312
313 <para>The debugger supports a number of options. Its documentation is
314 accessed by typing <userinput>help</userinput> at the debugger prompt.</para>
315 <!-- FIXME:
316      A true debugger section in the manual would be good. Start
317      with CMU CL's debugger section, but remember:
318      * no QUIT command (TOPLEVEL restart instead)
319      * no GO command (CONTINUE restart instead)
320      * Limitations of the x86 port of the debugger should be 
321      documented or fixed where possible.
322      * Discuss TRACE and its unification with PROFILE. -->
323
324 <para>Documentation for <function>inspect</function> is accessed by typing
325 <userinput>help</userinput> at the <function>inspect</function> prompt.</para>
326
327 </sect2>
328
329 <sect2><title>Interface To Low-Level &SBCL; Implementation</title>
330
331 <para>&SBCL; has the ability to save its state as a file for later
332 execution. This functionality is important for its bootstrapping
333 process, and is also provided as an extension to the user See the
334 documentation for <function>sb-ext:save-lisp-and-die</function> for more
335 information.</para>
336
337 <note><para>&SBCL; has inherited from &CMUCL; various hooks to allow
338 the user to tweak and monitor the garbage collection process. These
339 are somewhat stale code, and their interface might need to be cleaned
340 up. If you have urgent need of them, look at the code in
341 <filename>src/code/gc.lisp</filename> and bring it up on the
342 developers' mailing list.</para></note>
343
344 <note><para>&SBCL; has various hooks inherited from &CMUCL;, like
345 <function>sb-ext:float-denormalized-p</function>, to allow a program to take
346 advantage of &IEEE; floating point arithmetic properties which aren't
347 conveniently or efficiently expressible using the &ANSI; standard. These
348 look good, and their interface looks good, but &IEEE; support is
349 slightly broken due to a stupid decision to remove some support for
350 infinities (because it wasn't in the &ANSI; spec and it didn't occur to
351 me that it was in the &IEEE; spec). If you need this stuff, take a look
352 at the code and bring it up on the developers' mailing
353 list.</para></note>
354
355 </sect2>
356
357 <sect2><title>Efficiency Hacks</title>
358
359 <para>The <function>sb-ext:purify</function> function causes &SBCL;
360 first to collect all garbage, then to mark all uncollected objects as
361 permanent, never again attempting to collect them as garbage. This can
362 cause a large increase in efficiency when using a primitive garbage
363 collector, or a more moderate increase in efficiency when using a more
364 sophisticated garbage collector which is well suited to the program's
365 memory usage pattern. It also allows permanent code to be frozen at
366 fixed addresses, a precondition for using copy-on-write to share code
367 between multiple Lisp processes. is less important with modern
368 generational garbage collectors. </para>
369
370 <para>The <function>sb-ext:truly-the</function> declares the type of the
371 result of the operations, producing its argument; the declaration is
372 not checked. In short: don't use it.</para>
373
374 <para>The <function>sb-ext:freeze-type</function> declaration declares that a
375 type will never change, which can make type testing
376 (<function>typep</function>, etc.) more efficient for structure types.</para>
377
378 <para>The <function>sb-ext:constant-function</function> declaration specifies
379 that a function will always return the same value for the same
380 arguments, which may allow the compiler to optimize calls
381 to it. This is appropriate for functions like <function>sqrt</function>, but
382 is <emphasis>not</emphasis> appropriate for functions like <function>aref</function>,
383 which can change their return values when the underlying data are
384 changed.</para>
385 <!-- FIXME: This declaration does not seem to be supported in the 
386      current compiler. -->
387
388 </sect2>
389
390 </sect1>
391
392 </chapter>