mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 14:54:07 +10:00
The 'source' directory compiles, but the repl and tests are almost
untouched so far. There's no guarantee that the code in 'source' is
correct, so I'm branching this for a short time, until I'm confident the
whole project passes the CI again.
I'm adjusting the concepts of routines and bytecode to make them more
consistent, and tweaking the VM so it loads from an instance of
'Toy_Module'.
* 'Toy_ModuleBuilder' (formally 'Toy_Routine')
This is where the AST is compiled, producing a chunk of memory that can
be read by the VM. This will eventually operate on individual
user-defined functions as well.
* 'Toy_ModuleBundle' (formally 'Toy_Bytecode')
This collects one or more otherwise unrelated modules into one chunk of
memory, stored in sequence. It is also preprended with the version data for
Toy's reference implementation:
For each byte in the bytecode:
0th: TOY_VERSION_MAJOR
1st: TOY_VERSION_MINOR
2nd: TOY_VERSION_PATCH
3rd: (the number of modules in the bundle)
4th and onwards: TOY_VERSION_BUILD
TOY_VERSION_BUILD has always been a null terminated C-string, but from
here on, it begins at the word-alignment, and continues until the first
word-alignment after the null terminator.
As for the 3rd byte listed, since having more than 256 modules in one
bundle seems unlikely, I'm storing the count here, as it was otherwise
unused. This is a bit janky, but it works for now.
* 'Toy_Module'
This new structure represents a single complete unit of operation, such
as a single source file, or a user-defined function. It is divided into
three main sections, with various sub-sections.
HEADER (all members are unsigned ints):
total module size in bytes
jumps count
param count
data count
subs count
code addr
jumps addr (if jumps count > 0)
param addr (if param count > 0)
data addr (if data count > 0)
subs addr (if subs count > 0)
BODY:
<raw opcodes, etc.>
DATA:
jumps table
uint array, pointing to addresses in 'data' or 'subs'
param table
uint array, pointing to addresses in 'data'
data
heterogeneous data, including strings
subs
an array of modules, using recursive logic
The reference implementation as a whole uses a lot of recursion, so this
makes sense.
The goal of this rework is so 'Toy_Module' can be added as a member of
'Toy_Value', as a simple and logical way to handle functions. I'll
probably use the union pattern, similarly to Toy_String, so functions
can be written in C and Toy, and used without needing to worry which is
which.
1164 lines
34 KiB
C
1164 lines
34 KiB
C
#include "toy_module_builder.h"
|
|
#include "toy_console_colors.h"
|
|
|
|
#include "toy_opcodes.h"
|
|
#include "toy_value.h"
|
|
#include "toy_string.h"
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
//misc. utils
|
|
static bool checkForChaining(Toy_Ast* ptr) {
|
|
//BUGFIX
|
|
if (ptr == NULL) {
|
|
return false;
|
|
}
|
|
|
|
if (ptr->type == TOY_AST_VAR_ASSIGN) {
|
|
return true;
|
|
}
|
|
|
|
if (ptr->type == TOY_AST_UNARY) {
|
|
if (ptr->unary.flag >= TOY_AST_FLAG_PREFIX_INCREMENT && ptr->unary.flag <= TOY_AST_FLAG_POSTFIX_DECREMENT) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
//escapes
|
|
void* Toy_private_resizeEscapeArray(Toy_private_EscapeArray* ptr, unsigned int capacity) {
|
|
//if you're freeing everything, just return
|
|
if (capacity == 0) {
|
|
free(ptr);
|
|
return NULL;
|
|
}
|
|
|
|
unsigned int originalCapacity = ptr == NULL ? 0 : ptr->capacity;
|
|
unsigned int orignalCount = ptr == NULL ? 0 : ptr->count;
|
|
|
|
ptr = (Toy_private_EscapeArray*)realloc(ptr, capacity * sizeof(Toy_private_EscapeEntry_t) + sizeof(Toy_private_EscapeArray));
|
|
|
|
if (ptr == NULL) {
|
|
fprintf(stderr, TOY_CC_ERROR "ERROR: Failed to resize an escape array within 'Toy_ModuleBuilder' from %d to %d capacity\n" TOY_CC_RESET, (int)originalCapacity, (int)capacity);
|
|
exit(-1);
|
|
}
|
|
|
|
ptr->capacity = capacity;
|
|
ptr->count = orignalCount;
|
|
|
|
return ptr;
|
|
}
|
|
|
|
//writing utils
|
|
static void expand(unsigned char** handle, unsigned int* capacity, unsigned int* count, unsigned int amount) {
|
|
if ((*count) + amount > (*capacity)) {
|
|
while ((*count) + amount > (*capacity)) {
|
|
(*capacity) = (*capacity) < 8 ? 8 : (*capacity) * 2;
|
|
}
|
|
(*handle) = realloc((*handle), (*capacity));
|
|
|
|
if ((*handle) == NULL) {
|
|
fprintf(stderr, TOY_CC_ERROR "ERROR: Failed to allocate %d space for a part of 'Toy_ModuleBuilder'\n" TOY_CC_RESET, (int)(*capacity));
|
|
exit(1);
|
|
}
|
|
}
|
|
}
|
|
|
|
static void emitByte(unsigned char** handle, unsigned int* capacity, unsigned int* count, unsigned char byte) {
|
|
expand(handle, capacity, count, 1);
|
|
((unsigned char*)(*handle))[(*count)++] = byte;
|
|
}
|
|
|
|
static void emitInt(unsigned char** handle, unsigned int* capacity, unsigned int* count, unsigned int bytes) {
|
|
char* ptr = (char*)&bytes;
|
|
emitByte(handle, capacity, count, *(ptr++));
|
|
emitByte(handle, capacity, count, *(ptr++));
|
|
emitByte(handle, capacity, count, *(ptr++));
|
|
emitByte(handle, capacity, count, *(ptr++));
|
|
}
|
|
|
|
static void emitFloat(unsigned char** handle, unsigned int* capacity, unsigned int* count, float bytes) {
|
|
char* ptr = (char*)&bytes;
|
|
emitByte(handle, capacity, count, *(ptr++));
|
|
emitByte(handle, capacity, count, *(ptr++));
|
|
emitByte(handle, capacity, count, *(ptr++));
|
|
emitByte(handle, capacity, count, *(ptr++));
|
|
}
|
|
|
|
//curry writing utils
|
|
#define EMIT_BYTE(mb, part, byte) \
|
|
emitByte((&((*mb)->part)), &((*mb)->part##Capacity), &((*mb)->part##Count), byte)
|
|
#define EMIT_INT(mb, part, bytes) \
|
|
emitInt((&((*mb)->part)), &((*mb)->part##Capacity), &((*mb)->part##Count), bytes)
|
|
#define EMIT_FLOAT(mb, part, bytes) \
|
|
emitFloat((&((*mb)->part)), &((*mb)->part##Capacity), &((*mb)->part##Count), bytes)
|
|
|
|
//skip bytes, but return the address
|
|
#define SKIP_BYTE(mb, part) (EMIT_BYTE(mb, part, 0), ((*mb)->part##Count - 1))
|
|
#define SKIP_INT(mb, part) (EMIT_INT(mb, part, 0), ((*mb)->part##Count - 4))
|
|
|
|
//overwrite a pre-existing position
|
|
#define OVERWRITE_INT(mb, part, addr, bytes) \
|
|
emitInt((&((*mb)->part)), &((*mb)->part##Capacity), &(addr), bytes);
|
|
|
|
//simply get the address (always an integer)
|
|
#define CURRENT_ADDRESS(mb, part) ((*mb)->part##Count)
|
|
|
|
static void emitToJumpTable(Toy_ModuleBuilder** mb, unsigned int startAddr) {
|
|
EMIT_INT(mb, code, (*mb)->jumpsCount); //mark the jump index in the code
|
|
EMIT_INT(mb, jumps, startAddr); //save address at the jump index
|
|
}
|
|
|
|
static unsigned int emitString(Toy_ModuleBuilder** mb, Toy_String* str) {
|
|
//4-byte alignment
|
|
unsigned int length = str->info.length + 1;
|
|
if (length % 4 != 0) {
|
|
length += 4 - (length % 4); //ceil
|
|
}
|
|
|
|
//grab the current start address
|
|
unsigned int startAddr = (*mb)->dataCount;
|
|
|
|
//move the string into the data section
|
|
expand((&((*mb)->data)), &((*mb)->dataCapacity), &((*mb)->dataCount), length);
|
|
|
|
if (str->info.type == TOY_STRING_NODE) {
|
|
char* buffer = Toy_getStringRawBuffer(str);
|
|
memcpy((*mb)->data + (*mb)->dataCount, buffer, str->info.length + 1);
|
|
free(buffer);
|
|
}
|
|
else if (str->info.type == TOY_STRING_LEAF) {
|
|
memcpy((*mb)->data + (*mb)->dataCount, str->leaf.data, str->info.length + 1);
|
|
}
|
|
else if (str->info.type == TOY_STRING_NAME) {
|
|
memcpy((*mb)->data + (*mb)->dataCount, str->name.data, str->info.length + 1);
|
|
}
|
|
|
|
(*mb)->dataCount += length;
|
|
|
|
//mark the jump position
|
|
emitToJumpTable(mb, startAddr);
|
|
|
|
return 1;
|
|
}
|
|
|
|
static unsigned int writeModuleBuilderCode(Toy_ModuleBuilder** mb, Toy_Ast* ast); //forward declare for recursion
|
|
static unsigned int writeInstructionAssign(Toy_ModuleBuilder** mb, Toy_AstVarAssign ast, bool chainedAssignment); //forward declare for chaining of var declarations
|
|
|
|
static unsigned int writeInstructionValue(Toy_ModuleBuilder** mb, Toy_AstValue ast) {
|
|
EMIT_BYTE(mb, code, TOY_OPCODE_READ);
|
|
EMIT_BYTE(mb, code, ast.value.type);
|
|
|
|
//emit the raw value based on the type
|
|
if (TOY_VALUE_IS_NULL(ast.value)) {
|
|
//NOTHING - null's type data is enough
|
|
|
|
//4-byte alignment
|
|
EMIT_BYTE(mb, code, 0);
|
|
EMIT_BYTE(mb, code, 0);
|
|
}
|
|
else if (TOY_VALUE_IS_BOOLEAN(ast.value)) {
|
|
EMIT_BYTE(mb, code, TOY_VALUE_AS_BOOLEAN(ast.value));
|
|
|
|
//4-byte alignment
|
|
EMIT_BYTE(mb, code, 0);
|
|
}
|
|
else if (TOY_VALUE_IS_INTEGER(ast.value)) {
|
|
//4-byte alignment
|
|
EMIT_BYTE(mb, code, 0);
|
|
EMIT_BYTE(mb, code, 0);
|
|
|
|
EMIT_INT(mb, code, TOY_VALUE_AS_INTEGER(ast.value));
|
|
}
|
|
else if (TOY_VALUE_IS_FLOAT(ast.value)) {
|
|
//4-byte alignment
|
|
EMIT_BYTE(mb, code, 0);
|
|
EMIT_BYTE(mb, code, 0);
|
|
|
|
EMIT_FLOAT(mb, code, TOY_VALUE_AS_FLOAT(ast.value));
|
|
}
|
|
else if (TOY_VALUE_IS_STRING(ast.value)) {
|
|
//4-byte alignment
|
|
EMIT_BYTE(mb, code, TOY_STRING_LEAF); //normal string
|
|
EMIT_BYTE(mb, code, 0); //can't store the length
|
|
|
|
return emitString(mb, TOY_VALUE_AS_STRING(ast.value));
|
|
}
|
|
else {
|
|
fprintf(stderr, TOY_CC_ERROR "ERROR: Invalid AST type found: Unknown value type\n" TOY_CC_RESET);
|
|
exit(-1);
|
|
}
|
|
|
|
return 1;
|
|
}
|
|
|
|
static unsigned int writeInstructionUnary(Toy_ModuleBuilder** mb, Toy_AstUnary ast) {
|
|
unsigned int result = 0;
|
|
|
|
if (ast.flag == TOY_AST_FLAG_NEGATE) {
|
|
result = writeModuleBuilderCode(mb, ast.child);
|
|
|
|
EMIT_BYTE(mb, code, TOY_OPCODE_NEGATE);
|
|
|
|
//4-byte alignment
|
|
EMIT_BYTE(mb, code, 0);
|
|
EMIT_BYTE(mb, code, 0);
|
|
EMIT_BYTE(mb, code, 0);
|
|
}
|
|
|
|
else if (ast.flag == TOY_AST_FLAG_PREFIX_INCREMENT || ast.flag == TOY_AST_FLAG_PREFIX_DECREMENT) { //NOTE: tightly coupled to the parser's logic, and somewhat duplicates ACCESS
|
|
//read the var name onto the stack
|
|
Toy_String* name = TOY_VALUE_AS_STRING(ast.child->value.value);
|
|
|
|
EMIT_BYTE(mb, code, TOY_OPCODE_READ);
|
|
EMIT_BYTE(mb, code, TOY_VALUE_STRING);
|
|
EMIT_BYTE(mb, code, TOY_STRING_NAME);
|
|
EMIT_BYTE(mb, code, name->info.length); //store the length (max 255)
|
|
|
|
emitString(mb, name);
|
|
|
|
//duplicate the var name, then get the value
|
|
EMIT_BYTE(mb, code,TOY_OPCODE_DUPLICATE);
|
|
EMIT_BYTE(mb, code, TOY_OPCODE_ACCESS); //squeezed
|
|
EMIT_BYTE(mb, code, 0);
|
|
EMIT_BYTE(mb, code, 0);
|
|
|
|
//read the integer '1'
|
|
EMIT_BYTE(mb, code, TOY_OPCODE_READ);
|
|
EMIT_BYTE(mb, code, TOY_VALUE_INTEGER);
|
|
EMIT_BYTE(mb, code, 0);
|
|
EMIT_BYTE(mb, code, 0);
|
|
|
|
EMIT_INT(mb, code, 1);
|
|
|
|
//add (or subtract) the two values, then assign (pops the second duplicate, and leaves value on the stack)
|
|
EMIT_BYTE(mb, code, ast.flag == TOY_AST_FLAG_PREFIX_INCREMENT ? TOY_OPCODE_ADD : TOY_OPCODE_SUBTRACT);
|
|
EMIT_BYTE(mb, code,TOY_OPCODE_ASSIGN); //squeezed
|
|
EMIT_BYTE(mb, code,1);
|
|
EMIT_BYTE(mb, code,0);
|
|
|
|
//leaves one value on the stack
|
|
result = 1;
|
|
}
|
|
|
|
else if (ast.flag == TOY_AST_FLAG_POSTFIX_INCREMENT || ast.flag == TOY_AST_FLAG_POSTFIX_DECREMENT) { //NOTE: ditto
|
|
//read the var name onto the stack
|
|
Toy_String* name = TOY_VALUE_AS_STRING(ast.child->value.value);
|
|
|
|
EMIT_BYTE(mb, code, TOY_OPCODE_READ);
|
|
EMIT_BYTE(mb, code, TOY_VALUE_STRING);
|
|
EMIT_BYTE(mb, code, TOY_STRING_NAME);
|
|
EMIT_BYTE(mb, code, name->info.length); //store the length (max 255)
|
|
|
|
emitString(mb, name);
|
|
|
|
//access the value (postfix++ and postfix--)
|
|
EMIT_BYTE(mb, code, TOY_OPCODE_ACCESS);
|
|
EMIT_BYTE(mb, code,0);
|
|
EMIT_BYTE(mb, code,0);
|
|
EMIT_BYTE(mb, code,0);
|
|
|
|
//read the var name onto the stack (again)
|
|
name = TOY_VALUE_AS_STRING(ast.child->value.value);
|
|
|
|
EMIT_BYTE(mb, code, TOY_OPCODE_READ);
|
|
EMIT_BYTE(mb, code, TOY_VALUE_STRING);
|
|
EMIT_BYTE(mb, code, TOY_STRING_NAME);
|
|
EMIT_BYTE(mb, code, name->info.length); //store the length (max 255)
|
|
|
|
emitString(mb, name);
|
|
|
|
//duplicate the var name, then get the value
|
|
EMIT_BYTE(mb, code,TOY_OPCODE_DUPLICATE);
|
|
EMIT_BYTE(mb, code, TOY_OPCODE_ACCESS); //squeezed
|
|
EMIT_BYTE(mb, code,0);
|
|
EMIT_BYTE(mb, code,0);
|
|
|
|
//read the integer '1'
|
|
EMIT_BYTE(mb, code, TOY_OPCODE_READ);
|
|
EMIT_BYTE(mb, code, TOY_VALUE_INTEGER);
|
|
EMIT_BYTE(mb, code, 0);
|
|
EMIT_BYTE(mb, code, 0);
|
|
|
|
EMIT_INT(mb, code, 1);
|
|
|
|
//add (or subtract) the two values, then assign (pops the second duplicate)
|
|
EMIT_BYTE(mb, code, ast.flag == TOY_AST_FLAG_POSTFIX_INCREMENT ? TOY_OPCODE_ADD : TOY_OPCODE_SUBTRACT);
|
|
EMIT_BYTE(mb, code,TOY_OPCODE_ASSIGN); //squeezed
|
|
EMIT_BYTE(mb, code,0);
|
|
EMIT_BYTE(mb, code,0);
|
|
|
|
//leaves one value on the stack
|
|
result = 1;
|
|
}
|
|
|
|
else {
|
|
fprintf(stderr, TOY_CC_ERROR "ERROR: Invalid AST unary flag found\n" TOY_CC_RESET);
|
|
exit(-1);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
static unsigned int writeInstructionBinary(Toy_ModuleBuilder** mb, Toy_AstBinary ast) {
|
|
//left, then right, then the binary's operation
|
|
writeModuleBuilderCode(mb, ast.left);
|
|
writeModuleBuilderCode(mb, ast.right);
|
|
|
|
if (ast.flag == TOY_AST_FLAG_ADD) {
|
|
EMIT_BYTE(mb, code,TOY_OPCODE_ADD);
|
|
}
|
|
else if (ast.flag == TOY_AST_FLAG_SUBTRACT) {
|
|
EMIT_BYTE(mb, code,TOY_OPCODE_SUBTRACT);
|
|
}
|
|
else if (ast.flag == TOY_AST_FLAG_MULTIPLY) {
|
|
EMIT_BYTE(mb, code,TOY_OPCODE_MULTIPLY);
|
|
}
|
|
else if (ast.flag == TOY_AST_FLAG_DIVIDE) {
|
|
EMIT_BYTE(mb, code,TOY_OPCODE_DIVIDE);
|
|
}
|
|
else if (ast.flag == TOY_AST_FLAG_MODULO) {
|
|
EMIT_BYTE(mb, code,TOY_OPCODE_MODULO);
|
|
}
|
|
|
|
else if (ast.flag == TOY_AST_FLAG_CONCAT) {
|
|
EMIT_BYTE(mb, code, TOY_OPCODE_CONCAT);
|
|
}
|
|
else {
|
|
fprintf(stderr, TOY_CC_ERROR "ERROR: Invalid AST binary flag found\n" TOY_CC_RESET);
|
|
exit(-1);
|
|
}
|
|
|
|
//4-byte alignment
|
|
EMIT_BYTE(mb, code,TOY_OPCODE_PASS); //checked in combined assignments
|
|
EMIT_BYTE(mb, code,0);
|
|
EMIT_BYTE(mb, code,0);
|
|
|
|
return 1; //leaves only 1 value on the stack
|
|
}
|
|
|
|
static unsigned int writeInstructionBinaryShortCircuit(Toy_ModuleBuilder** mb, Toy_AstBinaryShortCircuit ast) {
|
|
//lhs
|
|
writeModuleBuilderCode(mb, ast.left);
|
|
|
|
//duplicate the top (so the lhs can be 'returned' by this expression, if needed)
|
|
EMIT_BYTE(mb, code,TOY_OPCODE_DUPLICATE);
|
|
EMIT_BYTE(mb, code, 0);
|
|
EMIT_BYTE(mb, code, 0);
|
|
EMIT_BYTE(mb, code, 0);
|
|
|
|
// && return the first falsy operand, or the last operand
|
|
if (ast.flag == TOY_AST_FLAG_AND) {
|
|
EMIT_BYTE(mb, code, TOY_OPCODE_JUMP);
|
|
EMIT_BYTE(mb, code, TOY_OP_PARAM_JUMP_RELATIVE);
|
|
EMIT_BYTE(mb, code, TOY_OP_PARAM_JUMP_IF_FALSE);
|
|
EMIT_BYTE(mb, code, 0);
|
|
}
|
|
|
|
// || return the first truthy operand, or the last operand
|
|
else if (ast.flag == TOY_AST_FLAG_OR) {
|
|
EMIT_BYTE(mb, code, TOY_OPCODE_JUMP);
|
|
EMIT_BYTE(mb, code, TOY_OP_PARAM_JUMP_RELATIVE);
|
|
EMIT_BYTE(mb, code, TOY_OP_PARAM_JUMP_IF_TRUE);
|
|
EMIT_BYTE(mb, code, 0);
|
|
}
|
|
|
|
else {
|
|
fprintf(stderr, TOY_CC_ERROR "ERROR: Invalid AST binary short circuit flag found\n" TOY_CC_RESET);
|
|
exit(-1);
|
|
}
|
|
|
|
//parameter address
|
|
unsigned int paramAddr = SKIP_INT(mb, code); //parameter to be written later
|
|
|
|
//if the lhs value isn't needed, pop it
|
|
EMIT_BYTE(mb, code,TOY_OPCODE_ELIMINATE);
|
|
EMIT_BYTE(mb, code, 0);
|
|
EMIT_BYTE(mb, code, 0);
|
|
EMIT_BYTE(mb, code, 0);
|
|
|
|
//rhs
|
|
writeModuleBuilderCode(mb, ast.right);
|
|
|
|
//set the parameter
|
|
OVERWRITE_INT(mb, code, paramAddr, CURRENT_ADDRESS(mb, code) - (paramAddr + 4));
|
|
|
|
return 1; //leaves only 1 value on the stack
|
|
}
|
|
|
|
static unsigned int writeInstructionCompare(Toy_ModuleBuilder** mb, Toy_AstCompare ast) {
|
|
//left, then right, then the compare's operation
|
|
writeModuleBuilderCode(mb, ast.left);
|
|
writeModuleBuilderCode(mb, ast.right);
|
|
|
|
if (ast.flag == TOY_AST_FLAG_COMPARE_EQUAL) {
|
|
EMIT_BYTE(mb, code,TOY_OPCODE_COMPARE_EQUAL);
|
|
}
|
|
else if (ast.flag == TOY_AST_FLAG_COMPARE_NOT) {
|
|
EMIT_BYTE(mb, code,TOY_OPCODE_COMPARE_EQUAL);
|
|
EMIT_BYTE(mb, code,TOY_OPCODE_NEGATE); //squeezed
|
|
EMIT_BYTE(mb, code,0);
|
|
EMIT_BYTE(mb, code,0);
|
|
|
|
return 1;
|
|
}
|
|
else if (ast.flag == TOY_AST_FLAG_COMPARE_LESS) {
|
|
EMIT_BYTE(mb, code,TOY_OPCODE_COMPARE_LESS);
|
|
}
|
|
else if (ast.flag == TOY_AST_FLAG_COMPARE_LESS_EQUAL) {
|
|
EMIT_BYTE(mb, code,TOY_OPCODE_COMPARE_LESS_EQUAL);
|
|
}
|
|
else if (ast.flag == TOY_AST_FLAG_COMPARE_GREATER) {
|
|
EMIT_BYTE(mb, code,TOY_OPCODE_COMPARE_GREATER);
|
|
}
|
|
else if (ast.flag == TOY_AST_FLAG_COMPARE_GREATER_EQUAL) {
|
|
EMIT_BYTE(mb, code,TOY_OPCODE_COMPARE_GREATER_EQUAL);
|
|
}
|
|
|
|
else {
|
|
fprintf(stderr, TOY_CC_ERROR "ERROR: Invalid AST compare flag found\n" TOY_CC_RESET);
|
|
exit(-1);
|
|
}
|
|
|
|
//4-byte alignment (covers most cases)
|
|
EMIT_BYTE(mb, code,0);
|
|
EMIT_BYTE(mb, code,0);
|
|
EMIT_BYTE(mb, code,0);
|
|
|
|
return 1; //leaves only 1 value on the stack
|
|
}
|
|
|
|
static unsigned int writeInstructionGroup(Toy_ModuleBuilder** mb, Toy_AstGroup ast) {
|
|
//not certain what this leaves
|
|
return writeModuleBuilderCode(mb, ast.child);
|
|
}
|
|
|
|
static unsigned int writeInstructionCompound(Toy_ModuleBuilder** mb, Toy_AstCompound ast) {
|
|
unsigned int result = writeModuleBuilderCode(mb, ast.child);
|
|
|
|
if (ast.flag == TOY_AST_FLAG_COMPOUND_ARRAY) {
|
|
//signal how many values to read in as array elements
|
|
EMIT_BYTE(mb, code, TOY_OPCODE_READ);
|
|
EMIT_BYTE(mb, code, TOY_VALUE_ARRAY);
|
|
|
|
//4-byte alignment
|
|
EMIT_BYTE(mb, code,0);
|
|
EMIT_BYTE(mb, code,0);
|
|
|
|
//how many elements
|
|
EMIT_INT(mb, code, result);
|
|
|
|
return 1; //leaves only 1 value on the stack
|
|
}
|
|
if (ast.flag == TOY_AST_FLAG_COMPOUND_TABLE) {
|
|
//signal how many values to read in as table elements
|
|
EMIT_BYTE(mb, code, TOY_OPCODE_READ);
|
|
EMIT_BYTE(mb, code, TOY_VALUE_TABLE);
|
|
|
|
//4-byte alignment
|
|
EMIT_BYTE(mb, code,0);
|
|
EMIT_BYTE(mb, code,0);
|
|
|
|
//how many elements
|
|
EMIT_INT(mb, code, result);
|
|
|
|
return 1; //leaves only 1 value on the stack
|
|
}
|
|
else {
|
|
fprintf(stderr, TOY_CC_ERROR "ERROR: Invalid AST compound flag found\n" TOY_CC_RESET);
|
|
exit(-1);
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
static unsigned int writeInstructionAggregate(Toy_ModuleBuilder** mb, Toy_AstAggregate ast) {
|
|
unsigned int result = 0;
|
|
|
|
//left, then right
|
|
result += writeModuleBuilderCode(mb, ast.left);
|
|
result += writeModuleBuilderCode(mb, ast.right);
|
|
|
|
if (ast.flag == TOY_AST_FLAG_COLLECTION) {
|
|
//collections are handled above
|
|
return result;
|
|
}
|
|
else if (ast.flag == TOY_AST_FLAG_PAIR) {
|
|
//pairs are handled above
|
|
return result;
|
|
}
|
|
else if (ast.flag == TOY_AST_FLAG_INDEX) {
|
|
//value[index, length]
|
|
EMIT_BYTE(mb, code, TOY_OPCODE_INDEX);
|
|
EMIT_BYTE(mb, code, result);
|
|
|
|
//4-byte alignment
|
|
EMIT_BYTE(mb, code,0);
|
|
EMIT_BYTE(mb, code,0);
|
|
|
|
return 1; //leaves only 1 value on the stack
|
|
}
|
|
else {
|
|
fprintf(stderr, TOY_CC_ERROR "ERROR: Invalid AST aggregate flag found\n" TOY_CC_RESET);
|
|
exit(-1);
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
static unsigned int writeInstructionAssert(Toy_ModuleBuilder** mb, Toy_AstAssert ast) {
|
|
//the thing to print
|
|
writeModuleBuilderCode(mb, ast.child);
|
|
writeModuleBuilderCode(mb, ast.message);
|
|
|
|
//output the print opcode
|
|
EMIT_BYTE(mb, code, TOY_OPCODE_ASSERT);
|
|
|
|
//4-byte alignment
|
|
EMIT_BYTE(mb, code, ast.message != NULL ? 2 : 1); //arg count
|
|
EMIT_BYTE(mb, code,0);
|
|
EMIT_BYTE(mb, code,0);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static unsigned int writeInstructionIfThenElse(Toy_ModuleBuilder** mb, Toy_AstIfThenElse ast) {
|
|
//cond-branch
|
|
writeModuleBuilderCode(mb, ast.condBranch);
|
|
|
|
//emit the jump word (opcode, type, condition, padding)
|
|
EMIT_BYTE(mb, code, TOY_OPCODE_JUMP);
|
|
EMIT_BYTE(mb, code, TOY_OP_PARAM_JUMP_RELATIVE);
|
|
EMIT_BYTE(mb, code, TOY_OP_PARAM_JUMP_IF_FALSE);
|
|
EMIT_BYTE(mb, code, 0);
|
|
|
|
unsigned int thenParamAddr = SKIP_INT(mb, code); //parameter to be written later
|
|
|
|
//emit then-branch
|
|
writeModuleBuilderCode(mb, ast.thenBranch);
|
|
|
|
if (ast.elseBranch != NULL) {
|
|
//emit the jump-to-end (opcode, type, condition, padding)
|
|
EMIT_BYTE(mb, code, TOY_OPCODE_JUMP);
|
|
EMIT_BYTE(mb, code, TOY_OP_PARAM_JUMP_RELATIVE);
|
|
EMIT_BYTE(mb, code, TOY_OP_PARAM_JUMP_ALWAYS);
|
|
EMIT_BYTE(mb, code, 0);
|
|
|
|
unsigned int elseParamAddr = SKIP_INT(mb, code); //parameter to be written later
|
|
|
|
//specify the starting position for the else branch
|
|
OVERWRITE_INT(mb, code, thenParamAddr, CURRENT_ADDRESS(mb, code) - (thenParamAddr + 4));
|
|
|
|
//emit the else branch
|
|
writeModuleBuilderCode(mb, ast.elseBranch);
|
|
|
|
//specify the ending position for the else branch
|
|
OVERWRITE_INT(mb, code, elseParamAddr, CURRENT_ADDRESS(mb, code) - (elseParamAddr + 4));
|
|
}
|
|
|
|
else {
|
|
//without an else branch, set the jump destination and move on
|
|
OVERWRITE_INT(mb, code, thenParamAddr, CURRENT_ADDRESS(mb, code) - (thenParamAddr + 4));
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static unsigned int writeInstructionWhileThen(Toy_ModuleBuilder** mb, Toy_AstWhileThen ast) {
|
|
//begin
|
|
unsigned int beginAddr = CURRENT_ADDRESS(mb, code);
|
|
|
|
//cond-branch
|
|
writeModuleBuilderCode(mb, ast.condBranch);
|
|
|
|
//emit the jump word (opcode, type, condition, padding)
|
|
EMIT_BYTE(mb, code, TOY_OPCODE_JUMP);
|
|
EMIT_BYTE(mb, code, TOY_OP_PARAM_JUMP_RELATIVE);
|
|
EMIT_BYTE(mb, code, TOY_OP_PARAM_JUMP_IF_FALSE);
|
|
EMIT_BYTE(mb, code, 0);
|
|
|
|
unsigned int paramAddr = SKIP_INT(mb, code); //parameter to be written later
|
|
|
|
//emit then-branch
|
|
writeModuleBuilderCode(mb, ast.thenBranch);
|
|
|
|
//jump to begin to repeat the conditional test
|
|
EMIT_BYTE(mb, code, TOY_OPCODE_JUMP);
|
|
EMIT_BYTE(mb, code, TOY_OP_PARAM_JUMP_RELATIVE);
|
|
EMIT_BYTE(mb, code, TOY_OP_PARAM_JUMP_ALWAYS);
|
|
EMIT_BYTE(mb, code, 0);
|
|
|
|
EMIT_INT(mb, code, beginAddr - (CURRENT_ADDRESS(mb, code) + 4)); //this sets a negative value
|
|
|
|
//set the exit parameter for the cond
|
|
OVERWRITE_INT(mb, code, paramAddr, CURRENT_ADDRESS(mb, code) - (paramAddr + 4));
|
|
|
|
//set the break & continue data
|
|
while ((*mb)->breakEscapes->count > 0) {
|
|
//extract
|
|
unsigned int addr = (*mb)->breakEscapes->data[(*mb)->breakEscapes->count - 1].addr;
|
|
unsigned int depth = (*mb)->breakEscapes->data[(*mb)->breakEscapes->count - 1].depth;
|
|
|
|
unsigned int diff = depth - (*mb)->currentScopeDepth;
|
|
|
|
OVERWRITE_INT(mb, code, addr, CURRENT_ADDRESS(mb, code) - (addr + 8)); //tell break to come here AFTER reading the instruction
|
|
OVERWRITE_INT(mb, code, addr, diff);
|
|
|
|
//tick down
|
|
(*mb)->breakEscapes->count--;
|
|
}
|
|
|
|
while ((*mb)->continueEscapes->count > 0) {
|
|
//extract
|
|
unsigned int addr = (*mb)->continueEscapes->data[(*mb)->continueEscapes->count - 1].addr;
|
|
unsigned int depth = (*mb)->continueEscapes->data[(*mb)->continueEscapes->count - 1].depth;
|
|
|
|
unsigned int diff = depth - (*mb)->currentScopeDepth;
|
|
|
|
OVERWRITE_INT(mb, code, addr, CURRENT_ADDRESS(mb, code) - (addr + 8)); //tell continue to return to the start AFTER reading the instruction
|
|
OVERWRITE_INT(mb, code, addr, diff);
|
|
|
|
//tick down
|
|
(*mb)->continueEscapes->count--;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static unsigned int writeInstructionBreak(Toy_ModuleBuilder** mb, Toy_AstBreak ast) {
|
|
//unused
|
|
(void)ast;
|
|
|
|
//escapes are always relative
|
|
EMIT_BYTE(mb, code, TOY_OPCODE_ESCAPE);
|
|
EMIT_BYTE(mb, code, 0);
|
|
EMIT_BYTE(mb, code, 0);
|
|
EMIT_BYTE(mb, code, 0);
|
|
|
|
unsigned int addr = SKIP_INT(mb, code);
|
|
(void)SKIP_INT(mb, code); //empty space for depth
|
|
|
|
//expand the escape array if needed
|
|
if ((*mb)->breakEscapes->capacity <= (*mb)->breakEscapes->count) {
|
|
(*mb)->breakEscapes = Toy_private_resizeEscapeArray((*mb)->breakEscapes, (*mb)->breakEscapes->capacity * TOY_ESCAPE_EXPANSION_RATE);
|
|
}
|
|
|
|
//store for later
|
|
(*mb)->breakEscapes->data[(*mb)->breakEscapes->count++] = (Toy_private_EscapeEntry_t){ .addr = addr, .depth = (*mb)->currentScopeDepth };
|
|
|
|
return 0;
|
|
}
|
|
|
|
static unsigned int writeInstructionContinue(Toy_ModuleBuilder** mb, Toy_AstContinue ast) {
|
|
//unused
|
|
(void)ast;
|
|
|
|
//escapes are always relative
|
|
EMIT_BYTE(mb, code, TOY_OPCODE_ESCAPE);
|
|
EMIT_BYTE(mb, code, 0);
|
|
EMIT_BYTE(mb, code, 0);
|
|
EMIT_BYTE(mb, code, 0);
|
|
|
|
unsigned int addr = SKIP_INT(mb, code);
|
|
(void)SKIP_INT(mb, code); //empty space for depth
|
|
|
|
//expand the escape array if needed
|
|
if ((*mb)->continueEscapes->capacity <= (*mb)->continueEscapes->count) {
|
|
(*mb)->continueEscapes = Toy_private_resizeEscapeArray((*mb)->continueEscapes, (*mb)->continueEscapes->capacity * TOY_ESCAPE_EXPANSION_RATE);
|
|
}
|
|
|
|
//store for later
|
|
(*mb)->continueEscapes->data[(*mb)->continueEscapes->count++] = (Toy_private_EscapeEntry_t){ .addr = addr, .depth = (*mb)->currentScopeDepth };
|
|
|
|
return 0;
|
|
}
|
|
|
|
static unsigned int writeInstructionPrint(Toy_ModuleBuilder** mb, Toy_AstPrint ast) {
|
|
//the thing to print
|
|
writeModuleBuilderCode(mb, ast.child);
|
|
|
|
//output the print opcode
|
|
EMIT_BYTE(mb, code,TOY_OPCODE_PRINT);
|
|
|
|
//4-byte alignment
|
|
EMIT_BYTE(mb, code,0);
|
|
EMIT_BYTE(mb, code,0);
|
|
EMIT_BYTE(mb, code,0);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static unsigned int writeInstructionVarDeclare(Toy_ModuleBuilder** mb, Toy_AstVarDeclare ast) {
|
|
//if we're dealing with chained assignments, hijack the next assignment with 'chainedAssignment' set to true
|
|
if (checkForChaining(ast.expr)) {
|
|
writeInstructionAssign(mb, ast.expr->varAssign, true);
|
|
}
|
|
else {
|
|
writeModuleBuilderCode(mb, ast.expr); //default value
|
|
}
|
|
|
|
//delcare with the given name string
|
|
EMIT_BYTE(mb, code, TOY_OPCODE_DECLARE);
|
|
EMIT_BYTE(mb, code, Toy_getNameStringVarType(ast.name));
|
|
EMIT_BYTE(mb, code, ast.name->info.length); //quick optimisation to skip a 'strlen()' call
|
|
EMIT_BYTE(mb, code, Toy_getNameStringVarConstant(ast.name) ? 1 : 0); //check for constness
|
|
|
|
emitString(mb, ast.name);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static unsigned int writeInstructionAssign(Toy_ModuleBuilder** mb, Toy_AstVarAssign ast, bool chainedAssignment) {
|
|
unsigned int result = 0;
|
|
|
|
//target is a name string
|
|
if (ast.target->type == TOY_AST_VALUE && TOY_VALUE_IS_STRING(ast.target->value.value) && TOY_VALUE_AS_STRING(ast.target->value.value)->info.type == TOY_STRING_NAME) {
|
|
//name string
|
|
Toy_String* target = TOY_VALUE_AS_STRING(ast.target->value.value);
|
|
|
|
//emit the name string
|
|
EMIT_BYTE(mb, code, TOY_OPCODE_READ);
|
|
EMIT_BYTE(mb, code, TOY_VALUE_STRING);
|
|
EMIT_BYTE(mb, code, TOY_STRING_NAME);
|
|
EMIT_BYTE(mb, code, target->info.length); //store the length (max 255)
|
|
|
|
emitString(mb, target);
|
|
}
|
|
|
|
//target is an indexing of some compound value
|
|
else if (ast.target->type == TOY_AST_AGGREGATE && ast.target->aggregate.flag == TOY_AST_FLAG_INDEX) {
|
|
writeModuleBuilderCode(mb, ast.target->aggregate.left); //any deeper indexing will just work, using reference values
|
|
writeModuleBuilderCode(mb, ast.target->aggregate.right); //key
|
|
|
|
//if we're dealing with chained assignments, hijack the next assignment with 'chainedAssignment' set to true
|
|
if (checkForChaining(ast.expr)) {
|
|
result += writeInstructionAssign(mb, ast.expr->varAssign, true);
|
|
}
|
|
else {
|
|
result += writeModuleBuilderCode(mb, ast.expr); //default value
|
|
}
|
|
|
|
EMIT_BYTE(mb, code, TOY_OPCODE_ASSIGN_COMPOUND); //uses the top three values on the stack
|
|
EMIT_BYTE(mb, code, chainedAssignment);
|
|
EMIT_BYTE(mb, code,0);
|
|
EMIT_BYTE(mb, code,0);
|
|
|
|
return result + (chainedAssignment ? 1 : 0);
|
|
}
|
|
|
|
else {
|
|
//unknown target
|
|
fprintf(stderr, TOY_CC_ERROR "COMPILER ERROR: Invalid AST type found: Malformed assignment target\n" TOY_CC_RESET);
|
|
(*mb)->panic = true;
|
|
return 0;
|
|
}
|
|
|
|
//determine RHS, include duplication if needed
|
|
if (ast.flag == TOY_AST_FLAG_ASSIGN) {
|
|
//if we're dealing with chained assignments, hijack the next assignment with 'chainedAssignment' set to true
|
|
if (checkForChaining(ast.expr)) {
|
|
result += writeInstructionAssign(mb, ast.expr->varAssign, true);
|
|
}
|
|
else {
|
|
result += writeModuleBuilderCode(mb, ast.expr); //default value
|
|
}
|
|
|
|
EMIT_BYTE(mb, code, TOY_OPCODE_ASSIGN);
|
|
EMIT_BYTE(mb, code, chainedAssignment);
|
|
EMIT_BYTE(mb, code,0);
|
|
EMIT_BYTE(mb, code,0);
|
|
}
|
|
else if (ast.flag == TOY_AST_FLAG_ADD_ASSIGN) {
|
|
EMIT_BYTE(mb, code,TOY_OPCODE_DUPLICATE);
|
|
EMIT_BYTE(mb, code,TOY_OPCODE_ACCESS); //squeezed
|
|
EMIT_BYTE(mb, code,0);
|
|
EMIT_BYTE(mb, code,0);
|
|
|
|
//if we're dealing with chained assignments, hijack the next assignment with 'chainedAssignment' set to true
|
|
if (checkForChaining(ast.expr)) {
|
|
result += writeInstructionAssign(mb, ast.expr->varAssign, true);
|
|
}
|
|
else {
|
|
result += writeModuleBuilderCode(mb, ast.expr); //default value
|
|
}
|
|
|
|
EMIT_BYTE(mb, code,TOY_OPCODE_ADD);
|
|
EMIT_BYTE(mb, code,TOY_OPCODE_ASSIGN); //squeezed
|
|
EMIT_BYTE(mb, code, chainedAssignment);
|
|
EMIT_BYTE(mb, code,0);
|
|
}
|
|
else if (ast.flag == TOY_AST_FLAG_SUBTRACT_ASSIGN) {
|
|
EMIT_BYTE(mb, code,TOY_OPCODE_DUPLICATE);
|
|
EMIT_BYTE(mb, code,TOY_OPCODE_ACCESS); //squeezed
|
|
EMIT_BYTE(mb, code,0);
|
|
EMIT_BYTE(mb, code,0);
|
|
|
|
//if we're dealing with chained assignments, hijack the next assignment with 'chainedAssignment' set to true
|
|
if (checkForChaining(ast.expr)) {
|
|
result += writeInstructionAssign(mb, ast.expr->varAssign, true);
|
|
}
|
|
else {
|
|
result += writeModuleBuilderCode(mb, ast.expr); //default value
|
|
}
|
|
|
|
EMIT_BYTE(mb, code,TOY_OPCODE_SUBTRACT);
|
|
EMIT_BYTE(mb, code,TOY_OPCODE_ASSIGN); //squeezed
|
|
EMIT_BYTE(mb, code, chainedAssignment);
|
|
EMIT_BYTE(mb, code,0);
|
|
}
|
|
else if (ast.flag == TOY_AST_FLAG_MULTIPLY_ASSIGN) {
|
|
EMIT_BYTE(mb, code,TOY_OPCODE_DUPLICATE);
|
|
EMIT_BYTE(mb, code,TOY_OPCODE_ACCESS); //squeezed
|
|
EMIT_BYTE(mb, code,0);
|
|
EMIT_BYTE(mb, code,0);
|
|
|
|
//if we're dealing with chained assignments, hijack the next assignment with 'chainedAssignment' set to true
|
|
if (checkForChaining(ast.expr)) {
|
|
result += writeInstructionAssign(mb, ast.expr->varAssign, true);
|
|
}
|
|
else {
|
|
result += writeModuleBuilderCode(mb, ast.expr); //default value
|
|
}
|
|
|
|
EMIT_BYTE(mb, code,TOY_OPCODE_MULTIPLY);
|
|
EMIT_BYTE(mb, code,TOY_OPCODE_ASSIGN); //squeezed
|
|
EMIT_BYTE(mb, code, chainedAssignment);
|
|
EMIT_BYTE(mb, code,0);
|
|
}
|
|
else if (ast.flag == TOY_AST_FLAG_DIVIDE_ASSIGN) {
|
|
EMIT_BYTE(mb, code,TOY_OPCODE_DUPLICATE);
|
|
EMIT_BYTE(mb, code,TOY_OPCODE_ACCESS); //squeezed
|
|
EMIT_BYTE(mb, code,0);
|
|
EMIT_BYTE(mb, code,0);
|
|
|
|
//if we're dealing with chained assignments, hijack the next assignment with 'chainedAssignment' set to true
|
|
if (checkForChaining(ast.expr)) {
|
|
result += writeInstructionAssign(mb, ast.expr->varAssign, true);
|
|
}
|
|
else {
|
|
result += writeModuleBuilderCode(mb, ast.expr); //default value
|
|
}
|
|
|
|
EMIT_BYTE(mb, code,TOY_OPCODE_DIVIDE);
|
|
EMIT_BYTE(mb, code,TOY_OPCODE_ASSIGN); //squeezed
|
|
EMIT_BYTE(mb, code, chainedAssignment);
|
|
EMIT_BYTE(mb, code,0);
|
|
}
|
|
else if (ast.flag == TOY_AST_FLAG_MODULO_ASSIGN) {
|
|
EMIT_BYTE(mb, code,TOY_OPCODE_DUPLICATE);
|
|
EMIT_BYTE(mb, code,TOY_OPCODE_ACCESS); //squeezed
|
|
EMIT_BYTE(mb, code,0);
|
|
EMIT_BYTE(mb, code,0);
|
|
|
|
//if we're dealing with chained assignments, hijack the next assignment with 'chainedAssignment' set to true
|
|
if (checkForChaining(ast.expr)) {
|
|
result += writeInstructionAssign(mb, ast.expr->varAssign, true);
|
|
}
|
|
else {
|
|
result += writeModuleBuilderCode(mb, ast.expr); //default value
|
|
}
|
|
|
|
EMIT_BYTE(mb, code,TOY_OPCODE_MODULO);
|
|
EMIT_BYTE(mb, code,TOY_OPCODE_ASSIGN); //squeezed
|
|
EMIT_BYTE(mb, code, chainedAssignment);
|
|
EMIT_BYTE(mb, code,0);
|
|
}
|
|
|
|
else {
|
|
fprintf(stderr, TOY_CC_ERROR "ERROR: Invalid AST assign flag found\n" TOY_CC_RESET);
|
|
exit(-1);
|
|
}
|
|
|
|
return result + (chainedAssignment ? 1 : 0);
|
|
}
|
|
|
|
static unsigned int writeInstructionAccess(Toy_ModuleBuilder** mb, Toy_AstVarAccess ast) {
|
|
if (!(ast.child->type == TOY_AST_VALUE && TOY_VALUE_IS_STRING(ast.child->value.value) && TOY_VALUE_AS_STRING(ast.child->value.value)->info.type == TOY_STRING_NAME)) {
|
|
fprintf(stderr, TOY_CC_ERROR "COMPILER ERROR: Found a non-name-string in a value node when trying to write access\n" TOY_CC_RESET);
|
|
exit(-1);
|
|
}
|
|
|
|
Toy_String* name = TOY_VALUE_AS_STRING(ast.child->value.value);
|
|
|
|
//push the name
|
|
EMIT_BYTE(mb, code, TOY_OPCODE_READ);
|
|
EMIT_BYTE(mb, code, TOY_VALUE_STRING);
|
|
EMIT_BYTE(mb, code, TOY_STRING_NAME);
|
|
EMIT_BYTE(mb, code, name->info.length); //store the length (max 255)
|
|
|
|
emitString(mb, name);
|
|
|
|
//convert name to value
|
|
EMIT_BYTE(mb, code, TOY_OPCODE_ACCESS);
|
|
EMIT_BYTE(mb, code,0);
|
|
EMIT_BYTE(mb, code,0);
|
|
EMIT_BYTE(mb, code,0);
|
|
|
|
return 1;
|
|
}
|
|
|
|
//routine structure
|
|
// static void writeModuleBuilderParam(Toy_ModuleBuilder* mb) {
|
|
// //
|
|
// }
|
|
|
|
static unsigned int writeModuleBuilderCode(Toy_ModuleBuilder** mb, Toy_Ast* ast) {
|
|
if (ast == NULL) {
|
|
return 0;
|
|
}
|
|
|
|
//if an error occured, just exit
|
|
if (mb == NULL || (*mb) == NULL || (*mb)->panic) {
|
|
return 0;
|
|
}
|
|
|
|
//NOTE: 'result' is used to in 'writeInstructionAggregate()'
|
|
unsigned int result = 0;
|
|
|
|
//determine how to write each instruction based on the Ast
|
|
switch(ast->type) {
|
|
case TOY_AST_BLOCK:
|
|
if (ast->block.innerScope) {
|
|
EMIT_BYTE(mb, code, TOY_OPCODE_SCOPE_PUSH);
|
|
EMIT_BYTE(mb, code, 0);
|
|
EMIT_BYTE(mb, code, 0);
|
|
EMIT_BYTE(mb, code, 0);
|
|
|
|
(*mb)->currentScopeDepth++;
|
|
}
|
|
|
|
result += writeModuleBuilderCode(mb, ast->block.child);
|
|
result += writeModuleBuilderCode(mb, ast->block.next);
|
|
|
|
if (ast->block.innerScope) {
|
|
EMIT_BYTE(mb, code, TOY_OPCODE_SCOPE_POP);
|
|
EMIT_BYTE(mb, code, 0);
|
|
EMIT_BYTE(mb, code, 0);
|
|
EMIT_BYTE(mb, code, 0);
|
|
|
|
(*mb)->currentScopeDepth--;
|
|
}
|
|
break;
|
|
|
|
case TOY_AST_VALUE:
|
|
result += writeInstructionValue(mb, ast->value);
|
|
break;
|
|
|
|
case TOY_AST_UNARY:
|
|
result += writeInstructionUnary(mb, ast->unary);
|
|
break;
|
|
|
|
case TOY_AST_BINARY:
|
|
result += writeInstructionBinary(mb, ast->binary);
|
|
break;
|
|
|
|
case TOY_AST_BINARY_SHORT_CIRCUIT:
|
|
result += writeInstructionBinaryShortCircuit(mb, ast->binaryShortCircuit);
|
|
break;
|
|
|
|
case TOY_AST_COMPARE:
|
|
result += writeInstructionCompare(mb, ast->compare);
|
|
break;
|
|
|
|
case TOY_AST_GROUP:
|
|
result += writeInstructionGroup(mb, ast->group);
|
|
break;
|
|
|
|
case TOY_AST_COMPOUND:
|
|
result += writeInstructionCompound(mb, ast->compound);
|
|
break;
|
|
|
|
case TOY_AST_AGGREGATE:
|
|
result += writeInstructionAggregate(mb, ast->aggregate);
|
|
break;
|
|
|
|
case TOY_AST_ASSERT:
|
|
result += writeInstructionAssert(mb, ast->assert);
|
|
break;
|
|
|
|
case TOY_AST_IF_THEN_ELSE:
|
|
result += writeInstructionIfThenElse(mb, ast->ifThenElse);
|
|
break;
|
|
|
|
case TOY_AST_WHILE_THEN:
|
|
result += writeInstructionWhileThen(mb, ast->whileThen);
|
|
break;
|
|
|
|
case TOY_AST_BREAK:
|
|
result += writeInstructionBreak(mb, ast->breakPoint);
|
|
break;
|
|
|
|
case TOY_AST_CONTINUE:
|
|
result += writeInstructionContinue(mb, ast->continuePoint);
|
|
break;
|
|
|
|
case TOY_AST_PRINT:
|
|
result += writeInstructionPrint(mb, ast->print);
|
|
break;
|
|
|
|
case TOY_AST_VAR_DECLARE:
|
|
result += writeInstructionVarDeclare(mb, ast->varDeclare);
|
|
break;
|
|
|
|
case TOY_AST_VAR_ASSIGN:
|
|
result += writeInstructionAssign(mb, ast->varAssign, false);
|
|
break;
|
|
|
|
case TOY_AST_VAR_ACCESS:
|
|
result += writeInstructionAccess(mb, ast->varAccess);
|
|
break;
|
|
|
|
case TOY_AST_PASS:
|
|
//NO-OP
|
|
break;
|
|
|
|
//meta instructions are disallowed
|
|
case TOY_AST_ERROR:
|
|
fprintf(stderr, TOY_CC_ERROR "COMPILER ERROR: Invalid AST type found: Unknown 'error'\n" TOY_CC_RESET);
|
|
(*mb)->panic = true;
|
|
break;
|
|
|
|
case TOY_AST_END:
|
|
fprintf(stderr, TOY_CC_ERROR "COMPILER ERROR: Invalid AST type found: Unknown 'end'\n" TOY_CC_RESET);
|
|
(*mb)->panic = true;
|
|
break;
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
static void* writeModuleBuilder(Toy_ModuleBuilder* mb, Toy_Ast* ast) {
|
|
//code
|
|
writeModuleBuilderCode(&mb, ast);
|
|
|
|
EMIT_BYTE(&mb, code, TOY_OPCODE_RETURN); //end terminator
|
|
EMIT_BYTE(&mb, code, 0); //4-byte alignment
|
|
EMIT_BYTE(&mb, code, 0);
|
|
EMIT_BYTE(&mb, code, 0);
|
|
|
|
//if an error occurred, just exit
|
|
if (mb->panic) {
|
|
return NULL;
|
|
}
|
|
|
|
//write the header and combine the parts
|
|
unsigned char* buffer = NULL;
|
|
unsigned int capacity = 0, count = 0;
|
|
int codeAddr = 0;
|
|
int jumpsAddr = 0;
|
|
// int paramAddr = 0;
|
|
int dataAddr = 0;
|
|
// int subsAddr = 0;
|
|
|
|
emitInt(&buffer, &capacity, &count, 0); //total size (overwritten later)
|
|
emitInt(&buffer, &capacity, &count, mb->jumpsCount); //jumps size
|
|
emitInt(&buffer, &capacity, &count, mb->paramCount); //param size
|
|
emitInt(&buffer, &capacity, &count, mb->dataCount); //data size
|
|
emitInt(&buffer, &capacity, &count, mb->subsCount); //routine size
|
|
|
|
//generate blank spaces, cache their positions in the *Addr variables for later writes
|
|
if (mb->codeCount > 0) {
|
|
codeAddr = count;
|
|
emitInt(&buffer, &capacity, &count, 0); //code
|
|
}
|
|
if (mb->jumpsCount > 0) {
|
|
jumpsAddr = count;
|
|
emitInt(&buffer, &capacity, &count, 0); //jumps
|
|
}
|
|
if (mb->paramCount > 0) {
|
|
// paramAddr = count;
|
|
emitInt(&buffer, &capacity, &count, 0); //params
|
|
}
|
|
if (mb->dataCount > 0) {
|
|
dataAddr = count;
|
|
emitInt(&buffer, &capacity, &count, 0); //data
|
|
}
|
|
if (mb->subsCount > 0) {
|
|
// subsAddr = count;
|
|
emitInt(&buffer, &capacity, &count, 0); //subs
|
|
}
|
|
|
|
//append various parts to the buffer
|
|
if (mb->codeCount > 0) {
|
|
expand(&buffer, &capacity, &count, mb->codeCount);
|
|
memcpy((buffer + count), mb->code, mb->codeCount);
|
|
|
|
*((int*)(buffer + codeAddr)) = count;
|
|
count += mb->codeCount;
|
|
}
|
|
|
|
if (mb->jumpsCount > 0) {
|
|
expand(&buffer, &capacity, &count, mb->jumpsCount);
|
|
memcpy((buffer + count), mb->jumps, mb->jumpsCount);
|
|
|
|
*((int*)(buffer + jumpsAddr)) = count;
|
|
count += mb->jumpsCount;
|
|
}
|
|
|
|
//TODO: param region
|
|
|
|
if (mb->dataCount > 0) {
|
|
expand(&buffer, &capacity, &count, mb->dataCount);
|
|
memcpy((buffer + count), mb->data, mb->dataCount);
|
|
|
|
*((int*)(buffer + dataAddr)) = count;
|
|
count += mb->dataCount;
|
|
}
|
|
|
|
//TODO: subs region
|
|
|
|
//finally, record the total size within the header, and return the result
|
|
((int*)buffer)[0] = count;
|
|
|
|
return buffer;
|
|
}
|
|
|
|
//exposed functions
|
|
void* Toy_compileModuleBuilder(Toy_Ast* ast) {
|
|
//setup
|
|
Toy_ModuleBuilder builder;
|
|
|
|
builder.code = NULL;
|
|
builder.codeCapacity = 0;
|
|
builder.codeCount = 0;
|
|
|
|
builder.jumps = NULL;
|
|
builder.jumpsCapacity = 0;
|
|
builder.jumpsCount = 0;
|
|
|
|
builder.param = NULL;
|
|
builder.paramCapacity = 0;
|
|
builder.paramCount = 0;
|
|
|
|
builder.data = NULL;
|
|
builder.dataCapacity = 0;
|
|
builder.dataCount = 0;
|
|
|
|
builder.subs = NULL;
|
|
builder.subsCapacity = 0;
|
|
builder.subsCount = 0;
|
|
|
|
builder.currentScopeDepth = 0;
|
|
builder.breakEscapes = Toy_private_resizeEscapeArray(NULL, TOY_ESCAPE_INITIAL_CAPACITY);
|
|
builder.continueEscapes = Toy_private_resizeEscapeArray(NULL, TOY_ESCAPE_INITIAL_CAPACITY);
|
|
|
|
builder.panic = false;
|
|
|
|
//build
|
|
void * buffer = writeModuleBuilder(&builder, ast);
|
|
|
|
//cleanup
|
|
Toy_private_resizeEscapeArray(builder.breakEscapes, 0);
|
|
Toy_private_resizeEscapeArray(builder.continueEscapes, 0);
|
|
|
|
free(builder.param);
|
|
free(builder.code);
|
|
free(builder.jumps);
|
|
free(builder.data);
|
|
free(builder.subs);
|
|
|
|
return buffer;
|
|
}
|