blob: b84965a11a7901432d022f608e411eada6d8e1b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
Require Import Int63 FloatClass.
Inductive float_comparison : Set := FEq | FLt | FGt | FNotComparable.
Register float_comparison as kernel.ind_f_cmp.
Register float_class as kernel.ind_f_class.
Primitive float := #float64_type.
Declare Scope float_scope.
Delimit Scope float_scope with float.
Bind Scope float_scope with float.
Primitive opp := #float64_opp.
Notation "- x" := (opp x) : float_scope.
Primitive abs := #float64_abs.
Primitive compare := #float64_compare.
Notation "x ?= y" := (compare x y) (at level 70, no associativity) : float_scope.
Primitive classify := #float64_classify.
Primitive mul := #float64_mul.
Notation "x * y" := (mul x y) : float_scope.
Primitive add := #float64_add.
Notation "x + y" := (add x y) : float_scope.
Primitive sub := #float64_sub.
Notation "x - y" := (sub x y) : float_scope.
Primitive div := #float64_div.
Notation "x / y" := (div x y) : float_scope.
Primitive sqrt := #float64_sqrt.
(* Convert a primitive integer into a float value.
* The value is rounded if necessary. *)
Primitive of_int63 := #float64_of_int63.
(* If the input is a float value with an absolute value
* inside [0.5; 1.) then return its mantissa as a primitive integer.
* The mantissa will be a 53-bit integer with its most significant bit set to 1.
* Else return zero.
* The sign bit is always ignored. *)
Primitive normfr_mantissa := #float64_normfr_mantissa.
(* Exponent manipulation functions *)
Definition shift := (2101)%int63. (* = 2*emax + prec *)
Primitive frshiftexp := #float64_frshiftexp.
Primitive ldshiftexp := #float64_ldshiftexp.
Primitive next_up := #float64_next_up.
Primitive next_down := #float64_next_down.
Local Open Scope float_scope.
(* Special values *)
Definition infinity := Eval compute in div (of_int63 1) (of_int63 0).
Definition neg_infinity := Eval compute in opp infinity.
Definition nan := Eval compute in div (of_int63 0) (of_int63 0).
Definition one := Eval compute in (of_int63 1).
Definition zero := Eval compute in (of_int63 0).
Definition neg_zero := Eval compute in (-zero).
Definition two := Eval compute in (of_int63 2).
Definition is_nan f :=
match f ?= f with
| FNotComparable => true
| _ => false
end.
Definition is_zero f :=
match f ?= zero with
| FEq => true (* note: 0 == -0 with floats *)
| _ => false
end.
Definition is_infinity f :=
match f ?= infinity with
| FEq => true
| FLt => match f ?= neg_infinity with
| FEq => true
| _ => false
end
| _ => false
end.
Definition get_sign f := (* + => false, - => true *)
let f := if is_zero f then one / f else f in
match f ?= zero with
| FGt => false
| _ => true
end.
Definition is_finite (x : float) := negb (is_nan x || is_infinity x).
|