comparison src/share/vm/jvmci/jvmciCodeInstaller.cpp @ 22551:71ea8d7db665

removed author tags in comments
author Doug Simon <doug.simon@oracle.com>
date Fri, 11 Sep 2015 16:41:50 +0200
parents 02fc27dc1da7
children 6821ef65ef4c
comparison
equal deleted inserted replaced
22550:94ba89d56936 22551:71ea8d7db665
447 Handle hotspotJavaMethod = HotSpotCompiledNmethod::method(compiled_code); 447 Handle hotspotJavaMethod = HotSpotCompiledNmethod::method(compiled_code);
448 methodHandle method = getMethodFromHotSpotMethod(hotspotJavaMethod()); 448 methodHandle method = getMethodFromHotSpotMethod(hotspotJavaMethod());
449 _parameter_count = method->size_of_parameters(); 449 _parameter_count = method->size_of_parameters();
450 TRACE_jvmci_2("installing code for %s", method->name_and_sig_as_C_string()); 450 TRACE_jvmci_2("installing code for %s", method->name_and_sig_as_C_string());
451 } else { 451 } else {
452 // Must be a HotSpotCompiledRuntimeStub 452 // Must be a HotSpotCompiledRuntimeStub.
453 // TODO (ds) not sure if this is correct - only used in OopMap constructor for non-product builds 453 // Only used in OopMap constructor for non-product builds
454 _parameter_count = 0; 454 _parameter_count = 0;
455 } 455 }
456 _sites_handle = JNIHandles::make_local(HotSpotCompiledCode::sites(compiled_code)); 456 _sites_handle = JNIHandles::make_local(HotSpotCompiledCode::sites(compiled_code));
457 _exception_handlers_handle = JNIHandles::make_local(HotSpotCompiledCode::exceptionHandlers(compiled_code)); 457 _exception_handlers_handle = JNIHandles::make_local(HotSpotCompiledCode::exceptionHandlers(compiled_code));
458 458