comparison src/share/vm/c1/c1_IR.hpp @ 8151:b8f261ba79c6

Minimize diff to plain HotSpot version.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Thu, 07 Mar 2013 21:00:29 +0100
parents e522a00b91aa
children 53bc01380011
comparison
equal deleted inserted replaced
8150:b66f831ac5ab 8151:b8f261ba79c6
238 DebugToken* expvals = recorder->create_scope_values(expressions()); 238 DebugToken* expvals = recorder->create_scope_values(expressions());
239 DebugToken* monvals = recorder->create_monitor_values(monitors()); 239 DebugToken* monvals = recorder->create_monitor_values(monitors());
240 // reexecute allowed only for the topmost frame 240 // reexecute allowed only for the topmost frame
241 bool reexecute = topmost ? should_reexecute() : false; 241 bool reexecute = topmost ? should_reexecute() : false;
242 bool return_oop = false; // This flag will be ignored since it used only for C2 with escape analysis. 242 bool return_oop = false; // This flag will be ignored since it used only for C2 with escape analysis.
243 methodHandle null_mh; 243 recorder->describe_scope(pc_offset, scope()->method(), bci(), reexecute, is_method_handle_invoke, return_oop, locvals, expvals, monvals);
244 recorder->describe_scope(pc_offset, null_mh, scope()->method(), bci(), reexecute, false, is_method_handle_invoke, return_oop, locvals, expvals, monvals);
245 } 244 }
246 }; 245 };
247 246
248 247
249 class CodeEmitInfo: public CompilationResourceObj { 248 class CodeEmitInfo: public CompilationResourceObj {