change to uint8_t for bytecode to reduce wasted bytes

This commit is contained in:
2025-06-27 06:07:57 +01:00
parent 358127a145
commit aa65393e2c
11 changed files with 100 additions and 53 deletions

View File

@@ -13,12 +13,15 @@
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include <time.h>
#include <unistd.h>
const char FILE_IDENTIFIER[] = "ARBI";
const uint64_t version_number = 0;
const uint32_t version_number = 0;
int main(int argc, char *argv[]) {
clock_t start,end;
double time_spent;
setlocale(LC_ALL, "");
if (argc <= 1)
return -1;
@@ -35,37 +38,48 @@ int main(int argc, char *argv[]) {
}
LexerState state = {path, file, 0, 0, &tokens};
start = clock();
lexer(state);
end = clock();
time_spent = (double)(end - start) / CLOCKS_PER_SEC;
printf("Lexer time taken: %f seconds\n", time_spent);
fclose(state.file);
DArray ast;
darray_init(&ast, sizeof(ParsedValue));
start = clock();
parser(path, &ast, &tokens, false);
end = clock();
time_spent = (double)(end - start) / CLOCKS_PER_SEC;
printf("Parser time taken: %f seconds\n", time_spent);
darray_free(&tokens, free_token);
Translated translated = init_translator();
start = clock();
translate(&translated, &ast);
end = clock();
time_spent = (double)(end - start) / CLOCKS_PER_SEC;
printf("Translation time taken: %f seconds\n", time_spent);
darray_free(&ast, free_parsed);
file = fopen("out.arbin", "wb");
uint64_t regCount = (uint64_t)translated.registerCount;
uint64_t constantsSize = (uint64_t)translated.constants.size;
uint64_t bytecodeSize = (uint64_t)translated.bytecode.size;
uint64_t version_number_htole64ed = htole64(version_number);
regCount = htole64(regCount);
regCount = htole64(regCount);
uint32_t version_number_htole32ed = htole32(version_number);
constantsSize = htole64(constantsSize);
bytecodeSize = htole64(bytecodeSize);
fwrite(&FILE_IDENTIFIER, sizeof(char), strlen(FILE_IDENTIFIER), file);
fwrite(&version_number_htole64ed, sizeof(uint64_t), 1, file);
fwrite(&regCount, sizeof(uint64_t), 1, file);
fwrite(&version_number_htole32ed, sizeof(uint32_t), 1, file);
fwrite(&translated.registerCount, sizeof(uint8_t), 1, file);
fwrite(&constantsSize, sizeof(uint64_t), 1, file);
fwrite(&bytecodeSize, sizeof(uint64_t), 1, file);
fwrite(translated.constants.data, 1, translated.constants.size, file);
@@ -77,8 +91,15 @@ int main(int argc, char *argv[]) {
generate_siphash_key();
init_types();
start = clock();
runtime(translated);
end = clock();
time_spent = (double)(end - start) / CLOCKS_PER_SEC;
printf("Execution time taken: %f seconds\n", time_spent);
free_translator(&translated);
return 0;
}