comparison src/share/vm/prims/nativeLookup.cpp @ 22547:10a9e989850e

made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
author Doug Simon <doug.simon@oracle.com>
date Wed, 09 Sep 2015 22:12:31 +0200
parents 5b1d16455b92
children 939d5da65929
comparison
equal deleted inserted replaced
22546:f95eb4e457af 22547:10a9e989850e
144 { CC"Java_sun_hotspot_WhiteBox_registerNatives", NULL, FN_PTR(JVM_RegisterWhiteBoxMethods) }, 144 { CC"Java_sun_hotspot_WhiteBox_registerNatives", NULL, FN_PTR(JVM_RegisterWhiteBoxMethods) },
145 #if INCLUDE_JVMCI 145 #if INCLUDE_JVMCI
146 { CC"Java_jdk_internal_jvmci_service_JVMCIClassLoaderFactory_init", NULL, FN_PTR(JVM_InitJVMCIClassLoader) }, 146 { CC"Java_jdk_internal_jvmci_service_JVMCIClassLoaderFactory_init", NULL, FN_PTR(JVM_InitJVMCIClassLoader) },
147 { CC"Java_jdk_internal_jvmci_runtime_JVMCI_initializeRuntime", NULL, FN_PTR(JVM_GetJVMCIRuntime) }, 147 { CC"Java_jdk_internal_jvmci_runtime_JVMCI_initializeRuntime", NULL, FN_PTR(JVM_GetJVMCIRuntime) },
148 { CC"Java_jdk_internal_jvmci_service_Services_getServiceImpls", NULL, FN_PTR(JVM_GetJVMCIServiceImpls) }, 148 { CC"Java_jdk_internal_jvmci_service_Services_getServiceImpls", NULL, FN_PTR(JVM_GetJVMCIServiceImpls) },
149 { CC"Java_jdk_internal_jvmci_hotspot_CompilerToVMImpl_init", NULL, FN_PTR(JVM_InitializeJVMCINatives) }, 149 { CC"Java_jdk_internal_jvmci_hotspot_CompilerToVM_init", NULL, FN_PTR(JVM_InitializeJVMCINatives) },
150 #endif 150 #endif
151 }; 151 };
152 152
153 static address lookup_special_native(char* jni_name) { 153 static address lookup_special_native(char* jni_name) {
154 int count = sizeof(lookup_special_native_methods) / sizeof(JNINativeMethod); 154 int count = sizeof(lookup_special_native_methods) / sizeof(JNINativeMethod);