src/os_cpu/bsd_x86/vm/thread_bsd_x86.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File hotspot Cdiff src/os_cpu/bsd_x86/vm/thread_bsd_x86.cpp

src/os_cpu/bsd_x86/vm/thread_bsd_x86.cpp

Print this page

        

*** 64,85 **** return false; } frame ret_frame(ret_sp, ret_fp, addr.pc()); if (!ret_frame.safe_for_sender(jt)) { ! #ifdef COMPILER2 ! // C2 uses ebp as a general register see if NULL fp helps frame ret_frame2(ret_sp, NULL, addr.pc()); if (!ret_frame2.safe_for_sender(jt)) { // nothing else to try if the frame isn't good return false; } ret_frame = ret_frame2; #else // nothing else to try if the frame isn't good return false; ! #endif /* COMPILER2 */ } *fr_addr = ret_frame; return true; } --- 64,85 ---- return false; } frame ret_frame(ret_sp, ret_fp, addr.pc()); if (!ret_frame.safe_for_sender(jt)) { ! #if defined(COMPILER2) || INCLUDE_JVMCI ! // C2 and JVMCI use ebp as a general register see if NULL fp helps frame ret_frame2(ret_sp, NULL, addr.pc()); if (!ret_frame2.safe_for_sender(jt)) { // nothing else to try if the frame isn't good return false; } ret_frame = ret_frame2; #else // nothing else to try if the frame isn't good return false; ! #endif /* COMPILER2 || INCLUDE_JVMCI */ } *fr_addr = ret_frame; return true; }
src/os_cpu/bsd_x86/vm/thread_bsd_x86.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File