comparison src/cpu/x86/vm/graalCodeInstaller_x86.cpp @ 18222:a8cff27ca2e1

converted HotSpotResolvedJavaMethod to an interface
author Doug Simon <doug.simon@oracle.com>
date Mon, 03 Nov 2014 16:08:06 +0100
parents c2270ad35f57
children f7d45e2426d4
comparison
equal deleted inserted replaced
18221:2c68474cc893 18222:a8cff27ca2e1
130 130
131 void CodeInstaller::pd_relocate_JavaMethod(oop hotspot_method, jint pc_offset) { 131 void CodeInstaller::pd_relocate_JavaMethod(oop hotspot_method, jint pc_offset) {
132 #ifdef ASSERT 132 #ifdef ASSERT
133 Method* method = NULL; 133 Method* method = NULL;
134 // we need to check, this might also be an unresolved method 134 // we need to check, this might also be an unresolved method
135 if (hotspot_method->is_a(HotSpotResolvedJavaMethod::klass())) { 135 if (hotspot_method->is_a(HotSpotResolvedJavaMethodImpl::klass())) {
136 method = getMethodFromHotSpotMethod(hotspot_method); 136 method = getMethodFromHotSpotMethod(hotspot_method);
137 } 137 }
138 #endif 138 #endif
139 switch (_next_call_type) { 139 switch (_next_call_type) {
140 case INLINE_INVOKE: 140 case INLINE_INVOKE: