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
ba08acb6
Commit
ba08acb6
authored
35 years ago
by
ram
Browse files
Options
Downloads
Patches
Plain Diff
Allow :COMPUTE-ONLY value for SAVE-P.
parent
e1b338e9
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/vmdef.lisp
+4
-3
4 additions, 3 deletions
compiler/vmdef.lisp
with
4 additions
and
3 deletions
compiler/vmdef.lisp
+
4
−
3
View file @
ba08acb6
...
@@ -496,7 +496,7 @@
...
@@ -496,7 +496,7 @@
(
policy
:fast
:type
policies
)
(
policy
:fast
:type
policies
)
;;
;;
;; Stuff used by life analysis.
;; Stuff used by life analysis.
(
save-p
nil
:type
(
member
t
nil
:force-to-stack
)))
(
save-p
nil
:type
(
member
t
nil
:compute-only
:force-to-stack
)))
(
defprinter
vop-parse
(
defprinter
vop-parse
name
name
...
@@ -1176,7 +1176,8 @@
...
@@ -1176,7 +1176,8 @@
(
setf
(
vop-parse-policy
parse
)
(
vop-spec-arg
spec
'policies
)))
(
setf
(
vop-parse-policy
parse
)
(
vop-spec-arg
spec
'policies
)))
(
:save-p
(
:save-p
(
setf
(
vop-parse-save-p
parse
)
(
setf
(
vop-parse-save-p
parse
)
(
vop-spec-arg
spec
'
(
member
t
nil
:force-to-stack
))))
(
vop-spec-arg
spec
'
(
member
t
nil
:compute-only
:force-to-stack
))))
(
t
(
t
(
error
"Unknown option specifier: ~S."
(
first
spec
)))))
(
error
"Unknown option specifier: ~S."
(
first
spec
)))))
(
undefined-value
))
(
undefined-value
))
...
@@ -1632,7 +1633,7 @@
...
@@ -1632,7 +1633,7 @@
form returns NIL, then emission of this VOP is prohibited even when
form returns NIL, then emission of this VOP is prohibited even when
all other restrictions are met.
all other restrictions are met.
:Save-P {
T | NIL
| :Force-To-Stack}
:Save-P {
NIL | T | :Compute-Only
| :Force-To-Stack}
Indicates how a VOP wants live registers saved."
Indicates how a VOP wants live registers saved."
(
check-type
name
symbol
)
(
check-type
name
symbol
)
...
...
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