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
ec6f70dd
Commit
ec6f70dd
authored
34 years ago
by
wlott
Browse files
Options
Downloads
Patches
Plain Diff
Changed fp to cfp and old-fp to ocfp.
parent
af058a59
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/mips/vm.lisp
+12
-7
12 additions, 7 deletions
compiler/mips/vm.lisp
with
12 additions
and
7 deletions
compiler/mips/vm.lisp
+
12
−
7
View file @
ec6f70dd
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
;;; Lisp, please contact Scott Fahlman (Scott.Fahlman@CS.CMU.EDU)
;;; Lisp, please contact Scott Fahlman (Scott.Fahlman@CS.CMU.EDU)
;;; **********************************************************************
;;; **********************************************************************
;;;
;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/vm.lisp,v 1.3
8
1990/11/
13 23:00:4
6 wlott Exp $
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/vm.lisp,v 1.3
9
1990/11/
26 16:01:5
6 wlott Exp $
;;;
;;;
;;; This file contains the VM definition for the MIPS R2000 and the new
;;; This file contains the VM definition for the MIPS R2000 and the new
;;; object format.
;;; object format.
...
@@ -54,12 +54,14 @@
...
@@ -54,12 +54,14 @@
(
defreg
cname
14
)
(
defreg
cname
14
)
(
defreg
lexenv
15
)
(
defreg
lexenv
15
)
(
defreg
nfp
16
)
(
defreg
nfp
16
)
(
defreg
old-fp
17
)
(
defreg
ocfp
17
)
(
defconstant
old-fp-offset
17
)
; for backwards compatibility
(
defreg
lra
18
)
(
defreg
lra
18
)
(
defreg
l0
19
)
(
defreg
l0
19
)
(
defreg
null
20
)
(
defreg
null
20
)
(
defreg
bsp
21
)
(
defreg
bsp
21
)
(
defreg
fp
22
)
(
defreg
cfp
22
)
(
defconstant
fp-offset
22
)
; for backwards compatibility
(
defreg
csp
23
)
(
defreg
csp
23
)
(
defreg
l1
24
)
(
defreg
l1
24
)
(
defreg
alloc
25
)
(
defreg
alloc
25
)
...
@@ -72,7 +74,7 @@
...
@@ -72,7 +74,7 @@
nl0
nl1
nl2
nl3
nl4
nargs
)
nl0
nl1
nl2
nl3
nl4
nargs
)
(
defregset
descriptor-regs
(
defregset
descriptor-regs
a0
a1
a2
a3
a4
a5
cname
lexenv
nfp
o
ld-
fp
lra
l0
l1
l2
)
a0
a1
a2
a3
a4
a5
cname
lexenv
nfp
o
c
fp
lra
l0
l1
l2
)
(
defregset
register-arg-offsets
(
defregset
register-arg-offsets
a0
a1
a2
a3
a4
a5
)
a0
a1
a2
a3
a4
a5
)
...
@@ -272,8 +274,10 @@
...
@@ -272,8 +274,10 @@
(
defregtn
bsp
any-reg
)
(
defregtn
bsp
any-reg
)
(
defregtn
csp
any-reg
)
(
defregtn
csp
any-reg
)
(
defregtn
fp
any-reg
)
(
defregtn
cfp
any-reg
)
(
defregtn
old-fp
any-reg
)
(
defregtn
ocfp
any-reg
)
(
defregtn
fp
any-reg
)
; for backwards compatibility
(
defregtn
old-fp
any-reg
)
; for backwards compatibility
(
defregtn
nsp
any-reg
)
(
defregtn
nsp
any-reg
)
(
defregtn
nfp
any-reg
)
(
defregtn
nfp
any-reg
)
...
@@ -336,7 +340,8 @@
...
@@ -336,7 +340,8 @@
(
eval-when
(
compile
load
eval
)
(
eval-when
(
compile
load
eval
)
;;; Offsets of special stack frame locations
;;; Offsets of special stack frame locations
(
defconstant
old-fp-save-offset
0
)
(
defconstant
ocfp-save-offset
0
)
(
defconstant
old-fp-save-offset
0
)
; for backwards compatablility.
(
defconstant
lra-save-offset
1
)
(
defconstant
lra-save-offset
1
)
(
defconstant
nfp-save-offset
2
)
(
defconstant
nfp-save-offset
2
)
...
...
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