Drew Zagieboylo
Drew Zagieboylo
_From @andrewcmyers on March 14, 2018 12:42_ Chin used some large test suite whose name I don't remember right now to test Java compatibility.
_From @andrewcmyers on March 14, 2018 20:41_ It was the Jacks test suite, which has apparently been absorbed into Mauve. http://www.sourceware.org/mauve/
Issue #34 in the above comment is now issue #7
We don't currently have any Maven integration support with JLang, unfortunately. Additionally, you cannot link pre-compiled JAR files (such as pre-compiled third party libraries) with JLang-compiled code, at present. You...
_From @andrewcmyers on March 9, 2017 21:38_ The interrupt approach would require modifying the ucontext structure in the signal handler to make the pc go to an exception generating code...
_From @andrewcmyers on March 10, 2017 0:19_ Here is some C code that recovers from SIGSEGV (sort of). From LLVM code you can do better because you know the address...
_From @andrewcmyers on March 10, 2017 0:24_ Note that the actual signal handler generated would need to map from the current pc (__rip) to the desired pc for handling the...
_From @gharrma on March 10, 2017 1:28_ Interesting code snippet! Something like that might work, though my understanding isn't deep enough yet to know how to get from the signal...
_From @andrewcmyers on March 10, 2017 1:52_ setjmp/longjmp will be too expensive to use. I think you just want to reset the pc as you return to another label within...
_From @andrewcmyers on April 25, 2017 15:45_ Did we figure out how to do this?