Lightweight bytecode interpreter
Go to file
Lassi Kortela 0bf4243ae0 Use intptr_t and uintptr_t
Thanks @krytarowski
2020-03-17 11:38:32 +02:00
attic remove and clean up some old files 2013-06-11 17:31:51 -04:00
examples remove and clean up some old files 2013-06-11 17:31:51 -04:00
lib a rename 2012-02-17 18:36:19 -05:00
llt Add NetBSD support 2020-03-08 02:36:54 +02:00
tests fix part of #53, error check for invalid `set!` location 2019-06-06 19:42:09 -04:00
tiny Use intptr_t and uintptr_t 2020-03-17 11:38:32 +02:00
.gitattributes Make GitHub detect lisp files as Scheme. 2020-03-08 02:51:32 +02:00
.gitignore Update .gitignore 2020-02-26 11:18:18 +02:00
LICENSE moving stuff around some more 2012-02-17 17:53:34 -05:00
Makefile Make FreeBSD a "first class citizen" among femtolisp's build OSes. 2015-04-11 15:21:02 -04:00
Makefile.macosx Both clang and gcc define both MACOSX and ARCH_X86_64, no need to explicitly define them in the Makfiles. 2017-08-13 20:15:45 +02:00
README.md replace use of "TCO" in README. closes #55 2019-06-06 19:53:52 -04:00
aliases.scm fix #24, make `<=` and `>=` work on strings 2016-09-17 14:30:05 -04:00
ascii-mona-lisa moving stuff around some more 2012-02-17 17:53:34 -05:00
ascii-mona-lisa-2 moving stuff around some more 2012-02-17 17:53:34 -05:00
bootstrap.sh moving stuff around some more 2012-02-17 17:53:34 -05:00
builtins.c add math library functions sqrt, exp, log, sin, cos, tan, asin, acos, atan 2017-08-19 14:54:32 -04:00
compiler.lsp fix part of #53, error check for invalid `set!` location 2019-06-06 19:42:09 -04:00
cvalues.c Fix * and + to return inexact when given inexact args. 2017-08-09 14:21:29 -04:00
equal.c lower `BOUNDED_COMPARE_BOUND`, allowing r7rs `equal` benchmark to complete 2017-08-19 12:38:17 -04:00
equalhash.c moving stuff around some more 2012-02-17 17:53:34 -05:00
equalhash.h removing leading/trailing underscores from preprocessor symbols 2012-02-20 17:43:53 -05:00
flisp.boot fix part of #53, error check for invalid `set!` location 2019-06-06 19:42:09 -04:00
flisp.c Add NetBSD support 2020-03-08 02:36:54 +02:00
flisp.h several minor changes and additions: 2013-06-08 19:29:15 -04:00
flmain.c Merge branch 'master' of github.com:JeffBezanson/femtolisp 2013-06-08 19:29:46 -04:00
iostream.c Fix "use-after-relocate" in stream_to_string 2017-08-20 13:30:03 +02:00
mkboot0.lsp moving stuff around some more 2012-02-17 17:53:34 -05:00
mkboot1.lsp moving stuff around some more 2012-02-17 17:53:34 -05:00
opaque_type_template.c moving stuff around some more 2012-02-17 17:53:34 -05:00
opcodes.h removing leading/trailing underscores from preprocessor symbols 2012-02-20 17:43:53 -05:00
operators.c fixing large int64 comparison bug 2012-03-15 00:21:39 -04:00
print.c fix part of #53, assertion failure in print_traverse 2019-06-06 19:34:00 -04:00
read.c fix part of #53, assertion failure on invalid dotted list 2019-06-06 19:48:54 -04:00
string.c add function `char-alphabetic?` 2017-08-19 14:19:23 -04:00
system.lsp fix #24, make `<=` and `>=` work on strings 2016-09-17 14:30:05 -04:00
table.c several minor changes and additions: 2013-06-08 19:29:15 -04:00
todo moving stuff around some more 2012-02-17 17:53:34 -05:00
todo-scrap moving stuff around some more 2012-02-17 17:53:34 -05:00
types.c Eliminated caching of overconstrained array types for cvalues 2017-08-18 13:48:32 -04:00

README.md

Join the chat at https://gitter.im/FemtoLisp/flisp

...a purely symbolic gesture...

This project began with an attempt to write the fastest lisp interpreter I could in under 1000 lines of C. It snowballed from there as I kept trying to see if I could add powerful features with minimal code. At the same time I assembled a library of some of my favorite C code (by myself and others) to use as a base for a standard library. This includes ios, a replacement for parts of C's stdio that adds more flexible features.

Before you say "oh no, another lisp", consider the following: femtolisp is about 150kb, is very self-contained, and has the following features:

  • vectors, strings, gensyms
  • backquote
  • exceptions
  • printing and reading circular/shared structure
  • all values can be printed readably
  • prettyprinting
  • hash tables
  • support for directly using C data types ala Python's ctypes
  • equal and ordered comparison predicates that work on circular structure
  • proper tail recursion
  • io and memory streams with utf8 support
  • highly compatible with Scheme, including some R6RS features
  • simple, well-organized, powerful API with as few functions as possible
  • compacting GC
  • and...

...it is fast, ranking among the fastest non-native-compiled Scheme implementations. It achieves this level of speed even though many primitives (e.g. filter and for-each) are written in the language instead of C. femtolisp uses a bytecode compiler and VM, with the compiler written in femtolisp. Bytecode is first-class, can be printed and read, and is "human readable" (the representation is a string of normal low-ASCII characters).

femtolisp is a simple, elegant Scheme dialect. It is a lisp-1 with lexical scope. The core is 12 builtin special forms and 33 builtin functions.

A primary design goal is to keep the code concise and interesting. I strive to have each concept implemented in just one place, so the system is easy to understand and modify. The result is high reliability, because there are fewer places for bugs to hide. You want a small core of generically useful features that work really well (for example, see torture.scm).

Almost everybody has their own lisp implementation. Some programmers' dogs and cats probably have their own lisp implementations as well. This is great, but too often I see people omit some of the obscure but critical features that make lisp uniquely wonderful. These include read macros like #. and backreferences, gensyms, and properly escaped symbol names. If you're going to waste everybody's time with yet another lisp, at least do it right damnit.

Another design goal is to avoid spurious novelties. Many others offering their own "shiny new" lisp dialects get carried away and change anything that strikes their fancy. These changes have no effect except incompatibility, and often make the language worse because the new design was not as carefully thought out and has not stood the test of time. For example, how does it help to remove backquote? One design changes the syntax of quote. Some systems disallow dotted lists. (I've seen all three of these.) What's the point? Implementers wave the banner of "simplicity", yet wedge in all kinds of weird implicit behaviors and extra evaluation rules.

Lately a surprising amount of FUD has been spread about proper tail recursion. I agree that not every language needs it, but I would like to refute the idea that it makes interpreters slow. Look at the "tiny" subdirectory or the "interpreter" branch to see a pure s-expr interpreter with efficient proper tail calls. All you have to do is keep track of whether you're in tail position, which can be done very cheaply. These interpreters are difficult to beat for speed, yet they have lexical scope and proper tail calls.

This project is mostly a matter of style. Look at the code and you'll understand.

This is what I do for fun, because it is the exact opposite of the kind of thing people will pay for: an obscure implementation of a programming language everybody hates.