< prev index next >

src/share/vm/jvmci/jvmciCodeInstaller.cpp

Print this page

        

*** 628,638 **** has_unsafe_access, _has_wide_vector, installed_code, compiled_code, speculation_log); cb = nm->as_codeblob_or_null(); if (nm != NULL && env == NULL) { DirectiveSet* directive = DirectivesStack::getMatchingDirective(method, compiler); bool printnmethods = directive->PrintAssemblyOption || directive->PrintNMethodsOption; ! if (printnmethods || PrintDebugInfo || PrintRelocations || PrintDependencies || PrintExceptionHandlers) { nm->print_nmethod(printnmethods); } DirectivesStack::release(directive); } } --- 628,638 ---- has_unsafe_access, _has_wide_vector, installed_code, compiled_code, speculation_log); cb = nm->as_codeblob_or_null(); if (nm != NULL && env == NULL) { DirectiveSet* directive = DirectivesStack::getMatchingDirective(method, compiler); bool printnmethods = directive->PrintAssemblyOption || directive->PrintNMethodsOption; ! if (!printnmethods && (PrintDebugInfo || PrintRelocations || PrintDependencies || PrintExceptionHandlers)) { nm->print_nmethod(printnmethods); } DirectivesStack::release(directive); } }
< prev index next >