Skip to content
Snippets Groups Projects
  1. Jul 19, 2006
  2. Jul 18, 2006
  3. Jul 17, 2006
  4. Jul 14, 2006
  5. Jul 13, 2006
  6. Jul 12, 2006
    • rtoy's avatar
      The subtype_Names array had one extra slot, so that · 8932f44e
      rtoy authored
      closure_function_header and the following entries were not correct.
      
      Also, rename unused function header 1 and 2 to be "byte code function"
      and "byte code closure", respectively, since that's what internals.h
      says.
      
      We really need to generate this list during genesis or something
      instead of having to do this by hand!
      8932f44e
  7. Jul 10, 2006
  8. Jul 07, 2006
  9. Jul 05, 2006
    • rtoy's avatar
      Fix bug about LISP::SOCKET-ERROR not being a valid class. From Craig · 1b8f6914
      rtoy authored
      Brent Ludington, cmucl-help, 2006-06-21.
      
      bootfiles/19c/boot-2006-06-3.lisp:
      o Bootstrap file to remove LISP::SOCKET-ERROR in favor of
        EXT:SOCKET-ERROR.  (Not really needed, if you just answer the
        restarts in the obvious way.)
      
      code/exports.lisp:
      o Export EXT:SOCKET-ERROR.  The LISP package already uses the EXT
        package, so we're set.
      1b8f6914
  10. Jul 01, 2006
  11. Jun 30, 2006
  12. May 31, 2006
  13. May 30, 2006
  14. May 23, 2006
  15. May 20, 2006
  16. May 18, 2006
  17. May 15, 2006
  18. May 11, 2006
  19. May 09, 2006
  20. May 07, 2006
    • rtoy's avatar
      ppc/arith.lisp: · b07ae7fb
      rtoy authored
      o Comment out the +/fixnum and -/fixnum.  The C code doesn't support
        the fixnum-additive-overflow-trap, and this vop doesn't do enough
        checking of the args.
      
        (defun foo (x y) (the fixnum (+ (the fixnum x) (the fixnum y))))
      
        triggers bad behavior if there's an overflow, or if x or y is not a
        fixnum.
      
        Everything still works without these vops.  The check for fixnum
        args becomes explicit, and the result is explicitly checked for a
        fixnum result.
      
        I'm guessing this was modeled after the Sparc version of these vops,
        which actually checked the tag bits and for overflow.
      
      ppc/parms.lisp:
      o Remove the fixnum-additive-overflow trap because we don't use it
        anymore.
      b07ae7fb
  21. May 03, 2006
  22. May 01, 2006
    • rtoy's avatar
      Update from logs. · b00064f8
      rtoy authored
      b00064f8
    • rtoy's avatar
      code/format.lisp: · ef77f543
      rtoy authored
      o Add an additional case where we want to print out a trailing zero:
        There's no width constraint and the previous character was a decimal
        point, so the fraction to be printed is zero.
      
      code/print.lisp:
      o Honor the d option if we run out of room so (format nil "~,2f"
        0.001) produces "0.00", not "0.001".
      ef77f543
  23. Apr 28, 2006
Loading