Displaying 4 results from an estimated 4 matches for "use_aot".
Did you mean:
use_ad
2010 Jul 20
0
[LLVMdev] Fwd: Building VMKit
...under gdb like
$ gdb --args ./j3 HelloWorld
and print here backtrace at fall?
> I ran llcj under strace and found that it is not even opening the input or
> output files, but is otherwise running normally.
Let's make things clear (to me):
Have you pass these steps:
http://vmkit.llvm.org/use_aot.html - Java Ahead of Time (AOT) Compilation ?
If yes, how is it finished process of making glibj.zip into native code?
I didn't pass it on my 64-bit machine. Interesting if you get there
> Updating to the latest SVN version (revision 108831) didn't change anything
> (I was only a f...
2010 Sep 28
1
[LLVMdev] [VMKit-2.7] libvmjc.so building problem
...cc
--with-gc=mmtk
and then use `make ENABLE_OPTIMIZED=1' to build it
(I follow the instructions in this page: http://vmkit.llvm.org/use_mmtk.html)
After it's done, `j3' works properly.
Then I follow these instructions to enable AOT compilation:
http://vmkit.llvm.org/use_aot.html
* cd tools/vmjc/libvmjc
* make ENABLE_OPTIMIZED=1 REQUIRES_FRAME_POINTER=1
And an error is occurred:
============================================================
llvm[0]: Compiling glibj.zip to llvm
llvm[0]: Optimizing glibj.zip
Instruction does not dominate all uses!
%60 = getelementptr...
2010 Jul 13
1
[LLVMdev] VMKit - J3's startup time
Hi all,
Just a quick question.
Is there any way to reduce the startup time of J3?
Thanks,
Chanwit
2010 Jul 20
4
[LLVMdev] Fwd: Building VMKit
Hi Minas,
I tried recompiling Classpath with -fno-omit-frame-pointer, and now, instead
of printing an error message, j3 just segfaults in
"j3::JnjvmClassLoader::loadClassFromAsciiz(char const*, bool, bool) ()"
I ran llcj under strace and found that it is not even opening the input or
output files, but is otherwise running normally.
Updating to the latest SVN version (revision 108831)