similar to: [LLVMdev] llvm-java state

Displaying 20 results from an estimated 1000 matches similar to: "[LLVMdev] llvm-java state"

2006 Mar 03
1
[LLVMdev] printing constants
Sir, I am using the op_begin and op_end iterator for iterating over the operands as mentioned below. for (User::op_iterator operand=j->op_begin(),operand_end=j->op_end();operand!=operand_end;++operand){ Value *v=operand->get(); const Type *t=v->getType(); cerr<<endl<<" operand: "<<"[ "<<v->hasName()<<"
2006 Feb 26
2
[LLVMdev] FW: assetion failed in llvm-java
Hello. After llvm-java front-end compilation under cygwin I have encountered with the problem. Compilation successfully complete but the assertion message displayed while running application class2llvm.exe. C:\SRC_CVS\COPY\llvm\tools\llvm-java\Debug\bin>class2llvm.exe assertion "Ty->isInteger() && Ty->isSigned() && "Illegal type for signed integer
2006 Feb 27
0
[LLVMdev] FW: assetion failed in llvm-java
On 2/26/06, Dmitriy Abramov <dmitriy.abramov at star-force.com> wrote: > > > > Hello. > > > > After llvm-java front-end compilation under cygwin I have encountered with > the problem. Compilation successfully complete but the assertion message > displayed while running application class2llvm.exe. class2llvm is by no means complete and hasn't been actively
2013 Feb 04
1
[LLVMdev] The future of class2llvm tool
Hello! Recently I found an interesting tool within java front end of llvm project. It is "class2llvm". My future researchs showed that this tool is much out of date and needs a lot of things to do for its completion. As far as I understood, It doesn't support even such elementary things as exceptions handling and garbage collection. Am I right in my conclusions? Could you answer
2013 Jun 17
2
[LLVMdev] vmkit java annotations
Hello Harris, Thank you for your answer. So it is there a way of annotating variables in Java Code, so I can see them into LLVM bytecode? Thank you ! On Mon, Jun 17, 2013 at 3:54 PM, Harris BAKIRAS <h.bakiras at gmail.com> wrote: > Hello Alexandru, > > No you did nothing wrong. > > We are using our own data structure to describe annotations in J3. So it > is normal
2013 Jun 17
0
[LLVMdev] vmkit java annotations
What classpath implementation are you using ? GNUClasspath or OpenJDK ? Harris Bakiras On 06/17/2013 03:57 PM, Alexandru Ionut Diaconescu wrote: > Hello Harris, > > Thank you for your answer. So it is there a way of annotating > variables in Java Code, so I can see them into LLVM bytecode? > > Thank you ! > > > On Mon, Jun 17, 2013 at 3:54 PM, Harris BAKIRAS
2012 Nov 16
3
[LLVMdev] Making VMKit2
Hi, I’m trying to make VMKit & J3 on Ubuntu. I have followed the instructions at http://vmkit2.gforge.inria.fr/start.php. But after configuring vmkit2, when I’m making it using make ENABLE_OPTIMIZED=1, I receive the following: 1)      With this configuration: ela at ela-VirtualBox:~/Desktop/vmkit2$ ./configure --with-llvmsrc=/home/ela/Desktop/llvm/ --with-llvmobj=/home/ela/Desktop/llvm/
2012 Nov 19
0
[LLVMdev] Making VMKit2
Hi Nicolas, I am so sorry for the questions. According to you, I built VMKit2 on Ubuntu11.10-desktop-amd64 on Intel(R) Corei5, and the previous problem solved. But another one appeared! With the following configuration: elaheh at elaheh-Lenovo-G470:~/Desktop/vmkit2$ ./configure --with-llvmsrc=/home/elaheh/Desktop/llvm/ --with-llvmobj=/home/elaheh/Desktop/llvm/
2006 Apr 26
0
[LLVMdev] LLVM Java front-end
Hello, I have just downloaded the source from CVS. Does exist a LLVM Java front-end? If yes, where can I find documentations about it? If no, is anyway somebody working on it? Where can I find the source code related? Thanks, Alessandro
2013 Feb 12
2
[LLVMdev] [vmkit] Errors compiling vmkt
Hi all, I hope this is the correct place to post such questions? I am building vmkit for the first time, following the instructions on the get_started page (with one deviation: in step 4 I ran ./configure in my vmkit directory and therefore did not need to cd at the start of step 5. Is this correct?). Build platform is 64-bit CrunchBang Linux 11 "Waldorf", based on Debian Wheezy. I
2010 Jul 19
2
[LLVMdev] Building VMKit
Hi, I'm trying to build VMKit from SVN, and I'm getting a bunch of errors that all seem to be related to the TRACER macro not getting defined: llvm[3]: Compiling Assembly.cpp for Release+Asserts build In file included from Assembly.cpp:15: Assembly.h:140: error: variable or field ‘TRACER’ declared void In file included from Assembly.cpp:19: N3.h:109: error: variable or field ‘TRACER’
2005 Apr 29
3
[LLVMdev] Java frontend
Hello, I have just read the LLVM paper (CGO'04) and thought it was an interesting project. And, I am wondering if there exists a Java frontend (that compiles Java bytecode to LLVM code) as the paper mentioned. If there is any, what is the status of it? Pardon me if this information is obviously provided somewhere in the LLVM web site. Best regards, Hiroshi Yamauchi Purdue University
2006 Apr 25
4
[LLVMdev] src to src conversion
On Apr 25, 2006, at 8:56 AM, John Criswell wrote: > Ryan M. Lefever wrote: >> I am trying to use LLVM as a source to source C compiler. I use >> llvm-gcc to convert file.c->file.bc. Then I use opt to run my own >> compiler passes to convert file.bc->file.opt.bc. Then I use llc >> to convert file.opt.bc->file.opt.c. Now, I want to use normal gcc
2006 Apr 23
3
[LLVMdev] Newbie questions
On Sun, 23 Apr 2006, Reid Spencer wrote: >> Has it been hooked up to a JVM? If so, how and which ones? > > I think the point of llvm-java was to avoid a JVM. That is, it converts llvm-java is the JVM. > either Java source or Java bytecode into equivalent LLVM bytecode. I llvm-java only supports input from Java bytecode. > think the big thing lacking so far are the Java
2011 Jul 27
3
Is R the right choice for simulating first passage times of random walks?
Dear R folks, I need to simulate first passage times for iterated partial sums. The related papers are for example [1][2]. As a start I want to simulate how long a simple random walk stays negative, which should result that it behaves like n^(-?). My code looks like this. -------- 8< -------- code -------- >8 -------- n = 100000 # number of simulations length = 100000 # length of
2010 Jul 16
3
[LLVMdev] java front-end
Hi, I'm trying to use the Java front-end (which, based on svn commits, appears to be three-years-dead), and I'm running into some build errors. In that time did llvm change from building with exception handling and rtti to building without? I remember reading somewhere that llvm code should use dyn_cast instead of dynamic_cast. Do these need to be changed here? A little background:
2009 Jun 25
2
JRI - problem to access "stats" package
Hello, I am a new R user. More precisely, I am working with JRI (on a Eclipse Java6 project under Ubuntu9). I have difficulties to access some R packages (For example: package "stats", object "Normal", function "pnorm"). I have tried many solutions to set the right path but nothing have succeed: For example:
2004 Jul 01
0
.Net & Mono language news: C, C++, C#, Java, Python & Perl
For those interested in experimenting with (compiling / developing) a version of R for the Common Language Runtime (CLR) environment (Microsoft .Net, Novell Ximan Mono & DotGNU) -- a few links to some "free" compliers: C DotGNU (the official GNU project) http://dotgnu.org/ http://www.southern-storm.com.au/pnet_faq.html#q1_7 FAQ "1.7. What is pnetC? Since version 0.4.4 of
2006 Apr 23
3
[LLVMdev] Newbie questions
Reid Spencer wrote: >> 1. What is the status of the LLVM+Java effort? > > Incomplete but significant progress has been made. Misha Brukman can > tell you more. >> Is it GCJ-specific? > > No, it implements its own Java compiler and bytecode translator. Has it been hooked up to a JVM? If so, how and which ones? Thanks for your other answers re annotations and memory
2006 Apr 24
0
[LLVMdev] Newbie questions
Chris Lattner wrote: >> I think the point of llvm-java was to avoid a JVM. That is, it converts > > llvm-java is the JVM. > >> either Java source or Java bytecode into equivalent LLVM bytecode. I > > llvm-java only supports input from Java bytecode. > >> think the big thing lacking so far are the Java library and support for > > llvm-java uses