JLang
JLang copied to clipboard
JLang: Ahead-of-time compilation of Java programs to LLVM
_From @gharrma on February 11, 2018 16:19_ Improve debug support by - Providing debug type information for class fields - Limiting variable information to their lexical scope _Copied from original...
_From @yizhouzhang on September 14, 2017 19:5_ _Copied from original issue: gharrma/polyllvm#34_
_From @gharrma on April 27, 2017 16:51_ Add LLVM metadata for type based alias analysis. See http://llvm.org/docs/LangRef.html#tbaa-metadata _Copied from original issue: gharrma/polyllvm#31_
_From @andrewcmyers on March 9, 2017 17:59_ We should see how well we are doing against the competition, at least on some small benchmarks. _Copied from original issue: gharrma/polyllvm#24_
_From @gharrma on February 23, 2017 4:23_ Options: - Write a signal handler for SIGSEGV that (somehow) throws a `NullPointerException`. See [here](http://stackoverflow.com/questions/2663456/how-to-write-a-signal-handler-to-catch-sigsegv) for tips. - Emit code that checks for...
_From @gharrma on February 3, 2017 6:29_ "Make sure that your Modules contain both a data layout specification and target triple. Without these pieces, non of the target specific optimization...
_From @gharrma on February 2, 2017 20:12_ Issue #34 would have to be fixed first. _Copied from original issue: gharrma/polyllvm#11_
_From @gharrma on December 14, 2016 1:13_ This includes: - Methods marked with the `synchronized` keyword (use try-finally) - Synchronized blocks (use try-finally) - Fields marked with the `volatile` keyword...
Is it easy to update the polyglot of JLang to 2.8.0? I'm working with JLang for some project which meets some lambda calculus in the program. I find these features...
Hey, i have been trying to run JLang on my Apple M1. I have installed all the dependencies as well as configured it according to the quick start guide. But...