- May 26, 2013
-
-
Raymond Toy authored
-
Raymond Toy authored
Forgot to do this when we added BYTE-BASH-COPY for REPLACE.
-
Raymond Toy authored
-
Raymond Toy authored
src/code/exports.lisp:: * Import symbols src/code/unicode.lisp:: * Remove LISP package prefix from all unicode-related symbols.
-
- May 25, 2013
-
-
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
-
Raymond Toy authored
-
- May 24, 2013
-
-
Raymond Toy authored
-
- May 21, 2013
-
-
Raymond Toy authored
-
Raymond Toy authored
try to set the source location information. We try to print a warning in such cases.
-
Raymond Toy authored
CLHS.
-
- May 19, 2013
-
-
Raymond Toy authored
-
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.
-
- May 17, 2013
-
-
Raymond Toy authored
Wrap exports in eval-when for x86 as was done for sparc and add CHAR-BYTES to x86-x86 cross-compile script.
-
- May 15, 2013
-
-
Raymond Toy authored
CHAR-BYTES to x86-x86 cross-compile script. Only the change for CHAR-BYTES is needed for cross-compiling from x86 to x86, but I think the other changes will be needed if you do a cross-compile from some other arch to x86.
-
Raymond Toy authored
CHAR-BYTES to ppc cross-compile script. This is untested.
-
Raymond Toy authored
src/compiler/generic/objdef.lisp:: src/compiler/generic/utils.lisp:; src/compiler/generic/vm-macs.lisp:: src/compiler/sparc/c-callback.lisp:: src/compiler/sparc/parms.lisp:: When export lost its compile-time effects and became a normal function, the exports in many files no longer took affect while compiling the file. This change makes the compile-time effects happen as before in selected files. With this change, the sparc port can be cross-compiled from x86 again. src/tools/cross-scripts/cross-x86-sparc.lisp:: Need to frob CHAR-BYTES, which is needed by BYTE-BASH-COPY. .
-
- May 05, 2013
-
-
Raymond Toy authored
* GNUmakefile * Config.solaris_sunc * Remove assignment of CC, letting it default. * Config.solaris * Force CC = gcc in case cc is Sun C
-
Raymond Toy authored
* Config.sparc_common * OS_LINK_FLAGS is not common, so remove it. * Config.sparc_gcc * Config.sparc_sunc * Set OS_LINK_FLAGS appropriately.
-
Raymond Toy authored
-
Raymond Toy authored
* GNUmakefile * Replace $(DEPENDS) with $(CC) * Config.x86_common * Set DEPENDS_FLAG to -MM
-
- May 04, 2013
-
-
Raymond Toy authored
-
Raymond Toy authored
cc is Sun's C compiler, not an alias to gcc.
-
Raymond Toy authored
-
Raymond Toy authored
-
Raymond Toy authored
older systems or clang on newer ones.
-
Raymond Toy authored
CC if necessary.
-
Raymond Toy authored
-
Raymond Toy authored
Config.sparc_common:: * Use += instead of = for CPPFLAGS and CFLAGS Config.sparc_gcc: * Move options from CC to CFLAGS. Config.sparc_gcc: * Move options from CC to CFLAGS. * Add DEPEND_FLAGS with appropriate options.
-
- May 03, 2013
-
-
Raymond Toy authored
-
Raymond Toy authored
utf16_output being undeclared.
-
Raymond Toy authored
-
Raymond Toy authored
In gc_free_heap, the check that unallocated pages are zero can only be done if gencgc_unmap_zero is MODE_MAP or MODE_MEMSET. The other modes are known not to zero memory. Also, don't limit the check to the first 16K pages, and also check the entire page of GC_PAGE_SIZE bytes, not just the first 1024 words.
-
- Apr 27, 2013
-
-
Raymond Toy authored
* Remove PAGE_MADVISE_MASK * Remove code using PAGE_MADVISE_MASK * Move some #defines from gencgc.c to gencgc.h * Add new or better comments
-
- Apr 26, 2013
-
-
Raymond Toy authored
This should only be temporary so we can get some testing with lazy mode.
-
- Apr 24, 2013
-
-
Raymond Toy authored
* Disable gencgc_debug_madvise.
-
- Apr 21, 2013
-
-
Raymond Toy authored
* Add MODE_LAZY * Rename PAGE_MADVISE flag to PAGE_MADVISE_MASK * Remove some #ifdef'ed out code. * Change default gencgc_unmap_zero to MODE_MEMSET for all OS/archs.
-
Raymond Toy authored
madvise, though. I get an error about no transport function for some object.
-
- Apr 20, 2013
-
-
Raymond Toy authored
* Actually enable call to madvise instead of doing memset.
-
Raymond Toy authored
out freed pages.
-
- Apr 14, 2013
-
-
Raymond Toy authored
-