🌀 A brand-new compiler that allows practical application development using R7RS Scheme. We provide modern features and a stable system capable of generating fast native binaries.
Find a file
2016-01-18 19:17:51 -05:00
debug Relocating 2016-01-15 03:13:24 -05:00
docs Added code examples 2016-01-18 19:17:51 -05:00
examples Cleanup 2016-01-16 23:47:31 -05:00
include/cyclone Experimenting with explicit heap copying 2016-01-15 22:43:21 -05:00
scheme Removed dead code 2016-01-11 22:39:37 -05:00
srfi Added comments 2016-01-17 00:09:01 -05:00
test-lib New test file 2015-08-14 01:48:14 -04:00
tests Added test cases 2015-08-25 22:01:06 -04:00
.gitignore Initial file 2015-02-21 22:25:06 -05:00
cyclone.scm Added define-c 2016-01-07 22:45:16 -05:00
gc-notes.txt Removed finished 2016-01-17 22:54:20 -05:00
gc.c Ensure thread data fields are initialized 2016-01-17 21:39:51 -05:00
generate-c.scm Added thread data argument 2015-11-02 22:44:32 -05:00
icyc.scm Added process-context library 2016-01-10 22:01:34 -05:00
LICENSE Updated year 2015-07-22 21:30:15 -04:00
Makefile Added process-context library 2016-01-10 22:01:34 -05:00
Makefile.config Use separate configs for X86 / ARM (pi 2) 2015-12-29 23:14:09 -05:00
Makefile.config.raspberry-pi-2 Use separate configs for X86 / ARM (pi 2) 2015-12-29 23:14:09 -05:00
README.md Revised 2016-01-14 03:10:50 -05:00
runtime.c Added comments 2016-01-17 00:09:01 -05:00
TODO Added notes 2015-10-13 22:32:17 -04:00

cyclone-scheme

Cyclone is an experimental Scheme-to-C compiler that uses a variant of the Cheney on the MTA technique to implement full tail recursion, continuations, generational garbage collection, and native threads. Unlike previous Cheney on the MTA compilers, Cyclone allows execution of multiple native threads. A tracing garbage collector is used to manage the second-generation heap and perform major collections without "stopping the world".

Getting Started

  1. To install Cyclone on your machine for the first time use cyclone-bootstrap to build a set of binaries.

  2. After installing you can run the cyclone command to compile a single Scheme file:

     $ cyclone examples/fac.scm
     $ examples/fac
     3628800
    

    And the icyc command to start an interactive interpreter:

     $ icyc
    
                   :@
                 @@@
               @@@@:
             `@@@@@+
            .@@@+@@@      Cyclone
            @@     @@     An experimental Scheme compiler
           ,@             https://github.com/justinethier/cyclone
           '@
           .@
            @@     #@     (c) 2014 Justin Ethier
            `@@@#@@@.     Version 0.0.1 (Pre-release)
             #@@@@@
             +@@@+
             @@#
           `@.
    
     cyclone> (write 'hello-world)
     hello-world
    

    You can use rlwrap to make the interpreter more friendly, EG: rlwrap icyc.

  3. Read the documentation below for detailed information on how to use Cyclone.

Documentation

The User Manual covers in detail how to use Cyclone, and provides information and API documentation on the Scheme language features implemented by Cyclone.

The Development Guide contains instructions for hacking on Cyclone.

Writing the Cyclone Scheme Compiler provides high-level details on how the compiler was written and how it works.

Finally, if you need a place to start learning the Scheme language try a classic textbook such as Structure and Interpretation of Computer Programs.

References

License

Copyright (C) 2014 Justin Ethier.

Cyclone is available under the MIT license.