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

Do DFO-AS-NEEDED in BYTE-COMPILE-COMPONENT (as it is done in

NATIVE-COMPILE-COMPONENT) to ensure that cleanup code has block numbers.
Also added some MAYBE-MUMBLE calls for *COMPILE-PROGRESS*.
 
parent 9476c81c
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/byte-comp.lisp,v 1.22 1993/09/01 13:25:43 ram Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/byte-comp.lisp,v 1.23 1994/03/07 11:35:30 ram Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -2015,6 +2015,7 @@ ...@@ -2015,6 +2015,7 @@
;;; ;;;
(defun byte-compile-component (component) (defun byte-compile-component (component)
(setf (component-info component) (make-byte-component-info)) (setf (component-info component) (make-byte-component-info))
(maybe-mumble "ByteAnn ")
;; Assign offsets for all the locals, and figure out which args can ;; Assign offsets for all the locals, and figure out which args can
;; stay in the argument area and which need to be moved into locals. ;; stay in the argument area and which need to be moved into locals.
...@@ -2028,6 +2029,9 @@ ...@@ -2028,6 +2029,9 @@
;; them. ;; them.
(byte-stack-analyze component) (byte-stack-analyze component)
;; Make sure any newly added blocks have a block-number.
(dfo-as-needed component)
;; Assign an ordering of the blocks. ;; Assign an ordering of the blocks.
(control-analyze component #'make-byte-block-info) (control-analyze component #'make-byte-block-info)
...@@ -2048,6 +2052,7 @@ ...@@ -2048,6 +2052,7 @@
(setf (byte-block-info-next prev) next) (setf (byte-block-info-next prev) next)
(setf (byte-block-info-prev next) prev)))) (setf (byte-block-info-prev next) prev))))
(maybe-mumble "ByteGen ")
(let ((segment nil)) (let ((segment nil))
(unwind-protect (unwind-protect
(progn (progn
......
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