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
fe11ebf9
Commit
fe11ebf9
authored
33 years ago
by
wlott
Browse files
Options
Downloads
Patches
Plain Diff
Moved the heap around to free up 0x0f000000...0x0fffffff, cause Mach 3.0
wants to use that range.
parent
0a594871
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
compiler/mips/parms.lisp
+4
-4
4 additions, 4 deletions
compiler/mips/parms.lisp
ldb/validate.h
+6
-6
6 additions, 6 deletions
ldb/validate.h
with
10 additions
and
10 deletions
compiler/mips/parms.lisp
+
4
−
4
View file @
fe11ebf9
...
...
@@ -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.9
7
1991/0
5/24 20
:38:
19
wlott Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/parms.lisp,v 1.9
8
1991/0
9/18 06
:38:
47
wlott Exp $"
)
;;;
;;; **********************************************************************
;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/parms.lisp,v 1.9
7
1991/0
5/24 20
:38:
19
wlott Exp $
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/parms.lisp,v 1.9
8
1991/0
9/18 06
:38:
47
wlott Exp $
;;;
;;; This file contains some parameterizations of various VM
;;; attributes for the MIPS. This file is separate from other stuff so
...
...
@@ -117,8 +117,8 @@
;;; Where to put the different spaces.
;;;
(
defparameter
target-read-only-space-start
#x01000000
)
(
defparameter
target-static-space-start
#x0
4
000000
)
(
defparameter
target-dynamic-space-start
#x0
6
000000
)
(
defparameter
target-static-space-start
#x0
5
000000
)
(
defparameter
target-dynamic-space-start
#x0
7
000000
)
...
...
This diff is collapsed.
Click to expand it.
ldb/validate.h
+
6
−
6
View file @
fe11ebf9
/* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/ldb/Attic/validate.h,v 1.
7
1991/0
3
/1
5
0
3:19:10
wlott Exp $ */
/* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/ldb/Attic/validate.h,v 1.
8
1991/0
9
/1
8
0
6:37:47
wlott Exp $ */
#if !defined(_INCLUDE_VALIDATE_H_)
#define _INCLUDE_VALIDATE_H_
#ifdef ibmrt
#define READ_ONLY_SPACE_START (0x00100000)
#define READ_ONLY_SPACE_SIZE (0x0
3
F00000)
#define READ_ONLY_SPACE_SIZE (0x0
4
F00000)
#else
#define READ_ONLY_SPACE_START (0x01000000)
#define READ_ONLY_SPACE_SIZE (0x0
3
000000)
#define READ_ONLY_SPACE_SIZE (0x0
4
000000)
#endif
#define STATIC_SPACE_START (0x0
4
000000)
#define STATIC_SPACE_START (0x0
5
000000)
#define STATIC_SPACE_SIZE (0x02000000)
#define DYNAMIC_0_SPACE_START (0x0
6
000000)
#define DYNAMIC_0_SPACE_START (0x0
7
000000)
#define DYNAMIC_1_SPACE_START (0x0b000000)
#define DYNAMIC_SPACE_SIZE (0x0
5
000000)
#define DYNAMIC_SPACE_SIZE (0x0
4
000000)
#ifdef sparc
#define CONTROL_STACK_START (0x00e00000)
...
...
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