comparison src/share/vm/c1/c1_IR.hpp @ 3650:0e8a2a629afb

Pass-by compilation broker.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Wed, 16 Nov 2011 21:27:28 +0100
parents 5857923e563c
children b70d180ec022
comparison
equal deleted inserted replaced
3649:5a8c44b5fb80 3650:0e8a2a629afb
235 DebugToken* expvals = recorder->create_scope_values(expressions()); 235 DebugToken* expvals = recorder->create_scope_values(expressions());
236 DebugToken* monvals = recorder->create_monitor_values(monitors()); 236 DebugToken* monvals = recorder->create_monitor_values(monitors());
237 // reexecute allowed only for the topmost frame 237 // reexecute allowed only for the topmost frame
238 bool reexecute = topmost ? should_reexecute() : false; 238 bool reexecute = topmost ? should_reexecute() : false;
239 bool return_oop = false; // This flag will be ignored since it used only for C2 with escape analysis. 239 bool return_oop = false; // This flag will be ignored since it used only for C2 with escape analysis.
240 recorder->describe_scope(pc_offset, scope()->method(), bci(), reexecute, false, is_method_handle_invoke, return_oop, locvals, expvals, monvals); 240 recorder->describe_scope(pc_offset, (methodOop)scope()->method()->get_oop(), bci(), reexecute, false, is_method_handle_invoke, return_oop, locvals, expvals, monvals);
241 } 241 }
242 }; 242 };
243 243
244 244
245 class CodeEmitInfo: public CompilationResourceObj { 245 class CodeEmitInfo: public CompilationResourceObj {