In globalDefinitions we have
const int longSize = sizeof(jlong);
const int jintSize = sizeof(jint);
It seems like that should be jlongSize rather than longSize.
Also note there are currently (2024-08-20) only 2 uses of longSize (in stubGenerator_x86_64_aes.cpp). It might be that those should instead be sizeof(uint64_t).
const int longSize = sizeof(jlong);
const int jintSize = sizeof(jint);
It seems like that should be jlongSize rather than longSize.
Also note there are currently (2024-08-20) only 2 uses of longSize (in stubGenerator_x86_64_aes.cpp). It might be that those should instead be sizeof(uint64_t).
- relates to
-
JDK-8274323 compiler/codegen/aes/TestAESMain.java failed with "Error: invalid offset: -1434443640" after 8273297
- Resolved