Implement main conversion instructions

This commit is contained in:
FernandoS27 2018-11-12 14:33:28 -04:00
parent 8747340c44
commit a6c435dcb7
2 changed files with 32 additions and 6 deletions

View file

@ -321,6 +321,22 @@ class Module {
// Conversion
Id OpConvertFToU(Id result_type, Id operand);
Id OpConvertFToS(Id result_type, Id operand);
Id OpConvertSToF(Id result_type, Id operand);
Id OpConvertUToF(Id result_type, Id operand);
Id OpUConvert(Id result_type, Id operand);
Id OpSConvert(Id result_type, Id operand);
Id OpFConvert(Id result_type, Id operand);
Id OpQuantizeToF16(Id result_type, Id operand);
/// Bit pattern-preserving type conversion.
Id OpBitcast(Id result_type, Id operand);