[VM] Allow last instruction to return an ExecutionResult other than Halted.

The next call to execute will then be a no-op and return Halted.
This commit is contained in:
jtuu 2019-11-11 18:07:26 +02:00
parent 87cabac307
commit b8db5d46fc

View File

@ -236,6 +236,9 @@ export class VirtualMachine {
*/
execute(): ExecutionResult {
let srcloc: AsmToken | undefined;
if (this.thread.length === 0) return ExecutionResult.Halted;
try {
const exec = this.thread[this.thread_idx];
const inst = this.get_next_instruction_from_thread(exec);
@ -262,7 +265,6 @@ export class VirtualMachine {
inst: Instruction,
srcloc?: AsmToken,
): ExecutionResult {
if (this.thread.length === 0) return ExecutionResult.Halted;
if (this.thread_idx >= this.thread.length) return ExecutionResult.WaitingVsync;
let result = ExecutionResult.Ok;
@ -694,8 +696,6 @@ export class VirtualMachine {
}
}
if (this.thread.length === 0) return ExecutionResult.Halted;
if (this.thread_idx >= this.thread.length) return ExecutionResult.WaitingVsync;
return result;
}