This is the mail archive of the java@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: gcj and UDP datagrams under freebsd


>>>>> "Loren" == Loren James Rittle <rittle@latour.rsch.comm.mot.com> writes:

Loren> OK, installed on mainline.  I did run the tests in the harness
Loren> before commit.  This is interesting.  The bytecode->native
Loren> execution test passes (must get padded differently, or we lucky
Loren> for all 8 sizes).

When compiling bytecode->native we currently don't statically allocate
arrays.  That's because in the bytecode the array initialization looks
like a long series of iastore instructions; we would have to recognize
this specially to turn it into a static array initialization.  (This
is something IBM does; one of their papers describes it.)  When
compiling from .java the array initialization is represented in a way
that is easier for us to manipulate.

Tom


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]