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
276f86d7
Commit
276f86d7
authored
31 years ago
by
wlott
Browse files
Options
Downloads
Patches
Plain Diff
Fixed sxhash-simple-{sub,}string to save the return address on the
non-gengc system.
parent
2ac39768
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
assembly/mips/array.lisp
+16
-5
16 additions, 5 deletions
assembly/mips/array.lisp
with
16 additions
and
5 deletions
assembly/mips/array.lisp
+
16
−
5
View file @
276f86d7
...
@@ -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/assembly/mips/array.lisp,v 1.2
1
1993/05/1
8 23:24:13
wlott Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/assembly/mips/array.lisp,v 1.2
2
1993/05/1
9 11:16:52
wlott Exp $"
)
;;;
;;;
;;; **********************************************************************
;;; **********************************************************************
;;;
;;;
...
@@ -60,10 +60,12 @@
...
@@ -60,10 +60,12 @@
(
:temp
lip
interior-reg
lip-offset
)
(
:temp
lip
interior-reg
lip-offset
)
(
:temp
accum
non-descriptor-reg
nl0-offset
)
(
:temp
accum
non-descriptor-reg
nl0-offset
)
(
:temp
data
non-descriptor-reg
nl1-offset
)
(
:temp
data
non-descriptor-reg
nl1-offset
)
(
:temp
byte
non-descriptor-reg
nl2-offset
))
(
:temp
byte
non-descriptor-reg
nl2-offset
)
#-
gengc
(
:temp
retaddr
non-descriptor-reg
nl3-offset
))
;; These are needed after we jump into sxhash-simple-substring.
;; These are needed after we jump into sxhash-simple-substring.
(
progn
result
lip
accum
data
byte
)
(
progn
result
lip
accum
data
byte
#-
gengc
retaddr
)
(
inst
j
(
make-fixup
'sxhash-simple-substring
:assembly-routine
))
(
inst
j
(
make-fixup
'sxhash-simple-substring
:assembly-routine
))
(
loadw
length
string
vector-length-slot
other-pointer-type
))
(
loadw
length
string
vector-length-slot
other-pointer-type
))
...
@@ -80,7 +82,13 @@
...
@@ -80,7 +82,13 @@
(
:temp
lip
interior-reg
lip-offset
)
(
:temp
lip
interior-reg
lip-offset
)
(
:temp
accum
non-descriptor-reg
nl0-offset
)
(
:temp
accum
non-descriptor-reg
nl0-offset
)
(
:temp
data
non-descriptor-reg
nl1-offset
)
(
:temp
data
non-descriptor-reg
nl1-offset
)
(
:temp
byte
non-descriptor-reg
nl2-offset
))
(
:temp
byte
non-descriptor-reg
nl2-offset
)
#-
gengc
(
:temp
retaddr
non-descriptor-reg
nl3-offset
))
;; Save the return address
#-
gengc
(
inst
subu
retaddr
lip
code-tn
)
;; Get a pointer to the data.
;; Get a pointer to the data.
(
inst
addu
lip
string
(
inst
addu
lip
string
(
-
(
*
vector-data-offset
word-bytes
)
other-pointer-type
))
(
-
(
*
vector-data-offset
word-bytes
)
other-pointer-type
))
...
@@ -159,4 +167,7 @@
...
@@ -159,4 +167,7 @@
done
done
(
inst
sll
result
accum
5
)
(
inst
sll
result
accum
5
)
(
inst
srl
result
result
3
))
(
inst
srl
result
result
3
)
;; Restore the return address.
#-
gengc
(
inst
addu
lip
code-tn
retaddr
))
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