diff --git a/compiler/sparc/char.lisp b/compiler/sparc/char.lisp index 7b3b979b1738ccee3831abe514758bd8d4565f86..4a3c9300da8b8ca68311a1096a1108b25b277e56 100644 --- a/compiler/sparc/char.lisp +++ b/compiler/sparc/char.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/char.lisp,v 1.9 2001/09/25 21:28:34 toy Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/char.lisp,v 1.10 2003/07/01 18:47:01 toy Exp $") ;;; ;;; ********************************************************************** ;;; @@ -145,3 +145,28 @@ (:translate char>) (:variant :gtu :leu)) +(define-vop (base-char-compare-c) + (:args (x :scs (base-char-reg))) + (:arg-types base-char (:constant base-char)) + (:conditional) + (:info target not-p y) + (:policy :fast-safe) + (:note "inline comparison") + (:variant-vars condition not-condition) + (:generator 2 + (inst cmp x (char-code y)) + (inst b (if not-p not-condition condition) target) + (inst nop))) + +(define-vop (fast-char=-c/base-char base-char-compare-c) + (:translate char=) + (:variant :eq :ne)) + +(define-vop (fast-char<-c/base-char base-char-compare-c) + (:translate char<) + (:variant :ltu :geu)) + +(define-vop (fast-char>-c/base-char/c base-char-compare-c) + (:translate char>) + (:variant :gtu :leu)) + diff --git a/compiler/x86/char.lisp b/compiler/x86/char.lisp index 804434bb489d0f22c9520ca5a03c5713061a2371..47cca6351d7b44339addac723f636085b54ef716 100644 --- a/compiler/x86/char.lisp +++ b/compiler/x86/char.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/x86/char.lisp,v 1.4 1998/02/19 19:34:52 dtc Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/x86/char.lisp,v 1.5 2003/07/01 18:47:01 toy Exp $") ;;; ;;; ********************************************************************** ;;; @@ -170,3 +170,27 @@ (:translate char>) (:variant :a :na)) +(define-vop (base-char-compare-c) + (:args (x :scs (base-char-reg))) + (:arg-types base-char (:constant base-char)) + (:conditional) + (:info target not-p y) + (:policy :fast-safe) + (:note "inline comparison") + (:variant-vars condition not-condition) + (:generator 2 + (inst cmp x (char-code y)) + (inst jump (if not-p not-condition condition) target))) + +(define-vop (fast-char=-c/base-char base-char-compare-c) + (:translate char=) + (:variant :eq :ne)) + +(define-vop (fast-char<-c/base-char base-char-compare-c) + (:translate char<) + (:variant :ltu :geu)) + +(define-vop (fast-char>-c/base-char/c base-char-compare-c) + (:translate char>) + (:variant :gtu :leu)) +