search for: javacommonclass

Displaying 3 results from an estimated 3 matches for "javacommonclass".

2013 Apr 16
0
[LLVMdev] [vmkit]Problems when modifying J3
Hi Julien, I also tried to add a field and get the same error as you. In theory, to add a field in JavaClass or JavaCommonClass you have to put your field at the end of the declaration list (in order to minimize index changes in J3Intrinsics) in C++ code and in LLVMRuntime/runtime-single.ll We are working on this issue to see what is going wrong. The problem is the fact that the error is not deterministic which makes it...
2013 Apr 17
1
[LLVMdev] [vmkit]Problems when modifying J3
...you want to add more complex structures, take a look at how intrinsics are managed (J3Intrinsics). Harris Bakiras On 04/16/2013 06:56 PM, Harris BAKIRAS wrote: > Hi Julien, > > I also tried to add a field and get the same error as you. > > In theory, to add a field in JavaClass or JavaCommonClass you have to > put your field at the end of the declaration list (in order to > minimize index changes in J3Intrinsics) > in C++ code and in LLVMRuntime/runtime-single.ll > > We are working on this issue to see what is going wrong. > The problem is the fact that the error is not...
2013 Apr 15
2
[LLVMdev] [vmkit]Problems when modifying J3
Hi all, I am currently working with vmkit (especially on J3) for a student project, I want to made some experimentations on J3. I see in the file lib/j3/VMCore/JavaClass.h that if I want to add some attributes in the class JavaClass I must change a few thing in LLVMRuntime/* and in JnjvmModule.cpp. But JnjvmModule.cpp does not exist anymore. So my first question is : what is the equivalent of