add compiler

This commit is contained in:
SimonFJ20 2023-04-20 02:06:03 +02:00
parent dc7aee91ce
commit e6348643d2
4 changed files with 42 additions and 1 deletions

View File

@ -17,7 +17,7 @@ all: compile_flags.txt dirs scirpt lommereimar
COMMON_SRC = string.c stringmap.c COMMON_SRC = string.c stringmap.c
COMMON_OBJ = $(patsubst %.c, build/common/%.o, $(COMMON_SRC)) COMMON_OBJ = $(patsubst %.c, build/common/%.o, $(COMMON_SRC))
SCIRPT_SRC = main.c lexer.c ast.c parser.c SCIRPT_SRC = main.c lexer.c ast.c parser.c compiler.c
SCIRPT_OBJ = $(patsubst %.c, build/scirpt/%.o, $(SCIRPT_SRC)) SCIRPT_OBJ = $(patsubst %.c, build/scirpt/%.o, $(SCIRPT_SRC))
scirpt: $(SCIRPT_OBJ) $(COMMON_OBJ) scirpt: $(SCIRPT_OBJ) $(COMMON_OBJ)

1
compiler.c Normal file
View File

@ -0,0 +1 @@
#include "compiler.h"

5
compiler.h Normal file
View File

@ -0,0 +1,5 @@
#ifndef COMPILER_H
#define COMPILER_H
#endif
:wa

35
scirpt/bytecode.h Normal file
View File

@ -0,0 +1,35 @@
#ifndef BYTECODE_H
#define BYTECODE_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;
#endif