comparison src/share/vm/c1/c1_IR.hpp @ 1135:e66fd840cb6b

6893081: method handle & invokedynamic code needs additional cleanup (post 6815692, 6858164) Summary: During the work for 6829187 we have fixed a number of basic bugs which are logically grouped with 6815692 and 6858164 but which must be reviewed and pushed separately. Reviewed-by: kvn, never
author twisti
date Mon, 04 Jan 2010 18:38:08 +0100
parents 89e0543e1737
children f70b0d9ab095
comparison
equal deleted inserted replaced
1134:0910903272e5 1135:e66fd840cb6b
249 } 249 }
250 DebugToken* locvals = recorder->create_scope_values(locals()); 250 DebugToken* locvals = recorder->create_scope_values(locals());
251 DebugToken* expvals = recorder->create_scope_values(expressions()); 251 DebugToken* expvals = recorder->create_scope_values(expressions());
252 DebugToken* monvals = recorder->create_monitor_values(monitors()); 252 DebugToken* monvals = recorder->create_monitor_values(monitors());
253 // reexecute allowed only for the topmost frame 253 // reexecute allowed only for the topmost frame
254 bool reexecute = topmost ? should_reexecute() : false; 254 bool reexecute = topmost ? should_reexecute() : false;
255 recorder->describe_scope(pc_offset, scope()->method(), bci(), reexecute, locvals, expvals, monvals); 255 bool is_method_handle_invoke = false;
256 recorder->describe_scope(pc_offset, scope()->method(), bci(), reexecute, is_method_handle_invoke, locvals, expvals, monvals);
256 } 257 }
257 }; 258 };
258 259
259 260
260 class CodeEmitInfo: public CompilationResourceObj { 261 class CodeEmitInfo: public CompilationResourceObj {