comparison src/share/vm/c1/c1_IR.hpp @ 8158:53bc01380011

Fix client build.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Thu, 07 Mar 2013 23:24:05 +0100
parents b8f261ba79c6
children c5ff08c22458
comparison
equal deleted inserted replaced
8157:2156359ee519 8158:53bc01380011
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 recorder->describe_scope(pc_offset, scope()->method(), bci(), reexecute, is_method_handle_invoke, return_oop, locvals, expvals, monvals); 243 recorder->describe_scope(pc_offset, methodHandle(), scope()->method(), bci(), reexecute, is_method_handle_invoke, return_oop, locvals, expvals, monvals);
244 } 244 }
245 }; 245 };
246 246
247 247
248 class CodeEmitInfo: public CompilationResourceObj { 248 class CodeEmitInfo: public CompilationResourceObj {