From 23558d26c0db4409f84cea5ef35cf9260a7d263d Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Mon, 16 Apr 1990 11:09:06 +0000 Subject: [PATCH] Merged non-descriptor changes: revision 1.13.1.2 date: 90/04/13 13:07:19; author: ram; state: Exp; lines added/del: 7/3 CONT -> FP. Added c-d-f-NFP. Rediscovered the DEBUG-SOURCE-COMMENT. ---------------------------- revision 1.13.1.1 date: 90/03/27 13:14:52; author: ram; state: Exp; lines added/del: 3/0 Added DEBUG-SOURCE-COMMENT. --- code/debug-info.lisp | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/code/debug-info.lisp b/code/debug-info.lisp index 92cb44bde..6d5eedff6 100644 --- a/code/debug-info.lisp +++ b/code/debug-info.lisp @@ -296,9 +296,13 @@ ;; elected not to store a vector to save space. (returns :fixed :type (or (simple-array * (*)) (member :standard :fixed))) ;; - ;; SC-Offsets describing where the return PC and return CONT are kept. + ;; SC-Offsets describing where the return PC and return FP are kept. (return-pc nil :type sc-offset) - (old-cont nil :type sc-offset) + (old-fp nil :type sc-offset) + ;; + ;; SC-Offset for the number stack FP in this function, or NIL if no NFP + ;; allocated. + (nfp nil :type (or sc-offset null)) ;; ;; The earliest PC in this function at which the environment is properly ;; initialized (arguments moved from passing locations, etc.) @@ -320,6 +324,9 @@ ;; descriptive string. (name nil :type (or pathname list simple-string)) ;; + ;; File comment for this file, if any. + (comment nil :type (or simple-string null)) + ;; ;; The universal time that the source was written, or NIL if unavailable. (created nil :type (or unsigned-byte null)) ;; -- GitLab