comparison src/share/vm/jvmci/jvmciCodeInstaller.cpp @ 22482:da68ca58b271

Adjust meaning of TraceJVMCI levels
author Tom Rodriguez <tom.rodriguez@oracle.com>
date Fri, 28 Aug 2015 14:22:52 -0700
parents 822922922f3c
children 90c4254dc25a
comparison
equal deleted inserted replaced
22481:48c212309281 22482:da68ca58b271
453 void CodeInstaller::initialize_fields(oop compiled_code) { 453 void CodeInstaller::initialize_fields(oop compiled_code) {
454 if (compiled_code->is_a(HotSpotCompiledNmethod::klass())) { 454 if (compiled_code->is_a(HotSpotCompiledNmethod::klass())) {
455 Handle hotspotJavaMethod = HotSpotCompiledNmethod::method(compiled_code); 455 Handle hotspotJavaMethod = HotSpotCompiledNmethod::method(compiled_code);
456 methodHandle method = getMethodFromHotSpotMethod(hotspotJavaMethod()); 456 methodHandle method = getMethodFromHotSpotMethod(hotspotJavaMethod());
457 _parameter_count = method->size_of_parameters(); 457 _parameter_count = method->size_of_parameters();
458 TRACE_jvmci_1("installing code for %s", method->name_and_sig_as_C_string()); 458 TRACE_jvmci_2("installing code for %s", method->name_and_sig_as_C_string());
459 } else { 459 } else {
460 // Must be a HotSpotCompiledRuntimeStub 460 // Must be a HotSpotCompiledRuntimeStub
461 // TODO (ds) not sure if this is correct - only used in OopMap constructor for non-product builds 461 // TODO (ds) not sure if this is correct - only used in OopMap constructor for non-product builds
462 _parameter_count = 0; 462 _parameter_count = 0;
463 } 463 }