File tree Expand file tree Collapse file tree 1 file changed +2
-11
lines changed Expand file tree Collapse file tree 1 file changed +2
-11
lines changed Original file line number Diff line number Diff line change 3333
3434inline bool nmethod::is_deopt_pc (address pc) { return is_deopt_entry (pc) || is_deopt_mh_entry (pc); }
3535
36- // When using JVMCI the address might be off by the size of a call instruction.
3736inline bool nmethod::is_deopt_entry (address pc) {
38- return pc == deopt_handler_begin ()
39- #if INCLUDE_JVMCI
40- || (is_compiled_by_jvmci () && pc == (deopt_handler_begin () + NativeCall::byte_size ()))
41- #endif
42- ;
37+ return pc == deopt_handler_begin ();
4338}
4439
4540inline bool nmethod::is_deopt_mh_entry (address pc) {
46- return pc == deopt_mh_handler_begin ()
47- #if INCLUDE_JVMCI
48- || (is_compiled_by_jvmci () && pc == (deopt_mh_handler_begin () + NativeCall::byte_size ()))
49- #endif
50- ;
41+ return pc == deopt_mh_handler_begin ();
5142}
5243
5344// class ExceptionCache methods
You can’t perform that action at this time.
0 commit comments