diff --git a/compiler/backend.lisp b/compiler/backend.lisp index 6b45de7f5973af2fac1c73e5277178d7c058821f..a522decc028fbbd039c4a3f12bd1876ab032176f 100644 --- a/compiler/backend.lisp +++ b/compiler/backend.lisp @@ -75,7 +75,7 @@ (defun ,local-name ,ll ,@body) (setf (,(intern (concatenate 'simple-string "BACKEND-" (string name)) (find-package "C")) - *backend*) + *target-backend*) #',local-name)))) @@ -157,7 +157,12 @@ (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")) + (info-environment nil :type list) + + ;; Support for the assembler. + (instruction-formats (make-hash-table :test #'eq) :type hash-table) + (instruction-flavors (make-hash-table :test #'equal) :type hash-table) + (special-arg-types (make-hash-table :test #'eq) :type hash-table) . #.(mapcar #'(lambda (slot) `(,slot nil :type (or null function))) @@ -165,6 +170,7 @@ #'string< :key #'symbol-name))) + (defprinter backend name)