Forsp LLVM-based compiler
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Clyne 6be79eda61
recursion; list via support.c
4 months ago
.gitignore break code into separate files 4 months ago
LICENSE add license to files 4 months ago
Makefile some error reporting 4 months ago
README.md break code into separate files 4 months ago
ast.cpp recursion; list via support.c 4 months ago
ast.hpp add license to files 4 months ago
llvm.cpp some error reporting 4 months ago
llvm.hpp add license to files 4 months ago
main.cpp recursion; list via support.c 4 months ago
parser.cpp add license to files 4 months ago
parser.hpp add license to files 4 months ago
support.c recursion; list via support.c 4 months ago
test.fp recursion; list via support.c 4 months ago
var.cpp add license to files 4 months ago
var.hpp add license to files 4 months ago

README.md

forspll

forspll is an implementation of Forsp as an LLVM-based compiler. Forsp is a tiny yet very versatile programming language that mixes features of Forth and Lisp. Through LLVM, Forsp can be compiled into efficient machine code for a wide array of platforms.

forspll features:

  • Lisp-style S-expression syntax
  • Forth-style data stack for parameters/values
  • Linking with C functions (see support.c)

Missing features:

  • Quote operator: quote/'
  • Lists and atoms or any dynamic allocations

Building

Requires Clang and LLVM development files.

Run make to build the compiler.

Run make prog to compile test.fp and support.c.