Skip to content
release-20f.txt 4.05 KiB
Newer Older
========================== C M U C L  20 f =============================

[In Progress]

The CMUCL project is pleased to announce the release of CMUCL 20f.
This is a major release which contains numerous enhancements and
bug fixes from the 20c release.

CMUCL is a free, high performance implementation of the Common Lisp
programming language which runs on most major Unix platforms. It
mainly conforms to the ANSI Common Lisp standard. CMUCL provides a
sophisticated native code compiler; a powerful foreign function
interface; an implementation of CLOS, the Common Lisp Object System,
which includes multi-methods and a meta-object protocol; a source-level
debugger and code profiler; and an Emacs-like editor implemented in
Common Lisp. CMUCL is maintained by a team of volunteers collaborating
over the Internet, and is mostly in the public domain.

New in this release:

  * Known issues:

  * Feature enhancements
    * Trig functions are signficantly faster.
    * Accuracy of trig functions improved. (Previously, they could be
      off by one or two ulp.)
Raymond Toy's avatar
Raymond Toy committed
    * RUN-PROGRAM accepts :ELEMENT-TYPE to allow specifying the
      element type for streams that are created for RUN-PROGRAM.  (See
      ticket:92)
Raymond Toy's avatar
Raymond Toy committed
    * Update to ASDF 3.0.3.
    * When *PRINT-CASE* is :DOWNCASE, integers are printed with
      lowercase letters when needed.
    * Micro-optimize KERNEL:DOUBLE-FLOAT-BITS for x86/sse2.
    * Add micro-optimization for unary FTRUNCATE for x86/sse2.
    * Compiler can derive the types of the results of DECODE-FLOAT.
    * Main disassembly routines in the DISASSEMBLE package accept 
      :BASE, :CASE, and :RADIX keyword arguments, like
      DISASSEMBLE:DISASSEMBLE.
Raymond Toy's avatar
Raymond Toy committed
    * Micro optimizations for sse2 to allow descriptor regs and stack
      tns for many operations so that the operands can be in memory
      instead of a register, thereby removing a register load
      instruction.
    * Support for darwin/ppc 10.5 and gcc 4.8.
    * Micro-optimization:  (expt -1 power) just returns -1 or 1
      without actually computing the power.
Raymond Toy's avatar
Raymond Toy committed
    * Run-time checks for zero pages on newly allocated pages has been
      disabled now that the lazy zeroing of the heap pages has been
      the default for several months now.
Raymond Toy's avatar
Raymond Toy committed
    * Add lisp-unit as a contrib.  Use (require :lisp-unit) to load
      it.  Precompiled fasls are not included.
    * The values on the branch cuts for the inverse trig and
      hyperbolic functions have been updated.  Instead of following
      the text in the CLHS, the values are defined according to the
      definitions in the formulas.  In particular (atanh x) for x real
      and on the branch cut is now continuous with different
      quadrants.  This differs from the description of the branch cut
      for atanh in the CLHS.
    * Fix error in pi reduction on x87.  It was not noticed previously
      because the returned values were not used optimally.
    * Better error message for empty cond clauses.
Raymond Toy's avatar
Raymond Toy committed
    * Fix serious error in the complex multiply vop for sparc.
      Incorrect results were returned under some conditions when the
      result TN was packed in the same location as one of the argument
      TNs.
Raymond Toy's avatar
Raymond Toy committed
    * The float constants for various limits are defined for
      double-double floats such as
      least-positive-double-double-float. 
    * When reading very small float values, round to
      least-positive-foo-float if possible.
Raymond Toy's avatar
Raymond Toy committed
    * (log -0w0) and (log 0w0) returns values analogous to the
      double-float versions.
    * Ticket #90 fixed.
Raymond Toy's avatar
Raymond Toy committed
    * Ticket #92 marked invalid..
Raymond Toy's avatar
Raymond Toy committed
    * Ticket #87 fixed.
Raymond Toy's avatar
Raymond Toy committed
    * Ticket #94 fixed.
    * Ticket #93 fixed.

  * Other changes:

  * Improvements to the PCL implementation of CLOS:

  * Changes to building procedure:


This release is not binary compatible with code compiled using CMUCL
20e; you will need to recompile FASL files. 

See <URL:http://www.cmucl.org> or
<URL:http://trac.common-lisp.net/cmucl> for download information,
guidelines on reporting bugs, and mailing list details.


We hope you enjoy using this release of CMUCL!