mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-18 10:04:42 +02:00
8239782: CC_INTERP is only used by Zero interpreter
Change CC_INTERP conditional to ZERO and remove in places where unnecessary. Fix build to exclude compilers and rename CppInterpreter to ZeroInterpreter. The "C++ Interpreter" has been removed from the code a while ago. Reviewed-by: dholmes, ihse
This commit is contained in:
parent
6b251191e0
commit
1550fd889b
55 changed files with 288 additions and 639 deletions
|
@ -596,16 +596,9 @@ void Deoptimization::cleanup_deopt_info(JavaThread *thread,
|
|||
|
||||
|
||||
if (JvmtiExport::can_pop_frame()) {
|
||||
#ifndef CC_INTERP
|
||||
// Regardless of whether we entered this routine with the pending
|
||||
// popframe condition bit set, we should always clear it now
|
||||
thread->clear_popframe_condition();
|
||||
#else
|
||||
// C++ interpreter will clear has_pending_popframe when it enters
|
||||
// with method_resume. For deopt_resume2 we clear it now.
|
||||
if (thread->popframe_forcing_deopt_reexecution())
|
||||
thread->clear_popframe_condition();
|
||||
#endif /* CC_INTERP */
|
||||
}
|
||||
|
||||
// unpack_frames() is called at the end of the deoptimization handler
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue