cranelift: Use ValueConversionKind in branches

This commit is contained in:
Afonso Bordado
2021-07-08 10:15:01 +01:00
committed by Andrew Brown
parent 037bd41c67
commit 7526cdc65e
2 changed files with 18 additions and 10 deletions

View File

@@ -108,6 +108,9 @@ pub enum ValueConversionKind {
/// Convert a floating point number by rounding to the nearest possible value with ties to even.
/// See `fdemote`, e.g.
RoundNearestEven(Type),
/// Converts an integer into a boolean, zero integers are converted into a
/// `false`, while other integers are converted into `true`. Booleans are passed through.
ToBoolean,
}
/// Helper for creating match expressions over [DataValue].
@@ -263,6 +266,11 @@ impl Value for DataValue {
(types::F64, types::F32) => unimplemented!(),
_ => unimplemented!("conversion: {} -> {:?}", self.ty(), kind),
},
ValueConversionKind::ToBoolean => match self.ty() {
ty if ty.is_bool() => DataValue::B(self.into_bool()?),
ty if ty.is_int() => DataValue::B(self.into_int()? != 0),
ty => unimplemented!("conversion: {} -> {:?}", ty, kind),
},
})
}