Giter VIP home page Giter VIP logo

adelarsq / elm-compiler Goto Github PK

View Code? Open in Web Editor NEW

This project forked from brian-carroll/elm-compiler

0.0 1.0 0.0 10.58 MB

Compiler for Elm, a functional language for reliable webapps.

Home Page: http://elm-lang.org/

License: BSD 3-Clause "New" or "Revised" License

Haskell 85.24% Shell 0.14% JavaScript 0.26% NSIS 0.44% Batchfile 0.02% CSS 0.13% Python 0.07% Elm 11.74% Dockerfile 0.06% Rich Text Format 0.07% VBScript 0.06% C 1.64% HTML 0.12%

elm-compiler's Introduction

Elm compiler with C code generation

This fork of the Elm compiler generates C code that can be further compiled to WebAssembly using Emscripten.

It also generates a JavaScript file to wrap the WebAssembly module and connect it to the Elm runtime. The Elm runtime is implemented in JavaScript so that it can access browser APIs, which are not currently available in WebAssembly.

For more detail on this architecture, see the JS wrapper docs

Changes to the Elm CLI

terminal/src/Make.hs

  • Create an output mode for C --output foo.c
    • The official compiler already detects *.js and *.html file extensions, so add *.c to that list.
  • When a C output is specified, write two output files, foo.c and foo.js. The JS filename is inferred from the C filename.

Build process

  • There are several steps in the build process, currently coordinated using Makefiles. More details in the core libraries repo
  • For now, the .c file has to be converted to .wasm using Emscripten in a second compile step.
  • Eventually there will need to be a more streamlined build process here

Changes to code generation

builder/src/Generate/

  • Add an extra submodule C.hs to the Generate module, which returns a pair of strings to be written to the two output files.
  • Expose some functions from the JS code generator that we need to call from the C generator
  • Add comments to the JS code. This was helpful during development to analyse exactly how the AST maps to JS.

C file structure

Diagram of C file structure

Constant declarations

  • Program constants (string literals, etc.)
  • Custom type constructor IDs
  • Record type info (field IDs & "field groups")
  • JS kernel function IDs & closures

Elm top level values

  • Values defined in the top level scope of any Elm module
    • They're mostly functions, but can be other things too
  • They compile to declarations in the top level scope of the C program ("external declarations")
  • The Elm compiler sometimes uses several aliases for the same value, and this is implemented in C using the #define directive
  • Initialised top level values
    • A small number of top level values are expressions that need to be evaluated when the program is loaded.
    • In JS, this happens when the JS engine loads the file.
    • In C, we are not allowed to have non-constant expressions in the top-level scope, unlike in Elm and JS. We need to wrap each non-constant expression in a C function, to be called exactly once from the C main function.
    • If a top-level value is initialised then it will be allocated on the heap instead of being considered a constant. It needs to be registered as a GC root, and the generated code ends up being a bit more complicated.
needToEvaluateBeforeAppInit : String
needToEvaluateBeforeAppInit = "Hello " ++ "world"

Elm main values

  • The compiler supports multiple main values in the same output bundle. They are generated as a C array, which is passed via the wrapper to the JS kernel.
  • All of the code is in place to support having multiple mains. (It was actually easier to keep this feature than to remove it!) But it's completely untested, so it may not be working yet.

C main function

  • Emscripten calls the C main function after the WebAssembly module is loaded
  • Initialise GC
  • Call any initialisation functions for top level values, in dependency order. Allocate them on the heap and register them as GC roots.
  • Initialise the JS/Wasm wrapper. (This step could be eliminated in a future refactor.)

C code style

An example of generated C code can be found here. That example is very likely to get outdated, but might be interesting to browse through to get an initial feel for things.

Here are a few points to note about the C code

  • It's intended to be fairly readable. (At least readable enough to debug the compiler.) But almost no effort is made to format the whitespace nicely, because I use a clang-format IDE plugin for that.
  • All C variables referring to Elm values have pointer types, usually void*, which is a "pointer to anything".
  • Most of the code contains no information about Elm types, since it is dropped by the compiler before code gen. Most of the functions that actually care about the internals of data structures are in the C kernel code.
  • All dynamic values are allocated on the heap. We don't use the stack very much.
    • Heap allocation is extremely cheap with the GC we're using. It's just a matter of incrementing a pointer. You may have been taught that allocation is far cheaper on the stack than the heap, but that advice tends to assume you're using malloc which we're not.
  • Constants are not allocated on the heap. They are stored as part of the program data.
    • This includes language built-ins like True, False, () and [], as well as program-specific constants like string and number literals from the Elm source.
    • Constants are accessed via pointers, the same as dynamically allocated values. They're just stored in a different address range.
    • In most cases it would be nice if True and False were just represented as integers 1 and 0 instead of pointers to constant structures. But that would make it more complicated to implement a List Bool, for example. It's simpler for now if everything is always a pointer.
  • Elm names are prefixed with x_, so that the Elm name model becomes the C name x_model. This is to help ensure that any compiler-generated names can't clash with user-defined names. The JS code generator achieves the same thing by prefixing compiler-generated names with an underscore, but that approach is more dangerous in C. There are a lot of hidden magic symbols that begin with underscores.
  • Macros like A1, A2, A3 are used for function application, just like in the JavaScript code generator. These are C preprocessor macros defined in the C implementation of the Elm core libraries
  • Macros like NEW_RECORD and NEW_CLOSURE handle memory allocation. They also handle the case where the GC runs out of heap space. In that case all functions return early, just like an "exception". We then do a GC and try again. (See GC docs)

Architecture Challenges

I decided to restrict myself to only touching the code-generation part of the compiler, and leaving everything else alone as much as possible. There are only a few minor changes to the command-line interface so that you can specify whether you want to generate JS or C output files.

The main drawback is that the code generator does not have access to Elm type information. All the type annotations in the AST are dropped at an earlier stage in the compiler pipeline.

Ambiguity between Int and Float at JS/Wasm interface

When a message from the Elm runtime to the Wasm module contains a number, the wrapper needs to convert it from a JS number to the byte-level representation of either an Int or a Float. To choose the right one, the code generator would need to know which app Msg constructor parameters are Int and which are Float. But it doesn't.

The current workaround is to guess that a round number is always an Int! But that is quite unreliable, and a mistake could result in programs silently processing corrupted data.

However, apps that never use a Float in any Msg constructor are safe. Neither the TODO MVC example nor the Elm SPA Example use Floats in messages, so they cannot suffer from this issue.

Ambiguity de-structuring Cons, Tuple and Custom

The AST used in the code generator makes no distinction between accessing the head of a list, and accessing the first parameter of a Tuple or Custom type. This is OK in JavaScript because the same object shape is used for all three.

But in my Wasm implementation, Cons and Tuple use smaller, more optimised structures than Custom types. So I can't use the same code to access the data inside them. Instead I generate code that detects the type at runtime, and then accesses it in the appropriate way for the detected type. This is slower than it needs to be.

The other possible workaround would be to use the same memory layout for all of these structures. But that would make Cons and Tuple2 33% bigger, wasting space. This would impact performance by reducing the amount of useful data that can fit in CPU cache.

Having type information in the AST would allow me to generate the most optimal code.

Time module

The WebAssembly code uses 32-bit values for the Elm Int type. It could use 64-bit integers but that would prevent using a fairly basic optimisation called "unboxing" in the future.

Elm's Json.Decode.int function only allows integers in the 32-bit range. The Bitwise module uses 32-bit integers. But the Time module uses Int values that are around 42 bits.

ย 

elm-compiler's People

Contributors

andys8 avatar apanatshka avatar avh4 avatar boshen avatar brian-carroll avatar brianhicks avatar bsattelb avatar dandandan avatar deadfoxygrandpa avatar dobesv avatar evancz avatar hdgarrood avatar imeckler avatar jfmengels avatar joeyeremondi avatar johnpmayer avatar jsl avatar jvoigtlaender avatar laszlopandy avatar maxsnew avatar mgold avatar michaelbjames avatar ngunn avatar perplexes avatar process-bot avatar sheeo avatar techtangents avatar timthelion avatar vbychkovsky avatar xash avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.