From fc2e7647fea8f3be29f8d9ff05a746d9f4af831f Mon Sep 17 00:00:00 2001 From: jtuu Date: Thu, 17 Oct 2019 21:38:47 +0300 Subject: [PATCH] [VM] Throw error on division by zero. --- src/quest_editor/scripting/vm/index.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/quest_editor/scripting/vm/index.ts b/src/quest_editor/scripting/vm/index.ts index 09b2529c..2877921b 100644 --- a/src/quest_editor/scripting/vm/index.ts +++ b/src/quest_editor/scripting/vm/index.ts @@ -101,6 +101,7 @@ const ARG_STACK_SLOT_SIZE = 4; const ARG_STACK_LENGTH = 8; const STRING_ARG_STORE_ADDRESS = 0x00a92700; const STRING_ARG_STORE_SIZE = 1024; // TODO: verify this value +const FLOAT_EPSILON = 1.19e-07; export enum ExecutionResult { Ok, @@ -635,6 +636,9 @@ export class VirtualMachine { literal: number, op: BinaryNumericOperation, ): void { + if ((op === numeric_ops.div || op === numeric_ops.idiv) && literal === 0) { + throw new Error("Division by zero"); + } this.set_register_signed(reg, op(this.get_register_signed(reg), literal)); }