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
0558002e
Commit
0558002e
authored
34 years ago
by
wlott
Browse files
Options
Downloads
Patches
Plain Diff
Added floating point constants.
parent
672f4a1c
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/rt/params.lisp
+65
-1
65 additions, 1 deletion
compiler/rt/params.lisp
with
65 additions
and
1 deletion
compiler/rt/params.lisp
+
65
−
1
View file @
0558002e
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
;;; Lisp, please contact Scott Fahlman (Scott.Fahlman@CS.CMU.EDU)
;;; Lisp, please contact Scott Fahlman (Scott.Fahlman@CS.CMU.EDU)
;;; **********************************************************************
;;; **********************************************************************
;;;
;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/rt/params.lisp,v 1.
2
1991/04/
01 13:49:23 chiles
Exp $
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/rt/params.lisp,v 1.
3
1991/04/
12 22:48:32 wlott
Exp $
;;;
;;;
;;; This file contains some parameterizations of various VM attributes for the
;;; 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
;;; IBM RT. This file is separate from other stuff, so we can compile and
...
@@ -109,6 +109,70 @@
...
@@ -109,6 +109,70 @@
;;;; Status register formats, goes in parms.
;;; We squeeze the two 68881 float status registers into a one-word result for
;;; FLOATING-POINT-MODES. We also canonicalize the exceptions so that the
;;; "portable" float trap code will work.
;;;
(
eval-when
(
compile
eval
load
)
;;; The actual positions of the info in the mc68881 FPCR and FPSR.
;;;
(
defconstant
mc68881-fpcr-rounding-mode-byte
(
byte
2
4
))
(
defconstant
mc68881-fpcr-rounding-precision-byte
(
byte
2
6
))
(
defconstant
mc68881-fpcr-traps-byte
(
byte
8
8
))
(
defconstant
mc68881-fpsr-accrued-exceptions-byte
(
byte
5
3
))
(
defconstant
mc68881-fpsr-current-exceptions-byte
(
byte
8
8
))
(
defconstant
mc68881-fpsr-condition-code-byte
(
byte
4
24
))
;;; Amount to shift by the get the condition code, - 16.
;;;
(
defconstant
mc68881-fpsr-condition-code-shift-16
8
)
;;; The condition code bits.
;;;
(
defconstant
mc68881-nan-condition
(
ash
1
0
))
(
defconstant
mc68881-infinity-condition
(
ash
1
1
))
(
defconstant
mc68881-zero-condition
(
ash
1
2
))
(
defconstant
mc68881-negative-condition
(
ash
1
3
))
;;; Masks that map the extended set of exceptions implemented by the 68881 to
;;; the IEEE exceptions. This extended format is used for the enabled traps
;;; and the current exceptions.
;;;
(
defconstant
mc68881-invalid-exception
(
ash
#b111
5
))
(
defconstant
mc68881-overflow-exception
(
ash
1
4
))
(
defconstant
mc68881-underflow-exception
(
ash
1
3
))
(
defconstant
mc68881-divide-zero-exception
(
ash
1
2
))
(
defconstant
mc68881-inexact-exception
(
ash
#b11
0
))
;;; Encoding of float exceptions in the FLOATING-POINT-MODES result. This is
;;; also the encoding used in the mc68881 accrued exceptions.
;;;
(
defconstant
float-inexact-trap-bit
(
ash
1
0
))
(
defconstant
float-divide-by-zero-trap-bit
(
ash
1
1
))
(
defconstant
float-underflow-trap-bit
(
ash
1
2
))
(
defconstant
float-overflow-trap-bit
(
ash
1
3
))
(
defconstant
float-invalid-trap-bit
(
ash
1
4
))
(
defconstant
float-round-to-nearest
0
)
(
defconstant
float-round-to-zero
1
)
(
defconstant
float-round-to-negative
2
)
(
defconstant
float-round-to-positive
3
)
;;; Positions of bits in the FLOATING-POINT-MODES result.
;;;
(
defconstant
float-rounding-mode
(
byte
2
0
))
(
defconstant
float-sticky-bits
(
byte
5
2
))
(
defconstant
float-traps-byte
(
byte
5
7
))
(
defconstant
float-exceptions-byte
(
byte
5
12
))
(
defconstant
float-fast-bit
0
)
)
; eval-when
;;;; Description of the target address space.
;;;; Description of the target address space.
...
...
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