comparison src/share/vm/ci/ciInstanceKlass.cpp @ 2891:75a99b4f1c98

Rebranded C++ part from C1X to Graal.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 08 Jun 2011 14:01:51 +0200
parents 0654ee04b214
children 46f211fe010c
comparison
equal deleted inserted replaced
2890:c23d45daff9b 2891:75a99b4f1c98
62 for (int i = 0; i < implementors_limit; i++) { 62 for (int i = 0; i < implementors_limit; i++) {
63 _implementors[i] = NULL; // we will fill these lazily 63 _implementors[i] = NULL; // we will fill these lazily
64 } 64 }
65 65
66 Thread *thread = Thread::current(); 66 Thread *thread = Thread::current();
67 if (ciObjectFactory::is_initialized() && !UseC1X) { 67 if (ciObjectFactory::is_initialized() && !UseGraal) {
68 _loader = JNIHandles::make_local(thread, ik->class_loader()); 68 _loader = JNIHandles::make_local(thread, ik->class_loader());
69 _protection_domain = JNIHandles::make_local(thread, ik->protection_domain()); 69 _protection_domain = JNIHandles::make_local(thread, ik->protection_domain());
70 _is_shared = false; 70 _is_shared = false;
71 } else { 71 } else {
72 Handle h_loader(thread, ik->class_loader()); 72 Handle h_loader(thread, ik->class_loader());