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

Moved NAME & SOURCE slots from COMPILED-DEBUG-INFO to supertype DEBUG-INFO

so that we can use the supertype for e.g. byte functions to keep track of
source file location.
parent 27ad0a9e
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/code/debug-info.lisp,v 1.25 1993/02/26 08:25:03 ram Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/debug-info.lisp,v 1.26 1993/08/17 21:08:58 ram Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -458,11 +458,7 @@ function (which would be useful info anyway). ...@@ -458,11 +458,7 @@ function (which would be useful info anyway).
;;;; The DEBUG-INFO structure: ;;;; The DEBUG-INFO structure:
(defstruct debug-info) (defstruct debug-info
(defstruct (compiled-debug-info
(:include debug-info)
(:pure t))
;; ;;
;; Some string describing something about the code in this component. ;; Some string describing something about the code in this component.
(name (required-argument) :type simple-string) (name (required-argument) :type simple-string)
...@@ -472,7 +468,12 @@ function (which would be useful info anyway). ...@@ -472,7 +468,12 @@ function (which would be useful info anyway).
;; ;;
;; *** NOTE: the offset of this slot is wired into the fasl dumper so that it ;; *** NOTE: the offset of this slot is wired into the fasl dumper so that it
;; *** can backpatch the source info when compilation is complete. ;; *** can backpatch the source info when compilation is complete.
(source nil :type list) (source nil :type list))
(defstruct (compiled-debug-info
(:include debug-info)
(:pure t))
;; ;;
;; The name of the package that DEBUG-FUNCTION-VARIABLES were dumped relative ;; The name of the package that DEBUG-FUNCTION-VARIABLES were dumped relative
;; to. Locations that aren't packaged are in this package. ;; to. Locations that aren't packaged are in this package.
......
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