Skip to content
Snippets Groups Projects
Commit b2accd47 authored by wlott's avatar wlott
Browse files

Added defknowns for 32bit-logical routines and for shift-towards-{start,end}.

parent f9f611c8
No related branches found
No related tags found
No related merge requests found
...@@ -7,11 +7,11 @@ ...@@ -7,11 +7,11 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/vm-fndb.lisp,v 1.37 1991/03/20 03:04:43 wlott Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/vm-fndb.lisp,v 1.38 1991/03/27 14:19:10 wlott Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/vm-fndb.lisp,v 1.37 1991/03/20 03:04:43 wlott Exp $ ;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/vm-fndb.lisp,v 1.38 1991/03/27 14:19:10 wlott Exp $
;;; ;;;
;;; This file defines the machine specific function signatures. ;;; This file defines the machine specific function signatures.
;;; ;;;
...@@ -27,7 +27,15 @@ ...@@ -27,7 +27,15 @@
function-code-header make-lisp-obj get-lisp-obj-address function-code-header make-lisp-obj get-lisp-obj-address
function-word-offset code-debug-info function-word-offset code-debug-info
funcallable-instance-p %set-funcallable-instance-info funcallable-instance-p %set-funcallable-instance-info
code-header-ref code-header-set code-instructions)) code-header-ref code-header-set code-instructions
shift-towards-start shift-towards-end
32bit-logical-not
32bit-logical-and 32bit-logical-nand
32bit-logical-or 32bit-logical-nor
32bit-logical-xor 32bit-logical-eqv
32bit-logical-andc1 32bit-logical-andc2
32bit-logical-orc1 32bit-logical-orc2))
(in-package "C") (in-package "C")
...@@ -144,6 +152,8 @@ ...@@ -144,6 +152,8 @@
control-stack-pointer-sap) () control-stack-pointer-sap) ()
system-area-pointer system-area-pointer
(flushable)) (flushable))
;;;; Debugger support: ;;;; Debugger support:
...@@ -167,12 +177,20 @@ ...@@ -167,12 +177,20 @@
(defknown 32bit-logical-not ((unsigned-byte 32)) (unsigned-byte 32) (defknown 32bit-logical-not ((unsigned-byte 32)) (unsigned-byte 32)
(foldable flushable movable)) (foldable flushable movable))
(defknown (32bit-logical-and 32bit-logical-or 32bit-logical-xor (defknown (32bit-logical-and 32bit-logical-nand
32bit-logical-nor) 32bit-logical-or 32bit-logical-nor
32bit-logical-xor 32bit-logical-eqv
32bit-logical-andc1 32bit-logical-andc2
32bit-logical-orc1 32bit-logical-orc2)
((unsigned-byte 32) (unsigned-byte 32)) (unsigned-byte 32) ((unsigned-byte 32) (unsigned-byte 32)) (unsigned-byte 32)
(foldable flushable movable)) (foldable flushable movable))
(defknown (shift-towards-start shift-towards-end) ((unsigned-byte 32) fixnum)
(unsigned-byte 32)
(foldable flushable movable))
;;;; Bignum operations. ;;;; Bignum operations.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment