Java 8 on x86-64

Post Reply
User avatar

Topic author
arne_v
Master
Posts: 347
Joined: Fri Apr 17, 2020 7:31 pm
Reputation: 0
Location: Rhode Island, USA
Status: Offline
Contact:

Java 8 on x86-64

Post by arne_v » Wed Sep 13, 2023 4:48 pm

I started testing some of my stuff.

Not CPU, memory or IO intensive - but lots of reflection and JNI.

I found one real problem where something seems to have moved from P0 to P2 space and I needed to handle the 64 vs 32 bit pointers problem more correct.

And two trivial changes due to how I tested between Alpha and Itanium.

Build script:

$ if f$getsyi("arch_name") .eqs. "IA64"

->

$ if f$getsyi("arch_name") .eqs. "IA64" .or. f$getsyi("arch_name") .eqs. "x86_64"

C code:

#ifdef __ia64

->

#if defined(__ia64) || defined(__x86_64)

So far it looks pretty good.
Arne
arne@vajhoej.dk
VMS user since 1986

Post Reply