Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
cmucl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Carl Shapiro
cmucl
Commits
b2accd47
Commit
b2accd47
authored
34 years ago
by
wlott
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
compiler/generic/vm-fndb.lisp
+23
-5
23 additions, 5 deletions
compiler/generic/vm-fndb.lisp
with
23 additions
and
5 deletions
compiler/generic/vm-fndb.lisp
+
23
−
5
View file @
b2accd47
...
@@ -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.3
7
1991/03/2
0 03:04:43
wlott Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/vm-fndb.lisp,v 1.3
8
1991/03/2
7 14:19:10
wlott Exp $"
)
;;;
;;;
;;; **********************************************************************
;;; **********************************************************************
;;;
;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/vm-fndb.lisp,v 1.3
7
1991/03/2
0 03:04:43
wlott Exp $
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/vm-fndb.lisp,v 1.3
8
1991/03/2
7 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.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment