On Jan 11, Per Bothner wrote:
> Paul Fisher <[EMAIL PROTECTED]> writes:
> 
> > While it's important that Classpath continue to support JNI,
> 
> The first question is why?  What is the goal?  Presumably, the
> goal is that Classpath can be used as the standard Java library
> for non-Gcj JVMs. 

Yes.

> The question then is how portable do we need to/want to be?
> 
> (1) Is it OK to write Classpath in C++ rather than C?  [...]
> (2) Is it OK for Classpath to depend on G++ extensions?  [...]

I don't feel too good with using C++ in classpath.  I can't rationally
explain this though.  

> Tom Tromey suggested that the ideal way to let people write code
> that is both JNI and CNI-compliant is to have a compiler that can
> read CNI and emit JNI.  See:
> http://sourceware.cygnus.com/ml/java-discuss/1999-q4/msg00570.html
> My first reaction was that this was too difficult.  But it becomes
> simpler if we remember that JNI is an Application *Binary* Interface.
> All we need do is have G++ have an option to generate JNI calls.

> [...]

I like this idea (indepent of using it for classpath).  I don't know
how difficult this is, since I don't know much about the internals of
g++.  But when I converted the java.util.zip classes, there were some
issues that a compiler can't solve:

CNI has the method "elements" to access the elements of an array.
The corresponding JNI method is "Get<Type>ArrayElements", but it needs
an "Release<Type>ArrayElements" later.  This pair is necessary, to
support copying garbage collectors, that may move the array on the
fly, or to support jvms that store array elements in a different way
(e.g. packing boolean arrays).

Under JNI you have to register global references.  AFAIK libgcj's
garbage collector scans the data area, so one doesn't need to
register them under CNI.

Another point is how to put pointers to native structures into a
classfile.  Sun didn't solve it well.  If I understand the code in
japhar's java/util/zip correctly sun used an int field to store the
pointer and later changed it to long to support 64bit architectures.
libgcj declares natives fields as "gnu.gcj.RawData", but this is not
portable to other jvms, where the garbage collector doesn't know that
this class is special.  My solution was to put the structure into a
java byte array, which imposes a little overhead, but should be
portable (and you get it freed automatically).

  Jochen

Reply via email to