diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-10-22 17:40:09 +0300 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-10-22 17:43:44 +0300 |
commit | 7f7b22674ed8e9633cd0e47662508c3641e9f967 (patch) | |
tree | 6e692c9ec8f6cb0672f626d5be54601ec23aef63 /scripts | |
parent | 60a53db87421667a268f60b58c5a02eebb289d6b (diff) | |
download | ejit-7f7b22674ed8e9633cd0e47662508c3641e9f967.tar.gz ejit-7f7b22674ed8e9633cd0e47662508c3641e9f967.zip |
use type-specific vectors instead of generic ones
+ An attempt at speeding up function calls in the interpreted mode
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/scripts/makefile b/scripts/makefile index b8978f6..c1de16e 100644 --- a/scripts/makefile +++ b/scripts/makefile @@ -57,9 +57,12 @@ COMPILE_EJIT = $(COMPILE) $(EJIT_FLAGS) ejit.o: $(EJIT_OBJS) ld -relocatable $(EJIT_OBJS) -o $@ -examples: examples/exec -examples/exec: examples/main.c ejit.o - $(COMPILE_EJIT) examples/main.c ejit.o -o $@ +examples: examples/loop examples/fib +examples/loop: examples/loop.c ejit.o + $(COMPILE_EJIT) examples/loop.c ejit.o -o $@ + +examples/fib: examples/fib.c ejit.o + $(COMPILE_EJIT) examples/fib.c ejit.o -o $@ # might lint some common things twice .PHONY: |