Changeset 12679
- Timestamp:
- Aug 25, 2009, 11:29:57 AM (15 years ago)
- Location:
- trunk/source
- Files:
-
- 6 edited
-
lib/nfcomp.lisp (modified) (1 diff)
-
library/lispequ.lisp (modified) (1 diff)
-
lisp-kernel/area.h (modified) (1 diff)
-
lisp-kernel/image.h (modified) (1 diff)
-
xdump/faslenv.lisp (modified) (1 diff)
-
xdump/heap-image.lisp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/lib/nfcomp.lisp
r12605 r12679 1115 1115 ;These should be constants, but it's too much trouble when need to change 'em. 1116 1116 (defparameter FASL-FILE-ID #xFF00) ;Overall file format, shouldn't change much 1117 (defparameter FASL-VERSION #xFF5 a) ;Fasl block format. ($fasl-vers)1117 (defparameter FASL-VERSION #xFF5b) ;Fasl block format. ($fasl-vers) 1118 1118 1119 1119 (defvar *fasdump-hash*) -
trunk/source/library/lispequ.lisp
r12219 r12679 1284 1284 tstack ; (dynamic-extent) temp stack 1285 1285 readonly ; readonly section 1286 watched ; static area containing a single object 1286 1287 managed-static ; growable static area 1287 1288 static ; static data in application -
trunk/source/lisp-kernel/area.h
r11327 r12679 30 30 AREA_TSTACK = 3<<fixnumshift, /* A temp stack. It -is- doubleword-aligned */ 31 31 AREA_READONLY = 4<<fixnumshift, /* A (cfm) read-only section. */ 32 AREA_MANAGED_STATIC = 5<<fixnumshift, /* A resizable static area */ 33 AREA_STATIC = 6<<fixnumshift, /* A static section: contains 32 AREA_WATCHED = 5<<fixnumshift, /* A static area containing a single object. */ 33 AREA_MANAGED_STATIC = 6<<fixnumshift, /* A resizable static area */ 34 AREA_STATIC = 7<<fixnumshift, /* A static section: contains 34 35 roots, but not GCed */ 35 AREA_DYNAMIC = 7<<fixnumshift /* A heap. Only one such area is "the heap."*/36 AREA_DYNAMIC = 8<<fixnumshift /* A heap. Only one such area is "the heap."*/ 36 37 } area_code; 37 38 -
trunk/source/lisp-kernel/image.h
r12605 r12679 90 90 91 91 92 #define ABI_VERSION_MIN 103 293 #define ABI_VERSION_CURRENT 103 294 #define ABI_VERSION_MAX 103 292 #define ABI_VERSION_MIN 1033 93 #define ABI_VERSION_CURRENT 1033 94 #define ABI_VERSION_MAX 1033 95 95 96 96 #define NUM_IMAGE_SECTIONS 4 /* used to be 3 */ -
trunk/source/xdump/faslenv.lisp
r12607 r12679 43 43 (defconstant $fasl-file-id #xff00) 44 44 (defconstant $fasl-file-id1 #xff01) 45 (defconstant $fasl-vers #x5 a)46 (defconstant $fasl-min-vers #x5 a)45 (defconstant $fasl-vers #x5b) 46 (defconstant $fasl-min-vers #x5b) 47 47 (defconstant $faslend #xff) 48 48 (defconstant $fasl-buf-len 2048) -
trunk/source/xdump/heap-image.lisp
r12604 r12679 97 97 98 98 99 (defparameter *image-abi-version* 103 2)99 (defparameter *image-abi-version* 1033) 100 100 101 101 (defun write-image-file (pathname image-base spaces &optional (abi-version *image-abi-version*))
Note:
See TracChangeset
for help on using the changeset viewer.
