Skip to content
Snippets Groups Projects
Commit ff60050d authored by wlott's avatar wlott
Browse files

Dump code objects in the new format.

parent 5fe656ec
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman (FAHLMAN@CMUC). ;;; Scott Fahlman (FAHLMAN@CMUC).
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/dump.lisp,v 1.2 1990/02/09 18:37:21 wlott Exp $ ;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/dump.lisp,v 1.3 1990/02/09 21:06:34 wlott Exp $
;;; ;;;
;;; This file contains stuff that knows about dumping FASL files. ;;; This file contains stuff that knows about dumping FASL files.
;;; ;;;
...@@ -15,10 +15,6 @@ ...@@ -15,10 +15,6 @@
(proclaim '(special compiler-version)) (proclaim '(special compiler-version))
(import '(system:%primitive system:%array-data-slot
system:%array-displacement-slot
system:%g-vector-structure-subtype))
;;;; Fasl dumper state: ;;;; Fasl dumper state:
...@@ -402,18 +398,29 @@ ...@@ -402,18 +398,29 @@
(defun dump-fixups (code-handle fixups file) (defun dump-fixups (code-handle fixups file)
(declare (type unsigned-byte code-handle) (list fixups) (declare (type unsigned-byte code-handle) (list fixups)
(type fasl-file file)) (type fasl-file file))
(dump-push code-handle file) (when fixups
(dolist (fixup fixups) (dump-push code-handle file)
(let ((offset (second fixup)) (dolist (fixup fixups)
(value (third fixup))) (let ((offset (second fixup))
(ecase (first fixup) (value (third fixup)))
(:miscop (ecase (first fixup)
(assert (symbolp value)) #+nil
(dump-object value file) (:miscop
(dump-fop 'lisp::fop-user-miscop-fixup file) (assert (symbolp value))
(quick-dump-number offset 4 file))))) (dump-object value file)
(dump-fop 'lisp::fop-user-miscop-fixup file)
(dump-fop 'lisp::fop-pop-for-effect file) (quick-dump-number offset 4 file))
(:foreign
(assert (symbolp value))
(dump-fop 'lisp::fop-foreign-fixup file)
(quick-dump-number offset 4 file)
(let* ((str (symbol-name value))
(len (length str)))
(assert (< len 256))
(quick-dump-number len 1 file)
(dotimes (i len)
(dump-byte (char-code (schar str i)))))))))
(dump-fop 'lisp::fop-pop-for-effect file))
(undefined-value)) (undefined-value))
...@@ -430,23 +437,18 @@ ...@@ -430,23 +437,18 @@
(declare (type entry-info entry) (type unsigned-byte code-handle) (declare (type entry-info entry) (type unsigned-byte code-handle)
(type fasl-file file)) (type fasl-file file))
(let ((name (entry-info-name entry))) (let ((name (entry-info-name entry)))
(dump-push code-handle file) (cond ((entry-info-closure-p entry)
(dump-object (if (entry-info-closure-p entry) ;; ### Need to fix this.
system:%function-closure-entry-subtype (compiler-error "Cannot dump closures. Oh no.")
system:%function-entry-subtype) (dump-fop 'lisp::fop-misc-trap file))
file) (t
(dump-push code-handle file)
(dump-object name file) (dump-object name file)
(dump-fop 'lisp::fop-misc-trap file) (dump-object (entry-info-arguments entry) file)
(dump-object (+ (label-location (entry-info-offset entry)) (dump-object (entry-info-type entry) file)
clc::i-vector-header-size) (dump-fop 'lisp::fop-function-entry file)
file) (quick-dump-number (label-location (entry-info-offset entry))
(dump-fop 'lisp::fop-misc-trap file) 4 file)))
(dump-object (entry-info-arguments entry) file)
(dump-object (entry-info-type entry) file)
(dump-fop 'lisp::fop-function-entry file)
(dump-byte 6 file)
(let ((handle (dump-pop file))) (let ((handle (dump-pop file)))
(when (and name (symbolp name)) (when (and name (symbolp name))
(dump-object name file) (dump-object name file)
...@@ -454,7 +456,6 @@ ...@@ -454,7 +456,6 @@
(dump-fop 'lisp::fop-fset file)) (dump-fop 'lisp::fop-fset file))
handle))) handle)))
;;; Alter-Code-Object -- Internal ;;; Alter-Code-Object -- Internal
;;; ;;;
;;; Alter the code object referenced by Code-Handle at the specified Offset, ;;; Alter the code object referenced by Code-Handle at the specified Offset,
...@@ -562,6 +563,8 @@ ...@@ -562,6 +563,8 @@
(unless (equal-check-table x file) (unless (equal-check-table x file)
(dump-list x file) (dump-list x file)
(equal-save-object x file))) (equal-save-object x file)))
(structure
(dump-structure x file))
(vector (vector
(cond ((stringp x) (cond ((stringp x)
(unless (equal-check-table x file) (unless (equal-check-table x file)
...@@ -936,18 +939,7 @@ ...@@ -936,18 +939,7 @@
;;;; Array dumping: ;;;; Array dumping:
;;; Named G-vectors get their subtype field set at load time. (defun dump-vector (v file)
(defun dump-vector (obj file)
(cond ((and (simple-vector-p obj)
(= (%primitive get-vector-subtype obj)
%g-vector-structure-subtype))
(normal-dump-vector obj file)
(dump-fop 'lisp::fop-structure file))
(t
(normal-dump-vector obj file))))
(defun normal-dump-vector (v file)
(note-potential-circularity v file) (note-potential-circularity v file)
(do ((index 0 (1+ index)) (do ((index 0 (1+ index))
(length (length v)) (length (length v))
...@@ -978,6 +970,12 @@ ...@@ -978,6 +970,12 @@
;;; a displaced array looks like, we can fix this. ;;; a displaced array looks like, we can fix this.
;;; ;;;
(defun dump-array (array file) (defun dump-array (array file)
(declare (ignore array file))
(compiler-error "Can't dump arrays, bozo.")
(dump-fop 'lisp::fop-misc-trap file))
#|
(
(unless (zerop (%primitive header-ref array %array-displacement-slot)) (unless (zerop (%primitive header-ref array %array-displacement-slot))
(compiler-error (compiler-error
"Attempt to dump an array with a displacement, you lose big.")) "Attempt to dump an array with a displacement, you lose big."))
...@@ -988,11 +986,18 @@ ...@@ -988,11 +986,18 @@
(dump-fop 'lisp::fop-array file) (dump-fop 'lisp::fop-array file)
(quick-dump-number rank 4 file))) (quick-dump-number rank 4 file)))
|#
;;; Dump-I-Vector -- Internal ;;; Dump-I-Vector -- Internal
;;; ;;;
;;; Dump an I-Vector using the Guy Steele memorial fasl-operation. ;;; Dump an I-Vector using the Guy Steele memorial fasl-operation.
;;; ;;;
(defun dump-i-vector (vec file) (defun dump-i-vector (vec file)
(declare (ignore vec file))
(compiler-error "Can't dump i-vectors, bozo.")
(dump-fop 'lisp::fop-misc-trap file))
#|
(let* ((len (length vec)) (let* ((len (length vec))
(ac (%primitive get-vector-access-code (ac (%primitive get-vector-access-code
(if #-new-compiler (%primitive complex-array-p vec) (if #-new-compiler (%primitive complex-array-p vec)
...@@ -1028,6 +1033,8 @@ ...@@ -1028,6 +1033,8 @@
(dotimes (i len) (dotimes (i len)
(declare (fixnum i)) (declare (fixnum i))
(quick-dump-number (aref vec i) count file))))) (quick-dump-number (aref vec i) count file)))))
|#
;;; Dump a character. ;;; Dump a character.
...@@ -1041,3 +1048,11 @@ ...@@ -1041,3 +1048,11 @@
(dump-byte (char-code ch) file) (dump-byte (char-code ch) file)
(dump-byte (char-bits ch) file) (dump-byte (char-bits ch) file)
(dump-byte (char-font ch) file)))) (dump-byte (char-font ch) file))))
;;; Dump a structure.
(defun dump-structure (obj file)
(normal-dump-vector obj file)
(dump-fop 'lisp::fop-structure file))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment