diff options
author | Yiannis Tsiouris <[email protected]> | 2014-01-28 18:16:14 +0200 |
---|---|---|
committer | Yiannis Tsiouris <[email protected]> | 2014-03-07 18:35:04 +0200 |
commit | b326df0d935d221574abf58d5e2a3efddd020278 (patch) | |
tree | bc0970b31420398f18a11b6738a72590f043482a /lib/hipe/main/hipe.app.src | |
parent | 030fd3f190a44bef059e7490c4b9c615088287d8 (diff) | |
download | otp-b326df0d935d221574abf58d5e2a3efddd020278.tar.gz otp-b326df0d935d221574abf58d5e2a3efddd020278.tar.bz2 otp-b326df0d935d221574abf58d5e2a3efddd020278.zip |
Support the LLVM backend in HiPE
Add flags to enable and use the LLVM backend:
* to_llvm: use the LLVM pipeline for compilation (default optimization level
is O3),
* llvm_save_temps: save the intermediate files in current directory in order
to be able to debug or optimize the LLVM assembly,
* {to_llvm, O}: set the optimization level of LLVM opt and llc tools.
Add some debug support to the loader; no semantic change intented.
Diffstat (limited to 'lib/hipe/main/hipe.app.src')
-rw-r--r-- | lib/hipe/main/hipe.app.src | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/hipe/main/hipe.app.src b/lib/hipe/main/hipe.app.src index bcdfcb0e03..a63c261719 100644 --- a/lib/hipe/main/hipe.app.src +++ b/lib/hipe/main/hipe.app.src @@ -30,6 +30,7 @@ cerl_prettypr, cerl_to_icode, cerl_typean, + elf_format, erl_bif_types, erl_types, hipe, @@ -108,6 +109,10 @@ hipe_ig, hipe_ig_moves, hipe_jit, + hipe_llvm, + hipe_llvm_liveness, + hipe_llvm_main, + hipe_llvm_merge, hipe_ls_regalloc, hipe_main, hipe_moves, @@ -159,6 +164,7 @@ hipe_rtl_symbolic, hipe_rtl_to_amd64, hipe_rtl_to_arm, + hipe_rtl_to_llvm, hipe_rtl_to_ppc, hipe_rtl_to_sparc, hipe_rtl_to_x86, |