代码搜索:LISP编程

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

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

lisp values.lisp

(in-package "SB!VM") (define-vop (reset-stack-pointer) (:args (ptr :scs (any-reg))) (:generator 1 (move ptr csp-tn))) ;;; Push some values onto the stack, returning the start and number of
www.eeworm.com/read/408246/2253042

lisp macros.lisp

;;;; various useful macros for generating HPPA code ;;;; 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/2253043

lisp move.lisp

;;;; the HPPA VM definition of operand loading/saving and the Move VOP ;;;; This software is part of the SBCL system. See the README file for ;;;; more information. ;;;; ;;;; This software is derived
www.eeworm.com/read/408246/2253044

lisp sap.lisp

;;;; the HPPA VM definition of SAP 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,
www.eeworm.com/read/408246/2253045

lisp sanctify.lisp

;;;; Do whatever is necessary to make the given code component ;;;; executable. ;;;; This software is part of the SBCL system. See the README file for ;;;; more information. ;;;; ;;;; While most of S
www.eeworm.com/read/408246/2253046

lisp arith.lisp

;;;; the VM definition arithmetic VOPs 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
www.eeworm.com/read/408246/2253047

lisp subprim.lisp

(in-package "SB!VM") ;;;; Length (define-vop (length/list) (:translate length) (:args (object :scs (descriptor-reg) :target ptr)) (:arg-types list) (:temporary (:scs (descriptor-reg) :fro
www.eeworm.com/read/408246/2253048

lisp system.lisp

(in-package "SB!VM") ;;;; Type frobbing VOPs (define-vop (lowtag-of) (:translate lowtag-of) (:policy :fast-safe) (:args (object :scs (any-reg descriptor-reg) :target result)) (:results (re
www.eeworm.com/read/408246/2253049

lisp parms.lisp

(in-package "SB!VM") ;;;; Machine Architecture parameters: ;;; number of bits per word where a word holds one lisp descriptor (def!constant n-word-bits 32) ;;; the natural width of a machine word
www.eeworm.com/read/408246/2253050

lisp vm.lisp

;;;; miscellaneous VM definition noise 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