- Feb 01, 2010
-
-
rtoy authored
o Add RCS header make-dist.sh: o Add RCS header o Add some comments on what this does.
-
- Jan 31, 2010
-
-
rtoy authored
info slot to nil (the default) in this case.
-
rtoy authored
formats that include a BOM.
-
rtoy authored
-
rtoy authored
absolute directory according to whether the TO directory is relative or absolute. Previously, the result was taken from the SOURCE directory, unless the TO directory was absolute. See cmucl-help, 2010/01/29.
-
- Jan 30, 2010
-
-
rtoy authored
-
- Jan 28, 2010
-
-
rtoy authored
-
- Jan 26, 2010
-
-
rtoy authored
than a tty. This makes the build scripts stop if we get dumped to ldb due to a fatal build error.
-
- Jan 25, 2010
-
-
rtoy authored
up another string.
-
- Jan 23, 2010
-
-
agoncharov authored
-
agoncharov authored
-
rtoy authored
default OS name for the tarballs.
-
rtoy authored
everything is defined yet. Hence, add dummy %SET-FD-STREAM-EXTERNAL-FORMAT and move the real one to fd-stream-extfmt.lisp. This builds. code/fd-stream.lisp: o Always call %SET-FD-STREAM-EXTERNAL-FORMAT, even if LISP::*ENABLE-STREAM-BUFFER-P* is NIL. code/stream.lisp: o Move %SET-FD-STREAM-EXTERNAL-FORMAT to fd-stream-extfmt.lisp. o Add dummy implementation of %SET-FD-STREAM-EXTERNAL-FORMAT. code/fd-stream-extfmt.lisp: o %SET-FD-STREAM-EXTERNAL-FORMAT moved here.
-
rtoy authored
handled by the makefile which sets -DFEATURE_SSE2 appropriately because :SSE2 is a lisp feature saved in internals.inc. This was causing the C code to be rebuilt when building x87 and then sse2 in the same tree. It's not necessary to do that and should not be done.
-
rtoy authored
set-routines so that the stream has the specified external format.
-
- Jan 22, 2010
-
-
rtoy authored
properly. (Broken in previous change for fast streams.)
-
rtoy authored
-
rtoy authored
from the source file, the file is opened using the default external format. This is not right if the file was compiled using a different external format, and we try to read it using the default format. compiler/debug-dump.lisp: o Set the INFO slot to the external format used to source files. code/debug-info.lisp: o Add comment that the INFO slot contains the external format for :FILES. (It was previously unused.) code/debug.lisp: o Open the source file with the same format as used to compile the file.
-
rtoy authored
file position, we need to convert what's left in the buffer into octets to figure out how many octets haven't been delivered yet.
-
rtoy authored
same external format used for reading the file. This ensures that these files will make sense if the source file makes sense for the given external format.
-
rtoy authored
inadvertently broken when the fast external format work was done. The position did not take into account the number of octets that had been read in but not yet processed.
-
- Dec 30, 2009
- Dec 22, 2009
-
-
rtoy authored
-
- Dec 21, 2009
-
-
rswindells authored
-
- Dec 18, 2009
-
-
agoncharov authored
-
- Dec 17, 2009
-
-
rtoy authored
o Remove check for object < 0xf0000000 in scavenge.
-
rtoy authored
o Add UNIX-GETRLIMIT and appropriate constants (for solaris and darwin/x86) code/exports.lisp: o Export them.
-
rtoy authored
areas. For sparc, this means anything below the end of the text section (to capture undefined_tramp and closure_tramp and some weird pointer object in the middle of call_into_c). For darwin/x86, we ignore 0xffffffe9. Needs to be checked on other OSes and architectures. o Move the switch statement of allowed static arrays into its own function.
-
- Dec 15, 2009
-
-
rtoy authored
exist anymore anyway. (It's called set-system-external-format.)
-
- Dec 11, 2009
-
-
rtoy authored
a new limit, we want to take the absolute value of the power!
-
- Dec 07, 2009
-
-
rtoy authored
Lisp string to a C string appropriately. Bug noted by Helmut Eller on cmucl-imp, 2009-12-06. He also provided the basic solution.
-
- Dec 06, 2009
-
-
rtoy authored
instead of spreading it everywhere. o Add WITHOUT-GCING in MAKE-STATIC-VECTOR to make sure nothing moves. (Not sure this is necessary.) o Do the same in FREE-STATIC-VECTOR o Add WITHOUT-INTERRUPTS in FINALIZE-STATIC-VECTORS to make sure clear the weak pointer value and actually free the vector.
-
- Dec 05, 2009
-
-
rtoy authored
This is done by a simple mark-and-sweep GC of the static vectors. When scavenging the spaces, we mark any static vectors by setting the MSB of the header word. After GC is done, an *after-gc-hooks* function finds all of the static vectors that are not marked and frees them. For marked static vectors, we clear the mark bit. code/array.lisp: o Add *STATIC-VECTORS* to keep track of all static vectors that have been allocated. o Update MAKE-ARRAY - to allow generation of static simple unboxed arrays (1D arrays without an array header). - Push a weak pointer to the static vector onto *STATIC-VECTORS* o Add function FREE-STATIC-VECTOR o Add function FINALIZE-STATIC-VECTORS to free static vectors when they are no longer referenced. lisp/gencgc.c: o Update scavenge to check for static vectors. If we find a static vector, mark the static vector by setting the MSB of the header word.
-
- Dec 01, 2009
-
-
rtoy authored
Carl. o Clean up implementation a bit so that we don't have :malloc all over.
-
- Nov 30, 2009
-
-
rtoy authored
-
rtoy authored
on an idea from Carl and Lynn Quam's foreign vector code that he sent many years ago. The static arrays will be GCed if nothing references them. The static arrays are currently limited to strings, 8, 16, and 32-bit integers (signed and unsigned), single and double floats, and complex single and double floats. Static arrays are not adjustable because adjusting an array can change the address if the array grows. (Ok if the array shrinks, but not implemented.) To indicate a static array, the data portion of the vector header word is set to 1. It is normally 0 for all other Lisp vectors. code/array.lisp: o Add :ALLOCATION keyword arg to MAKE-ARRAY to allow allocation of static vectors. Do the appropriate thing for static arrays. o Add MAKE-STATIC-VECTOR. This is Lynn's foreign vector stuff rewritten in Lisp instead of the original mix of Lisp and C. o Add STATIC-ARRAY-P to tell if an array is static or not. o Signal errors in MAKE-ARRAY and ADJUST-ARRAY for invalid options with static arrays. code/describe.lisp: o Indicate if the array is static. compiler/fndb.lisp: o Tell compiler about new keyword argument, :allocation, for MAKE-ARRAY.
-
- Nov 25, 2009
- Nov 21, 2009
-
-
rtoy authored
-