]> git.bts.cx Git - sun.git/commit
Initial commit
authorBen Sherratt <redacted>
Sat, 13 Feb 2021 10:41:36 +0000 (10:41 +0000)
committerBen Sherratt <redacted>
Fri, 8 Dec 2023 12:58:49 +0000 (12:58 +0000)
commitc14e8cb22c12114bd78aae89e54ccd51ad522c50
tree55cbb2799f643e1f8bc55260d22f882b4fddbf96
Initial commit
33 files changed:
CMakeLists.txt [new file with mode: 0644]
aot/c_generator.c [new file with mode: 0644]
aot/c_generator.h [new file with mode: 0644]
runtime/CMakeLists.txt [new file with mode: 0644]
runtime/src/sun/compiler/compiler.c [new file with mode: 0644]
runtime/src/sun/compiler/compiler.h [new file with mode: 0644]
runtime/src/sun/compiler/compiler_internal.h [new file with mode: 0644]
runtime/src/sun/compiler/sun.l [new file with mode: 0644]
runtime/src/sun/compiler/sun.y [new file with mode: 0644]
runtime/src/sun/compiler/vm_generator.c [new file with mode: 0644]
runtime/src/sun/compiler/vm_generator.h [new file with mode: 0644]
runtime/src/sun/tree/crc32.h [new file with mode: 0644]
runtime/src/sun/tree/data_type.c [new file with mode: 0644]
runtime/src/sun/tree/data_type.h [new file with mode: 0644]
runtime/src/sun/tree/node.c [new file with mode: 0644]
runtime/src/sun/tree/node.h [new file with mode: 0644]
runtime/src/sun/tree/node_internal.h [new file with mode: 0644]
runtime/src/sun/tree/node_type.c [new file with mode: 0644]
runtime/src/sun/tree/node_type.h [new file with mode: 0644]
runtime/src/sun/tree/operator_type.c [new file with mode: 0644]
runtime/src/sun/tree/operator_type.h [new file with mode: 0644]
runtime/src/sun/tree/tree.c [new file with mode: 0644]
runtime/src/sun/tree/tree.h [new file with mode: 0644]
runtime/src/sun/vm/fixed.c [new file with mode: 0644]
runtime/src/sun/vm/fixed.h [new file with mode: 0644]
runtime/src/sun/vm/instruction.c [new file with mode: 0644]
runtime/src/sun/vm/instruction.h [new file with mode: 0644]
runtime/src/sun/vm/vm.c [new file with mode: 0644]
runtime/src/sun/vm/vm.h [new file with mode: 0644]
runtime/src/sun/vm/vm_internal.h [new file with mode: 0644]
tests/CMakeLists.txt [new file with mode: 0644]
tests/main.c [new file with mode: 0644]
tests/test_1.sun [new file with mode: 0644]