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
443ad455
Commit
443ad455
authored
34 years ago
by
wlott
Browse files
Options
Downloads
Patches
Plain Diff
Added exports for lots of float parameters.
parent
c6d72a1b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
compiler/sparc/parms.lisp
+19
-11
19 additions, 11 deletions
compiler/sparc/parms.lisp
with
19 additions
and
11 deletions
compiler/sparc/parms.lisp
+
19
−
11
View file @
443ad455
...
...
@@ -7,7 +7,7 @@
;;; Scott Fahlman (FAHLMAN@CMUC).
;;; **********************************************************************
;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/parms.lisp,v 1.
1
1990/1
1/30 17:04:57
wlott Exp $
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/parms.lisp,v 1.
2
1990/1
2/01 22:33:30
wlott Exp $
;;;
;;; This file contains some parameterizations of various VM
;;; attributes for the SPARC. This file is separate from other stuff so
...
...
@@ -21,16 +21,6 @@
(
in-package
"SPARC"
)
(
use-package
"C"
)
(
export
'
(
word-bits
byte-bits
word-shift
word-bytes
))
(
export
'
(
float-underflow-trap-bit
float-overflow-trap-bit
float-imprecise-trap-bit
float-invalid-trap-bit
float-divide-by-zero-trap-bit
single-float-trapping-nan-bit
double-float-trapping-nan-bit
*fixup-values*
))
(
export
'
(
check-cons
check-symbol
check-fixnum
check-unsigned-byte-32
check-signed-byte-32
check-function
check-function-or-symbol
))
;;;; Compiler constants.
...
...
@@ -50,6 +40,24 @@
;;;; Machine Architecture parameters:
(
export
'
(
word-bits
byte-bits
word-shift
word-bytes
float-sign-shift
single-float-bias
single-float-exponent-byte
single-float-significand-byte
single-float-normal-exponent-min
single-float-normal-exponent-max
single-float-hidden-bit
single-float-trapping-nan-bit
single-float-digits
double-float-bias
double-float-exponent-byte
double-float-significand-byte
double-float-normal-exponent-min
double-float-normal-exponent-max
double-float-hidden-bit
double-float-trapping-nan-bit
double-float-digits
float-underflow-trap-bit
float-overflow-trap-bit
float-imprecise-trap-bit
float-invalid-trap-bit
float-divide-by-zero-trap-bit
))
(
eval-when
(
compile
load
eval
)
(
defconstant
word-bits
32
...
...
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