* bug fix: Scrub control stack after scavenging in gencgc on non-x86oid
platforms, preventing the GC from seeing stale pointers on the control
stack in subsequent GCs (which would, and does, break invariants).
+ * bug fix: 32-bit unicode external formats now work on big-endian systems.
+ * bug fix: Literal characters with code points greater than about 32767
+ now work on PPC UNICODE builds.
changes in sbcl-1.0.38 relative to sbcl-1.0.37:
* incompatible change: Thread names are now restricted to SIMPLE-STRINGs
(:translate char>)
(:variant :gt :le))
+#!-sb-unicode (progn
+;; We can't use these when unicode is enabled because cmplwi has
+;; an immediate field far smaller than the width of some unicode
+;; code points. -- AB, 2010-Apr-24.
(define-vop (character-compare/c)
(:args (x :scs (character-reg)))
(:arg-types character (:constant character))
(define-vop (fast-char>/character/c character-compare/c)
(:translate char>)
(:variant :gt :le))
+) ;; Not sb-unicode
(defvar *test-path* "external-format-test.tmp")
-(do-external-formats (xf)
- (with-open-file (s #-win32 "/dev/null" #+win32 "nul" :direction :input :external-format xf)
- (assert (eq (read-char s nil s) s))))
+(with-test (:name :end-of-file)
+ (do-external-formats (xf)
+ (with-open-file (s #-win32 "/dev/null" #+win32 "nul" :direction :input :external-format xf)
+ (assert (eq (read-char s nil s) s)))))
;;; Test standard character read-write equivalency over all external formats.
-(let ((standard-characters "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!$\"'(),_-./:;?+<=>#%&*@[\\]{|}`^~"))
- (do-external-formats (xf)
- (with-open-file (s *test-path* :direction :output
- :if-exists :supersede :external-format xf)
- (loop for character across standard-characters
- do (write-char character s)))
- (with-open-file (s *test-path* :direction :input
- :external-format xf)
- (loop for character across standard-characters
- do (let ((got (read-char s)))
- (unless (eql character got)
- (error "wanted ~S, got ~S" character got)))))))
+(macrolet
+ ((frob ()
+ (let ((tests nil))
+ (do-external-formats (xf)
+ (pushnew `(with-test (:name (:standard-character :read-write-equivalency ,xf))
+ (let ((standard-characters "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!$\"'(),_-./:;?+<=>#%&*@[\\]{|}`^~"))
+ (with-open-file (s *test-path* :direction :output
+ :if-exists :supersede :external-format ,xf)
+ (loop for character across standard-characters
+ do (write-char character s)))
+ (with-open-file (s *test-path* :direction :input
+ :external-format ,xf)
+ (loop for character across standard-characters
+ do (let ((got (read-char s)))
+ (unless (eql character got)
+ (error "wanted ~S, got ~S" character got)))))))
+ tests :key #'cadr :test #'equal))
+ `(progn ,@tests))))
+ (frob))
(delete-file *test-path*)
#-sb-unicode