2016-05-19 10:42:39 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <inttypes.h>
|
|
|
|
|
|
|
|
#if defined(__cplusplus)
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(VM_STACKSIZE)
|
|
|
|
#define VM_STACKSIZE 64
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Binary Encoding : (enabled, value)
|
|
|
|
#define VM_EXEC_X 0
|
|
|
|
#define VM_EXEC_0 2
|
|
|
|
#define VM_EXEC_1 3
|
|
|
|
|
|
|
|
#define VM_INPUT_ZERO 0
|
|
|
|
#define VM_INPUT_POP 1
|
|
|
|
#define VM_INPUT_PEEK 2
|
|
|
|
#define VM_INPUT_ARG 3
|
|
|
|
|
|
|
|
#define VM_CMD_COPY 0
|
|
|
|
#define VM_CMD_STORE 1
|
|
|
|
#define VM_CMD_LOAD 2
|
|
|
|
#define VM_CMD_GET 3
|
|
|
|
#define VM_CMD_SET 4
|
|
|
|
#define VM_CMD_BPGET 5
|
|
|
|
#define VM_CMD_BPSET 6
|
|
|
|
#define VM_CMD_RSTSTACK 7
|
|
|
|
#define VM_CMD_MATH 8
|
|
|
|
#define VM_CMD_SPGET 9
|
|
|
|
#define VM_CMD_SPSET 10
|
|
|
|
|
|
|
|
#define VM_MATH_ADD 0
|
|
|
|
#define VM_MATH_SUB 1
|
|
|
|
#define VM_MATH_MUL 2
|
|
|
|
#define VM_MATH_DIV 3
|
|
|
|
#define VM_MATH_MOD 4
|
|
|
|
#define VM_MATH_AND 5
|
|
|
|
#define VM_MATH_OR 6
|
|
|
|
#define VM_MATH_XOR 7
|
|
|
|
#define VM_MATH_NOT 8
|
|
|
|
#define VM_MATH_ROL 9
|
|
|
|
#define VM_MATH_ROR 10
|
|
|
|
#define VM_MATH_ASL 11
|
|
|
|
#define VM_MATH_ASR 12
|
|
|
|
#define VM_MATH_SHL 13
|
|
|
|
#define VM_MATH_SHR 14
|
|
|
|
|
|
|
|
#define VM_FLAG_NO 0
|
2016-05-19 12:09:15 +00:00
|
|
|
#define VM_FLAG_YES 1
|
2016-05-19 10:42:39 +00:00
|
|
|
|
|
|
|
#define VM_OUTPUT_DISCARD 0
|
|
|
|
#define VM_OUTPUT_PUSH 1
|
|
|
|
#define VM_OUTPUT_JUMP 2
|
|
|
|
|
2016-05-19 12:09:15 +00:00
|
|
|
#define VM_FLAG_Z (1<<0)
|
|
|
|
#define VM_FLAG_N (1<<1)
|
|
|
|
|
2016-05-19 10:42:39 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
unsigned int execZ : 2;
|
|
|
|
unsigned int execN : 2;
|
|
|
|
unsigned int input0 : 2;
|
|
|
|
unsigned int input1 : 1;
|
|
|
|
unsigned int command : 6;
|
|
|
|
unsigned int cmdinfo : 16;
|
|
|
|
unsigned int flags : 1;
|
|
|
|
unsigned int output : 2;
|
|
|
|
uint32_t argument;
|
|
|
|
} __attribute__ ((packed)) Instruction;
|
|
|
|
|
|
|
|
_Static_assert(sizeof(Instruction) == 8, "Instruction must be 8 bytes large.");
|
|
|
|
_Static_assert(offsetof(Instruction, argument) == 4, "Argument must be must be 8 bytes large.");
|
|
|
|
|
2016-05-19 11:19:38 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
Instruction *code;
|
|
|
|
uint32_t length;
|
|
|
|
} Module;
|
|
|
|
|
2016-05-19 10:42:39 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
2016-05-19 11:19:38 +00:00
|
|
|
Module *module;
|
|
|
|
|
2016-05-19 10:42:39 +00:00
|
|
|
uint32_t codePointer;
|
|
|
|
uint32_t stackPointer;
|
|
|
|
uint32_t basePointer;
|
|
|
|
uint32_t flags;
|
|
|
|
|
|
|
|
uint32_t stack[VM_STACKSIZE];
|
|
|
|
} Process;
|
|
|
|
|
2016-05-19 11:19:38 +00:00
|
|
|
/**
|
|
|
|
* @brief Steps a given process.
|
|
|
|
*
|
|
|
|
* Executes a single instruction and processes input and output.
|
|
|
|
*
|
|
|
|
* @param process The process to be stepped.
|
|
|
|
* @returns 1 if the process is still running or 0 if the process is terminated.
|
|
|
|
*/
|
|
|
|
int vm_step_process(Process *process);
|
|
|
|
|
2016-05-19 12:09:15 +00:00
|
|
|
/**
|
|
|
|
* @brief Pushes a value onto the process' stack.
|
|
|
|
*/
|
2016-05-19 11:19:38 +00:00
|
|
|
void vm_push(Process *process, uint32_t value);
|
|
|
|
|
2016-05-19 12:09:15 +00:00
|
|
|
/**
|
|
|
|
* @brief Pops a value from the process' stack.
|
|
|
|
*/
|
2016-05-19 11:19:38 +00:00
|
|
|
uint32_t vm_pop(Process *process);
|
2016-05-19 10:42:39 +00:00
|
|
|
|
2016-05-19 12:09:15 +00:00
|
|
|
/**
|
|
|
|
* @brief Returns the top value of the process' stack.
|
|
|
|
*/
|
2016-05-19 11:19:38 +00:00
|
|
|
uint32_t vm_peek(Process *process);
|
2016-05-19 10:42:39 +00:00
|
|
|
|
2016-05-19 11:19:38 +00:00
|
|
|
void vm_assert(int assertion, const char *msg);
|
2016-05-19 10:42:39 +00:00
|
|
|
|
|
|
|
#if defined(__cplusplus)
|
|
|
|
}
|
|
|
|
#endif
|