search for: classcastexception

Displaying 7 results from an estimated 7 matches for "classcastexception".

2009 Nov 19
1
[LLVMdev] Removing instanceof tests
...ed by vmkit to ensure that the code does not do unsafe casts at runtime. For instance, if I code the program: if (o instanceof String) String s = (String)o; then vmkit will most likely insert a second test in the code, like this: if (o instanceof String) { if (!o instanceof String) throw ClassCastException String s = (String)o; } Thanks in advance, Alysson -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20091119/201370a4/attachment.html>
2013 Nov 21
2
[LLVMdev] vmkit2 core dump after building mmtk
....6. WARNING: Class file 'java/util/Map' requires Java version 1.7. This JVM only supports Java versions up to 1.6. WARNING: Class file 'java/lang/CloneNotSupportedException' requires Java version 1.7. This JVM only supports Java versions up to 1.6. WARNING: Class file 'java/lang/ClassCastException' requires Java version 1.7. This JVM only supports Java versions up to 1.6. WARNING: Class file 'java/lang/NullPointerException' requires Java version 1.7. This JVM only supports Java versions up to 1.6. WARNING: Class file 'java/lang/NoSuchFieldException' requires Java version...
2013 Nov 21
2
[LLVMdev] vmkit2 core dump after building mmtk
...il/Map' requires Java version 1.7. This >> JVM only supports Java versions up to 1.6. >> WARNING: Class file 'java/lang/CloneNotSupportedException' requires >> Java version 1.7. This JVM only supports Java versions up to 1.6. >> WARNING: Class file 'java/lang/ClassCastException' requires Java >> version 1.7. This JVM only supports Java versions up to 1.6. >> WARNING: Class file 'java/lang/NullPointerException' requires Java >> version 1.7. This JVM only supports Java versions up to 1.6. >> WARNING: Class file 'java/lang/NoSuchFieldE...
2013 Nov 21
0
[LLVMdev] vmkit2 core dump after building mmtk
...ile 'java/util/Map' requires Java version 1.7. This > JVM only supports Java versions up to 1.6. > WARNING: Class file 'java/lang/CloneNotSupportedException' requires > Java version 1.7. This JVM only supports Java versions up to 1.6. > WARNING: Class file 'java/lang/ClassCastException' requires Java > version 1.7. This JVM only supports Java versions up to 1.6. > WARNING: Class file 'java/lang/NullPointerException' requires Java > version 1.7. This JVM only supports Java versions up to 1.6. > WARNING: Class file 'java/lang/NoSuchFieldException' re...
2013 Nov 22
0
[LLVMdev] vmkit2 core dump after building mmtk
...ires Java version 1.7. This >>> JVM only supports Java versions up to 1.6. >>> WARNING: Class file 'java/lang/CloneNotSupportedException' requires >>> Java version 1.7. This JVM only supports Java versions up to 1.6. >>> WARNING: Class file 'java/lang/ClassCastException' requires Java >>> version 1.7. This JVM only supports Java versions up to 1.6. >>> WARNING: Class file 'java/lang/NullPointerException' requires Java >>> version 1.7. This JVM only supports Java versions up to 1.6. >>> WARNING: Class file 'java/l...
2013 Nov 21
0
[LLVMdev] vmkit2 core dump after building mmtk
I also misunderstood :) So, in this case, the problem is that your version of openjdk is probably not supported. In fact, we only support the version 7u23 of openjdk :) You can find this version here: http://www.oracle.com/technetwork/java/javase/downloads/java-archive-downloads-javase7-521261.html#jdk-7u25-oth-JPR Currently, I'm modifying the internal design of vmkit and I'm not working
2013 Nov 21
2
[LLVMdev] vmkit2 core dump after building mmtk
I guess I mispoke, I checked out the source from http://llvm.org/svn/llvm-project/vmkit/trunk. I thought this was vmkit2. I guess I was just referring to vmkit then. On Thu, Nov 21, 2013 at 12:10 PM, Gaƫl Thomas <gael.thomas00 at gmail.com> wrote: > Hi Adam, > > I don't know which repo you have used? Because only the llvm repo is > maintained (not the gforge one), and