search for: staticgcprinter

Displaying 10 results from an estimated 10 matches for "staticgcprinter".

2012 Oct 22
1
[LLVMdev] VMkit compilation error
...serts build (bytecode) llvm[1]: Compiling StaticGCPass.ll to StaticGCPass.bc for Release+Asserts build (bytecode) llvm[1]: Building Release+Asserts Bytecode Archive libStaticGCPass.bca make[1]: Leaving directory `.../vmkit/lib/vmkit/StaticGCPass' make[1]: Entering directory `.../vmkit/lib/vmkit/StaticGCPrinter' llvm[1]: Compiling VmkitGCPrinter.cpp for Release+Asserts build (PIC) VmkitGCPrinter.cpp: In member function ‘virtual void {anonymous}::VmkitAOTGCMetadataPrinter::finishAssembly(llvm::AsmPrinter&)’: VmkitGCPrinter.cpp:292:63: error: no matching function for call to ‘llvm::DataLayout::getPo...
2012 Oct 20
1
[LLVMdev] VMKit: Problem compiling vmkit
...Build project information. make[1]: Entering directory `/home/callum/vmkit/vmkit/lib/vmkit/StaticGCPass' make[1]: Nothing to be done for `all'. make[1]: Leaving directory `/home/callum/vmkit/vmkit/lib/vmkit/StaticGCPass' make[1]: Entering directory `/home/callum/vmkit/vmkit/lib/vmkit/StaticGCPrinter' llvm[1]: Compiling VmkitGCPrinter.cpp for Release+Asserts build (PIC) VmkitGCPrinter.cpp: In member function ‘virtual void {anonymous}::VmkitAOTGCMetadataPrinter::finishAssembly(llvm::AsmPrinter&)’: VmkitGCPrinter.cpp:292:63: error: no matching function for call to ‘llvm::DataLayout::get...
2012 Nov 06
0
[LLVMdev] vmjc + llc questions
...m to native code, and I've been having trouble. I'm tripping an assertion that I don't quite understand yet. I'm just curious if anybody can point me in the right direction. $ javac helloworld.java $ vmjc -o helloworld.bc helloworld.class $ llc -load=<...>/Release+Asserts/lib/StaticGCPrinter.so helloworld.bc -o helloworld.s llc: VmkitGCPrinter.cpp:268: llvm::Constant* FindMetadata(const llvm::Function&): Assertion `0 && "Should have found a JavaMethod"' failed. 0 llc 0x000000000103726f 1 llc 0x0000000001037799 2 libpthread.so.0...
2012 Jun 29
0
[LLVMdev] Error using llcj
...+Asserts/bin/llc /tmp/llvm_WbIrdX/hello.bc -disable-fp-elim -o /tmp/llvm_WbIrdX/hello.s 1. Running pass 'Function Pass Manager' on module '/tmp/llvm_WbIrdX/hello.bc'. After observing the makefile of vmkit/tools/precompiler/trainer/Makefile i added the code to load the shared library StaticGCPrinter.so shyam at shyam:~$ llcj --main=hello hello.class -o hello vmjc /home/shyam/classpath-0.97.2/lib/vmkit/Release+Debug+Asserts/bin/vmjc --main=hello hello.class -f -o /tmp/llvm_Wa4yw2/hello.bc llc /home/shyam/llvmbuild/Release+Debug+Asserts/bin/llc /tmp/llvm_Wa4yw2/hello.bc -disable-fp-elim -disabl...
2013 Feb 12
2
[LLVMdev] [vmkit] Errors compiling vmkt
...vm[0]: Constructing LLVMBuild project information. make[1]: Entering directory `/home/chris/vmkit/lib/vmkit/StaticGCPass' make[1]: Nothing to be done for `all'. make[1]: Leaving directory `/home/chris/vmkit/lib/vmkit/StaticGCPass' make[1]: Entering directory `/home/chris/vmkit/lib/vmkit/StaticGCPrinter' make[1]: Nothing to be done for `all'. make[1]: Leaving directory `/home/chris/vmkit/lib/vmkit/StaticGCPrinter' make[1]: Entering directory `/home/chris/vmkit/lib' make[2]: Entering directory `/home/chris/vmkit/lib/vmkit' make[3]: Entering directory `/home/chris/vmkit/lib/vmkit...
2013 Feb 12
0
[LLVMdev] [vmkit] Errors compiling vmkt
...LLVMBuild project information. > make[1]: Entering directory `/home/chris/vmkit/lib/vmkit/StaticGCPass' > make[1]: Nothing to be done for `all'. > make[1]: Leaving directory `/home/chris/vmkit/lib/vmkit/StaticGCPass' > make[1]: Entering directory `/home/chris/vmkit/lib/vmkit/StaticGCPrinter' > make[1]: Nothing to be done for `all'. > make[1]: Leaving directory `/home/chris/vmkit/lib/vmkit/StaticGCPrinter' > make[1]: Entering directory `/home/chris/vmkit/lib' > make[2]: Entering directory `/home/chris/vmkit/lib/vmkit' > make[3]: Entering directory `/h...
2011 Nov 23
0
[LLVMdev] GC plugin: Not add (postcall) safe point after tail-call
...ction in order to be target-independent. Any advice is welcome! Thank you in advance, Yiannis [1]: https://groups.google.com/group/llvm-dev/browse_thread/thread/c866ef40b31504cb/46ab6820f20aba38?show_docid=46ab6820f20aba38&pli=1 [2]: http://llvm.org/viewvc/llvm-project/vmkit/trunk/lib/vmkit/StaticGCPrinter/VmkitGCPrinter.cpp?view=markup -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20111123/b70b4d17/attachment.html>
2012 Jun 21
1
[LLVMdev] Error: unsupported GC: vmkit
Hi,I have recently installed llvm-3.1 , gnu classpath-0.97.2 and vmkit I compiled a simple java file "hello.java" to hello.class Then converted hello.class to llvm bytecode(hello.bc) using vmjc from vmkitwhen i tried to run "hello.bc" using lli I am getting the following error shyam at shyam:~$ cat hello.javaimport java.io.*; class hello { public static void main(String[]
2014 Sep 09
2
[LLVMdev] VMKit is retired (but you can help if you want!)
...path? Is this a good start? > > It's a very good start :) But your hack is not the good solution > because you should return from FindMetaData at the line 229 (you > should not reach the test at line 239). > > So, can you try this compilation scheme (without your hack in > StaticGCPrinter.cpp:))? > > vmjc -print-aot-stats HelloWorld.class > opt -load=../../Release+Asserts/lib/static-gc-pass.so -StaticGCPass > HelloWorld.class.bc -o HelloWorld.class.gc.bc > llc -load=../../Release+Asserts/lib/static-gc-printer.so > HelloWorld.class.gc.bc > > If it does not cha...
2014 Sep 09
2
[LLVMdev] VMKit is retired (but you can help if you want!)
Hello again Gaël, (et al) More on rekindling work on VMKit! Thank you for your interactions thus far on- and off-list. As you suggested in your VMKit-retirement email (to which I'm attempting to respond), I'm interested in producing a Java-to-LLVM compiler out of VMKit. I'd like to take you up on your offer to help understand the architecture. If I can get the a Java-to-LLVM