[kaffe] CVS kaffe (robilad): Resynced with GNU Classpath: AWT & Swing fixes from 8th and 9th and mall Calenda

2004-10-09 Thread Kaffe CVS
PatchSet 5259 Date: 2004/10/09 22:17:49 Author: robilad Branch: HEAD Tag: (none) Log: Resynced with GNU Classpath: AWT & Swing fixes from 8th and 9th and mall Calendar fixes 2004-10-09 Dalibor Topic <[EMAIL PROTECTED]> * m4/ac_c_bigendian_cross.m4: New file, taken from ac-arch

[kaffe] [PATCH] make Double parse doubles from long strings

2004-10-09 Thread Noa Resare
When investigating a regression in BigDecimal i found out that java.lang.Double truncates strings that it tries to parse to MAXNUMLEN (defined to 64 in include/defs.h) before parsing it to a double. The attached patch makes the java-string to c-string conversion be made onto dynamically allocated

Re: [kaffe] mipsel and jit3

2004-10-09 Thread Mikolaj Habryn
On Sat, 2004-10-09 at 12:54, Mikolaj Habryn wrote: > And, and... how exactly did that method get JITted in 0 ms? Something > very, very fishy here. Well, it's a null method, that's how. I'm about puzzled out for one day. Turning on various bits of debug and sprinkling in some dprintfs yields this

Re: [kaffe] mipsel and jit3

2004-10-09 Thread Mikolaj Habryn
On Fri, 2004-10-08 at 11:38, Dalibor Topic wrote: > Mikolaj Habryn wrote: > i went to bed before you popped in on irc last night :( Living in Australia does make one timezone disadvantaged! > It would take a bit of excerising the > jit regression tests and debugging by a motivated hacker to fix

Re: [kaffe] mipsel and jit3

2004-10-09 Thread Mikolaj Habryn
On Sat, 2004-10-09 at 12:01, Mikolaj Habryn wrote: > Hmm. Having noticed KAFFE_VMDEBUG, I'll go play with that for a while. Poking at this a little more, and with a working gdb no less, one observes: ()V time 41ms (41ms) @ 0x10093c08 (0x1006a0b4)> (Ljava/lang/String$1;)V time 3ms (44ms) @ 0x1009

[kaffe] Re: Bug#272105: kaffe: GZIPOutputStream doesn't work

2004-10-09 Thread Arnaud Vandyck
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 tags 272105 + upstream forwarded 272105 [EMAIL PROTECTED] thanks Fri, 17 Sep 2004 15:25:57 +0200, "Michael Koch" <[EMAIL PROTECTED]> wrote: > Code that uses java.util.zip.GZIPOutputStream fails with the following > and similar exceptions when writi

[kaffe] CVS kaffe (robilad): Resynced with GNU Classpath: small fixes for swing

2004-10-09 Thread Kaffe CVS
PatchSet 5258 Date: 2004/10/09 11:40:39 Author: robilad Branch: HEAD Tag: (none) Log: Resynced with GNU Classpath: small fixes for swing 2004-10-09 Dalibor Topic <[EMAIL PROTECTED]> * libraries/javalib/javax/swing/JScrollBar.java, libraries/javalib/javax/swing/JScrollPane.java

Re: [kaffe] Kaffe on XScale

2004-10-09 Thread Helmer Krämer
On Wed, 6 Oct 2004 12:55:19 +0200 Thomas Winkler <[EMAIL PROTECTED]> wrote: Hi, > I'm currently trying to compile kaffe for the the intel XScale (ARM, Big > Endian). > I tried kaffe 1.1.4 as well as kaffe CVS HEAD (20041006). But I've run into > problems I could not manage to resolve on my own

[kaffe] CVS kaffe (robilad): Resynced with GNU Classpath: small fixes for swing

2004-10-09 Thread Kaffe CVS
PatchSet 5258 Date: 2004/10/09 11:40:39 Author: robilad Branch: HEAD Tag: (none) Log: Resynced with GNU Classpath: small fixes for swing 2004-10-09 Dalibor Topic <[EMAIL PROTECTED]> * libraries/javalib/javax/swing/JScrollBar.java, libraries/javalib/javax/swing/JScrollPane.java

[kaffe] Kaffe can't run Apache Struts webapp

2004-10-09 Thread Arnaud Vandyck
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 retitle 270704 Kaffe can't run Apache Struts webapp retitle 270709 Kaffe can't run Apache Struts webapp forwarded 270704 [EMAIL PROTECTED] forwarded 270709 [EMAIL PROTECTED] merge 270704 270709 thanks Hi all, Kaffe just runs Tomcat4 very well, but it

Re: [kaffe] Kaffe on XScale

2004-10-09 Thread Jari Korva
Hi! Our problems were related to Kaffe on XScale IXP (i.e. big endian / armv5b processors). I suppose that little endian XScale PXA (armv5l) is a different story, because they are much more common. The same applies to gcc as well as all other Java environments I've tried: in general they are teste

[kaffe] [PATCH] String constructor wraps UnsupportedEncodingException in Error

2004-10-09 Thread Noa Resare
I get the feeling that I'm missing something obvious here but to me the code in libraries/javalib/java/lang/String.java:128 just seems strangely broken: public String(byte[] data, int offset, int count, String encoding) throws UnsupportedEncodingException { if (offset < 0 || count < 0