We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b16634b commit 106719dCopy full SHA for 106719d
src/hotspot/share/runtime/frame.cpp
@@ -320,18 +320,9 @@ bool frame::can_be_deoptimized() const {
320
if (!is_compiled_frame()) return false;
321
CompiledMethod* nm = (CompiledMethod*)_cb;
322
323
- if( !nm->can_be_deoptimized() )
+ if(!nm->can_be_deoptimized())
324
return false;
325
326
- // address* pc_addr = &(((address*) sp())[-1]); // TODO: PLATFORM
327
- // if (Continuation::is_return_barrier_entry(*pc_addr)) {
328
- // log_trace(jvmcont)("Can't deopt entry:");
329
- // if (log_is_enabled(Trace, jvmcont)) {
330
- // print_value_on(tty, NULL);
331
- // }
332
- // return false;
333
334
-
335
return !nm->is_at_poll_return(pc());
336
}
337
0 commit comments