Whalesong: Racket to JavaScript compiler
Go to file
2012-05-04 16:16:59 -04:00
base/lang fixing the base (untraced) language 2011-08-30 02:10:03 -04:00
bf trying to fix implicit refernces of planet, but something broke 2011-08-14 19:24:17 -04:00
compiler commenting out the all-applications collection for the moment; optimizaton to be done in an upcoming release, but not now. 2012-03-26 17:10:12 -04:00
cs019 fixed memq as sk does, and also fixing the test case expectations. 2011-11-09 21:54:56 -05:00
examples correcting white-space: Firefox does not like it 2012-03-22 17:45:19 -04:00
experiments Moved compiler-related stuff to compiler subdirectory 2011-05-26 19:46:49 -04:00
ie-compat legacy ie library for excanvas stuff 2011-09-29 16:51:39 -04:00
image correcting scaling bug 2012-03-06 11:05:01 -05:00
js changing the success continuation passed to js-function->procedure so it can return multiple values back easily. 2012-03-19 21:50:59 -04:00
js-assembler Explicitly marking read-accept-lang #t 2012-05-04 16:04:17 -04:00
korean/lang adding korean reader 2011-08-09 09:48:18 -04:00
lang trying to get in abort-current-continuation 2012-03-16 16:55:05 -04:00
make trying to normalize namespaces between js-implemented and Whalesong-implemented 2012-02-27 17:39:15 -05:00
notes more notes about making things work with phonegap 2011-09-15 15:18:21 -04:00
parser getting compile-time errors when compiling certain modules. 2012-04-18 15:02:29 -04:00
private correcting offset error 2011-09-03 20:39:12 -04:00
resource adding expectations for what happens for module-scoping test. 2012-02-26 22:59:37 -05:00
sandbox binding the code 2011-12-14 15:09:56 -05:00
scribblings oops 2012-05-04 16:09:50 -04:00
storage type checks 2011-12-01 17:22:41 -05:00
tests adding the code for analyzing what applications a lambda calls 2012-03-23 14:45:57 -04:00
tool working on the tool ui 2011-08-14 18:41:18 -04:00
version-case hiding some of the paths from raco setup, so we get clean compiles 2011-08-15 18:13:28 -04:00
web-world got the example working a lot better now. 2012-03-19 22:31:16 -04:00
world corrected the weirdness with saving the old argcount before restarting computation. Now the makeRestartFunction handles this low-level detail for us. 2011-09-29 18:14:52 -04:00
bump-version.rkt adding notes on bumping the version number. 2011-09-22 15:57:46 -04:00
call-with-timeout.rkt fixing some tests 2011-06-01 14:18:15 -04:00
expand-out-images.rkt unable to currently figure out what's wrong with my expand-out-images subphase. Argh. 2011-11-02 16:41:43 -04:00
generate-c-star-d.rkt trying to fix all the silly c...r functions 2012-02-20 16:49:37 -05:00
get-module-bytecode.rkt Explicitly marking read-accept-lang #t 2012-05-04 16:04:17 -04:00
helpers.rkt traced bug with list intersection 2011-03-23 19:19:49 -04:00
image.rkt renaming world to image; trying to split the library to logical chunks for testability 2011-07-06 20:28:16 -04:00
info.rkt bumping version 2012-05-04 16:16:59 -04:00
js.rkt variable renaming 2012-03-05 17:10:26 -05:00
language-namespace.rkt trying to clean up; code is getting too large to manage 2011-05-13 13:57:17 -04:00
logger.rkt fixing the logs so we don't run into format errors 2011-08-01 11:46:40 -04:00
make-launcher.rkt oops 2012-05-04 16:09:50 -04:00
make-planet-archive.sh bumping to 18 2012-05-04 16:06:38 -04:00
Makefile bumping to 18 2012-05-04 16:06:38 -04:00
parameters.rkt trying to reduce cost of primitive application 2012-02-29 13:55:04 -05:00
promise.rkt trying to introduce promises so I can pre-cache some of the compilations 2011-09-22 14:31:53 -04:00
README switching over to use browser-evaluate planet package 2011-08-18 16:10:48 -04:00
resource.rkt working on external file resources 2011-08-09 18:03:15 -04:00
sets.rkt relooper start 2011-02-28 23:01:45 -05:00
storage.rkt playing around with storage 2011-11-30 16:03:39 -05:00
type-helpers.rkt adding static check to make sure I didn't screw up the type subset definition 2011-08-19 19:17:33 -04:00
union-find.rkt union find fixing 2011-07-16 13:49:46 -04:00
version.rkt commenting out the all-applications collection for the moment; optimizaton to be done in an upcoming release, but not now. 2012-03-26 17:10:12 -04:00
web-world.rkt sketching out prototype for web-world 2011-08-22 14:53:11 -04:00
whalesong-cmd.rkt sending things to the report port 2012-05-02 23:34:45 -04:00
whalesong-gui.rkt changing the abort so it doesn't kill us so easily 2012-05-04 15:44:25 -04:00
whalesong-helpers.rkt changing the abort so it doesn't kill us so easily 2012-05-04 15:44:25 -04:00
whalesong.rkt adding version 2011-11-08 13:36:31 -05:00
world.rkt world now doesn't export image. Added cow example 2011-08-19 16:56:54 -04:00

======================================================================
Whalesong: a compiler from Racket to JavaScript.

Danny Yoo (dyoo@cs.wpi.edu)


======================================================================


See:  http://hashcollision.org/whalesong/index.html for documentation.

The rest of the content in this document will migrate there shortly.


======================================================================





Prerequisite: Racket 5.1.1.  The majority of the project is written
Typed Racket, and I highly recommend you use a version of Racket
that's at least 5.1.1; otherwise, compilation may take an unusual
amount of time.


======================================================================

Example usage



Create a simple, standalong executable of your program.  At the
moment, the program must be written in the base language of whalesong.
(This restriction currently prevents arbitrary racket/base programs
from compiling, and we'll be working to remove this restriction.)

    $ cat hello.rkt 
    #lang planet dyoo/whalesong
    (display "hello world")
    (newline)

    $ ./whalesong.rkt build hello.rkt

    $ ls -l hello.xhtml
    -rw-rw-r-- 1 dyoo nogroup 692213 Jun  7 18:00 hello.xhtml


[FIXME: add more examples]


======================================================================

Architecture:

The basic idea is to reuse most of the Racket compiler infrastructure.
We use the underlying Racket compiler to produce bytecode from Racket
source; it also performs macro expansion and module-level
optimizations for us.  We parse that bytecode using the
compiler/zo-parse collection to get an AST, compile that to an
intermediate language, and finally assemble JavaScript.


                        AST          IL                     JS
 parse-bytecode.rkt ----------> compiler.rkt --------> assembler.rkt ------->
    (todo)


The IL is intended to be translated straightforwardly.  We currently
have an assembler to JavaScript, as well as a simulator
(simulator.rkt).  The simulator allows us to test the compiler in a
controlled environment.



======================================================================

parser/parse-bytecode.rkt

This is intended to reuse the Racket compiler to produce the AST
structures defined in compiler/zo-parse.


======================================================================

compiler/compiler.rkt

translates the AST to the intermediate language.  The compiler has its
origins in the register compiler in Structure and Interpretation of
Computer Programs:

    http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-35.html#%_sec_5.5

with some significant modifications.  Since this is a stack machine,
we don't need any of the register-saving infrastructure in the
original compiler.  We also need to support slightly different linkage
structures, since we want to support multiple value contexts.  We're
trying to generate code that works effectively on a machine like the
one described in:

    http://plt.eecs.northwestern.edu/racket-machine/



The intermediate language is defined in il-structs.rkt, and a
simulator for the IL in simulator/simulator.rkt.  See
test-simulator.rkt to see the simulator in action, and
test-compiler.rkt to see how the output of the compiler can be fed
into the simulator.



The assumed machine is a stack machine with the following atomic
registers:

    val: value
    proc: procedure
    argcount: number of arguments

and two stack registers:

    env: environment stack
    control: control stack



======================================================================

js-assembler/assemble.rkt

The JavaScript assembler plays a few tricks to make things like tail
calls work:

   * Each basic block is translated to a function taking a MACHINE
     argument.

   * Every GOTO becomes a function call.

   * The head of each basic-blocked function checks to see if we
     should trampoline
     (http://en.wikipedia.org/wiki/Trampoline_(computers))

   * We support a limited form of computed jump by assigning an
     attribute to the function corresponding to a return point.  See
     the code related to the LinkedLabel structure for details.


Otherwise, the assembler is fairly straightforward.  It depends on
library functions defined in mini-runtime.js.  As soon as the compiler
stabilizes, we will be pulling in the runtime library in Moby Scheme
into this project.


The assembled output distinguishes between Primitives and Closures.
Primitives are only allowed to return single values back, and are not
allowed to do any higher-order procedure calls.  Closures, on the
other hand, have full access to the machine, but they are responsible
for calling the continuation and popping off their arguments when
they're finished.




======================================================================

Tests

The test suite in test-all.rkt runs the test suite.  You'll need to
run this on a system with a web browser, as the suite will evaluate
JavaScript and make sure it is producing values.  A bridge module
(planet dyoo/browser-evaluate) brings up a temporary web server that allows us
to pass values between Racket and the JavaScript evaluator on the
browser.



======================================================================

Acknowledgements and Thanks


This uses code from the following projects:

   jshashtable (http://www.timdown.co.uk/jshashtable/)
   js-numbers (http://github.com/dyoo/js-numbers/)
   JSON (http://www.json.org/js.html)
   jquery (http://jquery.com/)


   [FIXME: add more]