Skip to content
Snippets Groups Projects
Commit a9692c7b authored by ram's avatar ram
Browse files

Added stuff to backpatch core function objects so that there can be

weird dependencies between components.  This is necessary to support
NLX into top-level code.
parent 8b0e3726
No related branches found
No related tags found
No related merge requests found
...@@ -28,6 +28,11 @@ ...@@ -28,6 +28,11 @@
;; FUNCTIONs for functions in this compilation. ;; FUNCTIONs for functions in this compilation.
(entry-table (make-hash-table :test #'eq) :type hash-table) (entry-table (make-hash-table :test #'eq) :type hash-table)
;; ;;
;; A hashtable translating ENTRY-INFO structures to a list of pairs
;; (<code object> . <offset>) describing the places that need to be
;; backpatched to point to the function for ENTRY-INFO.
(patch-table (make-hash-table :test #'eq) :type hash-table)
;;
;; A list of all the DEBUG-INFO objects created, kept so that we can ;; A list of all the DEBUG-INFO objects created, kept so that we can
;; backpatch with the source info. ;; backpatch with the source info.
(debug-info () :type list)) (debug-info () :type list))
...@@ -44,7 +49,8 @@ ...@@ -44,7 +49,8 @@
(declare (type index offset)) (declare (type index offset))
(unless (zerop (logand offset vm:lowtag-mask)) (unless (zerop (logand offset vm:lowtag-mask))
(error "Unaligned function object, offset = #x~X." offset)) (error "Unaligned function object, offset = #x~X." offset))
(let ((res (%primitive compute-function code-obj offset))) (let* ((res (%primitive compute-function code-obj offset))
(patch-table (core-object-patch-table object)))
(%primitive set-function-self res res) (%primitive set-function-self res res)
(%primitive set-function-next res (%primitive set-function-next res
(%primitive code-entry-points code-obj)) (%primitive code-entry-points code-obj))
...@@ -54,20 +60,14 @@ ...@@ -54,20 +60,14 @@
(entry-info-arguments entry)) (entry-info-arguments entry))
(%primitive set-function-type res (%primitive set-function-type res
(entry-info-type entry)) (entry-info-type entry))
(dolist (patch (gethash entry patch-table))
(%primitive code-constant-set (car patch) (the index (cdr patch))
res))
(remhash entry patch-table)
(setf (gethash entry (core-object-entry-table object)) res))) (setf (gethash entry (core-object-entry-table object)) res)))
(undefined-value)) (undefined-value))
;;; CORE-FUNCTION-OR-LOSE -- Internal
;;;
;;; Get the function for a function entry that has been dumped to core.
;;;
#+new-compiler
(defun core-function-or-lose (fun object)
(declare (type functional fun) (type core-object object))
(let ((res (gethash (leaf-info fun) (core-object-entry-table object))))
(assert res () "Unresolved forward function reference?")
res))
;;; DO-CORE-FIXUPS -- Internal ;;; DO-CORE-FIXUPS -- Internal
;;; ;;;
...@@ -99,6 +99,23 @@ ...@@ -99,6 +99,23 @@
(lisp::fixup-code-object code offset value kind))))) (lisp::fixup-code-object code offset value kind)))))
;;; REFERENCE-CORE-FUNCTION -- Internal
;;;
;;; Stick a reference to the function Fun in Code-Object at index I. If the
;;; function hasn't been compiled yet, make a note in the Patch-Table.
;;;
(defun reference-core-function (code-obj i fun object)
(declare (type core-object object) (type functional fun)
(type index i))
(let* ((info (leaf-info fun))
(found (gethash info (core-object-entry-table object))))
(if found
(%primitive code-constant-set code-obj i found)
(push (cons code-obj i)
(gethash info (core-object-patch-table object)))))
(undefined-value))
;;; MAKE-CORE-COMPONENT -- Interface ;;; MAKE-CORE-COMPONENT -- Interface
;;; ;;;
;;; Dump a component to core. We pass in the assembler fixups, code vector ;;; Dump a component to core. We pass in the assembler fixups, code vector
...@@ -135,8 +152,7 @@ ...@@ -135,8 +152,7 @@
(list (list
(ecase (car const) (ecase (car const)
(:entry (:entry
(%primitive code-constant-set code-obj i (reference-core-function code-obj i (cdr const) object))
(core-function-or-lose (cdr const) object)))
#+nil #+nil
(:label (:label
(%primitive header-set code-obj i (%primitive header-set code-obj i
...@@ -148,22 +164,26 @@ ...@@ -148,22 +164,26 @@
;;; CORE-CALL-TOP-LEVEL-LAMBDA -- Interface ;;; CORE-CALL-TOP-LEVEL-LAMBDA -- Interface
;;; ;;;
;;; Call the top-level lambda function dumped for Entry, returning the ;;; Call the top-level lambda function dumped for Entry, returning the
;;; values. Entry may be a ;;; values. Entry may be a :TOP-LEVEL-XEP functional.
;;; ;;;
#+new-compiler #+new-compiler
(defun core-call-top-level-lambda (entry object) (defun core-call-top-level-lambda (entry object)
(declare (type functional entry) (type core-object object)) (declare (type functional entry) (type core-object object))
(funcall (core-function-or-lose entry object))) (funcall (or (gethash (leaf-info entry)
(core-object-entry-table object))
(error "Unresolved forward reference."))))
;;; FIX-CORE-SOURCE-INFO -- Interface ;;; FIX-CORE-SOURCE-INFO -- Interface
;;; ;;;
;;; Backpatch all the DEBUG-INFOs dumped so far with the specified ;;; Backpatch all the DEBUG-INFOs dumped so far with the specified
;;; SOURCE-INFO list. ;;; SOURCE-INFO list. We also check that there are no outstanding forward
;;; references to functions.
;;; ;;;
#+new-compiler #+new-compiler
(defun fix-core-source-info (info object source-info) (defun fix-core-source-info (info object source-info)
(declare (type source-info info) (type core-object object)) (declare (type source-info info) (type core-object object))
(assert (zerop (hash-table-count (core-object-patch-table object))))
(let ((res (debug-source-for-info info))) (let ((res (debug-source-for-info info)))
(dolist (sinfo res) (dolist (sinfo res)
(setf (debug-source-info sinfo) source-info)) (setf (debug-source-info sinfo) source-info))
......
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