comparison src/share/vm/graal/graalVMToCompiler.cpp @ 5065:227aa994f058

Two more package name corrections in C++ part.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Thu, 08 Mar 2012 19:49:51 +0100
parents 5e9f38419819
children af59b4dfc9e4
comparison
equal deleted inserted replaced
5064:8a88c903e381 5065:227aa994f058
30 jobject VMToCompiler::_vmExitsPermKlass = NULL; 30 jobject VMToCompiler::_vmExitsPermKlass = NULL;
31 31
32 KlassHandle VMToCompiler::vmExitsKlass() { 32 KlassHandle VMToCompiler::vmExitsKlass() {
33 if (JNIHandles::resolve(_vmExitsPermKlass) == NULL) { 33 if (JNIHandles::resolve(_vmExitsPermKlass) == NULL) {
34 klassOop result = SystemDictionary::resolve_or_null(vmSymbols::com_oracle_graal_hotspot_bridge_VMToCompiler(), SystemDictionary::java_system_loader(), NULL, Thread::current()); 34 klassOop result = SystemDictionary::resolve_or_null(vmSymbols::com_oracle_graal_hotspot_bridge_VMToCompiler(), SystemDictionary::java_system_loader(), NULL, Thread::current());
35 check_not_null(result, "Couldn't find class com.oracle.max.graal.hotspot.bridge.VMToCompiler"); 35 check_not_null(result, "Couldn't find class com.oracle.graal.hotspot.bridge.VMToCompiler");
36 _vmExitsPermKlass = JNIHandles::make_global(result); 36 _vmExitsPermKlass = JNIHandles::make_global(result);
37 } 37 }
38 return KlassHandle((klassOop)JNIHandles::resolve_non_null(_vmExitsPermKlass)); 38 return KlassHandle((klassOop)JNIHandles::resolve_non_null(_vmExitsPermKlass));
39 } 39 }
40 40