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
8b5163d6
Commit
8b5163d6
authored
34 years ago
by
ram
Browse files
Options
Downloads
Patches
Plain Diff
Fixed REOPTIMIZE-CONTINUATION to set BLOCK-TEST-MODIFIED if the
continuation goes to an IF.
parent
321b7e52
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/ir1opt.lisp
+4
-2
4 additions, 2 deletions
compiler/ir1opt.lisp
with
4 additions
and
2 deletions
compiler/ir1opt.lisp
+
4
−
2
View file @
8b5163d6
...
@@ -159,6 +159,8 @@
...
@@ -159,6 +159,8 @@
(
when
prev
(
when
prev
(
let*
((
block
(
continuation-block
prev
))
(
let*
((
block
(
continuation-block
prev
))
(
component
(
block-component
block
)))
(
component
(
block-component
block
)))
(
when
(
typep
dest
'cif
)
(
setf
(
block-test-modified
block
)
t
))
(
setf
(
block-reoptimize
block
)
t
)
(
setf
(
block-reoptimize
block
)
t
)
(
setf
(
component-reoptimize
component
)
t
))))))
(
setf
(
component-reoptimize
component
)
t
))))))
(
do-uses
(
node
cont
)
(
do-uses
(
node
cont
)
...
@@ -689,13 +691,13 @@
...
@@ -689,13 +691,13 @@
(
continuation-dest
(
node-cont
node
)))
(
continuation-dest
(
node-cont
node
)))
(
constant-fold-call
node
)
(
constant-fold-call
node
)
(
return-from
ir1-optimize-combination
)))
(
return-from
ir1-optimize-combination
)))
(
let
((
fun
(
function-info-derive-type
kind
)))
(
let
((
fun
(
function-info-derive-type
kind
)))
(
when
fun
(
when
fun
(
let
((
res
(
funcall
fun
node
)))
(
let
((
res
(
funcall
fun
node
)))
(
when
res
(
when
res
(
derive-node-type
node
res
)))))
(
derive-node-type
node
res
)))))
(
let
((
fun
(
function-info-optimizer
kind
)))
(
let
((
fun
(
function-info-optimizer
kind
)))
(
unless
(
and
fun
(
funcall
fun
node
))
(
unless
(
and
fun
(
funcall
fun
node
))
(
dolist
(
x
(
function-info-transforms
kind
))
(
dolist
(
x
(
function-info-transforms
kind
))
...
...
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