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
237c30b8
Commit
237c30b8
authored
34 years ago
by
ram
Browse files
Options
Downloads
Patches
Plain Diff
Added CLEAR-IR1-INFO which clears the refs for global variables.
parent
a026e03b
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/main.lisp
+24
-3
24 additions, 3 deletions
compiler/main.lisp
with
24 additions
and
3 deletions
compiler/main.lisp
+
24
−
3
View file @
237c30b8
...
...
@@ -266,6 +266,27 @@
(
undefined-value
))
;;; CLEAR-IR1-INFO -- Internal
;;;
;;; Blow away the REFS for all global variables, and recycle the IR1 for
;;; Component.
;;;
(
defun
clear-ir1-info
(
component
)
(
declare
(
type
component
component
))
(
flet
((
blast
(
x
)
(
maphash
#'
(
lambda
(
k
v
)
(
declare
(
ignore
k
))
(
setf
(
leaf-refs
v
)
nil
)
(
when
(
basic-var-p
v
)
(
setf
(
basic-var-sets
v
)
nil
)))
x
)))
(
blast
*free-variables*
)
(
blast
*free-functions*
)
(
blast
*constants*
))
(
macerate-ir1-component
component
)
(
undefined-value
))
;;; CLEAR-STUFF -- Interface
;;;
;;; Clear all the global variables used by the compiler.
...
...
@@ -834,7 +855,7 @@
(
setq
*pending-top-level-lambdas*
())
(
compile-component
component
object
)
(
clear-ir2-info
component
)
(
macerate-ir1-component
component
)
(
clear-ir1-info
component
)
(
etypecase
object
(
fasl-file
(
fasl-dump-top-level-lambda-call
tll
object
))
...
...
@@ -876,7 +897,7 @@
(
if
(
replace-top-level-xeps
component
)
(
setq
top-level-closure
t
)
(
unless
*check-consistency*
(
macerate-ir1-component
component
))))
(
clear-ir1-info
component
))))
(
when
*check-consistency*
(
maybe-mumble
"[Check]~%"
)
...
...
@@ -886,7 +907,7 @@
(
when
*check-consistency*
(
dolist
(
component
components
)
(
macerate-ir1-component
component
)))))
(
clear-ir1-info
component
)))))
(
ir1-finalize
)
(
undefined-value
))
...
...
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