X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Fearly-impl.lisp;h=51fe65662cbebfb5a324c2de01996a090ebb219b;hb=d335afdcf50b641a0aafd32741e0777d4e12a59b;hp=87a15067cbe3a33d821def98ddfbef58d51930a2;hpb=b27034c44f6f8465fd19964525794615a34b5d41;p=sbcl.git diff --git a/src/code/early-impl.lisp b/src/code/early-impl.lisp index 87a1506..51fe656 100644 --- a/src/code/early-impl.lisp +++ b/src/code/early-impl.lisp @@ -9,43 +9,52 @@ (in-package "SB!IMPL") -(file-comment - "$Header$") - ;;; entries in STATIC-SYMBOLS table, references to which can be compiled ;;; as though they're special variables +;;; +;;; FIXME: These should be listed once and only once, instead of +;;; listed here and then listed separately (and by now, 2001-06-06, +;;; slightly differently) elsewhere. (declaim (special *posix-argv* - *!initial-fdefn-objects* - *read-only-space-free-pointer* - sb!vm:*static-space-free-pointer* - sb!vm:*initial-dynamic-space-free-pointer* - *current-catch-block* - *current-unwind-protect-block* - sb!c::*eval-stack-top* - sb!vm::*alien-stack* - ;; KLUDGE: I happened to notice that these should be #!+X86. - ;; There could easily be others in the list, too. - #!+x86 *pseudo-atomic-atomic* - #!+x86 *pseudo-atomic-interrupted* - sb!unix::*interrupts-enabled* - sb!unix::*interrupt-pending* - *free-interrupt-context-index* - sb!vm::*allocation-pointer* - sb!vm::*binding-stack-pointer* - sb!vm::*internal-gc-trigger* - sb!vm::*fp-constant-0d0* - sb!vm::*fp-constant-1d0* - sb!vm::*fp-constant-0s0* - sb!vm::*fp-constant-1s0* - sb!vm::*fp-constant-0l0* - sb!vm::*fp-constant-1l0* - sb!vm::*fp-constant-pi* - sb!vm::*fp-constant-l2t* - sb!vm::*fp-constant-l2e* - sb!vm::*fp-constant-lg2* - sb!vm::*fp-constant-ln2* - sb!vm::*scavenge-read-only-space* - sb!vm::*control-stacks* - sb!pcl::..slot-unbound.. - sb!vm::*x86-cgc-active-p* - sb!vm::*static-blue-bag*)) + *core-string* + *read-only-space-free-pointer* + sb!vm:*static-space-free-pointer* + sb!vm::*current-catch-block* + sb!vm::*current-unwind-protect-block* + sb!vm::*alien-stack* + sb!vm::*control-stack-start* + sb!vm::*control-stack-end* + sb!vm::*binding-stack-start* + ;; FIXME: The pseudo-atomic variable stuff should be + ;; conditional on :SB-PSEUDO-ATOMIC-SYMBOLS, which + ;; should be conditional on :X86, instead of the + ;; pseudo-atomic stuff being directly conditional on + ;; :X86. (Note that non-X86 ports mention + ;; pseudo-atomicity too, but they handle it without + ;; messing with special variables.) + #!+(or x86 x86-64) *pseudo-atomic-bits* + #!+(or hpux) sb!vm::*c-lra* + *allow-with-interrupts* + sb!unix::*unblock-deferrables-on-enabling-interrupts-p* + *interrupts-enabled* + *interrupt-pending* + *free-interrupt-context-index* + sb!kernel::*gc-epoch* + sb!vm::*unwind-to-frame-function* + sb!vm::*allocation-pointer* + sb!vm::*binding-stack-pointer* + sb!vm::*fp-constant-0d0* + sb!vm::*fp-constant-1d0* + sb!vm::*fp-constant-0f0* + sb!vm::*fp-constant-1f0* + sb!vm::*fp-constant-0l0* + sb!vm::*fp-constant-1l0* + sb!vm::*fp-constant-pi* + sb!vm::*fp-constant-l2t* + sb!vm::*fp-constant-l2e* + sb!vm::*fp-constant-lg2* + sb!vm::*fp-constant-ln2* + sb!vm:*alloc-signal* + sb!pcl::..slot-unbound.. + sb!pcl::*cache-miss-values-stack* + sb!pcl::*dfun-miss-gfs-on-stack*))