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
d123ad8b
Commit
d123ad8b
authored
31 years ago
by
wlott
Browse files
Options
Downloads
Patches
Plain Diff
Fixed with-regs-saved to grow the control stack up instead of down.
parent
f7ec1c79
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
assembly/mips/alloc.lisp
+5
-5
5 additions, 5 deletions
assembly/mips/alloc.lisp
with
5 additions
and
5 deletions
assembly/mips/alloc.lisp
+
5
−
5
View file @
d123ad8b
...
...
@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
(
ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/assembly/mips/alloc.lisp,v 1.
4
1993/05/
07 07:35:31
wlott Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/assembly/mips/alloc.lisp,v 1.
5
1993/05/
21 18:13:17
wlott Exp $"
)
;;;
;;; **********************************************************************
;;;
...
...
@@ -98,8 +98,8 @@
(
let
((
stack-space-needed
(
*
(
logandc2
(
1+
(
length
regs
))
1
)
word-bytes
))
(
sc-var
(
gensym
"DESCRIPTOR-REG-SC-"
)))
`
(
let
((
,
sc-var
(
sc-or-lose
'descriptor-reg
)))
(
inst
sub
u
csp-tn
,
stack-space-needed
)
,
(
iterate
repeat
((
remaining
regs
)
(
offset
0
))
(
inst
add
u
csp-tn
,
stack-space-needed
)
,
(
iterate
repeat
((
remaining
regs
)
(
offset
(
-
word-bytes
)
))
(
if
remaining
(
let*
((
reg
(
car
remaining
))
(
tn-var
(
gensym
(
concatenate
'string
(
symbol-name
reg
)
...
...
@@ -109,10 +109,10 @@
(
make-random-tn
:kind
:normal
:sc
,
sc-var
:offset
,
reg-offset
)))
(
inst
sw
,
tn-var
csp-tn
,
offset
)
,
(
repeat
(
cdr
remaining
)
(
+
offset
word-bytes
))
,
(
repeat
(
cdr
remaining
)
(
-
offset
word-bytes
))
(
inst
lw
,
tn-var
csp-tn
,
offset
)))
`
(
progn
,@
body
)))
(
inst
add
u
csp-tn
,
stack-space-needed
))))
(
inst
sub
u
csp-tn
,
stack-space-needed
))))
(
define-assembly-routine
(
large-alloc
...
...
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