From a20b37e936bc87b5fdd0ca850d2735dbe9859743 Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Wed, 7 Nov 1990 23:02:14 +0000 Subject: [PATCH] Added an info-environment slot to the backend structure. --- compiler/backend.lisp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/compiler/backend.lisp b/compiler/backend.lisp index ad437ca4c..e27f9056f 100644 --- a/compiler/backend.lisp +++ b/compiler/backend.lisp @@ -18,7 +18,7 @@ backend-name backend-version backend-fasl-file-type backend-fasl-file-implementation backend-fasl-file-version backend-register-save-penalty backend-byte-order - backend-any-primitive-type + backend-any-primitive-type backend-info-environment ;; The various backends need to call these support routines make-stack-pointer-tn primitive-type primitive-type-of)) @@ -169,6 +169,9 @@ ;; structures. This information is only used at meta-compile time. (parsed-vops (make-hash-table :test #'eq) :type hash-table) + ;; The backend specific aspects of the info environment. + (info-environment (make-info-environment :name "Backend Info")) + . #.(mapcar #'(lambda (slot) `(,(intern slot) nil :type (or null function))) (sort (copy-list *vm-support-routines*) #'string<))) -- GitLab