Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
cmucl-copy
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
Richard M Kreuter
cmucl-copy
Commits
9b83625d
Commit
9b83625d
authored
10 years ago
by
Raymond Toy
Browse files
Options
Downloads
Patches
Plain Diff
Wrap all exports in eval-when since export is now an ordinary function
without any compiler magic. Untested.
parent
2ec1fda2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/compiler/alpha/parms.lisp
+8
-0
8 additions, 0 deletions
src/compiler/alpha/parms.lisp
src/compiler/hppa/parms.lisp
+8
-1
8 additions, 1 deletion
src/compiler/hppa/parms.lisp
src/compiler/mips/parms.lisp
+10
-2
10 additions, 2 deletions
src/compiler/mips/parms.lisp
with
26 additions
and
3 deletions
src/compiler/alpha/parms.lisp
+
8
−
0
View file @
9b83625d
...
@@ -40,6 +40,7 @@
...
@@ -40,6 +40,7 @@
;;;; Machine Architecture parameters:
;;;; Machine Architecture parameters:
(
eval-when
(
:compile-toplevel
:load-toplevel
:execute
)
(
export
'
(
word-bits
byte-bits
word-shift
word-bytes
float-sign-shift
(
export
'
(
word-bits
byte-bits
word-shift
word-bytes
float-sign-shift
single-float-bias
single-float-exponent-byte
single-float-bias
single-float-exponent-byte
...
@@ -55,6 +56,7 @@
...
@@ -55,6 +56,7 @@
float-underflow-trap-bit
float-overflow-trap-bit
float-underflow-trap-bit
float-overflow-trap-bit
float-imprecise-trap-bit
float-invalid-trap-bit
float-imprecise-trap-bit
float-invalid-trap-bit
float-divide-by-zero-trap-bit
))
float-divide-by-zero-trap-bit
))
; ; eval-when
...
@@ -128,11 +130,13 @@
...
@@ -128,11 +130,13 @@
;;;; Description of the target address space.
;;;; Description of the target address space.
(
eval-when
(
:compile-toplevel
:load-toplevel
:execute
)
(
export
'
(
target-read-only-space-start
(
export
'
(
target-read-only-space-start
target-static-space-start
target-static-space-start
target-dynamic-space-start
target-dynamic-space-start
target-foreign-linkage-space-start
target-foreign-linkage-space-start
target-foreign-linkage-entry-size
))
target-foreign-linkage-entry-size
))
)
;;; Where to put the different spaces.
;;; Where to put the different spaces.
;;;
;;;
...
@@ -157,10 +161,12 @@
...
@@ -157,10 +161,12 @@
;;;; Other random constants.
;;;; Other random constants.
(
eval-when
(
:compile-toplevel
:load-toplevel
:execute
)
(
export
'
(
halt-trap
pending-interrupt-trap
error-trap
cerror-trap
(
export
'
(
halt-trap
pending-interrupt-trap
error-trap
cerror-trap
breakpoint-trap
function-end-breakpoint-trap
single-step-breakpoint
breakpoint-trap
function-end-breakpoint-trap
single-step-breakpoint
trace-table-normal
trace-table-call-site
trace-table-normal
trace-table-call-site
trace-table-function-prologue
trace-table-function-epilogue
))
trace-table-function-prologue
trace-table-function-epilogue
))
)
(
defenum
(
:suffix
-trap
:start
8
)
(
defenum
(
:suffix
-trap
:start
8
)
halt
halt
...
@@ -181,7 +187,9 @@
...
@@ -181,7 +187,9 @@
;;;; Static symbols.
;;;; Static symbols.
(
eval-when
(
:compile-toplevel
:load-toplevel
:execute
)
(
export
'
(
static-symbols
static-functions
))
(
export
'
(
static-symbols
static-functions
))
)
;;; These symbols are loaded into static space directly after NIL so
;;; These symbols are loaded into static space directly after NIL so
;;; that the system can compute their address by adding a constant
;;; that the system can compute their address by adding a constant
...
...
This diff is collapsed.
Click to expand it.
src/compiler/hppa/parms.lisp
+
8
−
1
View file @
9b83625d
...
@@ -39,6 +39,7 @@
...
@@ -39,6 +39,7 @@
;;;; Machine Architecture parameters:
;;;; Machine Architecture parameters:
(
eval-when
(
:compile-toplevel
:load-toplevel
:execute
)
(
export
'
(
word-bits
byte-bits
word-shift
word-bytes
float-sign-shift
(
export
'
(
word-bits
byte-bits
word-shift
word-bytes
float-sign-shift
single-float-bias
single-float-exponent-byte
single-float-bias
single-float-exponent-byte
...
@@ -54,7 +55,7 @@
...
@@ -54,7 +55,7 @@
float-underflow-trap-bit
float-overflow-trap-bit
float-underflow-trap-bit
float-overflow-trap-bit
float-imprecise-trap-bit
float-invalid-trap-bit
float-imprecise-trap-bit
float-invalid-trap-bit
float-divide-by-zero-trap-bit
))
float-divide-by-zero-trap-bit
))
)
; eval-when
(
eval-when
(
compile
load
eval
)
(
eval-when
(
compile
load
eval
)
...
@@ -119,11 +120,13 @@
...
@@ -119,11 +120,13 @@
;;;; Description of the target address space.
;;;; Description of the target address space.
(
eval-when
(
:compile-toplevel
:load-toplevel
:execute
)
(
export
'
(
target-read-only-space-start
(
export
'
(
target-read-only-space-start
target-static-space-start
target-static-space-start
target-dynamic-space-start
target-dynamic-space-start
target-foreign-linkage-space-start
target-foreign-linkage-space-start
target-foreign-linkage-entry-size
))
target-foreign-linkage-entry-size
))
)
;;; Where to put the different spaces.
;;; Where to put the different spaces.
...
@@ -143,11 +146,13 @@
...
@@ -143,11 +146,13 @@
;;;; Other random constants.
;;;; Other random constants.
(
eval-when
(
:compile-toplevel
:load-toplevel
:execute
)
(
export
'
(
halt-trap
pending-interrupt-trap
error-trap
cerror-trap
(
export
'
(
halt-trap
pending-interrupt-trap
error-trap
cerror-trap
breakpoint-trap
function-end-breakpoint-trap
breakpoint-trap
function-end-breakpoint-trap
single-step-breakpoint-trap
single-step-breakpoint-trap
trace-table-normal
trace-table-call-site
trace-table-normal
trace-table-call-site
trace-table-function-prologue
trace-table-function-epilogue
))
trace-table-function-prologue
trace-table-function-epilogue
))
)
(
defenum
(
:suffix
-trap
:start
8
)
(
defenum
(
:suffix
-trap
:start
8
)
halt
halt
...
@@ -168,7 +173,9 @@
...
@@ -168,7 +173,9 @@
;;;; Static symbols.
;;;; Static symbols.
(
eval-when
(
:compile-toplevel
:load-toplevel
:execute
)
(
export
'
(
static-symbols
static-functions
))
(
export
'
(
static-symbols
static-functions
))
)
;;; These symbols are loaded into static space directly after NIL so
;;; These symbols are loaded into static space directly after NIL so
;;; that the system can compute their address by adding a constant
;;; that the system can compute their address by adding a constant
...
...
This diff is collapsed.
Click to expand it.
src/compiler/mips/parms.lisp
+
10
−
2
View file @
9b83625d
...
@@ -50,6 +50,7 @@
...
@@ -50,6 +50,7 @@
;;;; Machine Architecture parameters:
;;;; Machine Architecture parameters:
(
eval-when
(
:compile-toplevel
:load-toplevel
:execute
)
(
export
'
(
word-bits
byte-bits
word-shift
word-bytes
float-sign-shift
(
export
'
(
word-bits
byte-bits
word-shift
word-bytes
float-sign-shift
single-float-bias
single-float-exponent-byte
single-float-bias
single-float-exponent-byte
...
@@ -65,7 +66,7 @@
...
@@ -65,7 +66,7 @@
float-underflow-trap-bit
float-overflow-trap-bit
float-underflow-trap-bit
float-overflow-trap-bit
float-imprecise-trap-bit
float-invalid-trap-bit
float-imprecise-trap-bit
float-invalid-trap-bit
float-divide-by-zero-trap-bit
))
float-divide-by-zero-trap-bit
))
)
; eval-when
(
eval-when
(
compile
load
eval
)
(
eval-when
(
compile
load
eval
)
...
@@ -129,11 +130,13 @@
...
@@ -129,11 +130,13 @@
;;;; Description of the target address space.
;;;; Description of the target address space.
(
eval-when
(
:compile-toplevel
:load-toplevel
:execute
)
(
export
'
(
target-read-only-space-start
(
export
'
(
target-read-only-space-start
target-static-space-start
target-static-space-start
target-dynamic-space-start
target-dynamic-space-start
target-foreign-linkage-space-start
target-foreign-linkage-space-start
target-foreign-linkage-entry-size
))
target-foreign-linkage-entry-size
))
)
;;; Where to put the different spaces.
;;; Where to put the different spaces.
;;;
;;;
...
@@ -147,7 +150,8 @@
...
@@ -147,7 +150,8 @@
;;; large object space instead. Must be less then a page.
;;; large object space instead. Must be less then a page.
;;;
;;;
#+
gengc
#+
gengc
(
export
'large-object-cutoff
)
(
eval-when
(
:compile-toplevel
:load-toplevel
:execute
)
(
export
'large-object-cutoff
))
#+
gengc
#+
gengc
(
defparameter
large-object-cutoff
1024
)
(
defparameter
large-object-cutoff
1024
)
...
@@ -155,10 +159,12 @@
...
@@ -155,10 +159,12 @@
;;;; Other non-type constants.
;;;; Other non-type constants.
(
eval-when
(
:compile-toplevel
:load-toplevel
:execute
)
(
export
'
(
atomic-flag
interrupted-flag
halt-trap
pending-interrupt-trap
(
export
'
(
atomic-flag
interrupted-flag
halt-trap
pending-interrupt-trap
error-trap
cerror-trap
breakpoint-trap
function-end-breakpoint-trap
error-trap
cerror-trap
breakpoint-trap
function-end-breakpoint-trap
after-breakpoint-trap
trace-table-normal
trace-table-call-site
after-breakpoint-trap
trace-table-normal
trace-table-call-site
trace-table-function-prologue
trace-table-function-epilogue
))
trace-table-function-prologue
trace-table-function-epilogue
))
)
(
defenum
(
:suffix
-flag
)
(
defenum
(
:suffix
-flag
)
atomic
atomic
...
@@ -183,7 +189,9 @@
...
@@ -183,7 +189,9 @@
;;;; Static symbols.
;;;; Static symbols.
(
eval-when
(
:compile-toplevel
:load-toplevel
:execute
)
(
export
'
(
static-symbols
static-functions
))
(
export
'
(
static-symbols
static-functions
))
)
;;; Static symbols are loaded into static space directly after NIL so
;;; Static symbols are loaded into static space directly after NIL so
;;; that the system can compute their address by adding a constant
;;; that the system can compute their address by adding a constant
...
...
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