codebased/include/scirpt/bytecode.h
2023-04-25 02:13:20 +02:00

39 lines
878 B
C

#ifndef SCIRPT_BYTECODE_H
#define SCIRPT_BYTECODE_H
#include "common/array.h"
#include "common/string.h"
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
typedef enum {
ScirptInstructionTypeReserve,
ScirptInstructionTypePushInt,
ScirptInstructionTypePushFloat,
ScirptInstructionTypePushString,
ScirptInstructionTypePushBool,
ScirptInstructionTypePop,
ScirptInstructionTypeAdd,
ScirptInstructionTypeSubtract,
ScirptInstructionTypeMultiply,
ScirptInstructionTypeDivide,
ScirptInstructionTypeModulo,
ScirptInstructionTypeExponent,
} ScirptInstructionType;
typedef struct {
ScirptInstructionType type;
union {
size_t reserve_amount;
int64_t push_int_value;
double push_float_value;
HeapString push_string_value;
bool push_bool_value;
};
} ScirptInstruction;
ARRAY(ScirptInstruction, ScirptInstructionArray, scirpt_instruction_array)
#endif