⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 char.lisp

📁 开源跨平台Lisp编译器
💻 LISP
字号:
;;;; the PPC VM definition of character operations;;;; This software is part of the SBCL system. See the README file for;;;; more information.;;;;;;;; This software is derived from the CMU CL system, which was;;;; written at Carnegie Mellon University and released into the;;;; public domain. The software is in the public domain and is;;;; provided with absolutely no warranty. See the COPYING and CREDITS;;;; files for more information.(in-package "SB!VM");;;; Moves and coercions:;;; Move a tagged char to an untagged representation.(define-vop (move-to-character)  (:args (x :scs (any-reg descriptor-reg)))  (:results (y :scs (character-reg)))  (:note "character untagging")  (:generator 1    (inst srwi y x n-widetag-bits)))(define-move-vop move-to-character :move  (any-reg descriptor-reg) (character-reg));;; Move an untagged char to a tagged representation.(define-vop (move-from-character)  (:args (x :scs (character-reg)))  (:results (y :scs (any-reg descriptor-reg)))  (:note "character tagging")  (:generator 1    (inst slwi y x n-widetag-bits)    (inst ori y y character-widetag)))(define-move-vop move-from-character :move  (character-reg) (any-reg descriptor-reg));;; Move untagged character values.(define-vop (character-move)  (:args (x :target y            :scs (character-reg)            :load-if (not (location= x y))))  (:results (y :scs (character-reg)               :load-if (not (location= x y))))  (:note "character move")  (:effects)  (:affected)  (:generator 0    (move y x)))(define-move-vop character-move :move  (character-reg) (character-reg));;; Move untagged character arguments/return-values.(define-vop (move-character-arg)  (:args (x :target y            :scs (character-reg))         (fp :scs (any-reg)             :load-if (not (sc-is y character-reg))))  (:results (y))  (:note "character arg move")  (:generator 0    (sc-case y      (character-reg       (move y x))      (character-stack       (storew x fp (tn-offset y))))))(define-move-vop move-character-arg :move-arg  (any-reg character-reg) (character-reg));;; Use standard MOVE-ARG + coercion to move an untagged character;;; to a descriptor passing location.(define-move-vop move-arg :move-arg  (character-reg) (any-reg descriptor-reg));;;; Other operations:(define-vop (char-code)  (:translate char-code)  (:policy :fast-safe)  (:args (ch :scs (character-reg) :target res))  (:arg-types character)  (:results (res :scs (any-reg)))  (:result-types positive-fixnum)  (:generator 1    (inst slwi res ch 2)))(define-vop (code-char)  (:translate code-char)  (:policy :fast-safe)  (:args (code :scs (any-reg) :target res))  (:arg-types positive-fixnum)  (:results (res :scs (character-reg)))  (:result-types character)  (:generator 1    (inst srwi res code 2)));;; Comparison of characters.(define-vop (character-compare)  (:args (x :scs (character-reg))         (y :scs (character-reg)))  (:arg-types character character)  (:conditional)  (:info target not-p)  (:policy :fast-safe)  (:note "inline comparison")  (:variant-vars condition not-condition)  (:generator 3    (inst cmplw x y)    (inst b? (if not-p not-condition condition) target)))(define-vop (fast-char=/character character-compare)  (:translate char=)  (:variant :eq :ne))(define-vop (fast-char</character character-compare)  (:translate char<)  (:variant :lt :ge))(define-vop (fast-char>/character character-compare)  (:translate char>)  (:variant :gt :le))(define-vop (character-compare/c)  (:args (x :scs (character-reg)))  (:arg-types character (:constant character))  (:conditional)  (:info target not-p y)  (:policy :fast-safe)  (:note "inline comparison")  (:variant-vars condition not-condition)  (:generator 2    (inst cmplwi x (sb!xc:char-code y))    (inst b? (if not-p not-condition condition) target)))(define-vop (fast-char=/character/c character-compare/c)  (:translate char=)  (:variant :eq :ne))(define-vop (fast-char</character/c character-compare/c)  (:translate char<)  (:variant :lt :ge))(define-vop (fast-char>/character/c character-compare/c)  (:translate char>)  (:variant :gt :le))

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -