Tardis / lang /
..
app lang: Split in to library and executable 1 year ago
mini-gmp lang: Switch to mini-gmp rationals for number representation 8 months ago
modules lang: Add module loading dependency walker 7 months ago
CMakeLists.txt lang: Add module IDs as X macros 7 months ago
README.md lang: Add simple README 9 months ago
boolean.c lang: Move abort_msg and abort_if to vm 7 months ago
boolean.h lang: Couple object functions to VmState 7 months ago
bytecode.c lang: Rename number to rational 7 months ago
bytecode.h lang: Pass object to bytecode_run 9 months ago
compile.py lang: Add module loading dependency walker 7 months ago
debug.c lang: Add debug logging 7 months ago
debug.h lang: Add debug logging 7 months ago
error.c lang: Add stack traces on abort 7 months ago
error.h lang: Add stack traces on abort 7 months ago
main.c lang: Create modules and dependencies on request 7 months ago
module.c lang: Switch to for loops for string iteration 7 months ago
module.h lang: Create modules and dependencies on request 7 months ago
object.c lang: Fix typo 7 months ago
object.h lang: Couple object functions to VmState 7 months ago
rational.c lang: Add multiply and divide and rational loop test 7 months ago
rational.h lang: Allow creating rationals from an mpq value 7 months ago
types.h lang: Add more code documentation 9 months ago
vm.c lang: Free the VM stack trace 7 months ago
vm.h lang: Move abort_msg and abort_if to vm 7 months ago
README.md

Language prototype project

This is the prototype language for the Tardis prototype project.

This is mainly to get an environment up and running. This means no fancy features, no tests, no optimizations, etc.

Design notes:

  • Bytecode VM is stack-based with indexing
  • Garbage collection is done using reference counting
  • Stack is shifted on function call
  • Empty function arguments are re-used for return values
  • Callee cleans up unused stack space when returning

License

All documentation and software for this project is under the MIT license unless otherwise specified.

Copyright: 2023 Casey Reeves casey.reeves@lumina-sensum.com

Copyright: 2023 John Watts john.watts@lumina-sensum.com

SPDX-License-Identifier: MIT