similar to: [LLVMdev] Proposal for a Google summer of code project for the Java frontend.

Displaying 20 results from an estimated 10000 matches similar to: "[LLVMdev] Proposal for a Google summer of code project for the Java frontend."

2008 Mar 17
0
[LLVMdev] Proposal for a Google summer of code project for the Java frontend.
Hi Ramon, Ramón García wrote: > I am interested to get this work funded by a Google summer of code > grant. Is there anyone interested in mentoring this project? Would be > the LLVM interested in it? > I'm in the process of checking in a Java and a CLI FE to the llvm repository. I'm not sure what's the shape of llvm-java. Do your changes make it run some
2008 Mar 18
2
[LLVMdev] Proposal for a Google summer of code project for the Java frontend.
I would like to see the code of your front end. I started working with llvm-java, since it was what was available. It does not run yet (small compilation issues, almost done), but the design seems fine. It can run (when setup complete) small pieces of Java code, but no real application, since it does not support exception handling (jsr/ret bytecodes) yet,nor garbage collection. Implementing these
2008 Mar 18
3
[LLVMdev] Proposal for a Google summer of code project for the Java frontend.
Ramón García wrote: > I would prefer to see actual code to make safe schedules. With code I can see > what changes one must make. I can also show in detail these changes, > which would give security to the LLVM project that the proposal is > viable. By contrast, > without code, neither me nor LLVM project can ensure that the project will > be successfully performed behind
2008 Mar 18
2
[LLVMdev] Proposal for a Google summer of code project for the Java frontend.
Nicolas Geoffray wrote: > > There is no real missing feature. The VMs can execute standard > applications (last time I checked, the JVM can run tomcat), and the > implementations follow the VM specifications. The CLI implementation > lacks generics and overflow detection, but this is not top priority in > my mind. > > Among many features, here are the ones that I'd
2008 Mar 18
0
[LLVMdev] Proposal for a Google summer of code project for the Java frontend.
Ramón García wrote: > I would like to see the code of your front end. > > It should be available in a week or two. I'm currently dealing with licensing issues. > I started working with llvm-java, since it was what was available. It > does not run yet (small compilation issues, almost done), > but the design seems fine. It can run (when setup complete) small > pieces
2008 Mar 18
2
[LLVMdev] Proposal for a Google summer of code project for the Java frontend.
Ramón García wrote: > Based on my experience this last one (the generation of shared > libraries) is the most important performance wise, and the one that > would make a difference from a performance point of view. > > That's more or less true: generating shared libraries will improve startup time, not steady-state time. It will decrease steady-state performance (both for
2008 Mar 18
0
[LLVMdev] Proposal for a Google summer of code project for the Java frontend.
The memory consumed by the code compiled is huge in server applications. And it is not shared by different virtual machine instances. By contrast, shared libraries are memory mapped, therefore they are shared between different instances of the executables using them. It is posible to throw away code after using it, but then compilation cost would be repeated. And dynamic compilation prevents
2008 Mar 18
0
[LLVMdev] Proposal for a Google summer of code project for the Java frontend.
Based on my experience this last one (the generation of shared libraries) is the most important performance wise, and the one that would make a difference from a performance point of view. I would like to prepare a proposal as soon as posible. Could I have a look at your code privately, even if there are licensing issues pending? I understand that this issues are just temporary, and will in no
2008 Mar 18
0
[LLVMdev] Proposal for a Google summer of code project for the Java frontend.
I would prefer to see actual code to make safe schedules. With code I can see what changes one must make. I can also show in detail these changes, which would give security to the LLVM project that the proposal is viable. By contrast, without code, neither me nor LLVM project can ensure that the project will be successfully performed behind schedule. Since this is a difficult project (we are
2008 Feb 04
3
[LLVMdev] Introducing myself, and Java project.
I have just worked with this code. The architecture is fine, and I think that this code should be reused, It needs updating, however, because it does not compile with LLVM 2.1 (I prefer to use a stable version to focus my work, and port to LLVM 2.2 later). I have seen that one incompatibility is that this Java frontend requires C++ with exceptions, but LLVM is compiled with -fno-exceptions. For
2008 Feb 03
5
[LLVMdev] Introducing myself, and Java project.
Hello, I am Ramon Garcia Fernandez. My interest in LLVM is to develop an interface for Java virtual machine bytecodes, so that Java programs can be run under LLVM. You may ask why not using the Java virtual machine. Although it may be improved, there are some misfeatures in it. This is what I have learned. It makes the communication with native code too expensive. Passing an array from native to
2008 Mar 17
0
[LLVMdev] Proposal for a Google summer of code project for the Java frontend.
Hello, Ramon > As I told you, I am working with the Java frontend. Currently I am > working with the code from http://llvm.org/svn/llvm-project/java/. The > first task has been to put it up to date, since it was written for > LLVM 1.9 and there are few incompatibilities. This is mostly done. How > can I submit a patch? Just post the patch into llvm-commits mailing list. > I am
2008 Feb 04
0
[LLVMdev] Introducing myself, and Java project.
You probably want to sit down and have a long talk with Jeroen Frijters, the principal behind the IKVM project. Note that you will have to deal with ClassLoaders at some level, regardless of what you'd prefer. > A more obvious problem is, of course, that it is not possible to > compile Java code statically and save the result in the disk. > That is untrue--last time I checked, gcj
2008 Feb 03
0
[LLVMdev] Introducing myself, and Java project.
Have you looked at the this? http://llvm.org/viewvc/llvm-project/java/trunk/ Someone started a Java frontend. Perhaps you could finish it? -Tanya On Feb 2, 2008, at 5:48 PM, Ramón García wrote: > Hello, I am Ramon Garcia Fernandez. My interest in LLVM is to develop > an interface for Java virtual machine bytecodes, so that Java programs > can be run under LLVM. > > You may ask
2015 Feb 17
3
[LLVMdev] Google Summer of Code
John, Yes, I'm taking care about application as usual. On Tue, Feb 17, 2015 at 4:48 AM, Eric Christopher <echristo at gmail.com> wrote: > I believe Anton was going to do so. > > > On Mon, Feb 16, 2015, 5:14 PM John Criswell <jtcriswel at gmail.com> wrote: >> >> Dear All, >> >> Has someone registered LLVM as an organization for Google Summer of
2015 Mar 04
2
[LLVMdev] Google Summer of Code
Please provide a patch to Open Projects list. On Wed, Mar 4, 2015 at 8:25 PM, Vassil Vassilev <vvasilev at cern.ch> wrote: > On 17/02/15 09:47, Anton Korobeynikov wrote: >> >> John, >> >> Yes, I'm taking care about application as usual. > > I saw the the LLVM mentoring org was accepted. Congrats! > Anton, could you tell me what is the procedure of
2009 Mar 09
1
Google Summer of Code ideas...
It's time again to apply to be a mentoring organization for Google Summer of Code. This means we need to refresh the list of suggested projects at: http://syslinux.zytor.com/wiki/index.php/Google_Summer_of_Code_Ideas I'm running even more ragged than usual, so any help in this would be appreciated. I'd also like to know who'd be willing to mentor this year. -hpa -- H. Peter
2006 May 01
2
Google Summer of Code with Xiph.org
All, I'm pleased to announce that Xiph.org has been selected as a mentoring organization for the 2006 Google Summer of Code program. So if you need a summer job, and there's something about free multimedia that's been bugging you, here's your chance! We've put up some project ideas for things we'd like to see in the wiki http://wiki.xiph.org/index.php/Summer_of_Code
2006 May 01
2
Google Summer of Code with Xiph.org
All, I'm pleased to announce that Xiph.org has been selected as a mentoring organization for the 2006 Google Summer of Code program. So if you need a summer job, and there's something about free multimedia that's been bugging you, here's your chance! We've put up some project ideas for things we'd like to see in the wiki http://wiki.xiph.org/index.php/Summer_of_Code
2006 May 01
2
Google Summer of Code with Xiph.org
All, I'm pleased to announce that Xiph.org has been selected as a mentoring organization for the 2006 Google Summer of Code program. So if you need a summer job, and there's something about free multimedia that's been bugging you, here's your chance! We've put up some project ideas for things we'd like to see in the wiki http://wiki.xiph.org/index.php/Summer_of_Code