Martin Dørum
9aa7d5afe3
better infix
2 years ago
Martin Dørum
b94f188974
builtin variables
2 years ago
Martin Dørum
a8742666a8
let rhs be a full expression in an infix call
2 years ago
Martin Dørum
8c10cec784
infix functions
2 years ago
Martin Dørum
e999e638fb
build config
2 years ago
Martin Dørum
b7baa90a9d
restart vm on parse error
2 years ago
Martin Dørum
ac50263192
repl history
2 years ago
Martin Dørum
4a053e3e36
repl stuff
2 years ago
Martin Dørum
979c4627a5
repl error messages
2 years ago
Martin Dørum
bc29640896
add a REPL
2 years ago
Martin Dørum
1b1ae8cdf4
separate loader.h/c
2 years ago
Martin Dørum
61b791bdf1
add --output option to write bytecode to file
2 years ago
Martin Dørum
928f7cfc33
don't allocate arguments array for builtins
2 years ago
Martin Dørum
08cd621d90
actually run the GC
2 years ago
Martin Dørum
ded80df7a8
short string optimization for tokens
2 years ago
Martin Dørum
5b6dc6be51
reduce unnecessary allocs in io_mem_writer
2 years ago
Martin Dørum
d8239aaef4
fix apostrophes in number literals
2 years ago
Martin Dørum
6f1bd65f67
fix fractions in weird bases
2 years ago
Martin Dørum
c82bc5349b
report lex errors
2 years ago
Martin Dørum
485d79ae59
fancier number parsing
2 years ago
Martin Dørum
c3042c48fc
float literals
2 years ago
Martin Dørum
f2a8f4ca9c
fix test
2 years ago
Martin Dørum
554b5a9032
implement the basic operators
2 years ago
Martin Dørum
47e2a5e981
check errors
2 years ago
Martin Dørum
2af11e76a4
add error type
2 years ago
Martin Dørum
2490558d45
store stack base pointer in the stack frame
2 years ago
Martin Dørum
4ccdad3113
include benchmarks
2 years ago
Martin Dørum
e755acb19c
make C++ happy with the headers
2 years ago
Martin Dørum
417e555d02
enable strict warnings, make code not emit warnings
2 years ago
Martin Dørum
fa662b6868
change the IO APIs a bit
2 years ago
Martin Dørum
36c6d6e4a6
readme
2 years ago
Martin Dørum
298e20c629
comments
2 years ago
Martin Dørum
1c184b3111
dynamic lookups
2 years ago
Martin Dørum
ada96b8fdc
fix stupid oversight
2 years ago
Martin Dørum
82c92b26b9
rework bytecode and stacks
Instructions now take their static arguments in the bytecode directly
instead of from the stack. The return address is now moved into a
separate frame stack. That means the only thing in the main stack is now
variable references. That means we can mark every variable which is
currently on the stack during a GC; even variables which aren't referred
to from a namespace.
As a result, a GC can happen before or after any instruction without
having to worry. The VM should also be faster, and the bytecode should
be smaller, due to fewer instructions.
2 years ago
Martin Dørum
1c1608c1cf
remove prints
2 years ago
Martin Dørum
9f207ef123
gitignore
2 years ago
Martin Dørum
56008fc9f4
generate code coverage reports
2 years ago
Martin Dørum
d726ee311a
correctness fixes, thanks to asan
2 years ago
Martin Dørum
4c3494ae56
functions example
2 years ago
Martin Dørum
591e913bee
add examples with expected outputs
2 years ago
Martin Dørum
fc8bdb9df1
support setting the VM's stdout
2 years ago
Martin Dørum
400172f03f
fix up test suite
2 years ago
Martin Dørum
12495a8bcd
fixes, and array dot-number assign
2 years ago
Martin Dørum
164cc76ce9
= operator
2 years ago
Martin Dørum
9d2d3c3a01
array literals
2 years ago
Martin Dørum
e042ce953b
len() function
2 years ago
Martin Dørum
fb5a02c602
array lookup with a dot-number token
2 years ago
Martin Dørum
3be4c7ac60
code gen for improved parser
2 years ago
Martin Dørum
6933015c72
better parser (though code gen not implemented yet)
2 years ago