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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
use Ordering;
use crate::;
/// Control block (CB)
///
/// Memory layout:
///
/// | Bit | Data | Bit Mask |
/// |:-----:|:---------------------:|:-----------------------:|
/// | 1-15 | Scale | `0x0000_0000_0000_FFFF` |
/// | 16 | Sign bit | `0x0000_0000_0001_0000` |
/// | 17 | Nan flag | `0x0000_0000_0002_0000` |
/// | 18 | Infinity flag | `0x0000_0000_0004_0000` |
/// | 19 | OP_CLAMPED | `0x0000_0000_0008_0000` |
/// | 20 | OP_DIV_BY_ZERO | `0x0000_0000_0010_0000` |
/// | 21 | OP_INVALID | `0x0000_0000_0020_0000` |
/// | 22 | OP_INEXACT | `0x0000_0000_0040_0000` |
/// | 23 | OP_OVERFLOW | `0x0000_0000_0080_0000` |
/// | 24 | OP_ROUNDED | `0x0000_0000_0100_0000` |
/// | 25 | OP_SUBNORMAL | `0x0000_0000_0200_0000` |
/// | 26 | OP_UNDERFLOW | `0x0000_0000_0400_0000` |
/// | 27 | T OP_CLAMPED | `0x0000_0000_0800_0000` |
/// | 28 | T OP_DIV_BY_ZERO | `0x0000_0000_1000_0000` |
/// | 29 | T OP_INVALID | `0x0000_0000_2000_0000` |
/// | 30 | T OP_INEXACT | `0x0000_0000_4000_0000` |
/// | 31 | T OP_OVERFLOW | `0x0000_0000_8000_0000` |
/// | 32 | T OP_ROUNDED | `0x0000_0001_0000_0000` |
/// | 33 | T OP_SUBNORMAL | `0x0000_0002_0000_0000` |
/// | 34 | T OP_UNDERFLOW | `0x0000_0004_0000_0000` |
/// | 35 | Reserved | `0x0000_0008_0000_0000` |
/// | 36 | Reserved | `0x0000_0010_0000_0000` |
/// | 37-39 | Rounding mode (3 bit) | `0x0000_00E0_0000_0000` |
/// | 40-63 | Extra digits (24 bit) | `0xFFFF_FF00_0000_0000` |
pub ;
// {
// /// Sign and special values flags.
// flags: Flags,
//
// /// The exceptional conditions are grouped into signals, which can be
// /// controlled individually. The context contains a flag (which is either
// 0 /// or 1) and a trap-enabler (which also is either 0 or 1) for each
// signal. signals: Signal,
//
// /// Context for decimal operations
// ctx: Context,
// }
// impl ControlBlock {
// const DEFAULT: Self = Self {
// flags: Flags::default(),
// signals: Signal::empty(),
// ctx: Context::default(),
// };
//
// const NAN: Self = Self {
// flags: Flags::nan(),
// signals: Signal::empty(),
// ctx: Context::default(),
// };
//
// const INFINITY: Self = Self {
// flags: Flags::infinity(),
// signals: Signal::empty(),
// ctx: Context::default(),
// };
//
// const NEG_INFINITY: Self = Self {
// flags: Flags::neg_infinity(),
// signals: Signal::empty(),
// ctx: Context::default(),
// };
//
// /// Return the default CB instance (no sign, no special flags, no
// signaling /// flags, default context).
// #[inline(always)]
// pub(crate) const fn default() -> Self {
// Self::DEFAULT
// }
//
// /// Return the default CB instance for `NaN` (no signaling flags, default
// /// context).
// #[inline(always)]
// pub(crate) const fn nan() -> Self {
// Self::NAN
// }
//
// /// Return the default CB instance for `Inf` (no signaling flags, default
// /// context).
// #[inline(always)]
// pub(crate) const fn infinity() -> Self {
// Self::INFINITY
// }
//
// /// Return the default CB instance for `-Inf` (no signaling flags,
// default /// context).
// #[inline(always)]
// pub(crate) const fn neg_infinity() -> Self {
// Self::NEG_INFINITY
// }
//
// // ------------------
//
// #[inline(always)]
// pub(crate) const fn flags(&self) -> Flags {
// self.flags
// }
//
// #[inline(always)]
// pub(crate) const fn signals(&self) -> Signal {
// self.signals
// }
//
// #[inline(always)]
// pub(crate) const fn context(&self) -> Context {
// self.ctx
// }
//
//
// #[inline(always)]
// pub(crate) const fn sign(&self) -> Sign {
// self.flags.sign()
// }
//
// #[inline]
// pub(crate) const fn is_op_div_by_zero(&self) -> bool {
// self.signals.is_raised(Signal::OP_DIV_BY_ZERO)
// }
//
// #[inline]
// pub(crate) const fn is_op_overflow(&self) -> bool {
// self.signals.is_raised(Signal::OP_OVERFLOW)
// }
//
// #[inline]
// pub(crate) const fn is_op_underflow(&self) -> bool {
// self.signals.is_raised(Signal::OP_UNDERFLOW)
// }
//
// #[inline]
// pub(crate) const fn is_op_invalid(&self) -> bool {
// self.signals.is_raised(Signal::OP_INVALID)
// }
//
// #[inline]
// pub(crate) const fn is_op_subnormal(&self) -> bool {
// self.signals.is_raised(Signal::OP_SUBNORMAL)
// }
//
// #[inline]
// pub(crate) const fn is_op_inexact(&self) -> bool {
// self.signals.is_raised(Signal::OP_INEXACT)
// }
//
// #[inline]
// pub(crate) const fn is_op_rounded(&self) -> bool {
// self.signals.is_raised(Signal::OP_ROUNDED)
// }
//
// #[inline]
// pub(crate) const fn is_op_clamped(&self) -> bool {
// self.signals.is_raised(Signal::OP_CLAMPED)
// }
//
// #[inline]
// pub(crate) const fn is_op_ok(&self) -> bool {
// self.signals.is_empty()
// }
//
// // ------------------
//
// #[inline(always)]
// pub(crate) const fn neg(mut self) -> Self {
// self.flags = self.flags.neg();
// self
// }
//
// #[inline(always)]
// pub(crate) const fn abs(mut self) -> Self {
// self.flags = self.flags.abs();
// self
// }
//
// #[inline(always)]
// pub(crate) const fn set_context(mut self, ctx: Context) -> Self {
// self.ctx = ctx;
// self
// }
//
// #[inline(always)]
// pub(crate) const fn set_rounding_mode(mut self, rm: RoundingMode) -> Self
// { self.ctx = self.ctx.with_rounding_mode(rm);
// self
// }
//
// #[inline(always)]
// pub(crate) const fn set_flags(mut self, flags: Flags) -> Self {
// self.flags = flags;
// self
// }
//
// #[inline(always)]
// pub(crate) const fn with_flags(mut self, flags: Flags) -> Self {
// self.flags = self.flags.combine(flags);
// self
// }
//
// #[inline]
// pub(crate) const fn compound(mut self, other: Self) -> Self {
// self.signals = self.signals.combine(other.signals);
// self.ctx = self.ctx.merge(other.ctx);
// self
// }
//
// #[inline]
// pub(crate) const fn compound_and_raise(mut self, other: Self, signal:
// Signal) -> Self { self.signals =
// self.signals.combine(other.signals).combine(signal); self.ctx =
// self.ctx.merge(other.ctx); self
// }
//
// #[inline]
// pub(crate) const fn combine_and_set_ctx(mut self, other: Self) -> Self {
// self.signals = self.signals.combine(other.signals);
// self.ctx = other.ctx;
// self.flags = self.flags.combine(other.flags);
// self
// }
//
// #[inline]
// pub(crate) const fn combine(mut self, other: Self) -> Self {
// self.signals = self.signals.combine(other.signals);
// self.ctx = self.ctx.merge(other.ctx);
// self.flags = self.flags.combine(other.flags);
// self
// }
//
// #[inline]
// pub(crate) const fn combine_mul(mut self, other: Self) -> Self {
// self.signals = self.signals.combine(other.signals);
// self.ctx = self.ctx.merge(other.ctx);
// self.flags = self.flags.mul(other.flags);
// self
// }
//
// #[inline(always)]
// pub(crate) const fn raise_signal(mut self, signal: Signal) -> Self {
// self.signals = self.signals.combine(signal);
// self
// }
//
// #[inline(always)]
// pub(crate) const fn quiet_signal(mut self, signal: Signal) -> Self {
// self.signals = self.signals.unset(signal);
// self
// }
//
// #[inline(always)]
// pub(crate) const fn trap_signals(&self) -> Signal {
// self.ctx.trap_signals(self.signals)
// }
// }
assert_eq_size!;