#!+linux
(progn
- (def!constant dynamic-0-space-start #x20000000)
- (def!constant dynamic-0-space-end #x3ffff000)
- (def!constant dynamic-1-space-start #x50000000)
- (def!constant dynamic-1-space-end #x6ffff000)
+ (def!constant dynamic-0-space-start #x50000000)
+ (def!constant dynamic-0-space-end #x67fff000)
+ (def!constant dynamic-1-space-start #x68000000)
+ (def!constant dynamic-1-space-end #x7ffff000)
(def!constant linkage-table-space-start #x0a000000)
(def!constant linkage-table-space-end #x0b000000)
(!bootstrap-slot-index 'standard-boundp-method s))))
(defun safe-method-specializers (method)
- (let ((standard-method-classes
+ (let ((standard-method-classes
(list *the-class-standard-method*
*the-class-standard-reader-method*
*the-class-standard-writer-method*
(clos-slots-ref (get-slots method) *sm-specializers-index*)
(method-specializers method))))
(defun safe-method-fast-function (method)
- (let ((standard-method-classes
+ (let ((standard-method-classes
(list *the-class-standard-method*
*the-class-standard-reader-method*
*the-class-standard-writer-method*
(clos-slots-ref (get-slots method) *sm-fast-function-index*)
(method-fast-function method))))
(defun safe-method-function (method)
- (let ((standard-method-classes
+ (let ((standard-method-classes
(list *the-class-standard-method*
*the-class-standard-reader-method*
*the-class-standard-writer-method*
(clos-slots-ref (get-slots method) *sm-function-index*)
(method-function method))))
(defun safe-method-qualifiers (method)
- (let ((standard-method-classes
+ (let ((standard-method-classes
(list *the-class-standard-method*
*the-class-standard-reader-method*
*the-class-standard-writer-method*
(gf-dfun-state generic-function)))
(defun (setf safe-gf-dfun-state) (new-value generic-function)
(if (eq (class-of generic-function) *the-class-standard-generic-function*)
- (setf (clos-slots-ref (get-slots generic-function)
+ (setf (clos-slots-ref (get-slots generic-function)
*sgf-dfun-state-index*)
new-value)
(setf (gf-dfun-state generic-function) new-value)))
\f
(defun safe-gf-arg-info (generic-function)
(if (eq (class-of generic-function) *the-class-standard-generic-function*)
- (clos-slots-ref (fsc-instance-slots generic-function)
+ (clos-slots-ref (fsc-instance-slots generic-function)
*sgf-arg-info-index*)
(gf-arg-info generic-function)))