Changeset 5169
- Timestamp:
- Sep 7, 2006, 2:44:16 AM (18 years ago)
- Location:
- trunk/ccl/xdump
- Files:
-
- 4 edited
-
heap-image.lisp (modified) (1 diff)
-
xfasload.lisp (modified) (4 diffs)
-
xppcfasload.lisp (modified) (2 diffs)
-
xx8664-fasload.lisp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ccl/xdump/heap-image.lisp
r4866 r5169 97 97 98 98 99 (defparameter *image-abi-version* 101 0)99 (defparameter *image-abi-version* 1011) 100 100 101 101 (defun write-image-file (pathname image-base spaces &optional (abi-version *image-abi-version*)) -
trunk/ccl/xdump/xfasload.lisp
r5126 r5169 72 72 (defparameter *xload-image-base-address* nil) 73 73 74 (defparameter *xload-purespace-reserve* #x04000000)74 (defparameter *xload-purespace-reserve* nil) 75 75 (defparameter *xload-static-space-address* (ash 1 12)) 76 76 (defparameter *xload-static-space-size* (ash 8 10)) … … 94 94 nil-relative-symbols 95 95 static-space-init-function 96 purespace-reserve 96 97 ) 97 98 … … 100 101 (setq *xload-image-base-address* 101 102 (backend-xload-info-image-base-address 103 *xload-target-backend*)) 104 (setq *xload-purespace-reserve* 105 (backend-xload-info-purespace-reserve 102 106 *xload-target-backend*)) 103 107 (setq *xload-readonly-space-address* *xload-image-base-address*) … … 1743 1747 (*xload-target-fulltag-for-symbols* *xload-target-fulltag-for-symbols*) 1744 1748 (*xload-target-fulltag-for-functions* *xload-target-fulltag-for-functions*) 1745 (*xload-target-char-code-limit* *xload-target-char-code-limit*)) 1749 (*xload-target-char-code-limit* *xload-target-char-code-limit*) 1750 (*xload-purespace-reserve* *xload-purespace-reserve*)) 1746 1751 (setup-xload-target-parameters) 1747 1752 (let* ((*load-verbose* t) -
trunk/ccl/xdump/xppcfasload.lisp
r4594 r5169 111 111 :nil-relative-symbols ppc::*ppc-nil-relative-symbols* 112 112 :static-space-init-function 'ppc32-initialize-static-space 113 :purespace-reserve (ash 64 20) 113 114 )) 114 115 … … 134 135 :nil-relative-symbols ppc::*ppc-nil-relative-symbols* 135 136 :static-space-init-function 'ppc64-initialize-static-space 137 :purespace-reserve (ash 64 20) 136 138 )) 137 139 -
trunk/ccl/xdump/xx8664-fasload.lisp
r5000 r5169 70 70 :nil-relative-symbols x86::*x86-nil-relative-symbols* 71 71 :static-space-init-function 'x8664-initialize-static-space 72 72 :purespace-reserve (ash 1 30) 73 73 )) 74 74 … … 90 90 :nil-relative-symbols x86::*x86-nil-relative-symbols* 91 91 :static-space-init-function 'x8664-initialize-static-space 92 92 :purespace-reserve (ash 1 30) 93 93 )) 94 94 … … 108 108 :nil-relative-symbols x86::*x86-nil-relative-symbols* 109 109 :static-space-init-function 'x8664-initialize-static-space 110 110 :purespace-reserve (ash 1 30) 111 111 )) 112 112
Note:
See TracChangeset
for help on using the changeset viewer.
