Examples of how to generate LLVM in Haskell with the libraries llvm-hs and llvm-hs-pure.
Meant to complement the more official llvm-hs-examples.
Each example is presented in different formats.
-
Handwritten
E.g. ./handwritten/hello-world.ll
Before trying to generate LLVM using a particular feature using Haskell, it helps to write it once manually.
-
Haskell
E.g. ./src/Example.hs (then see the definition for
helloWorld
).Code using llvm-hs-pure's nice EDSL. Generates everything below.
-
Haskell data
E.g. ./generated/hello-world.hs
Pretty printed data structure created by the previous step. You wouldn't want to write this by hand!
-
Generated LLVM
-
Assembly
-
Machine code
E.g.
./generated/hello-world.native
Excluded from the repo by
.gitignore
, but you can see it if you regenerate the examples yourself.
System dependencies (on Ubuntu):
sudo apt install llvm-7
sudo apt install clang
Regenerate examples:
stack build --fast --file-watch --test