@@ -25,13 +25,15 @@ enum OpKind {
25
25
enum Type {
26
26
SInt ( usize ) ,
27
27
UInt ( usize ) ,
28
+ Float ( usize ) ,
28
29
}
29
30
30
31
impl Type {
31
32
fn rust_type ( & self ) -> String {
32
33
match self {
33
34
Type :: SInt ( w) => format ! ( "i{w}" ) ,
34
35
Type :: UInt ( w) => format ! ( "u{w}" ) ,
36
+ Type :: Float ( w) => format ! ( "f{w}" ) ,
35
37
}
36
38
}
37
39
}
@@ -60,6 +62,8 @@ const OPS: &[(&str, OpKind)] = &[
60
62
// Roundtrip (`F -> T -> F`) ops.
61
63
( "FToI128ToF" , Roundtrip ( Type :: SInt ( 128 ) ) ) ,
62
64
( "FToU128ToF" , Roundtrip ( Type :: UInt ( 128 ) ) ) ,
65
+ ( "FToSingleToF" , Roundtrip ( Type :: Float ( 32 ) ) ) ,
66
+ ( "FToDoubleToF" , Roundtrip ( Type :: Float ( 64 ) ) ) ,
63
67
] ;
64
68
65
69
fn all_ops_map_concat ( f : impl Fn ( usize , & ' static str , & OpKind ) -> String ) -> String {
@@ -132,9 +136,13 @@ impl<HF> FuzzOp<HF>
132
136
where
133
137
HF: num_traits::Float
134
138
+ num_traits::AsPrimitive<i128>
135
- + num_traits::AsPrimitive<u128>,
139
+ + num_traits::AsPrimitive<u128>
140
+ + num_traits::AsPrimitive<f32>
141
+ + num_traits::AsPrimitive<f64>,
136
142
i128: num_traits::AsPrimitive<HF>,
137
143
u128: num_traits::AsPrimitive<HF>,
144
+ f32: num_traits::AsPrimitive<HF>,
145
+ f64: num_traits::AsPrimitive<HF>,
138
146
{
139
147
fn eval_hard(self) -> HF {
140
148
match self {
@@ -163,8 +171,15 @@ impl<HF> FuzzOp<HF>
163
171
}
164
172
}
165
173
166
- impl<RustcApFloat: rustc_apfloat::Float> FuzzOp<RustcApFloat> {
167
- fn eval_rs_apf(self) -> RustcApFloat {
174
+ impl<F> FuzzOp<F>
175
+ where
176
+ F: rustc_apfloat::Float
177
+ + rustc_apfloat::FloatConvert<rustc_apfloat::ieee::Single>
178
+ + rustc_apfloat::FloatConvert<rustc_apfloat::ieee::Double>,
179
+ rustc_apfloat::ieee::Single: rustc_apfloat::FloatConvert<F>,
180
+ rustc_apfloat::ieee::Double: rustc_apfloat::FloatConvert<F>,
181
+ {
182
+ fn eval_rs_apf(self) -> F {
168
183
match self {
169
184
" + & all_ops_map_concat ( |_tag, name, kind| {
170
185
let inputs = kind. inputs ( & [ "a" , "b" , "c" ] ) ;
@@ -178,9 +193,23 @@ impl<RustcApFloat: rustc_apfloat::Float> FuzzOp<RustcApFloat> {
178
193
let ( w, i_or_u) = match ty {
179
194
Type :: SInt ( w) => ( w, "i" ) ,
180
195
Type :: UInt ( w) => ( w, "u" ) ,
196
+ Type :: Float ( _) => unreachable ! ( ) ,
197
+ } ;
198
+ format ! (
199
+ "F::from_{i_or_u}128({}.to_{i_or_u}128({w}).value).value" ,
200
+ inputs[ 0 ] ,
201
+ )
202
+ }
203
+ Roundtrip ( Type :: Float ( w) ) => {
204
+ let rs_apf_type = match w {
205
+ 32 => "rustc_apfloat::ieee::Single" ,
206
+ 64 => "rustc_apfloat::ieee::Double" ,
207
+ _ => unreachable ! ( ) ,
181
208
} ;
182
209
format ! (
183
- "RustcApFloat::from_{i_or_u}128({}.to_{i_or_u}128({w}).value).value" ,
210
+ "rustc_apfloat::FloatConvert
211
+ ::convert(rustc_apfloat::FloatConvert::<{rs_apf_type}>
212
+ ::convert({}, &mut false).value, &mut false).value" ,
184
213
inputs[ 0 ] ,
185
214
)
186
215
}
@@ -230,7 +259,7 @@ struct FuzzOp {
230
259
// HACK(eddyb) 'scratch' variables used by expressions below.
231
260
APFloat r(0.0);
232
261
APSInt i;
233
- bool isExact ;
262
+ bool scratch_bool ;
234
263
235
264
switch(tag) {
236
265
"
@@ -255,16 +284,31 @@ struct FuzzOp {
255
284
let ( w, signed) = match ty {
256
285
Type :: SInt ( w) => ( w, true ) ,
257
286
Type :: UInt ( w) => ( w, false ) ,
287
+ Type :: Float ( _) => unreachable ! ( ) ,
258
288
} ;
259
289
format ! (
260
290
"((r = {}),
261
291
(i = APSInt({w}, !{signed})),
262
- r.convertToInteger(i, APFloat::rmTowardZero, &isExact ),
292
+ r.convertToInteger(i, APFloat::rmTowardZero, &scratch_bool ),
263
293
r.convertFromAPInt(i, {signed}, APFloat::rmNearestTiesToEven),
264
294
r)" ,
265
295
inputs[ 0 ]
266
296
)
267
297
}
298
+ Roundtrip ( Type :: Float ( w) ) => {
299
+ let cxx_apf_semantics = match w {
300
+ 32 => "APFloat::IEEEsingle()" ,
301
+ 64 => "APFloat::IEEEdouble()" ,
302
+ _ => unreachable ! ( ) ,
303
+ } ;
304
+ format ! (
305
+ "((r = {input}),
306
+ r.convert({cxx_apf_semantics}, APFloat::rmNearestTiesToEven, &scratch_bool),
307
+ r.convert({input}.getSemantics(), APFloat::rmNearestTiesToEven, &scratch_bool),
308
+ r)" ,
309
+ input = inputs[ 0 ]
310
+ )
311
+ }
268
312
} ;
269
313
format ! (
270
314
"
0 commit comments