Some host definitions slipped in during cross-compilation.
char-code-limit => sb!xc:char-code-limit.
**character-primary-compositions** was initialized at xc-time, move it to cold init.
Thanks to Christophe Rhodes for the latter.
(dpb (cref 3) (byte 8 24)
(dpb (cref 2) (byte 8 16)
(dpb (cref 1) (byte 8 8) (cref 0))))))))
- (if (< code char-code-limit)
+ (if (< code sb!xc:char-code-limit)
(code-char code)
(decoding-error array pos (+ pos bytes) :ucs-4le
'octet-decoding-error pos))))
(dpb (cref 0) (byte 8 24)
(dpb (cref 1) (byte 8 16)
(dpb (cref 2) (byte 8 8) (cref 3))))))))
- (if (< code char-code-limit)
+ (if (< code sb!xc:char-code-limit)
(code-char code)
(decoding-error array pos (+ pos bytes) :ucs-4be
'octet-decoding-error pos)))))))
(setf (sap-ref-32le sap tail) bits)
4
(let ((code (sap-ref-32le sap head)))
- (if (< code char-code-limit)
+ (if (< code sb!xc:char-code-limit)
(code-char code)
(return-from decode-break-reason 4)))
ucs-4le->string-aref
(setf (sap-ref-32be sap tail) bits)
4
(let ((code (sap-ref-32be sap head)))
- (if (< code char-code-limit)
+ (if (< code sb!xc:char-code-limit)
(code-char code)
(return-from decode-break-reason 4)))
ucs-4be->string-aref
(dpb (cref 3) (byte 8 24)
(dpb (cref 2) (byte 8 16)
(dpb (cref 1) (byte 8 8) (cref 0))))))))
- (if (and (< code char-code-limit)
+ (if (and (< code sb!xc:char-code-limit)
(not (utf-noncharacter-code-p code)))
(code-char code)
(decoding-error array pos (+ pos bytes) :utf-32le
(dpb (cref 0) (byte 8 24)
(dpb (cref 1) (byte 8 16)
(dpb (cref 2) (byte 8 8) (cref 3))))))))
- (if (and (< code char-code-limit)
+ (if (and (< code sb!xc:char-code-limit)
(not (utf-noncharacter-code-p code)))
(code-char code)
(decoding-error array pos (+ pos bytes) :utf-32be
(setf (sap-ref-32le sap tail) bits))
4
(let ((code (sap-ref-32le sap head)))
- (if (and (< code char-code-limit)
+ (if (and (< code sb!xc:char-code-limit)
(not (utf-noncharacter-code-p code)))
(code-char code)
(return-from decode-break-reason 4)))
(setf (sap-ref-32be sap tail) bits))
4
(let ((code (sap-ref-32be sap head)))
- (if (and (< code char-code-limit)
+ (if (and (< code sb!xc:char-code-limit)
(not (utf-noncharacter-code-p code)))
(code-char code)
(return-from decode-break-reason 4)))
(declaim (maybe-inline digit-char-p digit-weight))
(deftype char-code ()
- `(integer 0 (,char-code-limit)))
+ `(integer 0 (,sb!xc:char-code-limit)))
#!+sb-unicode
(progn
array))))
(let ((character-database (read-ub8-vector (file "ucd" "dat")))
(decompositions (read-ub8-vector (file "decomp" "dat")))
- (long-decompositions (read-ub8-vector (file "ldecomp" "dat"))))
+ (long-decompositions (read-ub8-vector (file "ldecomp" "dat")))
+ (primary-compositions (read-ub8-vector (file "comp" "dat"))))
`(progn
- (declaim (type (simple-array (unsigned-byte 8) (*)) **character-database** **character-decompositions** **character-long-decompositions**))
+ (declaim (type (simple-array (unsigned-byte 8) (*))
+ **character-database**
+ **character-decompositions**
+ **character-long-decompositions**))
(defglobal **character-database** ,character-database)
(defglobal **character-decompositions** ,decompositions)
(defglobal **character-long-decompositions** ,long-decompositions)
- (defglobal **character-primary-compositions**
- (let ((table (make-hash-table))
- (info ,(read-ub8-vector (file "comp" "dat"))))
- (flet ((code (j)
- (dpb (aref info (* 4 j))
- (byte 8 24)
- (dpb (aref info (+ (* 4 j) 1))
- (byte 8 16)
- (dpb (aref info (+ (* 4 j) 2))
- (byte 8 8)
- (aref info (+ (* 4 j) 3)))))))
- #!+sb-unicode
- (dotimes (i (/ (length info) 12))
- (setf (gethash (dpb (code (* 3 i)) (byte 21 21)
- (code (1+ (* 3 i))))
- table)
- (code-char (code (+ (* 3 i) 2)))))
- table)))
+ ;; KLUDGE: temporary value, fixed up in cold-load
+ (defglobal **character-primary-compositions** ,primary-compositions)
(defun !character-database-cold-init ()
- (setf **character-database** ,character-database))
+ (setf **character-database** ,character-database)
+ (setf **character-primary-compositions**
+ (let ((table (make-hash-table))
+ (info ,primary-compositions))
+ (flet ((code (j)
+ (dpb (aref info (* 4 j))
+ (byte 8 24)
+ (dpb (aref info (+ (* 4 j) 1))
+ (byte 8 16)
+ (dpb (aref info (+ (* 4 j) 2))
+ (byte 8 8)
+ (aref info (+ (* 4 j) 3)))))))
+ #!+sb-unicode
+ (dotimes (i (/ (length info) 12))
+ (setf (gethash (dpb (code (* 3 i)) (byte 21 21)
+ (code (1+ (* 3 i))))
+ table)
+ (code-char (code (+ (* 3 i) 2)))))
+ table))))
,(with-open-file (stream (file "ucd-names" "lisp-expr")
:direction :input
:element-type 'character)
`(mod ,base-char-code-limit)))
(t
(specifier-type
- `(mod ,char-code-limit))))))
+ `(mod ,sb!xc:char-code-limit))))))
(defoptimizer (code-char derive-type) ((code))
(let ((type (lvar-type code)))