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

Added defknowns for get-lowtag and get-type.

parent 4d6ccfda
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman (FAHLMAN@CMUC). ;;; Scott Fahlman (FAHLMAN@CMUC).
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/vm-fndb.lisp,v 1.16 1990/06/25 21:17:16 wlott Exp $ ;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/vm-fndb.lisp,v 1.17 1990/07/02 04:51:11 wlott Exp $
;;; ;;;
;;; This file defines the machine specific function signatures. ;;; This file defines the machine specific function signatures.
;;; ;;;
...@@ -73,6 +73,11 @@ ...@@ -73,6 +73,11 @@
(flushable)) (flushable))
(defknown get-lowtag (t) (unsigned-byte #.vm:lowtag-bits)
(flushable movable))
(defknown get-type (t) (unsigned-byte #.vm:type-bits)
(flushable movable))
(defknown get-header-data (t) (unsigned-byte 24) (defknown get-header-data (t) (unsigned-byte 24)
(flushable)) (flushable))
(defknown set-header-data (t (unsigned-byte 24)) t (defknown set-header-data (t (unsigned-byte 24)) t
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment