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
fd32d6e1
Commit
fd32d6e1
authored
31 years ago
by
wlott
Browse files
Options
Downloads
Patches
Plain Diff
suspends => interrupts.
parent
30ea6955
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
+8
-8
8 additions, 8 deletions
assembly/mips/alloc.lisp
with
8 additions
and
8 deletions
assembly/mips/alloc.lisp
+
8
−
8
View file @
fd32d6e1
...
@@ -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/alloc.lisp,v 1.
6
1993/0
5
/2
5 00:52:44
wlott Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/assembly/mips/alloc.lisp,v 1.
7
1993/0
8
/2
7 15:01:46
wlott Exp $"
)
;;;
;;;
;;; **********************************************************************
;;; **********************************************************************
;;;
;;;
...
@@ -134,10 +134,10 @@
...
@@ -134,10 +134,10 @@
;; be large.
;; be large.
(
emit-label
large-alloc-entry
)
(
emit-label
large-alloc-entry
)
;; Disable
suspend
s.
;; Disable
interrupt
s.
(
loadw
temp
mutator-tn
mutator-
suspend
s-disabled-count-slot
)
(
loadw
temp
mutator-tn
mutator-
interrupt
s-disabled-count-slot
)
(
inst
addu
temp
temp
1
)
(
inst
addu
temp
temp
1
)
(
storew
temp
mutator-tn
mutator-
suspend
s-disabled-count-slot
)
(
storew
temp
mutator-tn
mutator-
interrupt
s-disabled-count-slot
)
(
with-regs-saved
(
a1
a2
a3
a4
a5
fdefn
lexenv
ra
)
(
with-regs-saved
(
a1
a2
a3
a4
a5
fdefn
lexenv
ra
)
(
inst
li
temp
(
make-fixup
"allocate_large_object"
:foreign
))
(
inst
li
temp
(
make-fixup
"allocate_large_object"
:foreign
))
...
@@ -146,13 +146,13 @@
...
@@ -146,13 +146,13 @@
(
inst
move
result
temp
)
(
inst
move
result
temp
)
;; Re-enable
suspend
s.
;; Re-enable
interrupt
s.
(
loadw
temp
mutator-tn
mutator-
suspend
s-disabled-count-slot
)
(
loadw
temp
mutator-tn
mutator-
interrupt
s-disabled-count-slot
)
(
inst
subu
temp
temp
1
)
(
inst
subu
temp
temp
1
)
(
inst
bne
temp
zero-tn
done
)
(
inst
bne
temp
zero-tn
done
)
(
storew
temp
mutator-tn
mutator-
suspend
s-disabled-count-slot
)
(
storew
temp
mutator-tn
mutator-
interrupt
s-disabled-count-slot
)
;; Check to see if any are pending.
;; Check to see if any are pending.
(
loadw
temp
mutator-tn
mutator-
suspend
-pending-slot
)
(
loadw
temp
mutator-tn
mutator-
interrupt
-pending-slot
)
(
inst
beq
temp
zero-tn
done
)
(
inst
beq
temp
zero-tn
done
)
(
inst
nop
)
(
inst
nop
)
...
...
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