mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-17 01:24:33 +02:00
8270061: Change parameter order of ResourceHashtable
Reviewed-by: coleenp, stuefe
This commit is contained in:
parent
034788a02c
commit
357947acd8
18 changed files with 49 additions and 73 deletions
|
@ -286,7 +286,9 @@ JVMCIObjectArray CompilerToVM::initialize_intrinsics(JVMCI_TRAPS) {
|
|||
jobjectArray readConfiguration0(JNIEnv *env, JVMCI_TRAPS) {
|
||||
JavaThread* THREAD = JavaThread::current(); // For exception macros.
|
||||
ResourceHashtable<jlong, JVMCIObject> longs;
|
||||
ResourceHashtable<const char*, JVMCIObject, &CompilerToVM::cstring_hash, &CompilerToVM::cstring_equals> strings;
|
||||
ResourceHashtable<const char*, JVMCIObject,
|
||||
256, ResourceObj::RESOURCE_AREA, mtInternal,
|
||||
&CompilerToVM::cstring_hash, &CompilerToVM::cstring_equals> strings;
|
||||
|
||||
jvalue prim;
|
||||
prim.z = true; JVMCIObject boxedTrue = JVMCIENV->create_box(T_BOOLEAN, &prim, JVMCI_CHECK_NULL);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue