hotspot/src/share/vm/jvmci/jvmciCodeInstaller.cpp
changeset 46479 a10af96a2dbb
parent 46289 1904e7ec236e
child 46620 750c6edff33b
equal deleted inserted replaced
46478:f800745ba3cb 46479:a10af96a2dbb
   628                                        has_unsafe_access, _has_wide_vector, installed_code, compiled_code, speculation_log);
   628                                        has_unsafe_access, _has_wide_vector, installed_code, compiled_code, speculation_log);
   629     cb = nm->as_codeblob_or_null();
   629     cb = nm->as_codeblob_or_null();
   630     if (nm != NULL && env == NULL) {
   630     if (nm != NULL && env == NULL) {
   631       DirectiveSet* directive = DirectivesStack::getMatchingDirective(method, compiler);
   631       DirectiveSet* directive = DirectivesStack::getMatchingDirective(method, compiler);
   632       bool printnmethods = directive->PrintAssemblyOption || directive->PrintNMethodsOption;
   632       bool printnmethods = directive->PrintAssemblyOption || directive->PrintNMethodsOption;
   633       if (printnmethods || PrintDebugInfo || PrintRelocations || PrintDependencies || PrintExceptionHandlers) {
   633       if (!printnmethods && (PrintDebugInfo || PrintRelocations || PrintDependencies || PrintExceptionHandlers)) {
   634         nm->print_nmethod(printnmethods);
   634         nm->print_nmethod(printnmethods);
   635       }
   635       }
   636       DirectivesStack::release(directive);
   636       DirectivesStack::release(directive);
   637     }
   637     }
   638   }
   638   }