mirror of
git://git.code.sf.net/p/sbcl/sbcl
synced 2026-09-10 07:26:40 -04:00
* Fix some probable 32-bit Alpha problems that were introduced
earlier during the port in primtype, sb-sprof and run-program.
* Use a more space-efficient boxed presentation for double-floats
and complex double-floats.
* Add VOP for non-constant modular left shifts (added to
other archs after the AMD64 port was originally started).
* Add a REX-prefix for XCHG.
* Implement inline allocation.
* More int -> long in gencgc.
* Only scan pages up to last_free_page instead of NUM_PAGES in
update_x86_dynamic_space_free_pointer() (otherwise GC is
ridiculously slow with large dynamic spaces).
|
||
|---|---|---|
| .. | ||
| asdf | ||
| asdf-install | ||
| sb-aclrepl | ||
| sb-bsd-sockets | ||
| sb-cltl2 | ||
| sb-executable | ||
| sb-grovel | ||
| sb-introspect | ||
| sb-md5 | ||
| sb-posix | ||
| sb-rotate-byte | ||
| sb-rt | ||
| sb-simple-streams | ||
| sb-sprof | ||
| .cvsignore | ||
| asdf-module.mk | ||
| asdf-stub.lisp | ||
| code-extras.lisp | ||
| compiler-extras.lisp | ||
| experimental-thread.patch | ||
| README | ||
| stale-symbols.lisp | ||
| STANDARDS | ||
| vanilla-module.mk | ||
This directory is for extensions to SBCL. They aren't necessary for
core SBCL functionality, or else they'd be built into the main SBCL
binary automatically. And they're not portable Common Lisp, or they'd
be put elsewhere (see http://sbcl.sf.net/libs.php for pointers)
There are two kinds of contrib module in this directory:
* Newer contrib modules conform to the contrib standard (see
STANDARDS) and are automatically built and installed along with
SBCL itself. Each of these is in its own subdirectory with a
Makefile, and can be loaded with REQUIRE.
* Older standalone files in the contrib directory itself are
effectively unpackaged and may or may not work with the current
SBCL version.
Some good candidates for future extensions here are:
* bindings to existing foreign libraries (e.g. to a regexp library
like PCRE, or to a compression library like zlib, or to a graphics
library like Tk)
* new libraries (e.g. a CORBA interface)
* low-level hooks into SBCL needed to interface it to some wrapper
system (e.g. to interface to a graphical debugger of some sort)
* a too-alpha-to-be-supported-yet tree shaker
SBCL extensions of less general interest, e.g. a binding to the C
interface of the Oracle RDBMS, or particularly large extensions, e.g.
big graphics frameworks, can also be associated with the SBCL project,
but instead of being included in this directory as part of the
distribution, they will be made available or linked to on the SBCL
project web site.