Skip to content
  1. Sep 22, 2013
  2. Sep 21, 2013
  3. Sep 12, 2013
    • Raymond Toy's avatar
      Allow disabling the use of git for the file-comment. · 7e2a98ee
      Raymond Toy authored
       * src/compiler/main.lisp:
         * Add *FILE-COMMENT-FROM-GIT* to control whether to use git to
           derive the file-comment.  Default is T.  Otherwise, the actual
           file-comment is used.
         * Update PROCESS-FILE-COMMENT to use *FILE-COMMENT-FROM-GIT*.
      
       * bin/build-all.sh
       * bin/build.sh
       * bin/build-world.sh
         * Add -G option to control whether file-comment's are derived from
           git.
      7e2a98ee
  4. Sep 07, 2013
  5. Aug 24, 2013
    • Raymond Toy's avatar
      Make CL:DISASSEMBLE conforming. Also update some of the · ddfb0372
      Raymond Toy authored
      implementation details of DISASSEM:DISASSEMBLE.
      
       code/exports.lisp::
       * Update packages so CL:DISASSEMBLE is not DISASSEM:DISASSEMBLE.
      
       code/misc.lisp::
       * Define CL:DISASSEMBLE.
      
       compiler/fndb.lisp::
       * Update defknow for disassemble.
      
       compiler/disassem.lisp::
       * Print of source codes uses standard I/O syntax instead of
         inheriting from the environment.
       * Add new keyword arguments to DISASSEM:DISASSEMBLE for the base,
         case, and radix.  These default to 16, :downcase, and
         *print-radix*, respectively.  This means disassembly now prints out
         all numbers in base 16 and is in lowercase.
       * When printing a note for an assembler routine, we don't need to
         print the (hex) address if *print-base* is 16.
      
       compiler/x86/insts.lisp::
       * Fix some issues when in print-mem-access.
         * Sometimes the absolute value of the value was printed instead of
           the value (displaying the wrong value).
         * Print out the value as an unsigned in some cases instead of
           signed value.
       * Fix print-label to print addresses as unsigned integers.  This
         fixes the issue where things like call #x-4xxxxxxx were printed.
      
       i18n/locale/cmucl.pot::
       * Update because of new or changed docstrings.
      ddfb0372
  6. Aug 22, 2013
    • Raymond Toy's avatar
      Allow disasembler to work for any value of *print-base*. · 0331b892
      Raymond Toy authored
      With these changes, you can bind *print-base* to 16 and *print-case*
      to :downcase to get correctly printed disassembly in lower case with
      all numerical values in hex.  If you want the radix marker as well,
      bind *print-radix* to T; the disassembly is still correct.
      
      src/compiler/disassem.lisp:
      o When printing out the source code, bind *print-base* to 10 so that
        the code is printed "naturally".
      
      src/compiler/x86/insts.lisp:
      o Use Carl's much cleaned-up print-mem-access
      o Update print-imm-data to use princ for all values, removing the
        special casing for NIL
      o When printing out xmm registers, honor *print-case*.
      
      src/general-info/release-20e.txt:
      o Update
      0331b892
  7. Aug 11, 2013
  8. Aug 08, 2013
  9. Aug 07, 2013
  10. Aug 03, 2013
  11. Aug 02, 2013
  12. Aug 01, 2013
  13. Jul 05, 2013
    • Raymond Toy's avatar
      Make NOT-MORE-CONTAGIOUS support member and union types. · f36a31aa
      Raymond Toy authored
      This change allow cmucl to fold identity operations as in
      
      (defun foo (x)
        (declare (float x))
        (* x 1))
      
      Previously, cmucl wouldn't change (* x 1) to just x. because the
      declaration of x is represented internally as a union type.
      f36a31aa
  14. Jul 04, 2013
  15. Jul 02, 2013
  16. Jun 26, 2013
  17. Jun 01, 2013
  18. May 27, 2013
  19. May 26, 2013
  20. May 25, 2013
    • Raymond Toy's avatar
      Remove all the extensions to string-upcase and friends. The extended · 49f041ad
      Raymond Toy authored
      functions now live in the new UNICODE package.
      
       src/code/exports.lisp::
       * Export some unicode functions and constants.
      
       src/code/string.lisp::
       * Removed the extended versions of string-upcase and friends.
       * Export surrogates function.
       * Make sure with-one-string is defined so the unicode package can use
         it.
      
       src/code/unicode.lisp:;
       * New file with extended versions of string-upcase and friends.
      
       src/code/unidata.lisp::
       * Export some unicode functions and constants.
      
       src/compiler/fndb.lisp::
       * Update defknowns for string-upcase and friends.
      
       src/tools/worldbuild.lisp::
       * Build unicode.lisp
      
       src/tools/worldcom.lisp::
       * Load unicode.lisp
      49f041ad
    • Raymond Toy's avatar
      Fix typo. · 9d66b258
      Raymond Toy authored
      9d66b258
  21. May 24, 2013
  22. May 21, 2013
  23. May 19, 2013
    • Raymond Toy's avatar
      Update. · 59c50055
      Raymond Toy authored
      59c50055
    • Raymond Toy's avatar
      Fix ticket:81 and fix ticket:83. · 78cce51d
      Raymond Toy authored
      From ticket 81, the tests are now:
      
      {{{
      (time (prog1 t (time-rev *s*)))
      ; Evaluation took:
      ;   0.49 seconds of real time
      ;   0.481813 seconds of user run time
      ;   0.003624 seconds of system run time
      ;   1,490,776,936 CPU cycles
      ;   [Run times include 0.13 seconds GC run time]
      ;   0 page faults and
      ;   200,073,704 bytes consed.
      
      (time (prog1 t (time-rev *s2*)))
      ; Evaluation took:
      ;   0.97 seconds of real time
      ;   0.965893 seconds of user run time
      ;   0.005139 seconds of system run time
      ;   2,980,415,911 CPU cycles
      ;   [Run times include 0.23 seconds GC run time]
      ;   0 page faults and
      ;   400,005,560 bytes consed.
      }}}
      
      So the new string-reverse* is 20 times faster for strings without
      surrogates and 10 times faster for strings containing only surrogates.
      78cce51d