src/share/vm/shark/sharkCompiler.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Cdiff src/share/vm/shark/sharkCompiler.cpp

src/share/vm/shark/sharkCompiler.cpp

Print this page
rev 9919 : 8138756: Compiler Control: Print directives in hs_err
Summary: Add directive print in hs_err
Reviewed-by:

*** 143,154 **** ShouldNotCallThis(); } void SharkCompiler::compile_method(ciEnv* env, ciMethod* target, ! int entry_bci, ! DirectiveSet* directive) { assert(is_initialized(), "should be"); ResourceMark rm; const char *name = methodname( target->holder()->name()->as_utf8(), target->name()->as_utf8()); --- 143,153 ---- ShouldNotCallThis(); } void SharkCompiler::compile_method(ciEnv* env, ciMethod* target, ! int entry_bci) { assert(is_initialized(), "should be"); ResourceMark rm; const char *name = methodname( target->holder()->name()->as_utf8(), target->name()->as_utf8());
*** 216,226 **** &oopmaps, &handler_table, &inc_table, this, false, ! directive(), false); } nmethod* SharkCompiler::generate_native_wrapper(MacroAssembler* masm, const methodHandle& target, --- 215,225 ---- &oopmaps, &handler_table, &inc_table, this, false, ! env->directive(), false); } nmethod* SharkCompiler::generate_native_wrapper(MacroAssembler* masm, const methodHandle& target,
src/share/vm/shark/sharkCompiler.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File