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
3a13c958
Commit
3a13c958
authored
35 years ago
by
ram
Browse files
Options
Downloads
Patches
Plain Diff
Added VOP-SAVE-SET and IR2-BLOCK-LOCATIONS. Flushed obsolete
VOP-GENERATOR-NUMBER.
parent
339b3948
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/vop.lisp
+11
-6
11 additions, 6 deletions
compiler/vop.lisp
with
11 additions
and
6 deletions
compiler/vop.lisp
+
11
−
6
View file @
3a13c958
...
@@ -214,7 +214,11 @@
...
@@ -214,7 +214,11 @@
;;
;;
;; The assembler label that points to the beginning of the code for this
;; The assembler label that points to the beginning of the code for this
;; block. Null when we haven't assigned a label yet.
;; block. Null when we haven't assigned a label yet.
(
%label
nil
))
(
%label
nil
)
;;
;; List of Location-Info structures describing all the interesting (to the
;; debugger) locations in this block.
(
locations
nil
:type
list
))
(
defprinter
ir2-block
(
defprinter
ir2-block
...
@@ -554,16 +558,17 @@
...
@@ -554,16 +558,17 @@
;; and a write) for each temporary.
;; and a write) for each temporary.
(
refs
nil
:type
(
or
tn-ref
null
))
(
refs
nil
:type
(
or
tn-ref
null
))
;;
;;
;; If this VOP has multiple generators, then this is the number of the
;; generator chosen by the selection function.
(
generator-number
0
:type
unsigned-byte
)
;;
;; Stuff that is passed uninterpreted from IR2 conversion to codegen. The
;; Stuff that is passed uninterpreted from IR2 conversion to codegen. The
;; meaning of this slot is totally dependent on the VOP.
;; meaning of this slot is totally dependent on the VOP.
codegen-info
codegen-info
;;
;;
;; Node that generated this VOP, for keeping track of debug info.
;; Node that generated this VOP, for keeping track of debug info.
(
node
nil
:type
(
or
node
null
)))
(
node
nil
:type
(
or
node
null
))
;;
;; Local-TN bit vector representing the set of TNs live after args are read
;; and before results are written. This is only filled in when
;; VOP-INFO-SAVE-P is non-null.
(
save-set
nil
:type
(
or
ltn-bit-vector
null
)))
(
defprinter
vop
(
defprinter
vop
(
info
:prin1
(
vop-info-name
info
))
(
info
:prin1
(
vop-info-name
info
))
...
...
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