[VM] Transform float arithmethic arguments to valid 32-bit floats.

This commit is contained in:
jtuu 2019-10-17 23:49:27 +03:00
parent 2caa4eea2b
commit f42d66e7e1

View File

@ -344,25 +344,25 @@ export class VirtualMachine {
this.do_float_op_with_register(arg0, arg1, numeric_ops.add); this.do_float_op_with_register(arg0, arg1, numeric_ops.add);
break; break;
case OP_FADDI.code: case OP_FADDI.code:
this.do_float_op_with_literal(arg0, arg1, numeric_ops.add); this.do_float_op_with_literal(arg0, Math.fround(arg1), numeric_ops.add);
break; break;
case OP_FSUB.code: case OP_FSUB.code:
this.do_float_op_with_register(arg0, arg1, numeric_ops.sub); this.do_float_op_with_register(arg0, arg1, numeric_ops.sub);
break; break;
case OP_FSUBI.code: case OP_FSUBI.code:
this.do_float_op_with_literal(arg0, arg1, numeric_ops.sub); this.do_float_op_with_literal(arg0, Math.fround(arg1), numeric_ops.sub);
break; break;
case OP_FMUL.code: case OP_FMUL.code:
this.do_float_op_with_register(arg0, arg1, numeric_ops.mul); this.do_float_op_with_register(arg0, arg1, numeric_ops.mul);
break; break;
case OP_FMULI.code: case OP_FMULI.code:
this.do_float_op_with_literal(arg0, arg1, numeric_ops.mul); this.do_float_op_with_literal(arg0, Math.fround(arg1), numeric_ops.mul);
break; break;
case OP_FDIV.code: case OP_FDIV.code:
this.do_float_op_with_register(arg0, arg1, numeric_ops.div); this.do_float_op_with_register(arg0, arg1, numeric_ops.div);
break; break;
case OP_FDIVI.code: case OP_FDIVI.code:
this.do_float_op_with_literal(arg0, arg1, numeric_ops.div); this.do_float_op_with_literal(arg0, Math.fround(arg1), numeric_ops.div);
break; break;
// bit operations // bit operations
case OP_AND.code: case OP_AND.code: