Tinkering with the repl

This commit is contained in:
2022-08-08 09:39:40 +01:00
parent 6f4bfc0e10
commit cf8b3975c0
6 changed files with 164 additions and 53 deletions

1
.gitignore vendored
View File

@@ -22,6 +22,7 @@ out/
*.log *.log
out out
*.stackdump *.stackdump
*.tb
#Shell files #Shell files
*.bat *.bat

View File

@@ -11,7 +11,10 @@ void initCommand(int argc, const char* argv[]) {
command.error = false; command.error = false;
command.help = false; command.help = false;
command.version = false; command.version = false;
command.filename = NULL; command.binaryfile = NULL;
command.sourcefile = NULL;
command.compilefile = NULL;
command.outfile = "out.tb";
command.source = NULL; command.source = NULL;
command.verbose = false; command.verbose = false;
command.optimize = 1; command.optimize = 1;
@@ -27,8 +30,22 @@ void initCommand(int argc, const char* argv[]) {
continue; continue;
} }
if ((!strcmp(argv[i], "-f") || !strcmp(argv[i], "--file")) && i + 1 < argc) { //binary file check at the end
command.filename = (char*)argv[i + 1];
if ((!strcmp(argv[i], "-f") || !strcmp(argv[i], "--sourcefile")) && i + 1 < argc) {
command.sourcefile = (char*)argv[i + 1];
i++;
continue;
}
if ((!strcmp(argv[i], "-c") || !strcmp(argv[i], "--compile")) && i + 1 < argc) {
command.compilefile = (char*)argv[i + 1];
i++;
continue;
}
if ((!strcmp(argv[i], "-o") || !strcmp(argv[i], "--output")) && i + 1 < argc) {
command.outfile = (char*)argv[i + 1];
i++; i++;
continue; continue;
} }
@@ -49,23 +66,32 @@ void initCommand(int argc, const char* argv[]) {
continue; continue;
} }
//option without a flag = binary input
if (i < argc) {
command.binaryfile = (char*)argv[i];
continue;
}
command.error = true; command.error = true;
} }
} }
void usageCommand(int argc, const char* argv[]) { void usageCommand(int argc, const char* argv[]) {
printf("Usage: %s [-h | -v | [-OX][-d][-f filename | -i source]]\n\n", argv[0]); printf("Usage: %s [<filename> | -h | -v | [-OX][-d][-f file | -i source | -c file [-o outfile]]]\n\n", argv[0]);
} }
void helpCommand(int argc, const char* argv[]) { void helpCommand(int argc, const char* argv[]) {
usageCommand(argc, argv); usageCommand(argc, argv);
printf("-h | --help\t\tShow this help then exit.\n"); printf("<filename>\t\t\tBinary input file in tb format, must be version %d.%d.%d.\n\n", TOY_VERSION_MAJOR, TOY_VERSION_MINOR, TOY_VERSION_PATCH);
printf("-v | --version\t\tShow version and copyright information then exit.\n"); printf("-h\t| --help\t\tShow this help then exit.\n\n");
printf("-f | --file filename\tParse and execute the source file.\n"); printf("-v\t| --version\t\tShow version and copyright information then exit.\n\n");
printf("-i | --input source\tParse and execute this given string of source code.\n"); printf("-f\t| --file filename\tParse, compile and execute the source file.\n\n");
printf("-d | --debug\t\tBe verbose when operating.\n"); printf("-c\t| --compile filename\tParse and compile the specified source file into an output file.\n\n");
printf("-OX\t\t\tUse level X optimization (default 1)\n"); printf("-o\t| --output filename\tName of the file compiled with --compile (default: out.tb).\n\n");
printf("-i\t| --input source\tParse, compile and execute this given string of source code.\n\n");
printf("-d\t| --debug\t\tBe verbose when operating.\n\n");
printf("-OX\t\t\t\tUse level X optimization (default 1)\n\n");
} }
void copyrightCommand(int argc, const char* argv[]) { void copyrightCommand(int argc, const char* argv[]) {

View File

@@ -14,7 +14,10 @@ typedef struct {
bool error; bool error;
bool help; bool help;
bool version; bool version;
char* filename; char* binaryfile;
char* sourcefile;
char* compilefile;
char* outfile; //defaults to out.tb
char* source; char* source;
bool verbose; bool verbose;
int optimize; int optimize;

View File

@@ -8,55 +8,55 @@
#include <stdio.h> #include <stdio.h>
//utils //utils
static unsigned char printByte(const char* tb, int* count) { static unsigned char printByte(unsigned char* tb, int* count) {
unsigned char ret = *(unsigned char*)(tb + *count); unsigned char ret = *(unsigned char*)(tb + *count);
printf("%u ", ret); printf("%u ", ret);
*count += 1; *count += 1;
return ret; return ret;
} }
static unsigned short printShort(const char* tb, int* count) { static unsigned short printShort(unsigned char* tb, int* count) {
unsigned short ret = *(unsigned short*)(tb + *count); unsigned short ret = *(unsigned short*)(tb + *count);
printf("%d ", ret); printf("%d ", ret);
*count += 2; *count += 2;
return ret; return ret;
} }
static int printInt(const char* tb, int* count) { static int printInt(unsigned char* tb, int* count) {
int ret = *(int*)(tb + *count); int ret = *(int*)(tb + *count);
printf("%d ", ret); printf("%d ", ret);
*count += 4; *count += 4;
return ret; return ret;
} }
static float printFloat(const char* tb, int* count) { static float printFloat(unsigned char* tb, int* count) {
float ret = *(float*)(tb + *count); float ret = *(float*)(tb + *count);
printf("%f ", ret); printf("%f ", ret);
*count += 4; *count += 4;
return ret; return ret;
} }
static const char* printString(const char* tb, int* count) { static unsigned char* printString(unsigned char* tb, int* count) {
const char* ret = tb + *count; unsigned char* ret = tb + *count;
*count += printf("%s ", ret); //return includes the space, but not the null terminator *count += printf("%s ", (char*)ret); //return includes the space, but not the null terminator
return ret; return ret;
} }
static void consumeByte(unsigned char byte, const char* str, int* count) { static void consumeByte(unsigned char byte, unsigned char* str, int* count) {
if (byte != str[*count]) { if (byte != str[*count]) {
printf("Failed to consume the correct byte"); printf("Failed to consume the correct byte");
} }
*count += 1; *count += 1;
} }
static void consumeShort(unsigned short bytes, const char* str, int* count) { static void consumeShort(unsigned short bytes, unsigned char* str, int* count) {
if (bytes != *(unsigned short*)(str + *count)) { if (bytes != *(unsigned short*)(str + *count)) {
printf("Failed to consume the correct bytes"); printf("Failed to consume the correct bytes");
} }
*count += 2; *count += 2;
} }
void dissectBytecode(const char* tb, int size) { void dissectBytecode(unsigned char* tb, int size) {
int count = 0; int count = 0;
//header //header
@@ -101,7 +101,7 @@ void dissectBytecode(const char* tb, int size) {
break; break;
case LITERAL_STRING: { case LITERAL_STRING: {
const char* s = printString(tb, &count); const unsigned char* s = printString(tb, &count);
printf("(string)"); printf("(string)");
} }
break; break;
@@ -118,31 +118,60 @@ void dissectBytecode(const char* tb, int size) {
const unsigned char opcode = printByte(tb, &count); const unsigned char opcode = printByte(tb, &count);
switch (opcode) { switch (opcode) {
case OP_ASSERT:
printf("assert\n");
break;
case OP_PRINT: case OP_PRINT:
printf("print\n"); printf("print\n");
break; break;
case OP_LITERAL: { case OP_LITERAL:
printf("literal "); printf("literal ");
printByte(tb, &count); printByte(tb, &count);
printf("\n"); printf("\n");
}
break; break;
case OP_LITERAL_LONG: { case OP_LITERAL_LONG:
printf("long literal "); printf("long literal ");
printShort(tb, &count); printShort(tb, &count);
printf("\n"); printf("\n");
}
break; break;
case OP_NEGATE: { case OP_NEGATE:
printf("negate\n"); printf("negate\n");
} break;
case OP_ADDITION:
printf("+\n");
break;
case OP_SUBTRACTION:
printf("-\n");
break;
case OP_MULTIPLICATION:
printf("*\n");
break;
case OP_DIVISION:
printf("/\n");
break;
case OP_MODULO:
printf("%%\n");
break;
case OP_GROUPING_BEGIN:
printf("(\n");
break;
case OP_GROUPING_END:
printf(")\n");
break; break;
case OP_SECTION_END: { case OP_SECTION_END: {
printf("--SECTION END--"); printf("--SECTION END--\n");
} }
break; break;

View File

@@ -2,4 +2,4 @@
#include "common.h" #include "common.h"
void dissectBytecode(const char* tb, int size); void dissectBytecode(unsigned char* tb, int size);

View File

@@ -11,45 +11,60 @@
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
//read a file and return it as a char array //IO functions
char* readFile(char* path) { char* readFile(char* path, size_t* fileSize) {
FILE* file = fopen(path, "rb"); FILE* file = fopen(path, "rb");
if (file == NULL) { if (file == NULL) {
fprintf(stderr, "Could not open file \"%s\"\n", path); fprintf(stderr, "Could not open file \"%s\"\n", path);
exit(74); exit(-1);
} }
fseek(file, 0L, SEEK_END); fseek(file, 0L, SEEK_END);
size_t fileSize = ftell(file); *fileSize = ftell(file);
rewind(file); rewind(file);
char* buffer = (char*)malloc(fileSize + 1); char* buffer = (char*)malloc(*fileSize);
if (buffer == NULL) { if (buffer == NULL) {
fprintf(stderr, "Not enough memory to read \"%s\"\n", path); fprintf(stderr, "Not enough memory to read \"%s\"\n", path);
exit(74); exit(-1);
} }
size_t bytesRead = fread(buffer, sizeof(char), fileSize, file); size_t bytesRead = fread(buffer, sizeof(char), *fileSize, file);
if (bytesRead < fileSize) { if (bytesRead < *fileSize) {
fprintf(stderr, "Could not read file \"%s\"\n", path); fprintf(stderr, "Could not read file \"%s\"\n", path);
exit(74); exit(-1);
} }
fclose(file); fclose(file);
buffer[bytesRead] = '\0';
return buffer; return buffer;
} }
void runString(char* source) { void writeFile(char* path, unsigned char* bytes, size_t size) {
FILE* file = fopen(path, "wb");
if (file == NULL) {
fprintf(stderr, "Could not open file \"%s\"\n", path);
exit(-1);
}
int written = fwrite(bytes, size, 1, file);
if (written != 1) {
fprintf(stderr, "Could not write file \"%s\"\n", path);
exit(-1);
}
fclose(file);
}
unsigned char* compileString(char* source, size_t* size) {
Lexer lexer; Lexer lexer;
Parser parser; Parser parser;
Compiler compiler; Compiler compiler;
Interpreter interpreter;
initLexer(&lexer, source); initLexer(&lexer, source);
initParser(&parser, &lexer); initParser(&parser, &lexer);
@@ -63,7 +78,7 @@ void runString(char* source) {
freeNode(node); freeNode(node);
freeCompiler(&compiler); freeCompiler(&compiler);
freeParser(&parser); freeParser(&parser);
return; return NULL;
} }
writeCompiler(&compiler, node); writeCompiler(&compiler, node);
@@ -72,26 +87,46 @@ void runString(char* source) {
} }
//get the bytecode dump //get the bytecode dump
int size = 0; unsigned char* tb = collateCompiler(&compiler, (int*)(size));
unsigned char* tb = collateCompiler(&compiler, &size);
//cleanup //cleanup
freeCompiler(&compiler); freeCompiler(&compiler);
freeParser(&parser); freeParser(&parser);
//no lexer to clean up
//run the bytecode //finally
return tb;
}
void runBinary(unsigned char* tb, size_t size) {
Interpreter interpreter;
initInterpreter(&interpreter, tb, size); initInterpreter(&interpreter, tb, size);
runInterpreter(&interpreter); runInterpreter(&interpreter);
freeInterpreter(&interpreter); freeInterpreter(&interpreter);
} }
void runFile(char* fname) { void runBinaryFile(char* fname) {
char* source = readFile(fname); size_t size = 0; //not used
runString(source); unsigned char* tb = (unsigned char*)readFile(fname, &size);
runBinary(tb, size);
//interpreter takes ownership of the binary data
}
void runSource(char* source) {
size_t size;
unsigned char* tb = compileString(source, &size);
runBinary(tb, size);
}
void runSourceFile(char* fname) {
size_t size = 0; //not used
char* source = readFile(fname, &size);
runSource(source);
free((void*)source); free((void*)source);
} }
void repl() { void repl() {
//repl does it's own thing for now
bool error = false; bool error = false;
const int size = 2048; const int size = 2048;
@@ -205,13 +240,30 @@ int main(int argc, const char* argv[]) {
printf("Warning! This interpreter is a work in progress, it does not yet meet the %d.%d.%d specification.\n", TOY_VERSION_MAJOR, TOY_VERSION_MINOR, TOY_VERSION_PATCH); printf("Warning! This interpreter is a work in progress, it does not yet meet the %d.%d.%d specification.\n", TOY_VERSION_MAJOR, TOY_VERSION_MINOR, TOY_VERSION_PATCH);
} }
if (command.filename) { //run binary
runFile(command.filename); if (command.binaryfile) {
runBinaryFile(command.binaryfile);
return 0; return 0;
} }
//run source file
if (command.sourcefile) {
runSourceFile(command.sourcefile);
return 0;
}
//compile source file
if (command.compilefile) {
size_t size = 0;
char* source = readFile(command.compilefile, &size);
unsigned char* tb = compileString(source, &size);
writeFile(command.outfile, tb, size);
return 0;
}
//run from stdin
if (command.source) { if (command.source) {
runString(command.source); runSource(command.source);
return 0; return 0;
} }