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
f2792f68
Commit
f2792f68
authored
35 years ago
by
ram
Browse files
Options
Downloads
Patches
Plain Diff
Added ELSEWHERE-START and ENVIRONMENT-START slots to IR2-ENVIRONMENT.
parent
defdb516
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
compiler/vop.lisp
+12
-2
12 additions, 2 deletions
compiler/vop.lisp
with
12 additions
and
2 deletions
compiler/vop.lisp
+
12
−
2
View file @
f2792f68
...
@@ -408,8 +408,18 @@
...
@@ -408,8 +408,18 @@
;;
;;
;; A list of all the IR2-Blocks in this environment, threaded by
;; A list of all the IR2-Blocks in this environment, threaded by
;; IR2-Block-Environment-Next. This is filled in by control analysis.
;; IR2-Block-Environment-Next. This is filled in by control analysis.
(
blocks
nil
:type
(
or
ir2-block
null
)))
(
blocks
nil
:type
(
or
ir2-block
null
))
;;
;; A label that marks the start of elsewhere code for this function. Null
;; until this label is assigned by codegen. Used for maintaining the debug
;; source map.
(
elsewhere-start
nil
:type
(
or
label
null
))
;;
;; A label that marks the first location in this function at which the
;; environment is properly initialized, i.e. arguments moved from their
;; passing locations, etc. This is the start of the function as far as the
;; debugger is concerned.
(
environment-start
nil
:type
(
or
label
null
)))
(
defprinter
ir2-environment
(
defprinter
ir2-environment
arg-locs
arg-locs
...
...
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