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
80896227
Commit
80896227
authored
31 years ago
by
wlott
Browse files
Options
Downloads
Patches
Plain Diff
Taught ir2-convert-ref and -set about dylan-vars.
parent
29c2d556
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/ir2tran.lisp
+35
-3
35 additions, 3 deletions
compiler/ir2tran.lisp
with
35 additions
and
3 deletions
compiler/ir2tran.lisp
+
35
−
3
View file @
80896227
...
...
@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
(
ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ir2tran.lisp,v 1.5
3
1993/0
5
/19
08:41:36 ram
Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ir2tran.lisp,v 1.5
4
1993/0
8
/19
23:14:36 wlott
Exp $"
)
;;;
;;; **********************************************************************
;;;
...
...
@@ -176,7 +176,21 @@
(
let
((
fdefn-tn
(
make-load-time-constant-tn
:fdefinition
name
)))
(
if
unsafe
(
vop
fdefn-function
node
block
fdefn-tn
res
)
(
vop
safe-fdefn-function
node
block
fdefn-tn
res
))))))))
(
vop
safe-fdefn-function
node
block
fdefn-tn
res
)))))))
(
dylan-var
(
let*
((
arg
(
standard-argument-location
0
))
(
res
(
standard-argument-location
0
))
(
value
(
make-load-time-constant-tn
:dylan-varinfo-value
(
cons
name
(
dylan-var-module-name
leaf
))))
(
fun
(
make-load-time-constant-tn
:fdefinition
'dylan::value-datum
))
(
fp
(
make-stack-pointer-tn
)))
(
emit-move
node
block
value
arg
)
(
vop
allocate-full-call-frame
node
block
1
fp
)
(
vop*
call-named
node
block
(
fp
fun
arg
nil
)
(
res
nil
)
(
list
arg
)
1
1
)
(
move-continuation-result
node
block
(
list
res
)
(
node-cont
node
)))))
(
move-continuation-result
node
block
locs
cont
))
(
undefined-value
))
...
...
@@ -252,7 +266,25 @@
(
ecase
(
global-var-kind
leaf
)
((
:special
:global
)
(
assert
(
symbolp
(
leaf-name
leaf
)))
(
vop
set
node
block
(
emit-constant
(
leaf-name
leaf
))
val
)))))
(
vop
set
node
block
(
emit-constant
(
leaf-name
leaf
))
val
))))
(
dylan-var
(
let*
((
val-arg
(
standard-argument-location
0
))
(
value-arg
(
standard-argument-location
1
))
(
res
(
standard-argument-location
0
))
(
value
(
make-load-time-constant-tn
:dylan-varinfo-value
(
cons
(
dylan-var-name
leaf
)
(
dylan-var-module-name
leaf
))))
(
fun
(
make-load-time-constant-tn
:fdefinition
'
(
setf
dylan::value-datum
)))
(
fp
(
make-stack-pointer-tn
)))
(
emit-move
node
block
val
val-arg
)
(
emit-move
node
block
value
value-arg
)
(
vop
allocate-full-call-frame
node
block
2
fp
)
(
vop*
call-named
node
block
(
fp
fun
val-arg
value-arg
nil
)
(
res
nil
)
(
list
val-arg
value-arg
)
2
1
)
(
move-continuation-result
node
block
(
list
res
)
(
node-cont
node
)))))
(
when
locs
(
emit-move
node
block
val
(
first
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