代码搜索:LISP编程

找到约 10,000 项符合「LISP编程」的源代码

代码结果 10,000
www.eeworm.com/read/408246/2253051

lisp float.lisp

;;;; the HPPA VM definition of floating point operations ;;;; This software is part of the SBCL system. See the README file for ;;;; more information. ;;;; ;;;; This software is derived from the CMU
www.eeworm.com/read/408246/2253052

lisp pred.lisp

(in-package "SB!VM") ;;;; The Branch VOP. ;;; The unconditional branch, emitted when we can't drop through to the desired ;;; destination. Dest is the continuation we transfer control to. ;;; (de
www.eeworm.com/read/408246/2253053

lisp show.lisp

(in-package "SB!VM") (define-vop (print) (:args (object :scs (descriptor-reg) :target arg)) (:results (result :scs (descriptor-reg))) (:save-p t) (:temporary (:sc non-descriptor-reg :offset
www.eeworm.com/read/408246/2253054

lisp nlx.lisp

(in-package "SB!VM") ;;; Make an environment-live stack TN for saving the SP for NLX entry. (!def-vm-support-routine make-nlx-sp-tn (env) (physenv-live-tn (make-representation-tn *fixnum-primiti
www.eeworm.com/read/408246/2253055

lisp insts.lisp

;;;; the instruction set definition for HPPA ;;;; This software is part of the SBCL system. See the README file for ;;;; more information. ;;;; ;;;; This software is derived from the CMU CL system, w
www.eeworm.com/read/408246/2253056

lisp debug.lisp

(in-package "SB!VM") (define-vop (debug-cur-sp) (:translate current-sp) (:policy :fast-safe) (:results (res :scs (sap-reg))) (:result-types system-area-pointer) (:generator 1 (move csp
www.eeworm.com/read/408246/2253057

lisp memory.lisp

(in-package "SB!VM") ;;; Cell-Ref and Cell-Set are used to define VOPs like CAR, where the offset to ;;; be read or written is a property of the VOP used. Cell-Setf is similar to ;;; Cell-Set, but d
www.eeworm.com/read/408246/2253058

lisp char.lisp

;;;; the HPPA 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 sy
www.eeworm.com/read/408246/2253060

lisp call.lisp

;;;; the VM definition of function call for the HPPA ;;;; This software is part of the SBCL system. See the README file for ;;;; more information. ;;;; ;;;; This software is derived from the CMU CL s
www.eeworm.com/read/408246/2253061

lisp alloc.lisp

;;;; allocation VOPs for the HPPA ;;;; 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 ;;