[kaffe] CVS kaffe (robilad): updated TODO

2008-02-14 Thread Kaffe CVS
PatchSet 7751 Date: 2008/02/15 01:50:44 Author: robilad Branch: HEAD Tag: (none) Log: updated TODO 2008-02-15 Dalibor Topic <[EMAIL PROTECTED]> * TODO: Updated. Members: ChangeLog:1.5251->1.5252 TODO:1.52->1.53 Index: kaffe/ChangeLog diff -u kaffe/ChangeLog:1.5251 kaffe/C

[kaffe] CVS kaffe (robilad): updated TODO

2008-02-14 Thread Kaffe CVS
PatchSet 7751 Date: 2008/02/15 01:50:44 Author: robilad Branch: HEAD Tag: (none) Log: updated TODO 2008-02-15 Dalibor Topic <[EMAIL PROTECTED]> * TODO: Updated. Members: ChangeLog:1.5251->1.5252 TODO:1.53->1.54 TODO:1.52->1.53 Index: kaffe/ChangeLog diff -u kaffe

Re: [kaffe] Re: OutOfMemoryError while compiling GNU Classpath

2008-02-14 Thread Dalibor Topic
Kiyo Inaba wrote: Hi Ito-san, You wrote: I have found that recent Kaffe causes OutOfMemoryError in the process of this compiling. I tested this on a machine with rich memory, and have found out that, in order to compile GNU Classpath 0.96.1 with ecj, Since I gave up compiling GNU Classpath e

[kaffe] CVS kaffe (robilad): removed doubleToLong and longToDouble functions

2008-02-14 Thread Kaffe CVS
PatchSet 7750 Date: 2008/02/15 01:32:30 Author: robilad Branch: HEAD Tag: (none) Log: removed doubleToLong and longToDouble functions 2008-02-15 Dalibor Topic <[EMAIL PROTECTED]> * configure.ac (AC_PROG_CC_C99): Ask for a C99 compiler, so that useful ISO C99 macros like isnan and signbit are

[kaffe] CVS kaffe (robilad): made further fp conversion functions static

2008-02-14 Thread Kaffe CVS
PatchSet 7749 Date: 2008/02/15 00:12:26 Author: robilad Branch: HEAD Tag: (none) Log: made further fp conversion functions static 08-02-15 Dalibor Topic <[EMAIL PROTECTED]> * kaffe/kaffevm/fp.c (floatToInt, doubleToLong): Made static. * kaffe/kaffevm/fp.h (doubleToLong, floatToInt): Removed.

[kaffe] CVS kaffe (robilad): statified intToFloat

2008-02-14 Thread Kaffe CVS
PatchSet 7748 Date: 2008/02/15 00:06:30 Author: robilad Branch: HEAD Tag: (none) Log: statified intToFloat 2008-02-15 Dalibor Topic <[EMAIL PROTECTED]> * kaffe/kaffevm/fp.c (intToFloat): Simplified collapsing of NaNs. Made function static. * kaffe/kaffevm/fp.h (FNANBITS, intToFloat): Remove

[kaffe] CVS kaffe (robilad): cache Float.NaN for conversions

2008-02-14 Thread Kaffe CVS
PatchSet 7747 Date: 2008/02/15 00:01:16 Author: robilad Branch: HEAD Tag: (none) Log: cache Float.NaN for conversions 2008-02-15 Dalibor Topic <[EMAIL PROTECTED]> * kaffe/kaffevm/fp.c (floatAdd, floatSubtract, floatMultiply) (floatDivide): Use KAFFE_JFLOAT_NAN. * kaffe/kaffevm/soft.c (soft_

[kaffe] CVS kaffe (robilad): statified longToDouble

2008-02-14 Thread Kaffe CVS
PatchSet 7746 Date: 2008/02/14 23:42:20 Author: robilad Branch: HEAD Tag: (none) Log: statified longToDouble 2008-02-15 Dalibor Topic <[EMAIL PROTECTED]> * kaffe/kaffevm/fp.h (DNANBITS, longToDouble): Removed. * kaffe/kaffevm/fp.c (longToDouble): Simplified collapsing of NaNs. Made function

[kaffe] CVS kaffe (robilad): cache Double.NaN for conversions

2008-02-14 Thread Kaffe CVS
PatchSet 7745 Date: 2008/02/14 23:31:38 Author: robilad Branch: HEAD Tag: (none) Log: cache Double.NaN for conversions 2008-02-15 Dalibor Topic <[EMAIL PROTECTED]> * kaffe/kaffevm/fp.c (doubleAdd, doubleSubtract, doubleMultiply) (doubleDivide): Use KAFFE_JDOUBLE_NAN. * kaffe/kaffevm/soft.c (

[kaffe] CVS kaffe (robilad): removed DISNAN

2008-02-14 Thread Kaffe CVS
PatchSet 7744 Date: 2008/02/14 22:24:40 Author: robilad Branch: HEAD Tag: (none) Log: removed DISNAN 2008-02-14 Dalibor Topic <[EMAIL PROTECTED]> * kaffe/kaffevm/fp.h (DISNAN): Removed. * kaffe/kaffevm/soft.c (soft_cvtdf, soft_cvtdl, soft_cvtdi), kaffe/kaffevm/fp.c (d

Re: [kaffe] ARM Cross-Compile using GNU EABI

2008-02-14 Thread Dalibor Topic
Leandro Galvez wrote: Hi All, I've finally managed to cross compile my kaffe using the configuration commands at the end of the mail for libraries, classpath and kaffe. But executing any java application from the device produces the output attached in the log file. Please help me figure ou

[kaffe] CVS kaffe (robilad): removed FISNAN

2008-02-14 Thread Kaffe CVS
PatchSet 7743 Date: 2008/02/14 20:43:20 Author: robilad Branch: HEAD Tag: (none) Log: removed FISNAN 2008-02-14 Dalibor Topic <[EMAIL PROTECTED]> * kaffe/kaffevm/fp.h (FISNAN): Removed. * kaffe/kaffevm/soft.c (soft_cvtfl, soft_cvtfd, soft_cvtfi), kaffe/kaffevm/fp.c (f

Re: [kaffe] Re: OutOfMemoryError while compiling GNU Classpath

2008-02-14 Thread Kiyo Inaba
Hi Ito-san, You wrote: >> I have found that recent Kaffe causes OutOfMemoryError in the >> process of this compiling. >I tested this on a machine with rich memory, and have found out >that, in order to compile GNU Classpath 0.96.1 with ecj, Since I gave up compiling GNU Classpath everytime, I did

Re: [kaffe] Porting to an embedded system which doesn't have an operating system

2008-02-14 Thread Dalibor Topic
Sivaramakrishnan KC wrote: Hi Can kaffe be ported to an embedded system which doesn't have an operating system? In theory, sure. In practice, I think the JanosVM (based on Kaffe) was able to run on a barebone NodeOS system, but I don't know of anyone doing that using the Kaffe.org source tr

[kaffe] Re: OutOfMemoryError while compiling GNU Classpath

2008-02-14 Thread kaz
From: [EMAIL PROTECTED] Subject: OutOfMemoryError while compiling GNU Classpath Date: Thu, 14 Feb 2008 14:21:09 +0900 (JST) > I have found that recent Kaffe causes OutOfMemoryError in the > process of this compiling. I tested this on a machine with rich memory, and have found out that, in order t

[kaffe] Porting to an embedded system which doesn't have an operating system

2008-02-14 Thread Sivaramakrishnan KC
Hi Can kaffe be ported to an embedded system which doesn't have an operating system? ___ kaffe mailing list kaffe@kaffe.org http://kaffe.org/cgi-bin/mailman/listinfo/kaffe