From c558cadd2ae63134392d054f7de5a0cad772beb0 Mon Sep 17 00:00:00 2001 From: toy <toy> Date: Tue, 1 Jul 2003 18:47:01 +0000 Subject: [PATCH] Add vops for CHAR=, CHAR<, and CHAR< when the second arg is a constant character. Saves an instruction. (From a request from Gilbert Baumann, with code from Christophe Rhodes, on #lisp.) --- compiler/sparc/char.lisp | 27 ++++++++++++++++++++++++++- compiler/x86/char.lisp | 26 +++++++++++++++++++++++++- 2 files changed, 51 insertions(+), 2 deletions(-) diff --git a/compiler/sparc/char.lisp b/compiler/sparc/char.lisp index 7b3b979b1..4a3c9300d 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 804434bb4..47cca6351 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)) + -- GitLab