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
bb788fb9
Commit
bb788fb9
authored
34 years ago
by
wlott
Browse files
Options
Downloads
Patches
Plain Diff
Added interpreter stubs for 32bit-logical-{not,and,or,xor,nor}.
parent
a5c406f5
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
code/bit-bash.lisp
+18
-0
18 additions, 0 deletions
code/bit-bash.lisp
with
18 additions
and
0 deletions
code/bit-bash.lisp
+
18
−
0
View file @
bb788fb9
...
...
@@ -279,6 +279,24 @@
(
merge-bits
shift
prev
next
))
;;; These are supported as primitives.
(
defun
32bit-logical-not
(
x
)
(
32bit-logical-not
x
))
(
defun
32bit-logical-and
(
x
y
)
(
32bit-logical-and
x
y
))
(
defun
32bit-logical-or
(
x
y
)
(
32bit-logical-or
x
y
))
(
defun
32bit-logical-xor
(
x
y
)
(
32bit-logical-or
x
y
))
(
defun
32bit-logical-nor
(
x
y
)
(
32bit-logical-nor
x
y
))
;;; These are not supported as primitives.
(
proclaim
'
(
inline
32bit-logical-eqv
32bit-logical-nand
32bit-logical-andc1
...
...
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