Skip to content
Snippets Groups Projects
Commit 9b83625d authored by Raymond Toy's avatar Raymond Toy
Browse files

Wrap all exports in eval-when since export is now an ordinary function

without any compiler magic.

Untested.
parent 2ec1fda2
No related branches found
No related tags found
No related merge requests found
...@@ -40,6 +40,7 @@ ...@@ -40,6 +40,7 @@
;;;; Machine Architecture parameters: ;;;; Machine Architecture parameters:
(eval-when (:compile-toplevel :load-toplevel :execute)
(export '(word-bits byte-bits word-shift word-bytes float-sign-shift (export '(word-bits byte-bits word-shift word-bytes float-sign-shift
single-float-bias single-float-exponent-byte single-float-bias single-float-exponent-byte
...@@ -55,6 +56,7 @@ ...@@ -55,6 +56,7 @@
float-underflow-trap-bit float-overflow-trap-bit float-underflow-trap-bit float-overflow-trap-bit
float-imprecise-trap-bit float-invalid-trap-bit float-imprecise-trap-bit float-invalid-trap-bit
float-divide-by-zero-trap-bit)) float-divide-by-zero-trap-bit))
; ; eval-when
...@@ -128,11 +130,13 @@ ...@@ -128,11 +130,13 @@
;;;; Description of the target address space. ;;;; Description of the target address space.
(eval-when (:compile-toplevel :load-toplevel :execute)
(export '(target-read-only-space-start (export '(target-read-only-space-start
target-static-space-start target-static-space-start
target-dynamic-space-start target-dynamic-space-start
target-foreign-linkage-space-start target-foreign-linkage-space-start
target-foreign-linkage-entry-size)) target-foreign-linkage-entry-size))
)
;;; Where to put the different spaces. ;;; Where to put the different spaces.
;;; ;;;
...@@ -157,10 +161,12 @@ ...@@ -157,10 +161,12 @@
;;;; Other random constants. ;;;; Other random constants.
(eval-when (:compile-toplevel :load-toplevel :execute)
(export '(halt-trap pending-interrupt-trap error-trap cerror-trap (export '(halt-trap pending-interrupt-trap error-trap cerror-trap
breakpoint-trap function-end-breakpoint-trap single-step-breakpoint breakpoint-trap function-end-breakpoint-trap single-step-breakpoint
trace-table-normal trace-table-call-site trace-table-normal trace-table-call-site
trace-table-function-prologue trace-table-function-epilogue)) trace-table-function-prologue trace-table-function-epilogue))
)
(defenum (:suffix -trap :start 8) (defenum (:suffix -trap :start 8)
halt halt
...@@ -181,7 +187,9 @@ ...@@ -181,7 +187,9 @@
;;;; Static symbols. ;;;; Static symbols.
(eval-when (:compile-toplevel :load-toplevel :execute)
(export '(static-symbols static-functions)) (export '(static-symbols static-functions))
)
;;; These symbols are loaded into static space directly after NIL so ;;; These symbols are loaded into static space directly after NIL so
;;; that the system can compute their address by adding a constant ;;; that the system can compute their address by adding a constant
......
...@@ -39,6 +39,7 @@ ...@@ -39,6 +39,7 @@
;;;; Machine Architecture parameters: ;;;; Machine Architecture parameters:
(eval-when (:compile-toplevel :load-toplevel :execute)
(export '(word-bits byte-bits word-shift word-bytes float-sign-shift (export '(word-bits byte-bits word-shift word-bytes float-sign-shift
single-float-bias single-float-exponent-byte single-float-bias single-float-exponent-byte
...@@ -54,7 +55,7 @@ ...@@ -54,7 +55,7 @@
float-underflow-trap-bit float-overflow-trap-bit float-underflow-trap-bit float-overflow-trap-bit
float-imprecise-trap-bit float-invalid-trap-bit float-imprecise-trap-bit float-invalid-trap-bit
float-divide-by-zero-trap-bit)) float-divide-by-zero-trap-bit))
) ; eval-when
(eval-when (compile load eval) (eval-when (compile load eval)
...@@ -119,11 +120,13 @@ ...@@ -119,11 +120,13 @@
;;;; Description of the target address space. ;;;; Description of the target address space.
(eval-when (:compile-toplevel :load-toplevel :execute)
(export '(target-read-only-space-start (export '(target-read-only-space-start
target-static-space-start target-static-space-start
target-dynamic-space-start target-dynamic-space-start
target-foreign-linkage-space-start target-foreign-linkage-space-start
target-foreign-linkage-entry-size)) target-foreign-linkage-entry-size))
)
;;; Where to put the different spaces. ;;; Where to put the different spaces.
...@@ -143,11 +146,13 @@ ...@@ -143,11 +146,13 @@
;;;; Other random constants. ;;;; Other random constants.
(eval-when (:compile-toplevel :load-toplevel :execute)
(export '(halt-trap pending-interrupt-trap error-trap cerror-trap (export '(halt-trap pending-interrupt-trap error-trap cerror-trap
breakpoint-trap function-end-breakpoint-trap breakpoint-trap function-end-breakpoint-trap
single-step-breakpoint-trap single-step-breakpoint-trap
trace-table-normal trace-table-call-site trace-table-normal trace-table-call-site
trace-table-function-prologue trace-table-function-epilogue)) trace-table-function-prologue trace-table-function-epilogue))
)
(defenum (:suffix -trap :start 8) (defenum (:suffix -trap :start 8)
halt halt
...@@ -168,7 +173,9 @@ ...@@ -168,7 +173,9 @@
;;;; Static symbols. ;;;; Static symbols.
(eval-when (:compile-toplevel :load-toplevel :execute)
(export '(static-symbols static-functions)) (export '(static-symbols static-functions))
)
;;; These symbols are loaded into static space directly after NIL so ;;; These symbols are loaded into static space directly after NIL so
;;; that the system can compute their address by adding a constant ;;; that the system can compute their address by adding a constant
......
...@@ -50,6 +50,7 @@ ...@@ -50,6 +50,7 @@
;;;; Machine Architecture parameters: ;;;; Machine Architecture parameters:
(eval-when (:compile-toplevel :load-toplevel :execute)
(export '(word-bits byte-bits word-shift word-bytes float-sign-shift (export '(word-bits byte-bits word-shift word-bytes float-sign-shift
single-float-bias single-float-exponent-byte single-float-bias single-float-exponent-byte
...@@ -65,7 +66,7 @@ ...@@ -65,7 +66,7 @@
float-underflow-trap-bit float-overflow-trap-bit float-underflow-trap-bit float-overflow-trap-bit
float-imprecise-trap-bit float-invalid-trap-bit float-imprecise-trap-bit float-invalid-trap-bit
float-divide-by-zero-trap-bit)) float-divide-by-zero-trap-bit))
) ; eval-when
(eval-when (compile load eval) (eval-when (compile load eval)
...@@ -129,11 +130,13 @@ ...@@ -129,11 +130,13 @@
;;;; Description of the target address space. ;;;; Description of the target address space.
(eval-when (:compile-toplevel :load-toplevel :execute)
(export '(target-read-only-space-start (export '(target-read-only-space-start
target-static-space-start target-static-space-start
target-dynamic-space-start target-dynamic-space-start
target-foreign-linkage-space-start target-foreign-linkage-space-start
target-foreign-linkage-entry-size)) target-foreign-linkage-entry-size))
)
;;; Where to put the different spaces. ;;; Where to put the different spaces.
;;; ;;;
...@@ -147,7 +150,8 @@ ...@@ -147,7 +150,8 @@
;;; large object space instead. Must be less then a page. ;;; large object space instead. Must be less then a page.
;;; ;;;
#+gengc #+gengc
(export 'large-object-cutoff) (eval-when (:compile-toplevel :load-toplevel :execute)
(export 'large-object-cutoff))
#+gengc #+gengc
(defparameter large-object-cutoff 1024) (defparameter large-object-cutoff 1024)
...@@ -155,10 +159,12 @@ ...@@ -155,10 +159,12 @@
;;;; Other non-type constants. ;;;; Other non-type constants.
(eval-when (:compile-toplevel :load-toplevel :execute)
(export '(atomic-flag interrupted-flag halt-trap pending-interrupt-trap (export '(atomic-flag interrupted-flag halt-trap pending-interrupt-trap
error-trap cerror-trap breakpoint-trap function-end-breakpoint-trap error-trap cerror-trap breakpoint-trap function-end-breakpoint-trap
after-breakpoint-trap trace-table-normal trace-table-call-site after-breakpoint-trap trace-table-normal trace-table-call-site
trace-table-function-prologue trace-table-function-epilogue)) trace-table-function-prologue trace-table-function-epilogue))
)
(defenum (:suffix -flag) (defenum (:suffix -flag)
atomic atomic
...@@ -183,7 +189,9 @@ ...@@ -183,7 +189,9 @@
;;;; Static symbols. ;;;; Static symbols.
(eval-when (:compile-toplevel :load-toplevel :execute)
(export '(static-symbols static-functions)) (export '(static-symbols static-functions))
)
;;; Static symbols are loaded into static space directly after NIL so ;;; Static symbols are loaded into static space directly after NIL so
;;; that the system can compute their address by adding a constant ;;; that the system can compute their address by adding a constant
......
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