--- old/src/share/vm/c1/c1_IR.hpp 2015-10-08 07:23:35.000000000 -1000 +++ new/src/share/vm/c1/c1_IR.hpp 2015-10-08 07:23:34.000000000 -1000 @@ -244,7 +244,8 @@ // reexecute allowed only for the topmost frame bool reexecute = topmost ? should_reexecute() : false; bool return_oop = false; // This flag will be ignored since it used only for C2 with escape analysis. - recorder->describe_scope(pc_offset, scope()->method(), bci(), reexecute, is_method_handle_invoke, return_oop, locvals, expvals, monvals); + bool rethrow_exception = false; + recorder->describe_scope(pc_offset, methodHandle(), scope()->method(), bci(), reexecute, rethrow_exception, is_method_handle_invoke, return_oop, locvals, expvals, monvals); } };