Drew Zagieboylo
Drew Zagieboylo
_From @gharrma on March 14, 2018 3:14_ This is still an issue, unfortunately. To fix this, my idea is to (1) Switch to using java.lang.Class object pointers (which were recently...
_From @gharrma on May 24, 2018 17:33_ This issue was originally de-prioritized, but it's becoming important again the JDK needs array runtime type information in order to compute things like...
In the current state, all Array types contain the same class object (polyllvm.runtime.Array); however, Java Reflection requires us to store typed array class information. E.g the class with the name...
_From @gharrma on May 24, 2018 17:23_ Note: with `gdb` we were able to print the values of local variables. Recently I switched to using `lldb` (since `gdb` seems to...
_From @andrewcmyers on March 14, 2018 12:41_ I propose to not support finalizers, which is consistent with the nonexistent promises that Java makes already.
_From @andrewcmyers on March 1, 2018 18:10_ That would be cool... even though we are compiling eagerly, we don't necessarily see the whole program, right?
_From @gharrma on March 1, 2018 18:20_ Yes, I suppose this would require that the user passes all files into PolyLLVM at once; perhaps we could implement this as an...
_From @andrewcmyers on March 1, 2018 19:27_ Sure, that makes sense. -------- Original message --------From: Matthew Gharrity Date: 3/1/18 1:20 PM (GMT-05:00) To: gharrma/polyllvm Cc: Andrew Myers , Comment Subject:...
Hi, We have not implemented support for _all_ of the JDK libraries in JLang's JVM runtime API yet. Therefore, we only compile a small subset of the JDK when building...
Error when compiling `awt` libs: ```~/JLang/jdk/src/java/awt/Frame.java:1284: Constructor java.awt.Window.AccessibleAWTWindow() cannot be invoked with arguments (java.awt.Frame). protected class AccessibleAWTFrame extends AccessibleAWTWindow ^ 1 error. Exception in thread "main" polyglot.util.InternalCompilerError: /Users/drew/poly/JLang/jdk/src/java/awt/Frame.java:1284,14-14: Constructor java.awt.Window.AccessibleAWTWindow()...