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
b2f46768
Commit
b2f46768
authored
32 years ago
by
wlott
Browse files
Options
Downloads
Patches
Plain Diff
Fill in the new page-size slot in the backend structure.
parent
359dfe85
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
compiler/mips/parms.lisp
+3
-2
3 additions, 2 deletions
compiler/mips/parms.lisp
compiler/rt/params.lisp
+2
-1
2 additions, 1 deletion
compiler/rt/params.lisp
compiler/sparc/parms.lisp
+3
-1
3 additions, 1 deletion
compiler/sparc/parms.lisp
with
8 additions
and
4 deletions
compiler/mips/parms.lisp
+
3
−
2
View file @
b2f46768
...
...
@@ -7,11 +7,11 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
(
ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/parms.lisp,v 1.10
1
1992/0
5/21 16:30:4
7 wlott Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/parms.lisp,v 1.10
2
1992/0
6/09 23:46:0
7 wlott Exp $"
)
;;;
;;; **********************************************************************
;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/parms.lisp,v 1.10
1
1992/0
5/21 16:30:4
7 wlott Exp $
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/parms.lisp,v 1.10
2
1992/0
6/09 23:46:0
7 wlott Exp $
;;;
;;; This file contains some parameterizations of various VM
;;; attributes for the MIPS. This file is separate from other stuff so
...
...
@@ -45,6 +45,7 @@
(
setf
(
backend-fasl-file-version
*target-backend*
)
4
)
(
setf
(
backend-register-save-penalty
*target-backend*
)
3
)
(
setf
(
backend-byte-order
*target-backend*
)
:little-endian
)
(
setf
(
backend-page-size
*target-backend*
)
4096
)
)
; eval-when
...
...
This diff is collapsed.
Click to expand it.
compiler/rt/params.lisp
+
2
−
1
View file @
b2f46768
...
...
@@ -7,7 +7,7 @@
;;; Lisp, please contact Scott Fahlman (Scott.Fahlman@CS.CMU.EDU)
;;; **********************************************************************
;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/rt/params.lisp,v 1.1
2
1992/0
3/10 08:57:55
wlott Exp $
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/rt/params.lisp,v 1.1
3
1992/0
6/09 23:46:32
wlott Exp $
;;;
;;; This file contains some parameterizations of various VM attributes for the
;;; IBM RT. This file is separate from other stuff, so we can compile and
...
...
@@ -66,6 +66,7 @@
(
setf
(
backend-fasl-file-version
*target-backend*
)
1
)
(
setf
(
backend-register-save-penalty
*target-backend*
)
3
)
(
setf
(
backend-byte-order
*target-backend*
)
:big-endian
)
(
setf
(
backend-page-size
*target-backend*
)
4096
)
)
;eval-when
...
...
This diff is collapsed.
Click to expand it.
compiler/sparc/parms.lisp
+
3
−
1
View file @
b2f46768
...
...
@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
(
ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/parms.lisp,v 1.1
7
1992/0
5/24 15:57:20 ram
Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/parms.lisp,v 1.1
8
1992/0
6/09 23:46:19 wlott
Exp $"
)
;;;
;;; **********************************************************************
;;;
...
...
@@ -36,6 +36,8 @@
(
setf
(
backend-fasl-file-version
*target-backend*
)
4
)
(
setf
(
backend-register-save-penalty
*target-backend*
)
3
)
(
setf
(
backend-byte-order
*target-backend*
)
:big-endian
)
(
setf
(
backend-page-size
*target-backend*
)
#+
mach
4096
#+
sunos
8192
)
)
; eval-when
...
...
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