Skip to content
Snippets Groups Projects
  1. Apr 29, 2008
  2. Apr 25, 2008
  3. Apr 23, 2008
  4. Apr 22, 2008
  5. Apr 21, 2008
  6. Apr 17, 2008
  7. Apr 16, 2008
  8. Apr 15, 2008
  9. Apr 11, 2008
  10. Apr 10, 2008
  11. Apr 08, 2008
    • rtoy's avatar
      Update from logs. · 1e90a543
      rtoy authored
      1e90a543
    • rtoy's avatar
      o Fix type-derivation for the basic DOUBLE-DOUBLE-FLOAT arithmetic · 5c34c685
      rtoy authored
        operations.  The deftransforms were causing type-derivation to
        return DOUBLE-DOUBLE-FLOAT for everything.  Use the suggestion from
        Rob: Wrap the result of the deftransform in a TRULY-THE form and use
        the node derived type for the type.
      o The FLOAT-SIGN deftransform for DOUBLE-DOUBLE-FLOAT should be
        conditioned on the DOUBLE-DOUBLE feature.
      o Remove old unused deftransform for * for two double-double args.
      5c34c685
  12. Apr 04, 2008
    • rtoy's avatar
      o Pathname printer was producing an error for (MAKE-PATHNAME :HOST NIL · 52d2dc6c
      rtoy authored
        :TYPE "foo").  This is because PATHNAME-HOST was signaling an error
        for a host of NIL.  We check for a host of NIL now, and bypass the
        call to PATHNAME-HOST.  This allows the pathname printer to print
        #P(:HOST NIL :TYPE "foo"), as we want.
      
        (The error comes from host-pathname.  NIL is a valid result of
        host-pathname, so we could change that, but I think that has other
        implications, one of which is (MAKE-PATHNAME :HOST NIL :NAME "foo"
        :TYPE "lisp") gets printed as #P"foo.lisp", which is wrong, since
        that pathname has a unix-host host.)
      
      o Fix merging of version in MAKE-PATHNAME.  CLHS MERGE-PATHNAMES says
        if the pathname name is given, the version is not affected by the
        default pathname.
      52d2dc6c
    • agoncharov's avatar
      A white-space change (reversal to the "-2" version), to test CVS · 65b0a63d
      agoncharov authored
      commit notifications.
      65b0a63d
  13. Apr 03, 2008
  14. Apr 02, 2008
  15. Apr 01, 2008
  16. Mar 28, 2008
  17. Mar 26, 2008
  18. Mar 25, 2008
    • agoncharov's avatar
      White space noise for CVS commit testing · 152bc680
      agoncharov authored
      152bc680
    • rtoy's avatar
      Make compiler and interpreter handle slot-value the same. See thread · 4e65ef5d
      rtoy authored
      http://article.gmane.org/gmane.lisp.cmucl.devel/10471.
      
      These changes make the compiler and interpreter behave the same, and,
      as a side-effect, makes Nicolas's code work as he wants.
      
      pcl/slots.lisp:
      o Add LEGAL-SLOT-NAME-P-INTERNAL that returns two values.  If the
        slot-name is legal, return T.  If illegal, return NIL and a string
        indicating why.
      o Use this new function in the compiler macros for SLOT-VALUE, (SETF
        SLOT-VALUE) and SLOT-BOUNDP so that we use the fast ACCESSOR-*
        versions only when we know the slot-name is legal.  Otherwise, the
        compiler macros give up.
      
      pcl/methods.lisp:
      o Change the method LEGAL-SLOT-NAME-P to use
        LEGAL-SLOT-NAME-P-INTERNAL.
      o Update the call to LEGAL-SLOT-NAME-P in SHARED-INITIALIZE since
        LEGAL-SLOT-NAME-P returns 2 values now.
      4e65ef5d
  19. Mar 21, 2008
  20. Mar 19, 2008
  21. Mar 18, 2008
    • cshapiro's avatar
      The FreeBSD-os.h header imported headers that its definitions did not · 86957330
      cshapiro authored
      make direct use of.  Remove the includes of these headers and fix-up
      several files that indirectly depended on them.
      
      * FreeBSD-os.c - add stdio.h and unistd.h includes that were
        implicitly depended on.  Remove unused or commented system includes.
      
      * FreeBSD-os.h - remove unused includes.  Include signal.h to directly
        provide the SIGBUS, SIGSEGV, and sub-code definitions.  Redefine
        os_vm_address_t and os_vm_size_t in terms of standard types.  Now
        that the sys/param.h include is gone we no longer need to undefine
        PAGE_SIZE.
      
      * elf.c - add includes that were implicitly depended on.
      
      * lisp.c - remove unused system includes including sys/param.h which
        redefines PAGE_SIZE.
      86957330
Loading