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
245286b7
Commit
245286b7
authored
26 years ago
by
dtc
Browse files
Options
Downloads
Patches
Plain Diff
Reworking of the linux address map to support larger heaps,
and bringing it closer to the FreeBSD map. From Raymond Toy.
parent
14cd225f
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/x86/parms.lisp
+2
-3
2 additions, 3 deletions
compiler/x86/parms.lisp
lisp/x86-validate.h
+5
-4
5 additions, 4 deletions
lisp/x86-validate.h
with
7 additions
and
7 deletions
compiler/x86/parms.lisp
+
2
−
3
View file @
245286b7
...
@@ -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/compiler/x86/parms.lisp,v 1.1
3
1998/
09/17 10:54:24
dtc Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/x86/parms.lisp,v 1.1
4
1998/
11/13 04:39:43
dtc Exp $"
)
;;;
;;;
;;; **********************************************************************
;;; **********************************************************************
;;;
;;;
...
@@ -175,10 +175,9 @@
...
@@ -175,10 +175,9 @@
;;;
;;;
#-
linux
(
defparameter
target-read-only-space-start
#x10000000
)
#-
linux
(
defparameter
target-read-only-space-start
#x10000000
)
#-
linux
(
defparameter
target-static-space-start
#x28000000
)
#-
linux
(
defparameter
target-static-space-start
#x28000000
)
#-
linux
(
defparameter
target-dynamic-space-start
#x48000000
)
#+
linux
(
defparameter
target-read-only-space-start
#x01000000
)
#+
linux
(
defparameter
target-read-only-space-start
#x01000000
)
#+
linux
(
defparameter
target-static-space-start
#x05000000
)
#+
linux
(
defparameter
target-static-space-start
#x05000000
)
#+
linux
(
defparameter
target-dynamic-space-start
#x
09
000000
)
(
defparameter
target-dynamic-space-start
#x
48
000000
)
;;; Given that NIL is the first things allocated in static space, we
;;; Given that NIL is the first things allocated in static space, we
;;; know its value at compile time:
;;; know its value at compile time:
...
...
This diff is collapsed.
Click to expand it.
lisp/x86-validate.h
+
5
−
4
View file @
245286b7
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
* This code was written as part of the CMU Common Lisp project at
* This code was written as part of the CMU Common Lisp project at
* Carnegie Mellon University, and has been placed in the public domain.
* Carnegie Mellon University, and has been placed in the public domain.
*
*
* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/x86-validate.h,v 1.
9
1998/
09/17 10:54:23
dtc Exp $
* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/x86-validate.h,v 1.
10
1998/
11/13 04:39:42
dtc Exp $
*
*
*/
*/
...
@@ -63,13 +63,13 @@
...
@@ -63,13 +63,13 @@
#define STATIC_SPACE_START (0x05000000)
#define STATIC_SPACE_START (0x05000000)
#define STATIC_SPACE_SIZE (0x02fff000)
/* 48MB - 1 page */
#define STATIC_SPACE_SIZE (0x02fff000)
/* 48MB - 1 page */
#define BINDING_STACK_START (0x
6
0000000)
#define BINDING_STACK_START (0x
2
0000000)
#define BINDING_STACK_SIZE (0x07fff000)
/* 128MB - 1 page */
#define BINDING_STACK_SIZE (0x07fff000)
/* 128MB - 1 page */
#define CONTROL_STACK_START (0x
50
000000)
#define CONTROL_STACK_START (0x
38
000000)
#define CONTROL_STACK_SIZE (0x07fff000)
/* 128MB - 1 page */
#define CONTROL_STACK_SIZE (0x07fff000)
/* 128MB - 1 page */
#define DYNAMIC_0_SPACE_START (0x
09
000000)
#define DYNAMIC_0_SPACE_START (0x
48
000000)
#ifdef GENCGC
#ifdef GENCGC
#define DYNAMIC_SPACE_SIZE (0x20000000)
/* 512MB */
#define DYNAMIC_SPACE_SIZE (0x20000000)
/* 512MB */
#else
#else
...
@@ -77,6 +77,7 @@
...
@@ -77,6 +77,7 @@
#endif
#endif
#endif
#endif
#define CONTROL_STACK_END (CONTROL_STACK_START + CONTROL_STACK_SIZE)
#define CONTROL_STACK_END (CONTROL_STACK_START + CONTROL_STACK_SIZE)
/* Note that GENCGC only uses dynamic_space 0. */
/* Note that GENCGC only uses dynamic_space 0. */
...
...
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