aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAryadev Chavali <aryadev@aryadevchavali.com>2024-04-14 01:57:04 +0630
committerAryadev Chavali <aryadev@aryadevchavali.com>2024-04-14 02:00:17 +0630
commit4e9eb0a42eacdf11c9f5f3d2d9e16ef1b7ce9610 (patch)
treeae454c44e4bd961e041ca54c6501f79c3aecf4f4
parente2667eda65068cf1aad40f3e34fafb7814d75b1f (diff)
downloadovm-0.0.1.tar.gz
ovm-0.0.1.tar.bz2
ovm-0.0.1.zip
fix! loops in preprocess_use_blocks iterate to the wrong bound0.0.1
A token_stream being constructed on the spot has different used/available properties to a fully constructed one: a fully constructed token stream uses available to hold the total number of tokens and used as an internal iterator, while one that is still being constructed uses the semantics of a standard darr. Furthermore, some loops didn't divide by ~sizeof(token_t)~ which lead to iteration over bound errors.
-rw-r--r--Makefile14
-rw-r--r--asm/parser.c6
2 files changed, 10 insertions, 10 deletions
diff --git a/Makefile b/Makefile
index 020d43a..1c37a4a 100644
--- a/Makefile
+++ b/Makefile
@@ -56,38 +56,38 @@ examples: $(EXAMPLES_DIST) $(EXAMPLES)
$(LIB_DIST)/%.o: $(LIB_SRC)/%.c
@$(CC) $(LIB_CFLAGS) -MMD -c $< -o $@ $(LIBS)
- @echo -e "$(TERM_YELLOW)$@$(TERM_RESET): $<"
+ @echo "$(TERM_YELLOW)$@$(TERM_RESET): $<"
## VM Recipes
$(VM_OUT): $(LIB_OBJECTS) $(VM_OBJECTS) $(VM_DIST)/main.o
@$(CC) $(VM_CFLAGS) $^ -o $@ $(LIBS)
- @echo -e "$(TERM_GREEN)$@$(TERM_RESET): $^"
+ @echo "$(TERM_GREEN)$@$(TERM_RESET): $^"
-include $(VM_DEPS)
$(VM_DIST)/%.o: $(VM_SRC)/%.c
@$(CC) $(VM_CFLAGS) -MMD -c $< -o $@ $(LIBS)
- @echo -e "$(TERM_YELLOW)$@$(TERM_RESET): $<"
+ @echo "$(TERM_YELLOW)$@$(TERM_RESET): $<"
## ASSEMBLY Recipes
$(ASM_OUT): $(LIB_OBJECTS) $(ASM_OBJECTS) $(ASM_DIST)/main.o
@$(CC) $(ASM_CFLAGS) $^ -o $@ $(LIBS)
- @echo -e "$(TERM_GREEN)$@$(TERM_RESET): $^"
+ @echo "$(TERM_GREEN)$@$(TERM_RESET): $^"
-include $(ASM_DEPS)
$(ASM_DIST)/%.o: $(ASM_SRC)/%.c
@$(CC) $(ASM_CFLAGS) -MMD -c $< -o $@ $(LIBS)
- @echo -e "$(TERM_YELLOW)$@$(TERM_RESET): $<"
+ @echo "$(TERM_YELLOW)$@$(TERM_RESET): $<"
## EXAMPLES recipes
$(EXAMPLES_DIST)/%.out: $(EXAMPLES_SRC)/%.asm $(ASM_OUT)
@$(ASM_OUT) $< $@
- @echo -e "$(TERM_GREEN)$@$(TERM_RESET): $<"
+ @echo "$(TERM_GREEN)$@$(TERM_RESET): $<"
.PHONY: run-examples
run-examples: $(EXAMPLES)
- $(foreach example,$(EXAMPLES),$(MAKE) interpret BYTECODE=$(example);)
+ @$(foreach example,$(EXAMPLES), echo "$(TERM_YELLOW)$(example)$(TERM_RESET)"; $(MAKE) -s interpret BYTECODE=$(example);)
OUT=
ARGS=
diff --git a/asm/parser.c b/asm/parser.c
index d976e67..d326d14 100644
--- a/asm/parser.c
+++ b/asm/parser.c
@@ -379,7 +379,7 @@ perr_t preprocess_use_blocks(token_stream_t *stream, token_stream_t *new)
DARR_AT(token_t, stream->data, i + 1).type != TOKEN_LITERAL_STRING)
{
stream->used = i + 1 >= stream->available ? i : i + 1;
- for (size_t i = 0; i < (new_stream.available / sizeof(token_t)); ++i)
+ for (size_t i = 0; i < (new_stream.used / sizeof(token_t)); ++i)
free(TOKEN_STREAM_AT(new_stream.data, i).str);
free(new_stream.data);
return PERR_PREPROCESSOR_EXPECTED_STRING;
@@ -390,7 +390,7 @@ perr_t preprocess_use_blocks(token_stream_t *stream, token_stream_t *new)
FILE *fp = fopen(t.str, "rb");
if (!fp)
{
- for (size_t i = 0; i < new_stream.available; ++i)
+ for (size_t i = 0; i < (new_stream.used / sizeof(token_t)); ++i)
free(TOKEN_STREAM_AT(new_stream.data, i).str);
free(new_stream.data);
stream->used = i;
@@ -410,7 +410,7 @@ perr_t preprocess_use_blocks(token_stream_t *stream, token_stream_t *new)
free(TOKEN_STREAM_AT(fstream.data, i).str);
free(fstream.data);
}
- for (size_t i = 0; i < new_stream.available; ++i)
+ for (size_t i = 0; i < (new_stream.used / sizeof(token_t)); ++i)
free(TOKEN_STREAM_AT(new_stream.data, i).str);
free(new_stream.data);
stream->used = i;