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
609801e6
Commit
609801e6
authored
32 years ago
by
wlott
Browse files
Options
Downloads
Patches
Plain Diff
Removed an unused temporary tn from list and list*. Fixed var-alloc to
actually be something reasonable.
parent
b6ea4ff6
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/sparc/alloc.lisp
+9
-11
9 additions, 11 deletions
compiler/sparc/alloc.lisp
with
9 additions
and
11 deletions
compiler/sparc/alloc.lisp
+
9
−
11
View file @
609801e6
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
;;;
(
ext:file-comment
(
ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/alloc.lisp,v 1.
6
1992/12/1
3
1
5
:2
3
:4
5
wlott Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/alloc.lisp,v 1.
7
1992/12/1
6
1
8
:2
1
:4
2
wlott Exp $"
)
;;;
;;;
;;; **********************************************************************
;;; **********************************************************************
;;;
;;;
...
@@ -27,7 +27,6 @@
...
@@ -27,7 +27,6 @@
(
:temporary
(
:scs
(
descriptor-reg
))
temp
)
(
:temporary
(
:scs
(
descriptor-reg
))
temp
)
(
:temporary
(
:scs
(
descriptor-reg
)
:type
list
:to
(
:result
0
)
:target
result
)
(
:temporary
(
:scs
(
descriptor-reg
)
:type
list
:to
(
:result
0
)
:target
result
)
res
)
res
)
(
:temporary
(
:scs
(
non-descriptor-reg
))
ndescr
)
(
:info
num
)
(
:info
num
)
(
:results
(
result
:scs
(
descriptor-reg
)))
(
:results
(
result
:scs
(
descriptor-reg
)))
(
:variant-vars
star
)
(
:variant-vars
star
)
...
@@ -172,14 +171,13 @@
...
@@ -172,14 +171,13 @@
(
:info
name
words
type
lowtag
)
(
:info
name
words
type
lowtag
)
(
:ignore
name
)
(
:ignore
name
)
(
:results
(
result
:scs
(
descriptor-reg
)))
(
:results
(
result
:scs
(
descriptor-reg
)))
(
:temporary
(
:scs
(
any-reg
))
temp1
temp2
)
(
:temporary
(
:scs
(
any-reg
))
bytes
header
)
(
:generator
6
(
:generator
6
(
pseudo-atomic
(
pa-flag
)
(
inst
add
bytes
extra
(
*
(
1+
words
)
word-bytes
))
(
inst
sll
header
bytes
(
-
type-bits
2
))
(
inst
add
header
header
(
+
(
ash
-2
type-bits
)
type
))
(
inst
and
bytes
(
lognot
lowtag-mask
))
(
pseudo-atomic
()
(
inst
or
result
alloc-tn
lowtag
)
(
inst
or
result
alloc-tn
lowtag
)
(
inst
add
temp1
extra
(
fixnum
(
1-
words
)))
(
storew
header
result
0
lowtag
)
(
inst
sll
temp2
temp2
(
-
type-bits
2
))
(
inst
add
alloc-tn
alloc-tn
bytes
))))
(
inst
or
temp2
temp2
type
)
(
storew
temp2
result
0
lowtag
)
(
inst
li
temp2
(
lognot
lowtag-mask
))
(
inst
and
temp1
temp1
temp2
)
(
inst
add
alloc-tn
alloc-tn
temp1
))))
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