1 /*
   2  * Copyright (c) 2018, 2026, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #include "classfile/javaClasses.inline.hpp"
  26 #include "classfile/vmSymbols.hpp"
  27 #include "code/codeCache.inline.hpp"
  28 #include "code/nmethod.inline.hpp"
  29 #include "code/vmreg.inline.hpp"
  30 #include "compiler/oopMap.inline.hpp"
  31 #include "cppstdlib/type_traits.hpp"
  32 #include "gc/shared/barrierSet.hpp"
  33 #include "gc/shared/continuationGCSupport.inline.hpp"
  34 #include "gc/shared/gc_globals.hpp"
  35 #include "gc/shared/memAllocator.hpp"
  36 #include "gc/shared/threadLocalAllocBuffer.inline.hpp"
  37 #include "interpreter/bytecodeStream.hpp"
  38 #include "interpreter/interpreter.hpp"
  39 #include "interpreter/interpreterRuntime.hpp"
  40 #include "jfr/jfrEvents.hpp"
  41 #include "logging/log.hpp"
  42 #include "logging/logStream.hpp"
  43 #include "oops/access.inline.hpp"
  44 #include "oops/constantPool.inline.hpp"
  45 #include "oops/method.inline.hpp"
  46 #include "oops/objArrayOop.inline.hpp"
  47 #include "oops/oopsHierarchy.hpp"
  48 #include "oops/stackChunkOop.inline.hpp"
  49 #include "prims/jvmtiThreadState.hpp"
  50 #include "runtime/arguments.hpp"
  51 #include "runtime/continuation.hpp"
  52 #include "runtime/continuationEntry.inline.hpp"
  53 #include "runtime/continuationHelper.inline.hpp"
  54 #include "runtime/continuationJavaClasses.inline.hpp"
  55 #include "runtime/continuationWrapper.inline.hpp"
  56 #include "runtime/frame.inline.hpp"
  57 #include "runtime/interfaceSupport.inline.hpp"
  58 #include "runtime/javaThread.inline.hpp"
  59 #include "runtime/jniHandles.inline.hpp"
  60 #include "runtime/keepStackGCProcessed.hpp"
  61 #include "runtime/mountUnmountDisabler.hpp"
  62 #include "runtime/objectMonitor.inline.hpp"
  63 #include "runtime/orderAccess.hpp"
  64 #include "runtime/prefetch.inline.hpp"
  65 #include "runtime/sharedRuntime.hpp"
  66 #include "runtime/smallRegisterMap.inline.hpp"
  67 #include "runtime/stackChunkFrameStream.inline.hpp"
  68 #include "runtime/stackFrameStream.inline.hpp"
  69 #include "runtime/stackOverflow.hpp"
  70 #include "runtime/stackWatermarkSet.inline.hpp"
  71 #include "runtime/vframe.inline.hpp"
  72 #include "runtime/vframe_hp.hpp"
  73 #include "utilities/debug.hpp"
  74 #include "utilities/exceptions.hpp"
  75 #include "utilities/macros.hpp"
  76 #include "utilities/vmError.hpp"
  77 #if INCLUDE_ZGC
  78 #include "gc/z/zStackChunkGCData.inline.hpp"
  79 #endif
  80 #if INCLUDE_JFR
  81 #include "jfr/jfr.inline.hpp"
  82 #endif
  83 #ifdef COMPILER1
  84 #include "c1/c1_Runtime1.hpp"
  85 #endif
  86 #ifdef COMPILER2
  87 #include "opto/runtime.hpp"
  88 #endif
  89 
  90 /*
  91  * This file contains the implementation of continuation freezing (yield) and thawing (run).
  92  *
  93  * This code is very latency-critical and very hot. An ordinary and well-behaved server application
  94  * would likely call these operations many thousands of times per second second, on every core.
  95  *
  96  * Freeze might be called every time the application performs any I/O operation, every time it
  97  * acquires a j.u.c. lock, every time it takes a message from a queue, and thaw can be called
  98  * multiple times in each of those cases, as it is called by the return barrier, which may be
  99  * invoked on method return.
 100  *
 101  * The amortized budget for each of those two operations is ~100-150ns. That is why, for
 102  * example, every effort is made to avoid Java-VM transitions as much as possible.
 103  *
 104  * On the fast path, all frames are known to be compiled, and the chunk requires no barriers
 105  * and so frames simply copied, and the bottom-most one is patched.
 106  * On the slow path, internal pointers in interpreted frames are de/relativized to/from offsets
 107  * and absolute pointers, and barriers invoked.
 108  */
 109 
 110 /************************************************
 111 
 112 Thread-stack layout on freeze/thaw.
 113 See corresponding stack-chunk layout in instanceStackChunkKlass.hpp
 114 
 115             +----------------------------+
 116             |      .                     |
 117             |      .                     |
 118             |      .                     |
 119             |   carrier frames           |
 120             |                            |
 121             |----------------------------|
 122             |                            |
 123             |    Continuation.run        |
 124             |                            |
 125             |============================|
 126             |    enterSpecial frame      |
 127             |  pc                        |
 128             |  rbp                       |
 129             |  -----                     |
 130         ^   |  int argsize               | = ContinuationEntry
 131         |   |  oopDesc* cont             |
 132         |   |  oopDesc* chunk            |
 133         |   |  ContinuationEntry* parent |
 134         |   |  ...                       |
 135         |   |============================| <------ JavaThread::_cont_entry = entry->sp()
 136         |   |  ? alignment word ?        |
 137         |   |----------------------------| <--\
 138         |   |                            |    |
 139         |   |  ? caller stack args ?     |    |   argsize (might not be 2-word aligned) words
 140 Address |   |                            |    |   Caller is still in the chunk.
 141         |   |----------------------------|    |
 142         |   |  pc (? return barrier ?)   |    |  This pc contains the return barrier when the bottom-most frame
 143         |   |  rbp                       |    |  isn't the last one in the continuation.
 144         |   |                            |    |
 145         |   |    frame                   |    |
 146         |   |                            |    |
 147             +----------------------------|     \__ Continuation frames to be frozen/thawed
 148             |                            |     /
 149             |    frame                   |    |
 150             |                            |    |
 151             |----------------------------|    |
 152             |                            |    |
 153             |    frame                   |    |
 154             |                            |    |
 155             |----------------------------| <--/
 156             |                            |
 157             |    doYield/safepoint stub  | When preempting forcefully, we could have a safepoint stub
 158             |                            | instead of a doYield stub
 159             |============================| <- the sp passed to freeze
 160             |                            |
 161             |  Native freeze/thaw frames |
 162             |      .                     |
 163             |      .                     |
 164             |      .                     |
 165             +----------------------------+
 166 
 167 ************************************************/
 168 
 169 #define CONT_JFR false // emit low-level JFR events that count slow/fast path for continuation performance debugging only
 170 #if CONT_JFR
 171   #define CONT_JFR_ONLY(code) code
 172 #else
 173   #define CONT_JFR_ONLY(code)
 174 #endif
 175 
 176 // TODO: See AbstractAssembler::generate_stack_overflow_check,
 177 // Compile::bang_size_in_bytes(), m->as_SafePoint()->jvms()->interpreter_frame_size()
 178 // when we stack-bang, we need to update a thread field with the lowest (farthest) bang point.
 179 
 180 // Data invariants are defined by Continuation::debug_verify_continuation and Continuation::debug_verify_stack_chunk
 181 
 182 // Used to just annotatate cold/hot branches
 183 #define LIKELY(condition)   (condition)
 184 #define UNLIKELY(condition) (condition)
 185 
 186 // debugging functions
 187 #ifdef ASSERT
 188 extern "C" bool dbg_is_safe(const void* p, intptr_t errvalue); // address p is readable and *(intptr_t*)p != errvalue
 189 
 190 static void verify_continuation(oop continuation) { Continuation::debug_verify_continuation(continuation); }
 191 
 192 static void do_deopt_after_thaw(JavaThread* thread);
 193 static bool do_verify_after_thaw(JavaThread* thread, stackChunkOop chunk, outputStream* st);
 194 static bool verify_deopt_state(const frame& f);
 195 static void log_frames(JavaThread* thread);
 196 static void log_frames_after_thaw(JavaThread* thread, ContinuationWrapper& cont, intptr_t* sp);
 197 static void print_frame_layout(const frame& f, bool callee_complete, outputStream* st = tty);
 198 static void verify_frame_kind(frame& top, Continuation::preempt_kind preempt_kind, Method** m_ptr = nullptr, const char** code_name_ptr = nullptr, int* bci_ptr = nullptr, stackChunkOop chunk = nullptr);
 199 
 200 #define assert_pfl(p, ...) \
 201 do {                                           \
 202   if (!(p)) {                                  \
 203     JavaThread* t = JavaThread::active();      \
 204     if (t->has_last_Java_frame()) {            \
 205       tty->print_cr("assert(" #p ") failed:"); \
 206       t->print_frame_layout();                 \
 207     }                                          \
 208   }                                            \
 209   vmassert(p, __VA_ARGS__);                    \
 210 } while(0)
 211 
 212 #else
 213 static void verify_continuation(oop continuation) { }
 214 #define assert_pfl(p, ...)
 215 #endif
 216 
 217 static freeze_result is_pinned0(JavaThread* thread, oop cont_scope, bool safepoint);
 218 template<typename ConfigT, bool preempt> static inline freeze_result freeze_internal(JavaThread* current, intptr_t* const sp);
 219 
 220 static inline int prepare_thaw_internal(JavaThread* thread, bool return_barrier);
 221 template<typename ConfigT> static inline intptr_t* thaw_internal(JavaThread* thread, const Continuation::thaw_kind kind);
 222 
 223 
 224 // Entry point to freeze. Transitions are handled manually
 225 // Called from gen_continuation_yield() in sharedRuntime_<cpu>.cpp through Continuation::freeze_entry();
 226 template<typename ConfigT>
 227 static JRT_BLOCK_ENTRY(int, freeze(JavaThread* current, intptr_t* sp))
 228   assert(sp == current->frame_anchor()->last_Java_sp(), "");
 229 
 230   if (current->raw_cont_fastpath() > current->last_continuation()->entry_sp() || current->raw_cont_fastpath() < sp) {
 231     current->set_cont_fastpath(nullptr);
 232   }
 233 
 234   return checked_cast<int>(ConfigT::freeze(current, sp));
 235 JRT_END
 236 
 237 JRT_LEAF(int, Continuation::prepare_thaw(JavaThread* thread, bool return_barrier))
 238   return prepare_thaw_internal(thread, return_barrier);
 239 JRT_END
 240 
 241 template<typename ConfigT>
 242 static JRT_LEAF(intptr_t*, thaw(JavaThread* thread, int kind))
 243   // TODO: JRT_LEAF and NoHandleMark is problematic for JFR events.
 244   // vFrameStreamCommon allocates Handles in RegisterMap for continuations.
 245   // Also the preemption case with JVMTI events enabled might safepoint so
 246   // undo the NoSafepointVerifier here and rely on handling by ContinuationWrapper.
 247   // JRT_ENTRY instead?
 248   ResetNoHandleMark rnhm;
 249   DEBUG_ONLY(PauseNoSafepointVerifier pnsv(&__nsv);)
 250 
 251   // we might modify the code cache via BarrierSetNMethod::nmethod_entry_barrier
 252   MACOS_AARCH64_ONLY(ThreadWXEnable __wx(WXWrite, thread));
 253   return ConfigT::thaw(thread, (Continuation::thaw_kind)kind);
 254 JRT_END
 255 
 256 JVM_ENTRY(jint, CONT_isPinned0(JNIEnv* env, jobject cont_scope)) {
 257   JavaThread* thread = JavaThread::thread_from_jni_environment(env);
 258   return is_pinned0(thread, JNIHandles::resolve(cont_scope), false);
 259 }
 260 JVM_END
 261 
 262 ///////////
 263 
 264 enum class oop_kind { NARROW, WIDE };
 265 template <oop_kind oops, typename BarrierSetT>
 266 class Config {
 267 public:
 268   typedef Config<oops, BarrierSetT> SelfT;
 269   using OopT = std::conditional_t<oops == oop_kind::NARROW, narrowOop, oop>;
 270 
 271   static freeze_result freeze(JavaThread* thread, intptr_t* const sp) {
 272     freeze_result res = freeze_internal<SelfT, false>(thread, sp);
 273     JFR_ONLY(assert((res == freeze_ok) || (res == thread->last_freeze_fail_result()), "freeze failure not set"));
 274     return res;
 275   }
 276 
 277   static freeze_result freeze_preempt(JavaThread* thread, intptr_t* const sp) {
 278     return freeze_internal<SelfT, true>(thread, sp);
 279   }
 280 
 281   static intptr_t* thaw(JavaThread* thread, Continuation::thaw_kind kind) {
 282     return thaw_internal<SelfT>(thread, kind);
 283   }
 284 };
 285 
 286 #ifdef _WINDOWS
 287 static void map_stack_pages(JavaThread* thread, size_t size, address sp) {
 288   address new_sp = sp - size;
 289   address watermark = thread->stack_overflow_state()->shadow_zone_growth_watermark();
 290 
 291   if (new_sp < watermark) {
 292     size_t page_size = os::vm_page_size();
 293     address last_touched_page = watermark - StackOverflow::stack_shadow_zone_size();
 294     size_t pages_to_touch = align_up(watermark - new_sp, page_size) / page_size;
 295     while (pages_to_touch-- > 0) {
 296       last_touched_page -= page_size;
 297       *last_touched_page = 0;
 298     }
 299     thread->stack_overflow_state()->set_shadow_zone_growth_watermark(new_sp);
 300   }
 301 }
 302 #endif
 303 
 304 static bool stack_overflow_check(JavaThread* thread, size_t size, address sp) {
 305   const size_t page_size = os::vm_page_size();
 306   if (size > page_size) {
 307     if (sp - size < thread->stack_overflow_state()->shadow_zone_safe_limit()) {
 308       return false;
 309     }
 310     WINDOWS_ONLY(map_stack_pages(thread, size, sp));
 311   }
 312   return true;
 313 }
 314 
 315 #ifdef ASSERT
 316 static oop get_continuation(JavaThread* thread) {
 317   assert(thread != nullptr, "");
 318   assert(thread->threadObj() != nullptr, "");
 319   return java_lang_Thread::continuation(thread->threadObj());
 320 }
 321 #endif // ASSERT
 322 
 323 inline void clear_anchor(JavaThread* thread) {
 324   thread->frame_anchor()->clear();
 325 }
 326 
 327 static void set_anchor(JavaThread* thread, intptr_t* sp, address pc) {
 328   assert(pc != nullptr, "");
 329 
 330   JavaFrameAnchor* anchor = thread->frame_anchor();
 331   anchor->set_last_Java_sp(sp);
 332   anchor->set_last_Java_pc(pc);
 333   ContinuationHelper::set_anchor_pd(anchor, sp);
 334 
 335   assert(thread->has_last_Java_frame(), "");
 336   assert(thread->last_frame().cb() != nullptr, "");
 337 }
 338 
 339 static void set_anchor(JavaThread* thread, intptr_t* sp) {
 340   address pc = ContinuationHelper::return_address_at(
 341            sp - frame::sender_sp_ret_address_offset());
 342   set_anchor(thread, sp, pc);
 343 }
 344 
 345 static void set_anchor_to_entry(JavaThread* thread, ContinuationEntry* entry) {
 346   JavaFrameAnchor* anchor = thread->frame_anchor();
 347   anchor->set_last_Java_sp(entry->entry_sp());
 348   anchor->set_last_Java_pc(entry->entry_pc());
 349   ContinuationHelper::set_anchor_to_entry_pd(anchor, entry);
 350 
 351   assert(thread->has_last_Java_frame(), "");
 352   assert(thread->last_frame().cb() != nullptr, "");
 353 }
 354 
 355 #if CONT_JFR
 356 class FreezeThawJfrInfo : public StackObj {
 357   short _e_size;
 358   short _e_num_interpreted_frames;
 359  public:
 360 
 361   FreezeThawJfrInfo() : _e_size(0), _e_num_interpreted_frames(0) {}
 362   inline void record_interpreted_frame() { _e_num_interpreted_frames++; }
 363   inline void record_size_copied(int size) { _e_size += size << LogBytesPerWord; }
 364   template<typename Event> void post_jfr_event(Event *e, oop continuation, JavaThread* jt);
 365 };
 366 
 367 template<typename Event> void FreezeThawJfrInfo::post_jfr_event(Event* e, oop continuation, JavaThread* jt) {
 368   if (e->should_commit()) {
 369     log_develop_trace(continuations)("JFR event: iframes: %d size: %d", _e_num_interpreted_frames, _e_size);
 370     e->set_carrierThread(JFR_JVM_THREAD_ID(jt));
 371     e->set_continuationClass(continuation->klass());
 372     e->set_interpretedFrames(_e_num_interpreted_frames);
 373     e->set_size(_e_size);
 374     e->commit();
 375   }
 376 }
 377 #endif // CONT_JFR
 378 
 379 /////////////// FREEZE ////
 380 
 381 class FreezeBase : public StackObj {
 382 protected:
 383   JavaThread* const _thread;
 384   ContinuationWrapper& _cont;
 385   bool _barriers; // only set when we allocate a chunk
 386 
 387   intptr_t* _bottom_address;
 388 
 389   // Used for preemption only
 390   const bool _preempt;
 391   frame _last_frame;
 392 
 393   // Used to support freezing with held monitors
 394   int _monitors_in_lockstack;
 395 
 396   int _freeze_size; // total size of all frames plus metadata in words.
 397   int _total_align_size;
 398 
 399   intptr_t* _cont_stack_top;
 400   intptr_t* _cont_stack_bottom;
 401 
 402   CONT_JFR_ONLY(FreezeThawJfrInfo _jfr_info;)
 403 
 404 #ifdef ASSERT
 405   intptr_t* _orig_chunk_sp;
 406   int _fast_freeze_size;
 407   bool _empty;
 408 #endif
 409 
 410   JvmtiSampledObjectAllocEventCollector* _jvmti_event_collector;
 411 
 412   NOT_PRODUCT(int _frames;)
 413   DEBUG_ONLY(intptr_t* _last_write;)
 414 
 415   inline FreezeBase(JavaThread* thread, ContinuationWrapper& cont, intptr_t* sp, bool preempt);
 416 
 417 public:
 418   NOINLINE freeze_result freeze_slow();
 419   void freeze_fast_existing_chunk();
 420 
 421   CONT_JFR_ONLY(FreezeThawJfrInfo& jfr_info() { return _jfr_info; })
 422   void set_jvmti_event_collector(JvmtiSampledObjectAllocEventCollector* jsoaec) { _jvmti_event_collector = jsoaec; }
 423 
 424   inline int size_if_fast_freeze_available();
 425 
 426   inline frame& last_frame() { return _last_frame; }
 427 
 428 #ifdef ASSERT
 429   bool check_valid_fast_path();
 430 #endif
 431 
 432 protected:
 433   inline void init_rest();
 434   void throw_stack_overflow_on_humongous_chunk();
 435 
 436   // fast path
 437   inline void copy_to_chunk(intptr_t* from, intptr_t* to, int size);
 438   inline void unwind_frames();
 439   inline void patch_stack_pd(intptr_t* frame_sp, intptr_t* heap_sp);
 440 
 441   // slow path
 442   virtual stackChunkOop allocate_chunk_slow(size_t stack_size, int argsize_md) = 0;
 443 
 444   int cont_size() { return pointer_delta_as_int(_cont_stack_bottom, _cont_stack_top); }
 445 
 446 private:
 447   // slow path
 448   frame freeze_start_frame();
 449   frame freeze_start_frame_on_preempt();
 450   NOINLINE freeze_result recurse_freeze(frame& f, frame& caller, int callee_argsize, bool callee_interpreted, bool top);
 451   inline frame freeze_start_frame_yield_stub();
 452   template<typename FKind>
 453   inline freeze_result recurse_freeze_java_frame(const frame& f, frame& caller, int fsize, int argsize);
 454   inline void before_freeze_java_frame(const frame& f, const frame& caller, int fsize, int argsize, bool is_bottom_frame);
 455   inline void after_freeze_java_frame(const frame& hf, bool is_bottom_frame);
 456   freeze_result finalize_freeze(const frame& callee, frame& caller, int argsize);
 457   void patch(const frame& f, frame& hf, const frame& caller, bool is_bottom_frame);
 458   NOINLINE freeze_result recurse_freeze_interpreted_frame(frame& f, frame& caller, int callee_argsize, bool callee_interpreted);
 459   freeze_result recurse_freeze_compiled_frame(frame& f, frame& caller, int callee_argsize, bool callee_interpreted);
 460   NOINLINE freeze_result recurse_freeze_stub_frame(frame& f, frame& caller);
 461   NOINLINE freeze_result recurse_freeze_native_frame(frame& f, frame& caller);
 462   NOINLINE void finish_freeze(const frame& f, const frame& top);
 463 
 464   void freeze_lockstack(stackChunkOop chunk);
 465 
 466   inline bool stack_overflow();
 467 
 468   static frame sender(const frame& f) { return f.is_interpreted_frame() ? sender<ContinuationHelper::InterpretedFrame>(f)
 469                                                                         : sender<ContinuationHelper::NonInterpretedUnknownFrame>(f); }
 470   template<typename FKind> static inline frame sender(const frame& f);
 471   template<typename FKind> frame new_heap_frame(frame& f, frame& caller);
 472   inline void set_top_frame_metadata_pd(const frame& hf);
 473   inline void patch_pd(frame& callee, const frame& caller);
 474   inline void patch_pd_unused(intptr_t* sp);
 475   void adjust_interpreted_frame_unextended_sp(frame& f);
 476   inline void prepare_freeze_interpreted_top_frame(frame& f);
 477   static inline void relativize_interpreted_frame_metadata(const frame& f, const frame& hf);
 478 
 479 protected:
 480   void freeze_fast_copy(stackChunkOop chunk, int chunk_start_sp CONT_JFR_ONLY(COMMA bool chunk_is_allocated));
 481   bool freeze_fast_new_chunk(stackChunkOop chunk);
 482 };
 483 
 484 template <typename ConfigT>
 485 class Freeze : public FreezeBase {
 486 private:
 487   stackChunkOop allocate_chunk(size_t stack_size, int argsize_md);
 488 
 489 public:
 490   inline Freeze(JavaThread* thread, ContinuationWrapper& cont, intptr_t* frame_sp, bool preempt)
 491     : FreezeBase(thread, cont, frame_sp, preempt) {}
 492 
 493   freeze_result try_freeze_fast();
 494 
 495 protected:
 496   virtual stackChunkOop allocate_chunk_slow(size_t stack_size, int argsize_md) override { return allocate_chunk(stack_size, argsize_md); }
 497 };
 498 
 499 FreezeBase::FreezeBase(JavaThread* thread, ContinuationWrapper& cont, intptr_t* frame_sp, bool preempt) :
 500     _thread(thread), _cont(cont), _barriers(false), _preempt(preempt), _last_frame(false /* no initialization */) {
 501   DEBUG_ONLY(_jvmti_event_collector = nullptr;)
 502 
 503   assert(_thread != nullptr, "");
 504   assert(_thread->last_continuation()->entry_sp() == _cont.entrySP(), "");
 505 
 506   DEBUG_ONLY(_cont.entry()->verify_cookie();)
 507 
 508   assert(!Interpreter::contains(_cont.entryPC()), "");
 509 
 510   _bottom_address = _cont.entrySP() - _cont.entry_frame_extension();
 511 #ifdef _LP64
 512   if (((intptr_t)_bottom_address & 0xf) != 0) {
 513     _bottom_address--;
 514   }
 515   assert(is_aligned(_bottom_address, frame::frame_alignment), "");
 516 #endif
 517 
 518   log_develop_trace(continuations)("bottom_address: " INTPTR_FORMAT " entrySP: " INTPTR_FORMAT " argsize: " PTR_FORMAT,
 519                 p2i(_bottom_address), p2i(_cont.entrySP()), (_cont.entrySP() - _bottom_address) << LogBytesPerWord);
 520   assert(_bottom_address != nullptr, "");
 521   assert(_bottom_address <= _cont.entrySP(), "");
 522   DEBUG_ONLY(_last_write = nullptr;)
 523 
 524   assert(_cont.chunk_invariant(), "");
 525   assert(!Interpreter::contains(_cont.entryPC()), "");
 526 #if !defined(PPC64) || defined(ZERO)
 527   static const int doYield_stub_frame_size = frame::metadata_words;
 528 #else
 529   static const int doYield_stub_frame_size = frame::native_abi_reg_args_size >> LogBytesPerWord;
 530 #endif
 531   // With preemption doYield() might not have been resolved yet
 532   assert(_preempt || SharedRuntime::cont_doYield_stub()->frame_size() == doYield_stub_frame_size, "");
 533 
 534   if (preempt) {
 535     _last_frame = _thread->last_frame();
 536   }
 537 
 538   // properties of the continuation on the stack; all sizes are in words
 539   _cont_stack_top    = frame_sp + (!preempt ? doYield_stub_frame_size : 0); // we don't freeze the doYield stub frame
 540   _cont_stack_bottom = _cont.entrySP() + (_cont.argsize() == 0 ? frame::metadata_words_at_top : 0)
 541       - ContinuationHelper::frame_align_words(_cont.argsize()); // see alignment in thaw
 542 
 543   log_develop_trace(continuations)("freeze size: %d argsize: %d top: " INTPTR_FORMAT " bottom: " INTPTR_FORMAT,
 544     cont_size(), _cont.argsize(), p2i(_cont_stack_top), p2i(_cont_stack_bottom));
 545   assert(cont_size() > 0, "");
 546 
 547   _monitors_in_lockstack = _thread->lock_stack().monitor_count();
 548 }
 549 
 550 void FreezeBase::init_rest() { // we want to postpone some initialization after chunk handling
 551   _freeze_size = 0;
 552   _total_align_size = 0;
 553   NOT_PRODUCT(_frames = 0;)
 554 }
 555 
 556 void FreezeBase::freeze_lockstack(stackChunkOop chunk) {
 557   assert(chunk->sp_address() - chunk->start_address() >= _monitors_in_lockstack, "no room for lockstack");
 558 
 559   _thread->lock_stack().move_to_address((oop*)chunk->start_address());
 560   chunk->set_lockstack_size(checked_cast<uint8_t>(_monitors_in_lockstack));
 561   chunk->set_has_lockstack(true);
 562 }
 563 
 564 void FreezeBase::copy_to_chunk(intptr_t* from, intptr_t* to, int size) {
 565   stackChunkOop chunk = _cont.tail();
 566   chunk->copy_from_stack_to_chunk(from, to, size);
 567   CONT_JFR_ONLY(_jfr_info.record_size_copied(size);)
 568 
 569 #ifdef ASSERT
 570   if (_last_write != nullptr) {
 571     assert(_last_write == to + size, "Missed a spot: _last_write: " INTPTR_FORMAT " to+size: " INTPTR_FORMAT
 572         " stack_size: %d _last_write offset: " PTR_FORMAT " to+size: " PTR_FORMAT, p2i(_last_write), p2i(to+size),
 573         chunk->stack_size(), _last_write-chunk->start_address(), to+size-chunk->start_address());
 574     _last_write = to;
 575   }
 576 #endif
 577 }
 578 
 579 static void assert_frames_in_continuation_are_safe(JavaThread* thread) {
 580 #ifdef ASSERT
 581   StackWatermark* watermark = StackWatermarkSet::get(thread, StackWatermarkKind::gc);
 582   if (watermark == nullptr) {
 583     return;
 584   }
 585   ContinuationEntry* ce = thread->last_continuation();
 586   RegisterMap map(thread,
 587                   RegisterMap::UpdateMap::include,
 588                   RegisterMap::ProcessFrames::skip,
 589                   RegisterMap::WalkContinuation::skip);
 590   map.set_include_argument_oops(false);
 591   for (frame f = thread->last_frame(); Continuation::is_frame_in_continuation(ce, f); f = f.sender(&map)) {
 592     watermark->assert_is_frame_safe(f);
 593   }
 594 #endif // ASSERT
 595 }
 596 
 597 // Called _after_ the last possible safepoint during the freeze operation (chunk allocation)
 598 void FreezeBase::unwind_frames() {
 599   ContinuationEntry* entry = _cont.entry();
 600   entry->flush_stack_processing(_thread);
 601   assert_frames_in_continuation_are_safe(_thread);
 602   JFR_ONLY(Jfr::check_and_process_sample_request(_thread);)
 603   set_anchor_to_entry(_thread, entry);
 604 }
 605 
 606 template <typename ConfigT>
 607 freeze_result Freeze<ConfigT>::try_freeze_fast() {
 608   assert(_thread->thread_state() == _thread_in_vm, "");
 609   assert(_thread->cont_fastpath(), "");
 610 
 611   DEBUG_ONLY(_fast_freeze_size = size_if_fast_freeze_available();)
 612   assert(_fast_freeze_size == 0, "");
 613 
 614   stackChunkOop chunk = allocate_chunk(cont_size() + frame::metadata_words + _monitors_in_lockstack, _cont.argsize() + frame::metadata_words_at_top);
 615   if (freeze_fast_new_chunk(chunk)) {
 616     return freeze_ok;
 617   }
 618   if (_thread->has_pending_exception()) {
 619     return freeze_exception;
 620   }
 621 
 622   // TODO R REMOVE when deopt change is fixed
 623   assert(!_thread->cont_fastpath() || _barriers, "");
 624   log_develop_trace(continuations)("-- RETRYING SLOW --");
 625   return freeze_slow();
 626 }
 627 
 628 // Returns size needed if the continuation fits, otherwise 0.
 629 int FreezeBase::size_if_fast_freeze_available() {
 630   stackChunkOop chunk = _cont.tail();
 631   if (chunk == nullptr || chunk->is_gc_mode() || chunk->requires_barriers() || chunk->has_mixed_frames()) {
 632     log_develop_trace(continuations)("chunk available %s", chunk == nullptr ? "no chunk" : "chunk requires barriers");
 633     return 0;
 634   }
 635 
 636   int total_size_needed = cont_size();
 637   const int chunk_sp = chunk->sp();
 638 
 639   // argsize can be nonzero if we have a caller, but the caller could be in a non-empty parent chunk,
 640   // so we subtract it only if we overlap with the caller, i.e. the current chunk isn't empty.
 641   // Consider leaving the chunk's argsize set when emptying it and removing the following branch,
 642   // although that would require changing stackChunkOopDesc::is_empty
 643   if (!chunk->is_empty()) {
 644     total_size_needed -= _cont.argsize() + frame::metadata_words_at_top;
 645   }
 646 
 647   total_size_needed += _monitors_in_lockstack;
 648 
 649   int chunk_free_room = chunk_sp - frame::metadata_words_at_bottom;
 650   bool available = chunk_free_room >= total_size_needed;
 651   log_develop_trace(continuations)("chunk available: %s size: %d argsize: %d top: " INTPTR_FORMAT " bottom: " INTPTR_FORMAT,
 652     available ? "yes" : "no" , total_size_needed, _cont.argsize(), p2i(_cont_stack_top), p2i(_cont_stack_bottom));
 653   return available ? total_size_needed : 0;
 654 }
 655 
 656 void FreezeBase::freeze_fast_existing_chunk() {
 657   stackChunkOop chunk = _cont.tail();
 658 
 659   DEBUG_ONLY(_fast_freeze_size = size_if_fast_freeze_available();)
 660   assert(_fast_freeze_size > 0, "");
 661 
 662   if (!chunk->is_empty()) { // we are copying into a non-empty chunk
 663     DEBUG_ONLY(_empty = false;)
 664     DEBUG_ONLY(_orig_chunk_sp = chunk->sp_address();)
 665 #ifdef ASSERT
 666     {
 667       intptr_t* retaddr_slot = (chunk->sp_address()
 668                                 - frame::sender_sp_ret_address_offset());
 669       assert(ContinuationHelper::return_address_at(retaddr_slot) == chunk->pc(),
 670              "unexpected saved return address");
 671     }
 672 #endif
 673 
 674     // the chunk's sp before the freeze, adjusted to point beyond the stack-passed arguments in the topmost frame
 675     // we overlap; we'll overwrite the chunk's top frame's callee arguments
 676     const int chunk_start_sp = chunk->sp() + _cont.argsize() + frame::metadata_words_at_top;
 677     assert(chunk_start_sp <= chunk->stack_size(), "sp not pointing into stack");
 678 
 679     // increase max_size by what we're freezing minus the overlap
 680     chunk->set_max_thawing_size(chunk->max_thawing_size() + cont_size() - _cont.argsize() - frame::metadata_words_at_top);
 681 
 682     intptr_t* const bottom_sp = _cont_stack_bottom - _cont.argsize() - frame::metadata_words_at_top;
 683     assert(bottom_sp == _bottom_address, "");
 684     // Because the chunk isn't empty, we know there's a caller in the chunk, therefore the bottom-most frame
 685     // should have a return barrier (installed back when we thawed it).
 686 #ifdef ASSERT
 687     {
 688       intptr_t* retaddr_slot = (bottom_sp
 689                                 - frame::sender_sp_ret_address_offset());
 690       assert(ContinuationHelper::return_address_at(retaddr_slot)
 691              == StubRoutines::cont_returnBarrier(),
 692              "should be the continuation return barrier");
 693     }
 694 #endif
 695     // We copy the fp from the chunk back to the stack because it contains some caller data,
 696     // including, possibly, an oop that might have gone stale since we thawed.
 697     patch_stack_pd(bottom_sp, chunk->sp_address());
 698     // we don't patch the return pc at this time, so as not to make the stack unwalkable for async walks
 699 
 700     freeze_fast_copy(chunk, chunk_start_sp CONT_JFR_ONLY(COMMA false));
 701   } else { // the chunk is empty
 702     const int chunk_start_sp = chunk->stack_size();
 703 
 704     DEBUG_ONLY(_empty = true;)
 705     DEBUG_ONLY(_orig_chunk_sp = chunk->start_address() + chunk_start_sp;)
 706 
 707     chunk->set_max_thawing_size(cont_size());
 708     chunk->set_bottom(chunk_start_sp - _cont.argsize() - frame::metadata_words_at_top);
 709     chunk->set_sp(chunk->bottom());
 710 
 711     freeze_fast_copy(chunk, chunk_start_sp CONT_JFR_ONLY(COMMA false));
 712   }
 713 }
 714 
 715 bool FreezeBase::freeze_fast_new_chunk(stackChunkOop chunk) {
 716   DEBUG_ONLY(_empty = true;)
 717 
 718   // Install new chunk
 719   _cont.set_tail(chunk);
 720 
 721   if (UNLIKELY(chunk == nullptr || !_thread->cont_fastpath() || _barriers)) { // OOME/probably humongous
 722     log_develop_trace(continuations)("Retrying slow. Barriers: %d", _barriers);
 723     return false;
 724   }
 725 
 726   chunk->set_max_thawing_size(cont_size());
 727 
 728   // in a fresh chunk, we freeze *with* the bottom-most frame's stack arguments.
 729   // They'll then be stored twice: in the chunk and in the parent chunk's top frame
 730   const int chunk_start_sp = cont_size() + frame::metadata_words + _monitors_in_lockstack;
 731   assert(chunk_start_sp == chunk->stack_size(), "");
 732 
 733   DEBUG_ONLY(_orig_chunk_sp = chunk->start_address() + chunk_start_sp;)
 734 
 735   freeze_fast_copy(chunk, chunk_start_sp CONT_JFR_ONLY(COMMA true));
 736 
 737   return true;
 738 }
 739 
 740 void FreezeBase::freeze_fast_copy(stackChunkOop chunk, int chunk_start_sp CONT_JFR_ONLY(COMMA bool chunk_is_allocated)) {
 741   assert(chunk != nullptr, "");
 742   assert(!chunk->has_mixed_frames(), "");
 743   assert(!chunk->is_gc_mode(), "");
 744   assert(!chunk->has_bitmap(), "");
 745   assert(!chunk->requires_barriers(), "");
 746   assert(chunk == _cont.tail(), "");
 747 
 748   // We unwind frames after the last safepoint so that the GC will have found the oops in the frames, but before
 749   // writing into the chunk. This is so that an asynchronous stack walk (not at a safepoint) that suspends us here
 750   // will either see no continuation on the stack, or a consistent chunk.
 751   unwind_frames();
 752 
 753   log_develop_trace(continuations)("freeze_fast start: chunk " INTPTR_FORMAT " size: %d orig sp: %d argsize: %d",
 754     p2i((oopDesc*)chunk), chunk->stack_size(), chunk_start_sp, _cont.argsize());
 755   assert(chunk_start_sp <= chunk->stack_size(), "");
 756   assert(chunk_start_sp >= cont_size(), "no room in the chunk");
 757 
 758   const int chunk_new_sp = chunk_start_sp - cont_size(); // the chunk's new sp, after freeze
 759   assert(!(_fast_freeze_size > 0) || (_orig_chunk_sp - (chunk->start_address() + chunk_new_sp)) == (_fast_freeze_size - _monitors_in_lockstack), "");
 760 
 761   intptr_t* chunk_top = chunk->start_address() + chunk_new_sp;
 762 #ifdef ASSERT
 763   if (!_empty) {
 764     intptr_t* retaddr_slot = (_orig_chunk_sp
 765                               - frame::sender_sp_ret_address_offset());
 766     assert(ContinuationHelper::return_address_at(retaddr_slot) == chunk->pc(),
 767            "unexpected saved return address");
 768   }
 769 #endif
 770 
 771   log_develop_trace(continuations)("freeze_fast start: " INTPTR_FORMAT " sp: %d chunk_top: " INTPTR_FORMAT,
 772                               p2i(chunk->start_address()), chunk_new_sp, p2i(chunk_top));
 773 
 774   int adjust = frame::metadata_words_at_bottom;
 775 #if INCLUDE_ASAN && defined(AARCH64)
 776   // Reading at offset frame::metadata_words_at_bottom from _cont_stack_top
 777   // will accesss memory at the callee frame, which on preemption cases will
 778   // be the VM native method being called. The Arm 64-bit ABI doesn't specify
 779   // a location where the frame record (returnpc+fp) has to be stored within
 780   // a stack frame, and GCC currently chooses to save it at the top of the
 781   // frame (lowest address). ASan treats this memory access in the callee as
 782   // an overflow access to one of the locals stored in that frame. For these
 783   // preemption cases we don't need to read these words anyways so we avoid it.
 784   if (_preempt) {
 785     adjust = 0;
 786   }
 787 #endif
 788   intptr_t* from = _cont_stack_top - adjust;
 789   intptr_t* to   = chunk_top - adjust;
 790   copy_to_chunk(from, to, cont_size() + adjust);
 791   // Because we're not patched yet, the chunk is now in a bad state
 792 
 793   // patch return pc of the bottom-most frozen frame (now in the chunk)
 794   // with the actual caller's return address
 795   intptr_t* chunk_bottom_retaddr_slot = (chunk_top + cont_size()
 796                                          - _cont.argsize()
 797                                          - frame::metadata_words_at_top
 798                                          - frame::sender_sp_ret_address_offset());
 799 #ifdef ASSERT
 800   if (!_empty) {
 801     assert(ContinuationHelper::return_address_at(chunk_bottom_retaddr_slot)
 802            == StubRoutines::cont_returnBarrier(),
 803            "should be the continuation return barrier");
 804   }
 805 #endif
 806   ContinuationHelper::patch_return_address_at(chunk_bottom_retaddr_slot,
 807                                               chunk->pc());
 808 
 809   // We're always writing to a young chunk, so the GC can't see it until the next safepoint.
 810   chunk->set_sp(chunk_new_sp);
 811 
 812   // set chunk->pc to the return address of the topmost frame in the chunk
 813   if (_preempt) {
 814     // On aarch64/riscv64, the return pc of the top frame won't necessarily be at sp[-1].
 815     // Also, on x64, if the top frame is the native wrapper frame, sp[-1] will not
 816     // be the pc we used when creating the oopmap. Get the top's frame last pc from
 817     // the anchor instead.
 818     address last_pc = _last_frame.pc();
 819     ContinuationHelper::patch_return_address_at(chunk_top - frame::sender_sp_ret_address_offset(), last_pc);
 820     chunk->set_pc(last_pc);
 821     // For stub/native frames the fp is not used while frozen, and will be constructed
 822     // again when thawing the frame (see ThawBase::handle_preempted_continuation). We
 823     // patch it with a special bad address to help with debugging, particularly when
 824     // inspecting frames and identifying invalid accesses.
 825     patch_pd_unused(chunk_top);
 826   } else {
 827     chunk->set_pc(ContinuationHelper::return_address_at(
 828                   _cont_stack_top - frame::sender_sp_ret_address_offset()));
 829   }
 830 
 831   if (_monitors_in_lockstack > 0) {
 832     freeze_lockstack(chunk);
 833   }
 834 
 835   _cont.write();
 836 
 837   log_develop_trace(continuations)("FREEZE CHUNK #" INTPTR_FORMAT " (young)", _cont.hash());
 838   LogTarget(Trace, continuations) lt;
 839   if (lt.develop_is_enabled()) {
 840     LogStream ls(lt);
 841     chunk->print_on(true, &ls);
 842   }
 843 
 844   // Verification
 845   assert(_cont.chunk_invariant(), "");
 846   chunk->verify();
 847 
 848 #if CONT_JFR
 849   EventContinuationFreezeFast e;
 850   if (e.should_commit()) {
 851     e.set_id(cast_from_oop<u8>(chunk));
 852     DEBUG_ONLY(e.set_allocate(chunk_is_allocated);)
 853     e.set_size(cont_size() << LogBytesPerWord);
 854     e.commit();
 855   }
 856 #endif
 857 }
 858 
 859 NOINLINE freeze_result FreezeBase::freeze_slow() {
 860 #ifdef ASSERT
 861   ResourceMark rm;
 862 #endif
 863 
 864   log_develop_trace(continuations)("freeze_slow  #" INTPTR_FORMAT, _cont.hash());
 865   assert(_thread->thread_state() == _thread_in_vm || _thread->thread_state() == _thread_blocked, "");
 866 
 867 #if CONT_JFR
 868   EventContinuationFreezeSlow e;
 869   if (e.should_commit()) {
 870     e.set_id(cast_from_oop<u8>(_cont.continuation()));
 871     e.commit();
 872   }
 873 #endif
 874 
 875   init_rest();
 876 
 877   HandleMark hm(Thread::current());
 878 
 879   frame f = freeze_start_frame();
 880 
 881   LogTarget(Debug, continuations) lt;
 882   if (lt.develop_is_enabled()) {
 883     LogStream ls(lt);
 884     f.print_on(&ls);
 885   }
 886 
 887   frame caller; // the frozen caller in the chunk
 888   freeze_result res = recurse_freeze(f, caller, 0, false, true);
 889 
 890   if (res == freeze_ok) {
 891     finish_freeze(f, caller);
 892     _cont.write();
 893   }
 894 
 895   return res;
 896 }
 897 
 898 frame FreezeBase::freeze_start_frame() {
 899   if (LIKELY(!_preempt)) {
 900     return freeze_start_frame_yield_stub();
 901   } else {
 902     return freeze_start_frame_on_preempt();
 903   }
 904 }
 905 
 906 frame FreezeBase::freeze_start_frame_yield_stub() {
 907   frame f = _thread->last_frame();
 908   assert(SharedRuntime::cont_doYield_stub()->contains(f.pc()), "must be");
 909   f = sender<ContinuationHelper::NonInterpretedUnknownFrame>(f);
 910   assert(Continuation::is_frame_in_continuation(_thread->last_continuation(), f), "");
 911   return f;
 912 }
 913 
 914 frame FreezeBase::freeze_start_frame_on_preempt() {
 915   assert(_last_frame.sp() == _thread->last_frame().sp(), "_last_frame should be already initialized");
 916   assert(Continuation::is_frame_in_continuation(_thread->last_continuation(), _last_frame), "");
 917   return _last_frame;
 918 }
 919 
 920 // The parameter callee_argsize includes metadata that has to be part of caller/callee overlap.
 921 NOINLINE freeze_result FreezeBase::recurse_freeze(frame& f, frame& caller, int callee_argsize, bool callee_interpreted, bool top) {
 922   assert(f.unextended_sp() < _bottom_address, ""); // see recurse_freeze_java_frame
 923   assert(f.is_interpreted_frame() || ((top && _preempt) == ContinuationHelper::Frame::is_stub(f.cb()))
 924          || ((top && _preempt) == f.is_native_frame()), "");
 925 
 926   if (stack_overflow()) {
 927     return freeze_exception;
 928   }
 929 
 930   if (f.is_compiled_frame()) {
 931     if (UNLIKELY(f.oop_map() == nullptr)) {
 932       // special native frame
 933       return freeze_pinned_native;
 934     }
 935     return recurse_freeze_compiled_frame(f, caller, callee_argsize, callee_interpreted);
 936   } else if (f.is_interpreted_frame()) {
 937     assert(!f.interpreter_frame_method()->is_native() || (top && _preempt), "");
 938     return recurse_freeze_interpreted_frame(f, caller, callee_argsize, callee_interpreted);
 939   } else if (top && _preempt) {
 940     assert(f.is_native_frame() || f.is_runtime_frame(), "");
 941     return f.is_native_frame() ? recurse_freeze_native_frame(f, caller) : recurse_freeze_stub_frame(f, caller);
 942   } else {
 943     // Frame can't be frozen. Most likely the call_stub or upcall_stub
 944     // which indicates there are further natives frames up the stack.
 945     return freeze_pinned_native;
 946   }
 947 }
 948 
 949 // The parameter callee_argsize includes metadata that has to be part of caller/callee overlap.
 950 // See also StackChunkFrameStream<frame_kind>::frame_size()
 951 template<typename FKind>
 952 inline freeze_result FreezeBase::recurse_freeze_java_frame(const frame& f, frame& caller, int fsize, int argsize) {
 953   assert(FKind::is_instance(f), "");
 954 
 955   assert(fsize > 0, "");
 956   assert(argsize >= 0, "");
 957   _freeze_size += fsize;
 958   NOT_PRODUCT(_frames++;)
 959 
 960   assert(FKind::frame_bottom(f) <= _bottom_address, "");
 961 
 962   // We don't use FKind::frame_bottom(f) == _bottom_address because on x64 there's sometimes an extra word between
 963   // enterSpecial and an interpreted frame
 964   if (FKind::frame_bottom(f) >= _bottom_address - 1) {
 965     return finalize_freeze(f, caller, argsize); // recursion end
 966   } else {
 967     frame senderf = sender<FKind>(f);
 968     assert(FKind::interpreted || senderf.sp() == senderf.unextended_sp(), "");
 969     freeze_result result = recurse_freeze(senderf, caller, argsize, FKind::interpreted, false); // recursive call
 970     return result;
 971   }
 972 }
 973 
 974 inline void FreezeBase::before_freeze_java_frame(const frame& f, const frame& caller, int fsize, int argsize, bool is_bottom_frame) {
 975   LogTarget(Trace, continuations) lt;
 976   if (lt.develop_is_enabled()) {
 977     LogStream ls(lt);
 978     ls.print_cr("======== FREEZING FRAME interpreted: %d bottom: %d", f.is_interpreted_frame(), is_bottom_frame);
 979     ls.print_cr("fsize: %d argsize: %d", fsize, argsize);
 980     f.print_value_on(&ls);
 981   }
 982   assert(caller.is_interpreted_frame() == Interpreter::contains(caller.pc()), "");
 983 }
 984 
 985 inline void FreezeBase::after_freeze_java_frame(const frame& hf, bool is_bottom_frame) {
 986   LogTarget(Trace, continuations) lt;
 987   if (lt.develop_is_enabled()) {
 988     LogStream ls(lt);
 989     DEBUG_ONLY(hf.print_value_on(&ls);)
 990     assert(hf.is_heap_frame(), "should be");
 991     DEBUG_ONLY(print_frame_layout(hf, false, &ls);)
 992     if (is_bottom_frame) {
 993       ls.print_cr("bottom h-frame:");
 994       hf.print_on(&ls);
 995     }
 996   }
 997 }
 998 
 999 // The parameter argsize_md includes metadata that has to be part of caller/callee overlap.
1000 // See also StackChunkFrameStream<frame_kind>::frame_size()
1001 freeze_result FreezeBase::finalize_freeze(const frame& callee, frame& caller, int argsize_md) {
1002   int argsize = argsize_md - frame::metadata_words_at_top;
1003   assert(callee.is_interpreted_frame()
1004     || ContinuationHelper::Frame::is_stub(callee.cb())
1005     || callee.cb()->as_nmethod()->is_osr_method()
1006     || argsize == _cont.argsize(), "argsize: %d cont.argsize: %d", argsize, _cont.argsize());
1007   log_develop_trace(continuations)("bottom: " INTPTR_FORMAT " count %d size: %d argsize: %d",
1008     p2i(_bottom_address), _frames, _freeze_size << LogBytesPerWord, argsize);
1009 
1010   LogTarget(Trace, continuations) lt;
1011 
1012 #ifdef ASSERT
1013   bool empty = _cont.is_empty();
1014   log_develop_trace(continuations)("empty: %d", empty);
1015 #endif
1016 
1017   stackChunkOop chunk = _cont.tail();
1018 
1019   assert(chunk == nullptr || (chunk->max_thawing_size() == 0) == chunk->is_empty(), "");
1020 
1021   _freeze_size += frame::metadata_words; // for top frame's metadata
1022 
1023   int overlap = 0; // the args overlap the caller -- if there is one in this chunk and is of the same kind
1024   int unextended_sp = -1;
1025   if (chunk != nullptr) {
1026     if (!chunk->is_empty()) {
1027       StackChunkFrameStream<ChunkFrames::Mixed> last(chunk);
1028       unextended_sp = chunk->to_offset(StackChunkFrameStream<ChunkFrames::Mixed>(chunk).unextended_sp());
1029       bool top_interpreted = Interpreter::contains(chunk->pc());
1030       if (callee.is_interpreted_frame() == top_interpreted) {
1031         overlap = argsize_md;
1032       }
1033     } else {
1034       unextended_sp = chunk->stack_size() - frame::metadata_words_at_top;
1035     }
1036   }
1037 
1038   log_develop_trace(continuations)("finalize _size: %d overlap: %d unextended_sp: %d", _freeze_size, overlap, unextended_sp);
1039 
1040   _freeze_size -= overlap;
1041   assert(_freeze_size >= 0, "");
1042 
1043   assert(chunk == nullptr || chunk->is_empty()
1044           || unextended_sp == chunk->to_offset(StackChunkFrameStream<ChunkFrames::Mixed>(chunk).unextended_sp()), "");
1045   assert(chunk != nullptr || unextended_sp < _freeze_size, "");
1046 
1047   _freeze_size += _monitors_in_lockstack;
1048 
1049   // _barriers can be set to true by an allocation in freeze_fast, in which case the chunk is available
1050   bool allocated_old_in_freeze_fast = _barriers;
1051   assert(!allocated_old_in_freeze_fast || (unextended_sp >= _freeze_size && chunk->is_empty()),
1052     "Chunk allocated in freeze_fast is of insufficient size "
1053     "unextended_sp: %d size: %d is_empty: %d", unextended_sp, _freeze_size, chunk->is_empty());
1054   assert(!allocated_old_in_freeze_fast || (!UseZGC && !UseG1GC), "Unexpected allocation");
1055 
1056   DEBUG_ONLY(bool empty_chunk = true);
1057   if (unextended_sp < _freeze_size || chunk->is_gc_mode() || (!allocated_old_in_freeze_fast && chunk->requires_barriers())) {
1058     // ALLOCATE NEW CHUNK
1059 
1060     if (lt.develop_is_enabled()) {
1061       LogStream ls(lt);
1062       if (chunk == nullptr) {
1063         ls.print_cr("no chunk");
1064       } else {
1065         ls.print_cr("chunk barriers: %d _size: %d free size: %d",
1066           chunk->requires_barriers(), _freeze_size, chunk->sp() - frame::metadata_words);
1067         chunk->print_on(&ls);
1068       }
1069     }
1070 
1071     _freeze_size += overlap; // we're allocating a new chunk, so no overlap
1072     // overlap = 0;
1073 
1074     chunk = allocate_chunk_slow(_freeze_size, argsize_md);
1075     if (chunk == nullptr) {
1076       return freeze_exception;
1077     }
1078 
1079     // Install new chunk
1080     _cont.set_tail(chunk);
1081     assert(chunk->is_empty(), "");
1082   } else {
1083     // REUSE EXISTING CHUNK
1084     log_develop_trace(continuations)("Reusing chunk mixed: %d empty: %d", chunk->has_mixed_frames(), chunk->is_empty());
1085     if (chunk->is_empty()) {
1086       int sp = chunk->stack_size() - argsize_md;
1087       chunk->set_sp(sp);
1088       chunk->set_bottom(sp);
1089       _freeze_size += overlap;
1090       assert(chunk->max_thawing_size() == 0, "");
1091     } DEBUG_ONLY(else empty_chunk = false;)
1092   }
1093   assert(!chunk->is_gc_mode(), "");
1094   assert(!chunk->has_bitmap(), "");
1095   chunk->set_has_mixed_frames(true);
1096 
1097   assert(chunk->requires_barriers() == _barriers, "");
1098   assert(!_barriers || chunk->is_empty(), "");
1099 
1100   assert(!chunk->is_empty() || StackChunkFrameStream<ChunkFrames::Mixed>(chunk).is_done(), "");
1101   assert(!chunk->is_empty() || StackChunkFrameStream<ChunkFrames::Mixed>(chunk).to_frame().is_empty(), "");
1102 
1103   if (_preempt) {
1104     frame top_frame = _thread->last_frame();
1105     if (top_frame.is_interpreted_frame()) {
1106       // Some platforms do not save the last_sp in the top interpreter frame on VM calls.
1107       // We need it so that on resume we can restore the sp to the right place, since
1108       // thawing might add an alignment word to the expression stack (see finish_thaw()).
1109       // We do it now that we know freezing will be successful.
1110       prepare_freeze_interpreted_top_frame(top_frame);
1111     }
1112 
1113     // Do this now so should_process_args_at_top() is set before calling finish_freeze
1114     // in case we might need to apply GC barriers to frames in this stackChunk.
1115     if (_thread->at_preemptable_init()) {
1116       assert(top_frame.is_interpreted_frame(), "only InterpreterRuntime::_new/resolve_from_cache allowed");
1117       chunk->set_at_klass_init(true);
1118       methodHandle m(_thread, top_frame.interpreter_frame_method());
1119       Bytecode_invoke call = Bytecode_invoke_check(m, top_frame.interpreter_frame_bci());
1120       assert(!call.is_valid() || call.is_invokestatic(), "only invokestatic allowed");
1121       if (call.is_invokestatic() && call.size_of_parameters() > 0) {
1122         assert(top_frame.interpreter_frame_expression_stack_size() > 0, "should have parameters in exp stack");
1123         chunk->set_has_args_at_top(true);
1124       }
1125     }
1126   }
1127 
1128   // We unwind frames after the last safepoint so that the GC will have found the oops in the frames, but before
1129   // writing into the chunk. This is so that an asynchronous stack walk (not at a safepoint) that suspends us here
1130   // will either see no continuation or a consistent chunk.
1131   unwind_frames();
1132 
1133   chunk->set_max_thawing_size(chunk->max_thawing_size() + _freeze_size - _monitors_in_lockstack - frame::metadata_words);
1134 
1135   if (lt.develop_is_enabled()) {
1136     LogStream ls(lt);
1137     ls.print_cr("top chunk:");
1138     chunk->print_on(&ls);
1139   }
1140 
1141   if (_monitors_in_lockstack > 0) {
1142     freeze_lockstack(chunk);
1143   }
1144 
1145   // The topmost existing frame in the chunk; or an empty frame if the chunk is empty
1146   caller = StackChunkFrameStream<ChunkFrames::Mixed>(chunk).to_frame();
1147 
1148   DEBUG_ONLY(_last_write = caller.unextended_sp() + (empty_chunk ? argsize_md : overlap);)
1149 
1150   assert(chunk->is_in_chunk(_last_write - _freeze_size),
1151     "last_write-size: " INTPTR_FORMAT " start: " INTPTR_FORMAT, p2i(_last_write-_freeze_size), p2i(chunk->start_address()));
1152 #ifdef ASSERT
1153   if (lt.develop_is_enabled()) {
1154     LogStream ls(lt);
1155     ls.print_cr("top hframe before (freeze):");
1156     assert(caller.is_heap_frame(), "should be");
1157     caller.print_on(&ls);
1158   }
1159 
1160   assert(!empty || Continuation::is_continuation_entry_frame(callee, nullptr), "");
1161 
1162   frame entry = sender(callee);
1163 
1164   assert((!empty && Continuation::is_return_barrier_entry(entry.pc())) || (empty && Continuation::is_continuation_enterSpecial(entry)), "");
1165   assert(callee.is_interpreted_frame() || entry.sp() == entry.unextended_sp(), "");
1166 #endif
1167 
1168   return freeze_ok_bottom;
1169 }
1170 
1171 // After freezing a frame we need to possibly adjust some values related to the caller frame.
1172 void FreezeBase::patch(const frame& f, frame& hf, const frame& caller, bool is_bottom_frame) {
1173   if (is_bottom_frame) {
1174     // If we're the bottom frame, we need to replace the return barrier with the real
1175     // caller's pc.
1176     address last_pc = caller.pc();
1177     assert((last_pc == nullptr) == _cont.tail()->is_empty(), "");
1178     ContinuationHelper::Frame::patch_pc(caller, last_pc);
1179   } else {
1180     assert(!caller.is_empty(), "");
1181   }
1182 
1183   patch_pd(hf, caller);
1184 
1185   if (f.is_interpreted_frame()) {
1186     assert(hf.is_heap_frame(), "should be");
1187     ContinuationHelper::InterpretedFrame::patch_sender_sp(hf, caller);
1188   }
1189 
1190 #ifdef ASSERT
1191   if (hf.is_compiled_frame()) {
1192     if (f.is_deoptimized_frame()) { // TODO DEOPT: long term solution: unroll on freeze and patch pc
1193       log_develop_trace(continuations)("Freezing deoptimized frame");
1194       assert(f.cb()->as_nmethod()->is_deopt_pc(f.raw_pc()), "");
1195       assert(f.cb()->as_nmethod()->is_deopt_pc(ContinuationHelper::Frame::real_pc(f)), "");
1196     }
1197   }
1198 #endif
1199 }
1200 
1201 #ifdef ASSERT
1202 static void verify_frame_top(const frame& f, intptr_t* top) {
1203   ResourceMark rm;
1204   InterpreterOopMap mask;
1205   f.interpreted_frame_oop_map(&mask);
1206   assert(top <= ContinuationHelper::InterpretedFrame::frame_top(f, &mask),
1207          "frame_top: " INTPTR_FORMAT " Interpreted::frame_top: " INTPTR_FORMAT,
1208            p2i(top), p2i(ContinuationHelper::InterpretedFrame::frame_top(f, &mask)));
1209 }
1210 #endif // ASSERT
1211 
1212 // The parameter callee_argsize includes metadata that has to be part of caller/callee overlap.
1213 // See also StackChunkFrameStream<frame_kind>::frame_size()
1214 NOINLINE freeze_result FreezeBase::recurse_freeze_interpreted_frame(frame& f, frame& caller,
1215                                                                     int callee_argsize /* incl. metadata */,
1216                                                                     bool callee_interpreted) {
1217   adjust_interpreted_frame_unextended_sp(f);
1218 
1219   // The frame's top never includes the stack arguments to the callee
1220   intptr_t* const stack_frame_top = ContinuationHelper::InterpretedFrame::frame_top(f, callee_argsize, callee_interpreted);
1221   intptr_t* const stack_frame_bottom = ContinuationHelper::InterpretedFrame::frame_bottom(f);
1222   const int fsize = pointer_delta_as_int(stack_frame_bottom, stack_frame_top);
1223 
1224   DEBUG_ONLY(verify_frame_top(f, stack_frame_top));
1225 
1226   Method* frame_method = ContinuationHelper::Frame::frame_method(f);
1227   // including metadata between f and its args
1228   const int argsize = ContinuationHelper::InterpretedFrame::stack_argsize(f) + frame::metadata_words_at_top;
1229 
1230   log_develop_trace(continuations)("recurse_freeze_interpreted_frame %s _size: %d fsize: %d argsize: %d callee_interpreted: %d",
1231     frame_method->name_and_sig_as_C_string(), _freeze_size, fsize, argsize, callee_interpreted);
1232   // we'd rather not yield inside methods annotated with @JvmtiMountTransition
1233   assert(!ContinuationHelper::Frame::frame_method(f)->jvmti_mount_transition(), "");
1234 
1235   freeze_result result = recurse_freeze_java_frame<ContinuationHelper::InterpretedFrame>(f, caller, fsize, argsize);
1236   if (UNLIKELY(result > freeze_ok_bottom)) {
1237     return result;
1238   }
1239 
1240   bool is_bottom_frame = result == freeze_ok_bottom;
1241   assert(!caller.is_empty() || is_bottom_frame, "");
1242 
1243   DEBUG_ONLY(before_freeze_java_frame(f, caller, fsize, 0, is_bottom_frame);)
1244 
1245   frame hf = new_heap_frame<ContinuationHelper::InterpretedFrame>(f, caller);
1246   _total_align_size += frame::align_wiggle; // add alignment room for internal interpreted frame alignment on AArch64/PPC64
1247 
1248   intptr_t* heap_frame_top = ContinuationHelper::InterpretedFrame::frame_top(hf, callee_argsize, callee_interpreted);
1249   intptr_t* heap_frame_bottom = ContinuationHelper::InterpretedFrame::frame_bottom(hf);
1250   assert(heap_frame_bottom == heap_frame_top + fsize, "");
1251 
1252   // Some architectures (like AArch64/PPC64/RISC-V) add padding between the locals and the fixed_frame to keep the fp 16-byte-aligned.
1253   // On those architectures we freeze the padding in order to keep the same fp-relative offsets in the fixed_frame.
1254   copy_to_chunk(stack_frame_top, heap_frame_top, fsize);
1255   assert(!is_bottom_frame || !caller.is_interpreted_frame() || (heap_frame_top + fsize) == (caller.unextended_sp() + argsize), "");
1256 
1257   relativize_interpreted_frame_metadata(f, hf);
1258 
1259   patch(f, hf, caller, is_bottom_frame);
1260 
1261   CONT_JFR_ONLY(_jfr_info.record_interpreted_frame();)
1262   DEBUG_ONLY(after_freeze_java_frame(hf, is_bottom_frame);)
1263   caller = hf;
1264 
1265   // Mark frame_method's GC epoch for class redefinition on_stack calculation.
1266   frame_method->record_gc_epoch();
1267 
1268   return freeze_ok;
1269 }
1270 
1271 // The parameter callee_argsize includes metadata that has to be part of caller/callee overlap.
1272 // See also StackChunkFrameStream<frame_kind>::frame_size()
1273 freeze_result FreezeBase::recurse_freeze_compiled_frame(frame& f, frame& caller,
1274                                                         int callee_argsize /* incl. metadata */,
1275                                                         bool callee_interpreted) {
1276   // The frame's top never includes the stack arguments to the callee
1277   intptr_t* const stack_frame_top = ContinuationHelper::CompiledFrame::frame_top(f, callee_argsize, callee_interpreted);
1278   intptr_t* const stack_frame_bottom = ContinuationHelper::CompiledFrame::frame_bottom(f);
1279   // including metadata between f and its stackargs
1280   const int argsize = ContinuationHelper::CompiledFrame::stack_argsize(f) + frame::metadata_words_at_top;
1281   const int fsize = pointer_delta_as_int(stack_frame_bottom + argsize, stack_frame_top);
1282 
1283   log_develop_trace(continuations)("recurse_freeze_compiled_frame %s _size: %d fsize: %d argsize: %d",
1284                              ContinuationHelper::Frame::frame_method(f) != nullptr ?
1285                              ContinuationHelper::Frame::frame_method(f)->name_and_sig_as_C_string() : "",
1286                              _freeze_size, fsize, argsize);
1287   // we'd rather not yield inside methods annotated with @JvmtiMountTransition
1288   assert(!ContinuationHelper::Frame::frame_method(f)->jvmti_mount_transition(), "");
1289 
1290   freeze_result result = recurse_freeze_java_frame<ContinuationHelper::CompiledFrame>(f, caller, fsize, argsize);
1291   if (UNLIKELY(result > freeze_ok_bottom)) {
1292     return result;
1293   }
1294 
1295   bool is_bottom_frame = result == freeze_ok_bottom;
1296   assert(!caller.is_empty() || is_bottom_frame, "");
1297 
1298   DEBUG_ONLY(before_freeze_java_frame(f, caller, fsize, argsize, is_bottom_frame);)
1299 
1300   frame hf = new_heap_frame<ContinuationHelper::CompiledFrame>(f, caller);
1301 
1302   intptr_t* heap_frame_top = ContinuationHelper::CompiledFrame::frame_top(hf, callee_argsize, callee_interpreted);
1303 
1304   copy_to_chunk(stack_frame_top, heap_frame_top, fsize);
1305   assert(!is_bottom_frame || !caller.is_compiled_frame() || (heap_frame_top + fsize) == (caller.unextended_sp() + argsize), "");
1306 
1307   if (caller.is_interpreted_frame()) {
1308     // When thawing the frame we might need to add alignment (see Thaw::align)
1309     _total_align_size += frame::align_wiggle;
1310   }
1311 
1312   patch(f, hf, caller, is_bottom_frame);
1313 
1314   assert(is_bottom_frame || Interpreter::contains(ContinuationHelper::CompiledFrame::real_pc(caller)) == caller.is_interpreted_frame(), "");
1315 
1316   DEBUG_ONLY(after_freeze_java_frame(hf, is_bottom_frame);)
1317   caller = hf;
1318   return freeze_ok;
1319 }
1320 
1321 NOINLINE freeze_result FreezeBase::recurse_freeze_stub_frame(frame& f, frame& caller) {
1322   DEBUG_ONLY(frame fsender = sender(f);)
1323   assert(fsender.is_compiled_frame(), "sender should be compiled frame");
1324 
1325   intptr_t* const stack_frame_top = ContinuationHelper::StubFrame::frame_top(f);
1326   const int fsize = f.cb()->frame_size();
1327 
1328   log_develop_trace(continuations)("recurse_freeze_stub_frame %s _size: %d fsize: %d :: " INTPTR_FORMAT " - " INTPTR_FORMAT,
1329     f.cb()->name(), _freeze_size, fsize, p2i(stack_frame_top), p2i(stack_frame_top+fsize));
1330 
1331   freeze_result result = recurse_freeze_java_frame<ContinuationHelper::StubFrame>(f, caller, fsize, 0);
1332   if (UNLIKELY(result > freeze_ok_bottom)) {
1333     return result;
1334   }
1335 
1336   assert(result == freeze_ok, "should have caller");
1337   DEBUG_ONLY(before_freeze_java_frame(f, caller, fsize, 0, false /*is_bottom_frame*/);)
1338 
1339   frame hf = new_heap_frame<ContinuationHelper::StubFrame>(f, caller);
1340   intptr_t* heap_frame_top = ContinuationHelper::StubFrame::frame_top(hf);
1341 
1342   copy_to_chunk(stack_frame_top, heap_frame_top, fsize);
1343 
1344   patch(f, hf, caller, false /*is_bottom_frame*/);
1345 
1346   DEBUG_ONLY(after_freeze_java_frame(hf, false /*is_bottom_frame*/);)
1347 
1348   caller = hf;
1349   return freeze_ok;
1350 }
1351 
1352 NOINLINE freeze_result FreezeBase::recurse_freeze_native_frame(frame& f, frame& caller) {
1353   if (!f.cb()->as_nmethod()->method()->is_object_wait0()) {
1354     assert(f.cb()->as_nmethod()->method()->is_synchronized(), "");
1355     // Synchronized native method case. Unlike the interpreter native wrapper, the compiled
1356     // native wrapper tries to acquire the monitor after marshalling the arguments from the
1357     // caller into the native convention. This is so that we have a valid oopMap in case of
1358     // having to block in the slow path. But that would require freezing those registers too
1359     // and then fixing them back on thaw in case of oops. To avoid complicating things and
1360     // given that this would be a rare case anyways just pin the vthread to the carrier.
1361     return freeze_pinned_native;
1362   }
1363 
1364   intptr_t* const stack_frame_top = ContinuationHelper::NativeFrame::frame_top(f);
1365   // There are no stackargs but argsize must include the metadata
1366   const int argsize = frame::metadata_words_at_top;
1367   const int fsize = f.cb()->frame_size() + argsize;
1368 
1369   log_develop_trace(continuations)("recurse_freeze_native_frame %s _size: %d fsize: %d :: " INTPTR_FORMAT " - " INTPTR_FORMAT,
1370     f.cb()->name(), _freeze_size, fsize, p2i(stack_frame_top), p2i(stack_frame_top+fsize));
1371 
1372   freeze_result result = recurse_freeze_java_frame<ContinuationHelper::NativeFrame>(f, caller, fsize, argsize);
1373   if (UNLIKELY(result > freeze_ok_bottom)) {
1374     return result;
1375   }
1376 
1377   assert(result == freeze_ok, "should have caller frame");
1378   DEBUG_ONLY(before_freeze_java_frame(f, caller, fsize, argsize, false /* is_bottom_frame */);)
1379 
1380   frame hf = new_heap_frame<ContinuationHelper::NativeFrame>(f, caller);
1381   intptr_t* heap_frame_top = ContinuationHelper::NativeFrame::frame_top(hf);
1382 
1383   copy_to_chunk(stack_frame_top, heap_frame_top, fsize);
1384 
1385   if (caller.is_interpreted_frame()) {
1386     // When thawing the frame we might need to add alignment (see Thaw::align)
1387     _total_align_size += frame::align_wiggle;
1388   }
1389 
1390   patch(f, hf, caller, false /* is_bottom_frame */);
1391 
1392   DEBUG_ONLY(after_freeze_java_frame(hf, false /* is_bottom_frame */);)
1393 
1394   caller = hf;
1395   return freeze_ok;
1396 }
1397 
1398 NOINLINE void FreezeBase::finish_freeze(const frame& f, const frame& top) {
1399   stackChunkOop chunk = _cont.tail();
1400 
1401   LogTarget(Trace, continuations) lt;
1402   if (lt.develop_is_enabled()) {
1403     LogStream ls(lt);
1404     assert(top.is_heap_frame(), "should be");
1405     top.print_on(&ls);
1406   }
1407 
1408   set_top_frame_metadata_pd(top);
1409 
1410   chunk->set_sp(chunk->to_offset(top.sp()));
1411   chunk->set_pc(top.pc());
1412 
1413   chunk->set_max_thawing_size(chunk->max_thawing_size() + _total_align_size);
1414 
1415   assert(chunk->sp_address() - chunk->start_address() >= _monitors_in_lockstack, "clash with lockstack");
1416 
1417   // At this point the chunk is consistent
1418 
1419   if (UNLIKELY(_barriers)) {
1420     log_develop_trace(continuations)("do barriers on old chunk");
1421     // Serial and Parallel GC can allocate objects directly into the old generation.
1422     // Then we want to relativize the derived pointers eagerly so that
1423     // old chunks are all in GC mode.
1424     assert(!UseG1GC, "G1 can not deal with allocating outside of eden");
1425     assert(!UseZGC, "ZGC can not deal with allocating chunks visible to marking");
1426     if (UseShenandoahGC) {
1427       _cont.tail()->relativize_derived_pointers_concurrently();
1428     } else {
1429       ContinuationGCSupport::transform_stack_chunk(_cont.tail());
1430     }
1431     // For objects in the old generation we must maintain the remembered set
1432     _cont.tail()->do_barriers<stackChunkOopDesc::BarrierType::Store>();
1433   }
1434 
1435   log_develop_trace(continuations)("finish_freeze: has_mixed_frames: %d", chunk->has_mixed_frames());
1436   if (lt.develop_is_enabled()) {
1437     LogStream ls(lt);
1438     chunk->print_on(true, &ls);
1439   }
1440 
1441   if (lt.develop_is_enabled()) {
1442     LogStream ls(lt);
1443     ls.print_cr("top hframe after (freeze):");
1444     assert(_cont.last_frame().is_heap_frame(), "should be");
1445     _cont.last_frame().print_on(&ls);
1446     DEBUG_ONLY(print_frame_layout(top, false, &ls);)
1447   }
1448 
1449   assert(_cont.chunk_invariant(), "");
1450 }
1451 
1452 inline bool FreezeBase::stack_overflow() { // detect stack overflow in recursive native code
1453   JavaThread* t = !_preempt ? _thread : JavaThread::current();
1454   assert(t == JavaThread::current(), "");
1455   if (os::current_stack_pointer() < t->stack_overflow_state()->shadow_zone_safe_limit()) {
1456     if (!_preempt) {
1457       ContinuationWrapper::SafepointOp so(t, _cont); // could also call _cont.done() instead
1458       Exceptions::_throw_msg(t, __FILE__, __LINE__, vmSymbols::java_lang_StackOverflowError(), "Stack overflow while freezing");
1459     }
1460     return true;
1461   }
1462   return false;
1463 }
1464 
1465 class StackChunkAllocator : public MemAllocator {
1466   const size_t                                 _stack_size;
1467   int                                          _argsize_md;
1468   ContinuationWrapper&                         _continuation_wrapper;
1469   JvmtiSampledObjectAllocEventCollector* const _jvmti_event_collector;
1470   mutable bool                                 _took_slow_path;
1471 
1472   // Does the minimal amount of initialization needed for a TLAB allocation.
1473   // We don't need to do a full initialization, as such an allocation need not be immediately walkable.
1474   virtual oop initialize(HeapWord* mem) const override {
1475     assert(_stack_size > 0, "");
1476     assert(_stack_size <= max_jint, "");
1477     assert(_word_size > _stack_size, "");
1478 
1479     // zero out fields (but not the stack)
1480     const size_t hs = oopDesc::header_size();
1481     if (oopDesc::has_klass_gap()) {
1482       oopDesc::set_klass_gap(mem, 0);
1483     }
1484     Copy::fill_to_aligned_words(mem + hs, vmClasses::StackChunk_klass()->size_helper() - hs);
1485 
1486     int bottom = (int)_stack_size - _argsize_md;
1487 
1488     jdk_internal_vm_StackChunk::set_size(mem, (int)_stack_size);
1489     jdk_internal_vm_StackChunk::set_bottom(mem, bottom);
1490     jdk_internal_vm_StackChunk::set_sp(mem, bottom);
1491 
1492     return finish(mem);
1493   }
1494 
1495   stackChunkOop allocate_fast() const {
1496     if (!UseTLAB) {
1497       return nullptr;
1498     }
1499 
1500     HeapWord* const mem = MemAllocator::mem_allocate_inside_tlab_fast();
1501     if (mem == nullptr) {
1502       return nullptr;
1503     }
1504 
1505     oop obj = initialize(mem);
1506     return stackChunkOopDesc::cast(obj);
1507   }
1508 
1509 public:
1510   StackChunkAllocator(Klass* klass,
1511                       size_t word_size,
1512                       Thread* thread,
1513                       size_t stack_size,
1514                       int argsize_md,
1515                       ContinuationWrapper& continuation_wrapper,
1516                       JvmtiSampledObjectAllocEventCollector* jvmti_event_collector)
1517     : MemAllocator(klass, word_size, thread),
1518       _stack_size(stack_size),
1519       _argsize_md(argsize_md),
1520       _continuation_wrapper(continuation_wrapper),
1521       _jvmti_event_collector(jvmti_event_collector),
1522       _took_slow_path(false) {}
1523 
1524   // Provides it's own, specialized allocation which skips instrumentation
1525   // if the memory can be allocated without going to a slow-path.
1526   stackChunkOop allocate() const {
1527     // First try to allocate without any slow-paths or instrumentation.
1528     stackChunkOop obj = allocate_fast();
1529     if (obj != nullptr) {
1530       return obj;
1531     }
1532 
1533     // Now try full-blown allocation with all expensive operations,
1534     // including potentially safepoint operations.
1535     _took_slow_path = true;
1536 
1537     // Protect unhandled Loom oops
1538     ContinuationWrapper::SafepointOp so(_thread, _continuation_wrapper);
1539 
1540     // Can safepoint
1541     _jvmti_event_collector->start();
1542 
1543     // Can safepoint
1544     return stackChunkOopDesc::cast(MemAllocator::allocate());
1545   }
1546 
1547   bool took_slow_path() const {
1548     return _took_slow_path;
1549   }
1550 };
1551 
1552 template <typename ConfigT>
1553 stackChunkOop Freeze<ConfigT>::allocate_chunk(size_t stack_size, int argsize_md) {
1554   log_develop_trace(continuations)("allocate_chunk allocating new chunk");
1555 
1556   InstanceStackChunkKlass* klass = InstanceStackChunkKlass::cast(vmClasses::StackChunk_klass());
1557   size_t size_in_words = klass->instance_size(stack_size);
1558 
1559   if (CollectedHeap::stack_chunk_max_size() > 0 && size_in_words >= CollectedHeap::stack_chunk_max_size()) {
1560     if (!_preempt) {
1561       throw_stack_overflow_on_humongous_chunk();
1562     }
1563     return nullptr;
1564   }
1565 
1566   JavaThread* current = _preempt ? JavaThread::current() : _thread;
1567   assert(current == JavaThread::current(), "should be current");
1568 
1569   // Allocate the chunk.
1570   //
1571   // This might safepoint while allocating, but all safepointing due to
1572   // instrumentation have been deferred. This property is important for
1573   // some GCs, as this ensures that the allocated object is in the young
1574   // generation / newly allocated memory.
1575   StackChunkAllocator allocator(klass, size_in_words, current, stack_size, argsize_md, _cont, _jvmti_event_collector);
1576   stackChunkOop chunk = allocator.allocate();
1577 
1578   if (chunk == nullptr) {
1579     return nullptr; // OOME
1580   }
1581 
1582   // assert that chunk is properly initialized
1583   assert(chunk->stack_size() == (int)stack_size, "");
1584   assert(chunk->size() >= stack_size, "chunk->size(): %zu size: %zu", chunk->size(), stack_size);
1585   assert(chunk->sp() == chunk->bottom(), "");
1586   assert((intptr_t)chunk->start_address() % 8 == 0, "");
1587   assert(chunk->max_thawing_size() == 0, "");
1588   assert(chunk->pc() == nullptr, "");
1589   assert(chunk->is_empty(), "");
1590   assert(chunk->flags() == 0, "");
1591   assert(chunk->is_gc_mode() == false, "");
1592   assert(chunk->lockstack_size() == 0, "");
1593 
1594   // fields are uninitialized
1595   chunk->set_parent_access<IS_DEST_UNINITIALIZED>(_cont.last_nonempty_chunk());
1596   chunk->set_cont_access<IS_DEST_UNINITIALIZED>(_cont.continuation());
1597 
1598 #if INCLUDE_ZGC
1599   if (UseZGC) {
1600     ZStackChunkGCData::initialize(chunk);
1601     assert(!chunk->requires_barriers(), "ZGC always allocates in the young generation");
1602     _barriers = false;
1603   } else
1604 #endif
1605 #if INCLUDE_SHENANDOAHGC
1606   if (UseShenandoahGC) {
1607     _barriers = chunk->requires_barriers();
1608   } else
1609 #endif
1610   {
1611     if (!allocator.took_slow_path()) {
1612       // Guaranteed to be in young gen / newly allocated memory
1613       assert(!chunk->requires_barriers(), "Unfamiliar GC requires barriers on TLAB allocation");
1614       _barriers = false;
1615     } else {
1616       // Some GCs could put direct allocations in old gen for slow-path
1617       // allocations; need to explicitly check if that was the case.
1618       _barriers = chunk->requires_barriers();
1619     }
1620   }
1621 
1622   if (_barriers) {
1623     log_develop_trace(continuations)("allocation requires barriers");
1624   }
1625 
1626   assert(chunk->parent() == nullptr || chunk->parent()->is_stackChunk(), "");
1627 
1628   return chunk;
1629 }
1630 
1631 void FreezeBase::throw_stack_overflow_on_humongous_chunk() {
1632   ContinuationWrapper::SafepointOp so(_thread, _cont); // could also call _cont.done() instead
1633   Exceptions::_throw_msg(_thread, __FILE__, __LINE__, vmSymbols::java_lang_StackOverflowError(), "Humongous stack chunk");
1634 }
1635 
1636 class AnchorMark : public StackObj {
1637   JavaThread* _current;
1638   frame& _top_frame;
1639   intptr_t* _last_sp_from_frame;
1640   bool _is_interpreted;
1641 
1642  public:
1643   AnchorMark(JavaThread* current, frame& f) : _current(current), _top_frame(f), _is_interpreted(false) {
1644     intptr_t* sp = anchor_mark_set_pd();
1645     set_anchor(_current, sp);
1646   }
1647   ~AnchorMark() {
1648     clear_anchor(_current);
1649     anchor_mark_clear_pd();
1650   }
1651   inline intptr_t* anchor_mark_set_pd();
1652   inline void anchor_mark_clear_pd();
1653 };
1654 
1655 #if INCLUDE_JVMTI
1656 static int num_java_frames(ContinuationWrapper& cont) {
1657   ResourceMark rm; // used for scope traversal in num_java_frames(nmethod*, address)
1658   int count = 0;
1659   for (stackChunkOop chunk = cont.tail(); chunk != nullptr; chunk = chunk->parent()) {
1660     count += chunk->num_java_frames();
1661   }
1662   return count;
1663 }
1664 
1665 static void invalidate_jvmti_stack(JavaThread* thread) {
1666   JvmtiThreadState *state = thread->jvmti_thread_state();
1667   if (state != nullptr) {
1668     state->invalidate_cur_stack_depth();
1669   }
1670 }
1671 
1672 static void jvmti_yield_cleanup(JavaThread* thread, ContinuationWrapper& cont) {
1673   if (!cont.entry()->is_virtual_thread()) {
1674     if (JvmtiExport::has_frame_pops(thread)) {
1675       int num_frames = num_java_frames(cont);
1676 
1677       ContinuationWrapper::SafepointOp so(Thread::current(), cont);
1678       JvmtiExport::continuation_yield_cleanup(thread, num_frames);
1679     }
1680     invalidate_jvmti_stack(thread);
1681   }
1682 }
1683 
1684 static void jvmti_mount_end(JavaThread* current, ContinuationWrapper& cont, frame top, Continuation::preempt_kind pk) {
1685   assert(current->vthread() != nullptr, "must be");
1686 
1687   HandleMarkCleaner hm(current);  // Cleanup all handles (including so._conth) before returning to Java.
1688   Handle vth(current, current->vthread());
1689   ContinuationWrapper::SafepointOp so(current, cont);
1690   AnchorMark am(current, top);  // Set anchor so that the stack is walkable.
1691 
1692   JRT_BLOCK
1693     MountUnmountDisabler::end_transition(current, vth(), true /*is_mount*/, false /*is_thread_start*/);
1694 
1695     if (current->pending_contended_entered_event()) {
1696       // No monitor JVMTI events for ObjectLocker case.
1697       if (pk != Continuation::object_locker) {
1698         JvmtiExport::post_monitor_contended_entered(current, current->contended_entered_monitor());
1699       }
1700       current->set_contended_entered_monitor(nullptr);
1701     }
1702   JRT_BLOCK_END
1703 }
1704 #endif // INCLUDE_JVMTI
1705 
1706 #ifdef ASSERT
1707 // There are no interpreted frames if we're not called from the interpreter and we haven't ancountered an i2c
1708 // adapter or called Deoptimization::unpack_frames. As for native frames, upcalls from JNI also go through the
1709 // interpreter (see JavaCalls::call_helper), while the UpcallLinker explicitly sets cont_fastpath.
1710 bool FreezeBase::check_valid_fast_path() {
1711   ContinuationEntry* ce = _thread->last_continuation();
1712   RegisterMap map(_thread,
1713                   RegisterMap::UpdateMap::skip,
1714                   RegisterMap::ProcessFrames::skip,
1715                   RegisterMap::WalkContinuation::skip);
1716   map.set_include_argument_oops(false);
1717   bool is_top_frame = true;
1718   for (frame f = freeze_start_frame(); Continuation::is_frame_in_continuation(ce, f); f = f.sender(&map), is_top_frame = false) {
1719     if (!((f.is_compiled_frame() && !f.is_deoptimized_frame()) || (is_top_frame && (f.is_runtime_frame() || f.is_native_frame())))) {
1720       return false;
1721     }
1722   }
1723   return true;
1724 }
1725 
1726 static void verify_frame_kind(frame& top, Continuation::preempt_kind preempt_kind, Method** m_ptr, const char** code_name_ptr, int* bci_ptr, stackChunkOop chunk) {
1727   Method* m;
1728   const char* code_name;
1729   int bci;
1730   if (preempt_kind == Continuation::monitorenter) {
1731     assert(top.is_interpreted_frame() || top.is_runtime_frame(), "unexpected %sframe",
1732       top.is_compiled_frame() ? "compiled " : top.is_native_frame() ? "native " : "");
1733     bool at_sync_method;
1734     if (top.is_interpreted_frame()) {
1735       m = top.interpreter_frame_method();
1736       assert(!m->is_native() || m->is_synchronized(), "invalid method %s", m->external_name());
1737       address bcp = top.interpreter_frame_bcp();
1738       assert(bcp != nullptr || m->is_native(), "");
1739       at_sync_method = m->is_synchronized() && (bcp == nullptr || bcp == m->code_base());
1740       // bcp is advanced on monitorenter before making the VM call, adjust for that.
1741       bool at_sync_bytecode = bcp > m->code_base() && Bytecode(m, bcp - 1).code() == Bytecodes::Code::_monitorenter;
1742       assert(at_sync_method || at_sync_bytecode, "");
1743       bci = at_sync_method ? -1 : top.interpreter_frame_bci();
1744     } else {
1745       JavaThread* current = JavaThread::current();
1746       ResourceMark rm(current);
1747       CodeBlob* cb = top.cb();
1748       RegisterMap reg_map(current,
1749                   RegisterMap::UpdateMap::skip,
1750                   RegisterMap::ProcessFrames::skip,
1751                   RegisterMap::WalkContinuation::include);
1752       if (top.is_heap_frame()) {
1753         assert(chunk != nullptr, "");
1754         reg_map.set_stack_chunk(chunk);
1755         top = chunk->relativize(top);
1756         top.set_frame_index(0);
1757       }
1758       frame fr = top.sender(&reg_map);
1759       vframe*  vf  = vframe::new_vframe(&fr, &reg_map, current);
1760       compiledVFrame* cvf = compiledVFrame::cast(vf);
1761       m = cvf->method();
1762       bci = cvf->scope()->bci();
1763       at_sync_method = bci == SynchronizationEntryBCI;
1764       assert(!at_sync_method || m->is_synchronized(), "bci is %d but method %s is not synchronized", bci, m->external_name());
1765       bool is_c1_monitorenter = false, is_c2_monitorenter = false;
1766       COMPILER1_PRESENT(is_c1_monitorenter = cb == Runtime1::blob_for(StubId::c1_monitorenter_id) ||
1767                                              cb == Runtime1::blob_for(StubId::c1_monitorenter_nofpu_id);)
1768       COMPILER2_PRESENT(is_c2_monitorenter = cb == CodeCache::find_blob(OptoRuntime::complete_monitor_locking_Java());)
1769       assert(is_c1_monitorenter || is_c2_monitorenter, "wrong runtime stub frame");
1770     }
1771     code_name = at_sync_method ? "synchronized method" : "monitorenter";
1772   } else if (preempt_kind == Continuation::object_wait) {
1773     assert(top.is_interpreted_frame() || top.is_native_frame(), "");
1774     m  = top.is_interpreted_frame() ? top.interpreter_frame_method() : top.cb()->as_nmethod()->method();
1775     assert(m->is_object_wait0(), "");
1776     bci = 0;
1777     code_name = "";
1778   } else {
1779     assert(preempt_kind == Continuation::object_locker, "invalid preempt kind");
1780     assert(top.is_interpreted_frame(), "");
1781     m = top.interpreter_frame_method();
1782     Bytecode current_bytecode = Bytecode(m, top.interpreter_frame_bcp());
1783     Bytecodes::Code code = current_bytecode.code();
1784     assert(code == Bytecodes::Code::_new || code == Bytecodes::Code::_invokestatic ||
1785            (code == Bytecodes::Code::_getstatic || code == Bytecodes::Code::_putstatic), "invalid bytecode");
1786     bci = top.interpreter_frame_bci();
1787     code_name = Bytecodes::name(current_bytecode.code());
1788   }
1789   assert(bci >= 0 || m->is_synchronized(), "invalid bci:%d at method %s", bci, m->external_name());
1790 
1791   if (m_ptr != nullptr) {
1792     *m_ptr = m;
1793     *code_name_ptr = code_name;
1794     *bci_ptr = bci;
1795   }
1796 }
1797 
1798 static void log_preempt_after_freeze(const ContinuationWrapper& cont) {
1799   JavaThread* current = cont.thread();
1800   int64_t tid = current->monitor_owner_id();
1801 
1802   StackChunkFrameStream<ChunkFrames::Mixed> sfs(cont.tail());
1803   frame top_frame = sfs.to_frame();
1804   bool at_init = current->at_preemptable_init();
1805   bool at_enter = current->current_pending_monitor() != nullptr;
1806   bool at_wait = current->current_waiting_monitor() != nullptr;
1807   assert((at_enter && !at_wait) || (!at_enter && at_wait), "");
1808   Continuation::preempt_kind pk = at_init ? Continuation::object_locker : at_enter ? Continuation::monitorenter : Continuation::object_wait;
1809 
1810   Method* m = nullptr;
1811   const char* code_name = nullptr;
1812   int bci = InvalidFrameStateBci;
1813   verify_frame_kind(top_frame, pk, &m, &code_name, &bci, cont.tail());
1814   assert(m != nullptr && code_name != nullptr && bci != InvalidFrameStateBci, "should be set");
1815 
1816   ResourceMark rm(current);
1817   if (bci < 0) {
1818     log_trace(continuations, preempt)("Preempted " INT64_FORMAT " while synchronizing on %smethod %s", tid, m->is_native() ? "native " : "", m->external_name());
1819   } else if (m->is_object_wait0()) {
1820     log_trace(continuations, preempt)("Preempted " INT64_FORMAT " at native method %s", tid, m->external_name());
1821   } else {
1822     Klass* k = current->preempt_init_klass();
1823     assert(k != nullptr || !at_init, "");
1824     log_trace(continuations, preempt)("Preempted " INT64_FORMAT " at %s(bci:%d) in method %s %s%s", tid, code_name, bci,
1825             m->external_name(), at_init ? "trying to initialize klass " : "", at_init ? k->external_name() : "");
1826   }
1827 }
1828 #endif // ASSERT
1829 
1830 static inline freeze_result freeze_epilog(ContinuationWrapper& cont) {
1831   verify_continuation(cont.continuation());
1832   assert(!cont.is_empty(), "");
1833 
1834   log_develop_debug(continuations)("=== End of freeze cont ### #" INTPTR_FORMAT, cont.hash());
1835   return freeze_ok;
1836 }
1837 
1838 static freeze_result freeze_epilog(JavaThread* thread, ContinuationWrapper& cont, freeze_result res) {
1839   if (UNLIKELY(res != freeze_ok)) {
1840     JFR_ONLY(thread->set_last_freeze_fail_result(res);)
1841     verify_continuation(cont.continuation());
1842     log_develop_trace(continuations)("=== end of freeze (fail %d)", res);
1843     return res;
1844   }
1845 
1846   JVMTI_ONLY(jvmti_yield_cleanup(thread, cont)); // can safepoint
1847   return freeze_epilog(cont);
1848 }
1849 
1850 static freeze_result preempt_epilog(ContinuationWrapper& cont, freeze_result res, frame& old_last_frame) {
1851   if (UNLIKELY(res != freeze_ok)) {
1852     verify_continuation(cont.continuation());
1853     log_develop_trace(continuations)("=== end of freeze (fail %d)", res);
1854     return res;
1855   }
1856 
1857   // Set up things so that on return to Java we jump to preempt stub.
1858   patch_return_pc_with_preempt_stub(old_last_frame);
1859   cont.tail()->set_preempted(true);
1860   DEBUG_ONLY(log_preempt_after_freeze(cont);)
1861   return freeze_epilog(cont);
1862 }
1863 
1864 template<typename ConfigT, bool preempt>
1865 static inline freeze_result freeze_internal(JavaThread* current, intptr_t* const sp) {
1866   assert(!current->has_pending_exception(), "");
1867 
1868 #ifdef ASSERT
1869   log_trace(continuations)("~~~~ freeze sp: " INTPTR_FORMAT "JavaThread: " INTPTR_FORMAT, p2i(current->last_continuation()->entry_sp()), p2i(current));
1870   log_frames(current);
1871 #endif
1872 
1873   CONT_JFR_ONLY(EventContinuationFreeze event;)
1874 
1875   ContinuationEntry* entry = current->last_continuation();
1876 
1877   oop oopCont = entry->cont_oop(current);
1878   assert(oopCont == current->last_continuation()->cont_oop(current), "");
1879   assert(ContinuationEntry::assert_entry_frame_laid_out(current), "");
1880 
1881   verify_continuation(oopCont);
1882   ContinuationWrapper cont(current, oopCont);
1883   log_develop_debug(continuations)("FREEZE #" INTPTR_FORMAT " " INTPTR_FORMAT, cont.hash(), p2i((oopDesc*)oopCont));
1884 
1885   assert(entry->is_virtual_thread() == (entry->scope(current) == java_lang_VirtualThread::vthread_scope()), "");
1886 
1887   if (entry->is_pinned()) {
1888     log_develop_debug(continuations)("PINNED due to critical section");
1889     verify_continuation(cont.continuation());
1890     const freeze_result res = freeze_pinned_cs;
1891     if (!preempt) {
1892       JFR_ONLY(current->set_last_freeze_fail_result(res);)
1893     }
1894     log_develop_trace(continuations)("=== end of freeze (fail %d)", res);
1895     // Avoid Thread.yield() loops without safepoint polls.
1896     if (SafepointMechanism::should_process(current) && !preempt) {
1897       cont.done(); // allow safepoint
1898       ThreadInVMfromJava tivmfj(current);
1899     }
1900     return res;
1901   }
1902 
1903   Freeze<ConfigT> freeze(current, cont, sp, preempt);
1904 
1905   assert(!current->cont_fastpath() || freeze.check_valid_fast_path(), "");
1906   bool fast = UseContinuationFastPath && current->cont_fastpath();
1907   if (fast && freeze.size_if_fast_freeze_available() > 0) {
1908     freeze.freeze_fast_existing_chunk();
1909     CONT_JFR_ONLY(freeze.jfr_info().post_jfr_event(&event, oopCont, current);)
1910     return !preempt ? freeze_epilog(cont) : preempt_epilog(cont, freeze_ok, freeze.last_frame());
1911   }
1912 
1913   if (preempt) {
1914     JvmtiSampledObjectAllocEventCollector jsoaec(false);
1915     freeze.set_jvmti_event_collector(&jsoaec);
1916 
1917     freeze_result res = fast ? freeze.try_freeze_fast() : freeze.freeze_slow();
1918 
1919     CONT_JFR_ONLY(freeze.jfr_info().post_jfr_event(&event, oopCont, current);)
1920     preempt_epilog(cont, res, freeze.last_frame());
1921     return res;
1922   }
1923 
1924   log_develop_trace(continuations)("chunk unavailable; transitioning to VM");
1925   assert(current == JavaThread::current(), "must be current thread");
1926   JRT_BLOCK
1927     // delays a possible JvmtiSampledObjectAllocEventCollector in alloc_chunk
1928     JvmtiSampledObjectAllocEventCollector jsoaec(false);
1929     freeze.set_jvmti_event_collector(&jsoaec);
1930 
1931     freeze_result res = fast ? freeze.try_freeze_fast() : freeze.freeze_slow();
1932 
1933     CONT_JFR_ONLY(freeze.jfr_info().post_jfr_event(&event, oopCont, current);)
1934     freeze_epilog(current, cont, res);
1935     cont.done(); // allow safepoint in the transition back to Java
1936     return res;
1937   JRT_BLOCK_END
1938 }
1939 
1940 static freeze_result is_pinned0(JavaThread* thread, oop cont_scope, bool safepoint) {
1941   ContinuationEntry* entry = thread->last_continuation();
1942   if (entry == nullptr) {
1943     return freeze_ok;
1944   }
1945   if (entry->is_pinned()) {
1946     return freeze_pinned_cs;
1947   }
1948 
1949   RegisterMap map(thread,
1950                   RegisterMap::UpdateMap::include,
1951                   RegisterMap::ProcessFrames::skip,
1952                   RegisterMap::WalkContinuation::skip);
1953   map.set_include_argument_oops(false);
1954   frame f = thread->last_frame();
1955 
1956   if (!safepoint) {
1957     f = f.sender(&map); // this is the yield frame
1958   } else { // safepoint yield
1959 #if (defined(X86) || defined(AARCH64) || defined(RISCV64)) && !defined(ZERO)
1960     f.set_fp(f.real_fp()); // Instead of this, maybe in ContinuationWrapper::set_last_frame always use the real_fp?
1961 #else
1962     Unimplemented();
1963 #endif
1964     if (!Interpreter::contains(f.pc())) {
1965       assert(ContinuationHelper::Frame::is_stub(f.cb()), "must be");
1966       assert(f.oop_map() != nullptr, "must be");
1967       f.oop_map()->update_register_map(&f, &map); // we have callee-save registers in this case
1968     }
1969   }
1970 
1971   while (true) {
1972     if ((f.is_interpreted_frame() && f.interpreter_frame_method()->is_native()) || f.is_native_frame()) {
1973       return freeze_pinned_native;
1974     }
1975 
1976     f = f.sender(&map);
1977     if (!Continuation::is_frame_in_continuation(entry, f)) {
1978       oop scope = jdk_internal_vm_Continuation::scope(entry->cont_oop(thread));
1979       if (scope == cont_scope) {
1980         break;
1981       }
1982       entry = entry->parent();
1983       if (entry == nullptr) {
1984         break;
1985       }
1986       if (entry->is_pinned()) {
1987         return freeze_pinned_cs;
1988       }
1989     }
1990   }
1991   return freeze_ok;
1992 }
1993 
1994 /////////////// THAW ////
1995 
1996 static int thaw_size(stackChunkOop chunk) {
1997   int size = chunk->max_thawing_size();
1998   size += frame::metadata_words; // For the top pc+fp in push_return_frame or top = stack_sp - frame::metadata_words in thaw_fast
1999   size += 2*frame::align_wiggle; // in case of alignments at the top and bottom
2000   return size;
2001 }
2002 
2003 // make room on the stack for thaw
2004 // returns the size in bytes, or 0 on failure
2005 static inline int prepare_thaw_internal(JavaThread* thread, bool return_barrier) {
2006   log_develop_trace(continuations)("~~~~ prepare_thaw return_barrier: %d", return_barrier);
2007 
2008   assert(thread == JavaThread::current(), "");
2009 
2010   ContinuationEntry* ce = thread->last_continuation();
2011   assert(ce != nullptr, "");
2012   oop continuation = ce->cont_oop(thread);
2013   assert(continuation == get_continuation(thread), "");
2014   verify_continuation(continuation);
2015 
2016   stackChunkOop chunk = jdk_internal_vm_Continuation::tail(continuation);
2017   assert(chunk != nullptr, "");
2018 
2019   // The tail can be empty because it might still be available for another freeze.
2020   // However, here we want to thaw, so we get rid of it (it will be GCed).
2021   if (UNLIKELY(chunk->is_empty())) {
2022     chunk = chunk->parent();
2023     assert(chunk != nullptr, "");
2024     assert(!chunk->is_empty(), "");
2025     jdk_internal_vm_Continuation::set_tail(continuation, chunk);
2026   }
2027 
2028   // Verification
2029   chunk->verify();
2030   assert(chunk->max_thawing_size() > 0, "chunk invariant violated; expected to not be empty");
2031 
2032   // Only make space for the last chunk because we only thaw from the last chunk
2033   int size = thaw_size(chunk) << LogBytesPerWord;
2034 
2035   const address bottom = (address)thread->last_continuation()->entry_sp();
2036   // 300 is an estimate for stack size taken for this native code, in addition to StackShadowPages
2037   // for the Java frames in the check below.
2038   if (!stack_overflow_check(thread, size + 300, bottom)) {
2039     return 0;
2040   }
2041 
2042   log_develop_trace(continuations)("prepare_thaw bottom: " INTPTR_FORMAT " top: " INTPTR_FORMAT " size: %d",
2043                               p2i(bottom), p2i(bottom - size), size);
2044   return size;
2045 }
2046 
2047 class ThawBase : public StackObj {
2048 protected:
2049   JavaThread* _thread;
2050   ContinuationWrapper& _cont;
2051   CONT_JFR_ONLY(FreezeThawJfrInfo _jfr_info;)
2052 
2053   intptr_t* _fastpath;
2054   bool _barriers;
2055   bool _preempted_case;
2056   bool _should_patch_caller_pc;
2057   bool _process_args_at_top;
2058   intptr_t* _top_unextended_sp_before_thaw;
2059   int _align_size;
2060   DEBUG_ONLY(intptr_t* _top_stack_address;)
2061   DEBUG_ONLY(address _caller_raw_pc;)
2062 
2063   // Only used for preemption on ObjectLocker
2064   ObjectMonitor* _init_lock;
2065 
2066   StackChunkFrameStream<ChunkFrames::Mixed> _stream;
2067 
2068   NOT_PRODUCT(int _frames;)
2069 
2070 protected:
2071   ThawBase(JavaThread* thread, ContinuationWrapper& cont) :
2072       _thread(thread), _cont(cont),
2073       _fastpath(nullptr) {
2074     DEBUG_ONLY(_top_unextended_sp_before_thaw = nullptr;)
2075     assert (cont.tail() != nullptr, "no last chunk");
2076     DEBUG_ONLY(_top_stack_address = _cont.entrySP() - thaw_size(cont.tail());)
2077   }
2078 
2079   void clear_chunk(stackChunkOop chunk);
2080   template<bool check_stub>
2081   int remove_top_compiled_frame_from_chunk(stackChunkOop chunk, int &argsize);
2082   void copy_from_chunk(intptr_t* from, intptr_t* to, int size);
2083 
2084   void thaw_lockstack(stackChunkOop chunk);
2085 
2086   // fast path
2087   inline void prefetch_chunk_pd(void* start, int size_words);
2088   void patch_return(intptr_t* sp, bool is_last);
2089 
2090   intptr_t* handle_preempted_continuation(intptr_t* sp, Continuation::preempt_kind preempt_kind, bool fast_case);
2091   inline intptr_t* push_cleanup_continuation();
2092   inline intptr_t* push_preempt_adapter();
2093   intptr_t* redo_vmcall(JavaThread* current, frame& top);
2094   void throw_interrupted_exception(JavaThread* current, frame& top);
2095 
2096   void recurse_thaw(const frame& heap_frame, frame& caller, int num_frames, bool top_on_preempt_case);
2097   void finish_thaw(frame& f);
2098 
2099 private:
2100   template<typename FKind> bool recurse_thaw_java_frame(frame& caller, int num_frames);
2101   void finalize_thaw(frame& entry, int argsize);
2102 
2103   inline bool seen_by_gc();
2104 
2105   inline void before_thaw_java_frame(const frame& hf, const frame& caller, bool bottom, int num_frame);
2106   inline void after_thaw_java_frame(const frame& f, bool bottom);
2107   inline void patch(frame& f, const frame& caller, bool bottom);
2108   void clear_bitmap_bits(address start, address end);
2109 
2110   NOINLINE void recurse_thaw_interpreted_frame(const frame& hf, frame& caller, int num_frames, bool is_top);
2111   void recurse_thaw_compiled_frame(const frame& hf, frame& caller, int num_frames, bool stub_caller);
2112   void recurse_thaw_stub_frame(const frame& hf, frame& caller, int num_frames);
2113   void recurse_thaw_native_frame(const frame& hf, frame& caller, int num_frames);
2114 
2115   void push_return_frame(const frame& f);
2116   inline frame new_entry_frame();
2117   template<typename FKind> frame new_stack_frame(const frame& hf, frame& caller, bool bottom);
2118   inline void patch_pd(frame& f, const frame& sender);
2119   inline void patch_pd(frame& f, intptr_t* caller_sp);
2120   inline intptr_t* align(const frame& hf, intptr_t* frame_sp, frame& caller, bool bottom);
2121 
2122   void maybe_set_fastpath(intptr_t* sp) { if (sp > _fastpath) _fastpath = sp; }
2123 
2124   static inline void derelativize_interpreted_frame_metadata(const frame& hf, const frame& f);
2125 
2126  public:
2127   CONT_JFR_ONLY(FreezeThawJfrInfo& jfr_info() { return _jfr_info; })
2128 };
2129 
2130 template <typename ConfigT>
2131 class Thaw : public ThawBase {
2132 public:
2133   Thaw(JavaThread* thread, ContinuationWrapper& cont) : ThawBase(thread, cont) {}
2134 
2135   inline bool can_thaw_fast(stackChunkOop chunk) {
2136     return    !_barriers
2137            &&  _thread->cont_fastpath_thread_state()
2138            && !chunk->has_thaw_slowpath_condition()
2139            && !PreserveFramePointer;
2140   }
2141 
2142   inline intptr_t* thaw(Continuation::thaw_kind kind);
2143   template<bool check_stub = false>
2144   NOINLINE intptr_t* thaw_fast(stackChunkOop chunk);
2145   NOINLINE intptr_t* thaw_slow(stackChunkOop chunk, Continuation::thaw_kind kind);
2146   inline void patch_caller_links(intptr_t* sp, intptr_t* bottom);
2147 };
2148 
2149 template <typename ConfigT>
2150 inline intptr_t* Thaw<ConfigT>::thaw(Continuation::thaw_kind kind) {
2151   verify_continuation(_cont.continuation());
2152   assert(!jdk_internal_vm_Continuation::done(_cont.continuation()), "");
2153   assert(!_cont.is_empty(), "");
2154 
2155   stackChunkOop chunk = _cont.tail();
2156   assert(chunk != nullptr, "guaranteed by prepare_thaw");
2157   assert(!chunk->is_empty(), "guaranteed by prepare_thaw");
2158 
2159   _barriers = chunk->requires_barriers();
2160   return (LIKELY(can_thaw_fast(chunk))) ? thaw_fast(chunk)
2161                                         : thaw_slow(chunk, kind);
2162 }
2163 
2164 class ReconstructedStack : public StackObj {
2165   intptr_t* _base;  // _cont.entrySP(); // top of the entry frame
2166   int _thaw_size;
2167   int _argsize;
2168 public:
2169   ReconstructedStack(intptr_t* base, int thaw_size, int argsize)
2170   : _base(base), _thaw_size(thaw_size - (argsize == 0 ? frame::metadata_words_at_top : 0)), _argsize(argsize) {
2171     // The only possible source of misalignment is stack-passed arguments b/c compiled frames are 16-byte aligned.
2172     assert(argsize != 0 || (_base - _thaw_size) == ContinuationHelper::frame_align_pointer(_base - _thaw_size), "");
2173     // We're at most one alignment word away from entrySP
2174     assert(_base - 1 <= top() + total_size() + frame::metadata_words_at_bottom, "missed entry frame");
2175   }
2176 
2177   int entry_frame_extension() const { return _argsize + (_argsize > 0 ? frame::metadata_words_at_top : 0); }
2178 
2179   // top and bottom stack pointers
2180   intptr_t* sp() const { return ContinuationHelper::frame_align_pointer(_base - _thaw_size); }
2181   intptr_t* bottom_sp() const { return ContinuationHelper::frame_align_pointer(_base - entry_frame_extension()); }
2182 
2183   // several operations operate on the totality of the stack being reconstructed,
2184   // including the metadata words
2185   intptr_t* top() const { return sp() - frame::metadata_words_at_bottom;  }
2186   int total_size() const { return _thaw_size + frame::metadata_words_at_bottom; }
2187 };
2188 
2189 inline void ThawBase::clear_chunk(stackChunkOop chunk) {
2190   chunk->set_sp(chunk->bottom());
2191   chunk->set_max_thawing_size(0);
2192 }
2193 
2194 template<bool check_stub>
2195 int ThawBase::remove_top_compiled_frame_from_chunk(stackChunkOop chunk, int &argsize) {
2196   bool empty = false;
2197   StackChunkFrameStream<ChunkFrames::CompiledOnly> f(chunk);
2198   DEBUG_ONLY(intptr_t* const chunk_sp = chunk->start_address() + chunk->sp();)
2199   assert(chunk_sp == f.sp(), "");
2200   assert(chunk_sp == f.unextended_sp(), "");
2201 
2202   int frame_size = f.cb()->frame_size();
2203   argsize = f.stack_argsize();
2204 
2205   assert(!f.is_stub() || check_stub, "");
2206   if (check_stub && f.is_stub()) {
2207     // If we don't thaw the top compiled frame too, after restoring the saved
2208     // registers back in Java, we would hit the return barrier to thaw one more
2209     // frame effectively overwriting the restored registers during that call.
2210     f.next(SmallRegisterMap::instance_no_args(), true /* stop */);
2211     assert(!f.is_done(), "");
2212 
2213     f.get_cb();
2214     assert(f.is_compiled(), "");
2215     frame_size += f.cb()->frame_size();
2216     argsize = f.stack_argsize();
2217 
2218     if (f.cb()->as_nmethod()->is_marked_for_deoptimization()) {
2219       // The caller of the runtime stub when the continuation is preempted is not at a
2220       // Java call instruction, and so cannot rely on nmethod patching for deopt.
2221       log_develop_trace(continuations)("Deoptimizing runtime stub caller");
2222       f.to_frame().deoptimize(nullptr); // the null thread simply avoids the assertion in deoptimize which we're not set up for
2223     }
2224   }
2225 
2226   f.next(SmallRegisterMap::instance_no_args(), true /* stop */);
2227   empty = f.is_done();
2228   assert(!empty || argsize == chunk->argsize(), "");
2229 
2230   if (empty) {
2231     clear_chunk(chunk);
2232   } else {
2233     chunk->set_sp(chunk->sp() + frame_size);
2234     chunk->set_max_thawing_size(chunk->max_thawing_size() - frame_size);
2235     // We set chunk->pc to the return pc into the next frame
2236     chunk->set_pc(f.pc());
2237 #ifdef ASSERT
2238     {
2239       intptr_t* retaddr_slot = (chunk_sp
2240                                 + frame_size
2241                                 - frame::sender_sp_ret_address_offset());
2242       assert(f.pc() == ContinuationHelper::return_address_at(retaddr_slot),
2243              "unexpected pc");
2244     }
2245 #endif
2246   }
2247   assert(empty == chunk->is_empty(), "");
2248   // returns the size required to store the frame on stack, and because it is a
2249   // compiled frame, it must include a copy of the arguments passed by the caller
2250   return frame_size + argsize + frame::metadata_words_at_top;
2251 }
2252 
2253 void ThawBase::thaw_lockstack(stackChunkOop chunk) {
2254   int lockStackSize = chunk->lockstack_size();
2255   assert(lockStackSize > 0 && lockStackSize <= LockStack::CAPACITY, "");
2256 
2257   oop tmp_lockstack[LockStack::CAPACITY];
2258   chunk->transfer_lockstack(tmp_lockstack, _barriers);
2259   _thread->lock_stack().move_from_address(tmp_lockstack, lockStackSize);
2260 
2261   chunk->set_lockstack_size(0);
2262   chunk->set_has_lockstack(false);
2263 }
2264 
2265 void ThawBase::copy_from_chunk(intptr_t* from, intptr_t* to, int size) {
2266   assert(to >= _top_stack_address, "overwrote past thawing space"
2267     " to: " INTPTR_FORMAT " top_address: " INTPTR_FORMAT, p2i(to), p2i(_top_stack_address));
2268   assert(to + size <= _cont.entrySP(), "overwrote past thawing space");
2269   _cont.tail()->copy_from_chunk_to_stack(from, to, size);
2270   CONT_JFR_ONLY(_jfr_info.record_size_copied(size);)
2271 }
2272 
2273 void ThawBase::patch_return(intptr_t* sp, bool is_last) {
2274   log_develop_trace(continuations)("thaw_fast patching -- sp: " INTPTR_FORMAT, p2i(sp));
2275 
2276   address pc = !is_last ? StubRoutines::cont_returnBarrier() : _cont.entryPC();
2277   ContinuationHelper::patch_return_address_at(
2278     sp - frame::sender_sp_ret_address_offset(),
2279     pc);
2280 }
2281 
2282 template <typename ConfigT>
2283 template<bool check_stub>
2284 NOINLINE intptr_t* Thaw<ConfigT>::thaw_fast(stackChunkOop chunk) {
2285   assert(chunk == _cont.tail(), "");
2286   assert(!chunk->has_mixed_frames(), "");
2287   assert(!chunk->requires_barriers(), "");
2288   assert(!chunk->has_bitmap(), "");
2289   assert(!_thread->is_interp_only_mode(), "");
2290 
2291   LogTarget(Trace, continuations) lt;
2292   if (lt.develop_is_enabled()) {
2293     LogStream ls(lt);
2294     ls.print_cr("thaw_fast");
2295     chunk->print_on(true, &ls);
2296   }
2297 
2298   // Below this heuristic, we thaw the whole chunk, above it we thaw just one frame.
2299   static const int threshold = 500; // words
2300 
2301   const int full_chunk_size = chunk->stack_size() - chunk->sp(); // this initial size could be reduced if it's a partial thaw
2302   int argsize, thaw_size;
2303 
2304   intptr_t* const chunk_sp = chunk->start_address() + chunk->sp();
2305 
2306   bool partial, empty;
2307   if (LIKELY(!ForceSingleFrameThaw && (full_chunk_size < threshold))) {
2308     prefetch_chunk_pd(chunk->start_address(), full_chunk_size); // prefetch anticipating memcpy starting at highest address
2309 
2310     partial = false;
2311     argsize = chunk->argsize(); // must be called *before* clearing the chunk
2312     clear_chunk(chunk);
2313     thaw_size = full_chunk_size;
2314     empty = true;
2315   } else { // thaw a single frame
2316     partial = true;
2317     thaw_size = remove_top_compiled_frame_from_chunk<check_stub>(chunk, argsize);
2318     empty = chunk->is_empty();
2319   }
2320 
2321   // Are we thawing the last frame(s) in the continuation
2322   const bool is_last = empty && chunk->parent() == nullptr;
2323   assert(!is_last || argsize == 0, "");
2324 
2325   log_develop_trace(continuations)("thaw_fast partial: %d is_last: %d empty: %d size: %d argsize: %d entrySP: " PTR_FORMAT,
2326                               partial, is_last, empty, thaw_size, argsize, p2i(_cont.entrySP()));
2327 
2328   ReconstructedStack rs(_cont.entrySP(), thaw_size, argsize);
2329 
2330   // also copy metadata words at frame bottom
2331   copy_from_chunk(chunk_sp - frame::metadata_words_at_bottom, rs.top(), rs.total_size());
2332 
2333   // update the ContinuationEntry
2334   _cont.set_argsize(argsize);
2335   log_develop_trace(continuations)("setting entry argsize: %d", _cont.argsize());
2336   assert(rs.bottom_sp() == _cont.entry()->bottom_sender_sp(), "");
2337 
2338   // install the return barrier if not last frame, or the entry's pc if last
2339   patch_return(rs.bottom_sp(), is_last);
2340 
2341   // insert the back links from callee to caller frames
2342   patch_caller_links(rs.top(), rs.top() + rs.total_size());
2343 
2344   assert(is_last == _cont.is_empty(), "");
2345   assert(_cont.chunk_invariant(), "");
2346 
2347 #if CONT_JFR
2348   EventContinuationThawFast e;
2349   if (e.should_commit()) {
2350     e.set_id(cast_from_oop<u8>(chunk));
2351     e.set_size(thaw_size << LogBytesPerWord);
2352     e.set_full(!partial);
2353     e.commit();
2354   }
2355 #endif
2356 
2357 #ifdef ASSERT
2358   if (LoomDeoptAfterThaw) {
2359     frame top(rs.sp());
2360     AnchorMark am(_thread, top);
2361     log_frames(_thread);
2362     do_deopt_after_thaw(_thread);
2363   }
2364 #endif
2365 
2366   return rs.sp();
2367 }
2368 
2369 inline bool ThawBase::seen_by_gc() {
2370   return _barriers || _cont.tail()->is_gc_mode();
2371 }
2372 
2373 static inline void relativize_chunk_concurrently(stackChunkOop chunk) {
2374 #if INCLUDE_ZGC || INCLUDE_SHENANDOAHGC
2375   if (UseZGC || UseShenandoahGC) {
2376     chunk->relativize_derived_pointers_concurrently();
2377   }
2378 #endif
2379 }
2380 
2381 template <typename ConfigT>
2382 NOINLINE intptr_t* Thaw<ConfigT>::thaw_slow(stackChunkOop chunk, Continuation::thaw_kind kind) {
2383   Continuation::preempt_kind preempt_kind;
2384   bool retry_fast_path = false;
2385 
2386   _process_args_at_top = false;
2387   _preempted_case = chunk->preempted();
2388   if (_preempted_case) {
2389     ObjectMonitor* mon = nullptr;
2390     ObjectWaiter* waiter = java_lang_VirtualThread::objectWaiter(_thread->vthread());
2391     if (waiter != nullptr) {
2392       // Mounted again after preemption. Resume the pending monitor operation,
2393       // which will be either a monitorenter or Object.wait() call.
2394       mon = waiter->monitor();
2395       preempt_kind = waiter->is_wait() ? Continuation::object_wait : Continuation::monitorenter;
2396 
2397       bool mon_acquired = mon->resume_operation(_thread, waiter, _cont);
2398       assert(!mon_acquired || mon->has_owner(_thread), "invariant");
2399       if (!mon_acquired) {
2400         // Failed to acquire monitor. Return to enterSpecial to unmount again.
2401         log_develop_trace(continuations, preempt)("Failed to acquire monitor, unmounting again");
2402         return push_cleanup_continuation();
2403       }
2404       chunk = _cont.tail();  // reload oop in case of safepoint in resume_operation (if posting JVMTI events).
2405       JVMTI_ONLY(assert(_thread->contended_entered_monitor() == nullptr || _thread->contended_entered_monitor() == mon, ""));
2406     } else {
2407       // Preemption cancelled on moniterenter or ObjectLocker case. We
2408       // actually acquired the monitor after freezing all frames so no
2409       // need to call resume_operation. If this is the ObjectLocker case
2410       // we released the monitor already at ~ObjectLocker, so _init_lock
2411       // will be set to nullptr below since there is no monitor to release.
2412       preempt_kind = Continuation::monitorenter;
2413     }
2414 
2415     // Call this first to avoid racing with GC threads later when modifying the chunk flags.
2416     relativize_chunk_concurrently(chunk);
2417 
2418     if (chunk->at_klass_init()) {
2419       preempt_kind = Continuation::object_locker;
2420       chunk->set_at_klass_init(false);
2421       _process_args_at_top = chunk->has_args_at_top();
2422       if (_process_args_at_top) {
2423         // Only needed for the top frame which will be thawed.
2424         chunk->set_has_args_at_top(false);
2425       }
2426       assert(waiter == nullptr || mon != nullptr, "should have a monitor");
2427       _init_lock = mon;  // remember monitor since we will need it on handle_preempted_continuation()
2428     }
2429     chunk->set_preempted(false);
2430     retry_fast_path = true;
2431   } else {
2432     relativize_chunk_concurrently(chunk);
2433   }
2434 
2435   // On first thaw after freeze restore oops to the lockstack if any.
2436   assert(chunk->lockstack_size() == 0 || kind == Continuation::thaw_top, "");
2437   if (kind == Continuation::thaw_top && chunk->lockstack_size() > 0) {
2438     thaw_lockstack(chunk);
2439     retry_fast_path = true;
2440   }
2441 
2442   // Retry the fast path now that we possibly cleared the FLAG_HAS_LOCKSTACK
2443   // and FLAG_PREEMPTED flags from the stackChunk.
2444   if (retry_fast_path && can_thaw_fast(chunk)) {
2445     intptr_t* sp = thaw_fast<true>(chunk);
2446     if (_preempted_case) {
2447       return handle_preempted_continuation(sp, preempt_kind, true /* fast_case */);
2448     }
2449     return sp;
2450   }
2451 
2452   LogTarget(Trace, continuations) lt;
2453   if (lt.develop_is_enabled()) {
2454     LogStream ls(lt);
2455     ls.print_cr("thaw slow return_barrier: %d " INTPTR_FORMAT, kind, p2i(chunk));
2456     chunk->print_on(true, &ls);
2457   }
2458 
2459 #if CONT_JFR
2460   EventContinuationThawSlow e;
2461   if (e.should_commit()) {
2462     e.set_id(cast_from_oop<u8>(_cont.continuation()));
2463     e.commit();
2464   }
2465 #endif
2466 
2467   DEBUG_ONLY(_frames = 0;)
2468   _align_size = 0;
2469   int num_frames = kind == Continuation::thaw_top ? 2 : 1;
2470 
2471   _stream = StackChunkFrameStream<ChunkFrames::Mixed>(chunk);
2472   _top_unextended_sp_before_thaw = _stream.unextended_sp();
2473 
2474   frame heap_frame = _stream.to_frame();
2475   if (lt.develop_is_enabled()) {
2476     LogStream ls(lt);
2477     ls.print_cr("top hframe before (thaw):");
2478     assert(heap_frame.is_heap_frame(), "should have created a relative frame");
2479     heap_frame.print_value_on(&ls);
2480   }
2481 
2482   frame caller; // the thawed caller on the stack
2483   _should_patch_caller_pc = false;
2484   recurse_thaw(heap_frame, caller, num_frames, _preempted_case);
2485   finish_thaw(caller); // caller is now the topmost thawed frame
2486   _cont.write();
2487 
2488   assert(_cont.chunk_invariant(), "");
2489 
2490   JVMTI_ONLY(if (!_cont.entry()->is_virtual_thread()) invalidate_jvmti_stack(_thread));
2491 
2492   _thread->set_cont_fastpath(_fastpath);
2493 
2494   intptr_t* sp = caller.sp();
2495 
2496   if (_preempted_case) {
2497     return handle_preempted_continuation(sp, preempt_kind, false /* fast_case */);
2498   }
2499   return sp;
2500 }
2501 
2502 void ThawBase::recurse_thaw(const frame& heap_frame, frame& caller, int num_frames, bool top_on_preempt_case) {
2503   log_develop_debug(continuations)("thaw num_frames: %d", num_frames);
2504   assert(!_cont.is_empty(), "no more frames");
2505   assert(num_frames > 0, "");
2506   assert(!heap_frame.is_empty(), "");
2507 
2508   if (top_on_preempt_case && (heap_frame.is_native_frame() || heap_frame.is_runtime_frame())) {
2509     heap_frame.is_native_frame() ? recurse_thaw_native_frame(heap_frame, caller, 2) : recurse_thaw_stub_frame(heap_frame, caller, 2);
2510   } else if (!heap_frame.is_interpreted_frame()) {
2511     recurse_thaw_compiled_frame(heap_frame, caller, num_frames, false);
2512   } else {
2513     recurse_thaw_interpreted_frame(heap_frame, caller, num_frames, top_on_preempt_case);
2514   }
2515 }
2516 
2517 template<typename FKind>
2518 bool ThawBase::recurse_thaw_java_frame(frame& caller, int num_frames) {
2519   assert(num_frames > 0, "");
2520 
2521   DEBUG_ONLY(_frames++;)
2522 
2523   int argsize = _stream.stack_argsize();
2524 
2525   _stream.next(SmallRegisterMap::instance_no_args());
2526   assert(_stream.to_frame().is_empty() == _stream.is_done(), "");
2527 
2528   // we never leave a compiled caller of an interpreted frame as the top frame in the chunk
2529   // as it makes detecting that situation and adjusting unextended_sp tricky
2530   if (num_frames == 1 && !_stream.is_done() && FKind::interpreted && _stream.is_compiled()) {
2531     log_develop_trace(continuations)("thawing extra compiled frame to not leave a compiled interpreted-caller at top");
2532     num_frames++;
2533   }
2534 
2535   if (num_frames == 1 || _stream.is_done()) { // end recursion
2536     finalize_thaw(caller, FKind::interpreted ? 0 : argsize);
2537     return true; // bottom
2538   } else { // recurse
2539     recurse_thaw(_stream.to_frame(), caller, num_frames - 1, false /* top_on_preempt_case */);
2540     return false;
2541   }
2542 }
2543 
2544 void ThawBase::finalize_thaw(frame& entry, int argsize) {
2545   stackChunkOop chunk = _cont.tail();
2546 
2547   if (!_stream.is_done()) {
2548     assert(_stream.sp() >= chunk->sp_address(), "");
2549     chunk->set_sp(chunk->to_offset(_stream.sp()));
2550     chunk->set_pc(_stream.pc());
2551   } else {
2552     chunk->set_sp(chunk->bottom());
2553     chunk->set_pc(nullptr);
2554   }
2555   assert(_stream.is_done() == chunk->is_empty(), "");
2556 
2557   int total_thawed = pointer_delta_as_int(_stream.unextended_sp(), _top_unextended_sp_before_thaw);
2558   chunk->set_max_thawing_size(chunk->max_thawing_size() - total_thawed);
2559 
2560   _cont.set_argsize(argsize);
2561   entry = new_entry_frame();
2562 
2563   assert(entry.sp() == _cont.entrySP(), "");
2564   assert(Continuation::is_continuation_enterSpecial(entry), "");
2565   assert(_cont.is_entry_frame(entry), "");
2566   assert(entry.pc() == entry.raw_pc(), "");
2567   DEBUG_ONLY(_caller_raw_pc = entry.pc();)
2568 }
2569 
2570 inline void ThawBase::before_thaw_java_frame(const frame& hf, const frame& caller, bool bottom, int num_frame) {
2571   LogTarget(Trace, continuations) lt;
2572   if (lt.develop_is_enabled()) {
2573     LogStream ls(lt);
2574     ls.print_cr("======== THAWING FRAME: %d", num_frame);
2575     assert(hf.is_heap_frame(), "should be");
2576     hf.print_value_on(&ls);
2577   }
2578   assert(bottom == _cont.is_entry_frame(caller), "bottom: %d is_entry_frame: %d", bottom, _cont.is_entry_frame(hf));
2579 }
2580 
2581 inline void ThawBase::after_thaw_java_frame(const frame& f, bool bottom) {
2582 #ifdef ASSERT
2583   LogTarget(Trace, continuations) lt;
2584   if (lt.develop_is_enabled()) {
2585     LogStream ls(lt);
2586     ls.print_cr("thawed frame:");
2587     print_frame_layout(f, false, &ls); // f.print_on(&ls);
2588   }
2589 #endif
2590 }
2591 
2592 inline void ThawBase::patch(frame& f, const frame& caller, bool bottom) {
2593   assert(!bottom || caller.fp() == _cont.entryFP(), "");
2594   if (bottom) {
2595     ContinuationHelper::Frame::patch_pc(caller, _cont.is_empty() ? caller.pc()
2596                                                                  : StubRoutines::cont_returnBarrier());
2597   } else if (_should_patch_caller_pc) {
2598     // Caller was deoptimized during thaw but we've overwritten the return address when copying f from the heap.
2599     // Also, on some platforms, if the caller is interpreted but the callee not we also need to patch.
2600     assert(caller.is_deoptimized_frame() PPC64_ONLY(|| caller.is_interpreted_frame()), "");
2601     ContinuationHelper::Frame::patch_pc(caller, caller.raw_pc());
2602     _should_patch_caller_pc = false;
2603   }
2604 
2605   patch_pd(f, caller);
2606 
2607   if (f.is_interpreted_frame()) {
2608     ContinuationHelper::InterpretedFrame::patch_sender_sp(f, caller);
2609   }
2610 
2611   assert(!bottom || !_cont.is_empty() || Continuation::is_continuation_entry_frame(f, nullptr), "");
2612   assert(!bottom || (_cont.is_empty() != Continuation::is_cont_barrier_frame(f)), "");
2613   assert(!caller.is_compiled_frame() || verify_deopt_state(caller), "");
2614 }
2615 
2616 void ThawBase::clear_bitmap_bits(address start, address end) {
2617   assert(is_aligned(start, wordSize), "should be aligned: " PTR_FORMAT, p2i(start));
2618   assert(is_aligned(end, VMRegImpl::stack_slot_size), "should be aligned: " PTR_FORMAT, p2i(end));
2619 
2620   // we need to clear the bits that correspond to arguments as they reside in the caller frame
2621   // or they will keep objects that are otherwise unreachable alive.
2622 
2623   // Align `end` if UseCompressedOops is not set to avoid UB when calculating the bit index, since
2624   // `end` could be at an odd number of stack slots from `start`, i.e might not be oop aligned.
2625   // If that's the case the bit range corresponding to the last stack slot should not have bits set
2626   // anyways and we assert that before returning.
2627   address effective_end = UseCompressedOops ? end : align_down(end, wordSize);
2628   log_develop_trace(continuations)("clearing bitmap for " INTPTR_FORMAT " - " INTPTR_FORMAT, p2i(start), p2i(effective_end));
2629   stackChunkOop chunk = _cont.tail();
2630   chunk->bitmap().clear_range(chunk->bit_index_for(start), chunk->bit_index_for(effective_end));
2631   assert(effective_end == end || !chunk->bitmap().at(chunk->bit_index_for(effective_end)), "bit should not be set");
2632 }
2633 
2634 intptr_t* ThawBase::handle_preempted_continuation(intptr_t* sp, Continuation::preempt_kind preempt_kind, bool fast_case) {
2635   frame top(sp);
2636   assert(top.pc() == *(address*)(sp - frame::sender_sp_ret_address_offset()), "");
2637   DEBUG_ONLY(verify_frame_kind(top, preempt_kind);)
2638   NOT_PRODUCT(int64_t tid = _thread->monitor_owner_id();)
2639 
2640   // Finish the VTMS transition.
2641   assert(_thread->is_in_vthread_transition(), "must be");
2642   bool is_vthread = Continuation::continuation_scope(_cont.continuation()) == java_lang_VirtualThread::vthread_scope();
2643   if (is_vthread) {
2644 #if INCLUDE_JVMTI
2645     if (MountUnmountDisabler::notify_jvmti_events()) {
2646       jvmti_mount_end(_thread, _cont, top, preempt_kind);
2647     } else
2648 #endif
2649     { // Faster version of MountUnmountDisabler::end_transition() to avoid
2650       // unnecessary extra instructions from jvmti_mount_end().
2651       java_lang_Thread::set_is_in_vthread_transition(_thread->vthread(), false);
2652       _thread->set_is_in_vthread_transition(false);
2653     }
2654   }
2655 
2656   if (fast_case) {
2657     // If we thawed in the slow path the runtime stub/native wrapper frame already
2658     // has the correct fp (see ThawBase::new_stack_frame). On the fast path though,
2659     // we copied the fp patched during freeze, which will now have to be fixed.
2660     assert(top.is_runtime_frame() || top.is_native_frame(), "");
2661     int fsize = top.cb()->frame_size();
2662     patch_pd(top, sp + fsize);
2663   }
2664 
2665   if (preempt_kind == Continuation::object_wait) {
2666     // Check now if we need to throw IE exception.
2667     bool throw_ie = _thread->pending_interrupted_exception();
2668     if (throw_ie) {
2669       throw_interrupted_exception(_thread, top);
2670       _thread->set_pending_interrupted_exception(false);
2671     }
2672     log_develop_trace(continuations, preempt)("Resuming " INT64_FORMAT" after preemption on Object.wait%s", tid, throw_ie ? "(throwing IE)" : "");
2673   } else if (preempt_kind == Continuation::monitorenter) {
2674     if (top.is_runtime_frame()) {
2675       // The continuation might now run on a different platform thread than the previous time so
2676       // we need to adjust the current thread saved in the stub frame before restoring registers.
2677       JavaThread** thread_addr = frame::saved_thread_address(top);
2678       if (thread_addr != nullptr) *thread_addr = _thread;
2679     }
2680     log_develop_trace(continuations, preempt)("Resuming " INT64_FORMAT " after preemption on monitorenter", tid);
2681   } else {
2682     // We need to redo the original call into the VM. First though, we need
2683     // to exit the monitor we just acquired (except on preemption cancelled
2684     // case where it was already released).
2685     assert(preempt_kind == Continuation::object_locker, "");
2686     if (_init_lock != nullptr) _init_lock->exit(_thread);
2687     sp = redo_vmcall(_thread, top);
2688   }
2689   return sp;
2690 }
2691 
2692 intptr_t* ThawBase::redo_vmcall(JavaThread* current, frame& top) {
2693   assert(!current->preempting(), "");
2694   NOT_PRODUCT(int64_t tid = current->monitor_owner_id();)
2695   intptr_t* sp = top.sp();
2696 
2697   {
2698     HandleMarkCleaner hmc(current);  // Cleanup all handles (including so._conth) before returning to Java.
2699     ContinuationWrapper::SafepointOp so(current, _cont);
2700     AnchorMark am(current, top);    // Set the anchor so that the stack is walkable.
2701 
2702     Method* m = top.interpreter_frame_method();
2703     Bytecode current_bytecode = Bytecode(m, top.interpreter_frame_bcp());
2704     Bytecodes::Code code = current_bytecode.code();
2705     log_develop_trace(continuations, preempt)("Redoing InterpreterRuntime::%s for " INT64_FORMAT, code == Bytecodes::Code::_new ? "_new" : "resolve_from_cache", tid);
2706 
2707     // These InterpreterRuntime entry points use JRT_ENTRY which uses a HandleMarkCleaner.
2708     // Create a HandeMark to avoid destroying so._conth.
2709     HandleMark hm(current);
2710     DEBUG_ONLY(JavaThread::AtRedoVMCall apvmc(current);)
2711     if (code == Bytecodes::Code::_new) {
2712       InterpreterRuntime::_new(current, m->constants(), current_bytecode.get_index_u2(code));
2713     } else {
2714       InterpreterRuntime::resolve_from_cache(current, code);
2715     }
2716   }
2717 
2718   if (current->preempting()) {
2719     // Preempted again so we just arrange to return to preempt stub to unmount.
2720     sp = push_preempt_adapter();
2721     current->set_preempt_alternate_return(nullptr);
2722     bool cancelled = current->preemption_cancelled();
2723     if (cancelled) {
2724       // Since preemption was cancelled, the thread will call thaw again from the preempt
2725       // stub. These retries could happen several times due to contention on the init_lock,
2726       // so just let the vthread umount to give a chance for other vthreads to run.
2727       current->set_preemption_cancelled(false);
2728       oop vthread = current->vthread();
2729       assert(java_lang_VirtualThread::state(vthread) == java_lang_VirtualThread::RUNNING, "wrong state for vthread");
2730       java_lang_VirtualThread::set_state(vthread, java_lang_VirtualThread::YIELDING);
2731 #if INCLUDE_JVMTI
2732       if (current->contended_entered_monitor() != nullptr) {
2733         current->set_contended_entered_monitor(nullptr);
2734       }
2735 #endif
2736     }
2737     log_develop_trace(continuations, preempt)("Preempted " INT64_FORMAT " again%s", tid, cancelled ? "(preemption cancelled, setting state to YIELDING)" : "");
2738   } else {
2739     log_develop_trace(continuations, preempt)("Call succesful, resuming " INT64_FORMAT, tid);
2740   }
2741   return sp;
2742 }
2743 
2744 void ThawBase::throw_interrupted_exception(JavaThread* current, frame& top) {
2745   HandleMarkCleaner hm(current);  // Cleanup all handles (including so._conth) before returning to Java.
2746   ContinuationWrapper::SafepointOp so(current, _cont);
2747   AnchorMark am(current, top);  // Set the anchor so that the stack is walkable.
2748   JRT_BLOCK
2749     THROW(vmSymbols::java_lang_InterruptedException());
2750   JRT_BLOCK_END
2751 }
2752 
2753 NOINLINE void ThawBase::recurse_thaw_interpreted_frame(const frame& hf, frame& caller, int num_frames, bool is_top) {
2754   assert(hf.is_interpreted_frame(), "");
2755 
2756   if (UNLIKELY(seen_by_gc())) {
2757     if (is_top && _process_args_at_top) {
2758       _cont.tail()->do_barriers<stackChunkOopDesc::BarrierType::Store>(_stream, SmallRegisterMap::instance_with_args());
2759     } else {
2760       _cont.tail()->do_barriers<stackChunkOopDesc::BarrierType::Store>(_stream, SmallRegisterMap::instance_no_args());
2761     }
2762   }
2763 
2764   const bool is_bottom_frame = recurse_thaw_java_frame<ContinuationHelper::InterpretedFrame>(caller, num_frames);
2765 
2766   DEBUG_ONLY(before_thaw_java_frame(hf, caller, is_bottom_frame, num_frames);)
2767 
2768   _align_size += frame::align_wiggle; // possible added alignment for internal interpreted frame alignment om AArch64
2769 
2770   frame f = new_stack_frame<ContinuationHelper::InterpretedFrame>(hf, caller, is_bottom_frame);
2771 
2772   intptr_t* const stack_frame_top = f.sp() + frame::metadata_words_at_top;
2773   intptr_t* const stack_frame_bottom = ContinuationHelper::InterpretedFrame::frame_bottom(f);
2774   intptr_t* const heap_frame_top = hf.unextended_sp() + frame::metadata_words_at_top;
2775   intptr_t* const heap_frame_bottom = ContinuationHelper::InterpretedFrame::frame_bottom(hf);
2776 
2777   assert(hf.is_heap_frame(), "should be");
2778   assert(!f.is_heap_frame(), "should not be");
2779 
2780   const int fsize = pointer_delta_as_int(heap_frame_bottom, heap_frame_top);
2781   assert((stack_frame_bottom == stack_frame_top + fsize), "");
2782 
2783   // Some architectures (like AArch64/PPC64/RISC-V) add padding between the locals and the fixed_frame to keep the fp 16-byte-aligned.
2784   // On those architectures we freeze the padding in order to keep the same fp-relative offsets in the fixed_frame.
2785   copy_from_chunk(heap_frame_top, stack_frame_top, fsize);
2786 
2787   // Make sure the relativized locals is already set.
2788   assert(f.interpreter_frame_local_at(0) == stack_frame_bottom - 1, "invalid frame bottom");
2789 
2790   derelativize_interpreted_frame_metadata(hf, f);
2791   patch(f, caller, is_bottom_frame);
2792 
2793   assert(f.is_interpreted_frame_valid(_cont.thread()), "invalid thawed frame");
2794   assert(stack_frame_bottom <= ContinuationHelper::Frame::frame_top(caller), "");
2795 
2796   CONT_JFR_ONLY(_jfr_info.record_interpreted_frame();)
2797 
2798   maybe_set_fastpath(f.sp());
2799 
2800   Method* m = hf.interpreter_frame_method();
2801   assert(!m->is_native() || !is_bottom_frame, "should be top frame of thaw_top case; missing caller frame");
2802   const int locals = m->max_locals();
2803 
2804   if (!is_bottom_frame) {
2805     // can only fix caller once this frame is thawed (due to callee saved regs)
2806     _cont.tail()->fix_thawed_frame(caller, SmallRegisterMap::instance_no_args());
2807   } else if (_cont.tail()->has_bitmap() && locals > 0) {
2808     assert(hf.is_heap_frame(), "should be");
2809     address start = (address)(heap_frame_bottom - locals);
2810     address end = (address)heap_frame_bottom;
2811     clear_bitmap_bits(start, end);
2812   }
2813 
2814   DEBUG_ONLY(after_thaw_java_frame(f, is_bottom_frame);)
2815   DEBUG_ONLY(address return_pc = ContinuationHelper::InterpretedFrame::return_pc(f);)
2816   assert(return_pc == _caller_raw_pc || (is_bottom_frame && return_pc == StubRoutines::cont_returnBarrier()), "wrong return pc");
2817   assert(f.pc() == f.raw_pc(), "");
2818   DEBUG_ONLY(_caller_raw_pc = f.pc();)
2819   caller = f;
2820 }
2821 
2822 void ThawBase::recurse_thaw_compiled_frame(const frame& hf, frame& caller, int num_frames, bool stub_caller) {
2823   assert(hf.is_compiled_frame(), "");
2824   assert(_preempted_case || !stub_caller, "stub caller not at preemption");
2825 
2826   if (!stub_caller && UNLIKELY(seen_by_gc())) { // recurse_thaw_stub_frame already invoked our barriers with a full regmap
2827     _cont.tail()->do_barriers<stackChunkOopDesc::BarrierType::Store>(_stream, SmallRegisterMap::instance_no_args());
2828   }
2829 
2830   const bool is_bottom_frame = recurse_thaw_java_frame<ContinuationHelper::CompiledFrame>(caller, num_frames);
2831 
2832   DEBUG_ONLY(before_thaw_java_frame(hf, caller, is_bottom_frame, num_frames);)
2833 
2834   assert(caller.sp() == caller.unextended_sp(), "");
2835 
2836   if ((!is_bottom_frame && caller.is_interpreted_frame()) || (is_bottom_frame && Interpreter::contains(_cont.tail()->pc()))) {
2837     _align_size += frame::align_wiggle; // we add one whether or not we've aligned because we add it in recurse_freeze_compiled_frame
2838   }
2839 
2840   // new_stack_frame must construct the resulting frame using hf.pc() rather than hf.raw_pc() because the frame is not
2841   // yet laid out in the stack, and so the original_pc is not stored in it.
2842   // As a result, f.is_deoptimized_frame() is always false and we must test hf to know if the frame is deoptimized.
2843   frame f = new_stack_frame<ContinuationHelper::CompiledFrame>(hf, caller, is_bottom_frame);
2844   intptr_t* const stack_frame_top = f.sp();
2845   intptr_t* const heap_frame_top = hf.unextended_sp();
2846 
2847   const int added_argsize = (is_bottom_frame || caller.is_interpreted_frame()) ? hf.compiled_frame_stack_argsize() : 0;
2848   int fsize = ContinuationHelper::CompiledFrame::size(hf) + added_argsize;
2849   assert(fsize <= (int)(caller.unextended_sp() - f.unextended_sp()), "");
2850 
2851   intptr_t* from = heap_frame_top - frame::metadata_words_at_bottom;
2852   intptr_t* to   = stack_frame_top - frame::metadata_words_at_bottom;
2853   // copy metadata, except the metadata at the top of the (unextended) entry frame
2854   int sz = fsize + frame::metadata_words_at_bottom + (is_bottom_frame && added_argsize == 0 ? 0 : frame::metadata_words_at_top);
2855 
2856   // If we're the bottom-most thawed frame, we're writing to within one word from entrySP
2857   // (we might have one padding word for alignment)
2858   assert(!is_bottom_frame || (_cont.entrySP() - 1 <= to + sz && to + sz <= _cont.entrySP()), "");
2859   assert(!is_bottom_frame || hf.compiled_frame_stack_argsize() != 0 || (to + sz && to + sz == _cont.entrySP()), "");
2860 
2861   copy_from_chunk(from, to, sz); // copying good oops because we invoked barriers above
2862 
2863   patch(f, caller, is_bottom_frame);
2864 
2865   // f.is_deoptimized_frame() is always false and we must test hf.is_deoptimized_frame() (see comment above)
2866   assert(!f.is_deoptimized_frame(), "");
2867   if (hf.is_deoptimized_frame()) {
2868     maybe_set_fastpath(f.sp());
2869     f.set_deoptimized();
2870   } else if (_thread->is_interp_only_mode()
2871               || (stub_caller && f.cb()->as_nmethod()->is_marked_for_deoptimization())) {
2872     // The caller of the safepoint stub when the continuation is preempted is not at a call instruction, and so
2873     // cannot rely on nmethod patching for deopt.
2874     assert(_thread->is_interp_only_mode() || stub_caller, "expected a stub-caller");
2875 
2876     log_develop_trace(continuations)("Deoptimizing thawed frame");
2877     DEBUG_ONLY(ContinuationHelper::Frame::patch_pc(f, nullptr));
2878 
2879     f.deoptimize(nullptr); // the null thread simply avoids the assertion in deoptimize which we're not set up for
2880     assert(f.is_deoptimized_frame(), "");
2881     assert(ContinuationHelper::Frame::is_deopt_return(f.raw_pc(), f), "");
2882     maybe_set_fastpath(f.sp());
2883     assert(!_should_patch_caller_pc, "");
2884     _should_patch_caller_pc = true;
2885   }
2886 
2887   if (!is_bottom_frame) {
2888     // can only fix caller once this frame is thawed (due to callee saved regs); this happens on the stack
2889     _cont.tail()->fix_thawed_frame(caller, SmallRegisterMap::instance_no_args());
2890   } else if (_cont.tail()->has_bitmap() && added_argsize > 0) {
2891     address start = (address)(heap_frame_top + ContinuationHelper::CompiledFrame::size(hf) + frame::metadata_words_at_top);
2892     int stack_args_slots = f.cb()->as_nmethod()->num_stack_arg_slots(false /* rounded */);
2893     int argsize_in_bytes = stack_args_slots * VMRegImpl::stack_slot_size;
2894     clear_bitmap_bits(start, start + argsize_in_bytes);
2895   }
2896 
2897   DEBUG_ONLY(after_thaw_java_frame(f, is_bottom_frame);)
2898   DEBUG_ONLY(address return_pc = ContinuationHelper::CompiledFrame::return_pc(f);)
2899   assert(return_pc == _caller_raw_pc || (is_bottom_frame && return_pc == StubRoutines::cont_returnBarrier()), "wrong return pc");
2900   DEBUG_ONLY(_caller_raw_pc = f.raw_pc();)
2901   caller = f;
2902 }
2903 
2904 void ThawBase::recurse_thaw_stub_frame(const frame& hf, frame& caller, int num_frames) {
2905   DEBUG_ONLY(_frames++;)
2906 
2907   if (UNLIKELY(seen_by_gc())) {
2908     // Process the stub's caller here since we might need the full map.
2909     RegisterMap map(nullptr,
2910                     RegisterMap::UpdateMap::include,
2911                     RegisterMap::ProcessFrames::skip,
2912                     RegisterMap::WalkContinuation::skip);
2913     map.set_include_argument_oops(false);
2914     _stream.next(&map);
2915     assert(!_stream.is_done(), "");
2916     _cont.tail()->do_barriers<stackChunkOopDesc::BarrierType::Store>(_stream, &map);
2917   } else {
2918     _stream.next(SmallRegisterMap::instance_no_args());
2919     assert(!_stream.is_done(), "");
2920   }
2921 
2922   recurse_thaw_compiled_frame(_stream.to_frame(), caller, num_frames, true);
2923 
2924   assert(caller.is_compiled_frame(), "");
2925   assert(caller.sp() == caller.unextended_sp(), "");
2926 
2927   DEBUG_ONLY(before_thaw_java_frame(hf, caller, false /*is_bottom_frame*/, num_frames);)
2928 
2929   frame f = new_stack_frame<ContinuationHelper::StubFrame>(hf, caller, false);
2930   intptr_t* stack_frame_top = f.sp();
2931   intptr_t* heap_frame_top = hf.sp();
2932   int fsize = ContinuationHelper::StubFrame::size(hf);
2933 
2934   copy_from_chunk(heap_frame_top - frame::metadata_words, stack_frame_top - frame::metadata_words,
2935                   fsize + frame::metadata_words);
2936 
2937   patch(f, caller, false /*is_bottom_frame*/);
2938 
2939   // can only fix caller once this frame is thawed (due to callee saved regs)
2940   RegisterMap map(nullptr,
2941                   RegisterMap::UpdateMap::include,
2942                   RegisterMap::ProcessFrames::skip,
2943                   RegisterMap::WalkContinuation::skip);
2944   map.set_include_argument_oops(false);
2945   f.oop_map()->update_register_map(&f, &map);
2946   ContinuationHelper::update_register_map_with_callee(caller, &map);
2947   _cont.tail()->fix_thawed_frame(caller, &map);
2948 
2949   DEBUG_ONLY(after_thaw_java_frame(f, false /*is_bottom_frame*/);)
2950   assert(ContinuationHelper::StubFrame::return_pc(f) == _caller_raw_pc, "wrong return pc");
2951   caller = f;
2952 }
2953 
2954 void ThawBase::recurse_thaw_native_frame(const frame& hf, frame& caller, int num_frames) {
2955   assert(hf.is_native_frame(), "");
2956   assert(_preempted_case && hf.cb()->as_nmethod()->method()->is_object_wait0(), "");
2957 
2958   if (UNLIKELY(seen_by_gc())) { // recurse_thaw_stub_frame already invoked our barriers with a full regmap
2959     _cont.tail()->do_barriers<stackChunkOopDesc::BarrierType::Store>(_stream, SmallRegisterMap::instance_no_args());
2960   }
2961 
2962   const bool is_bottom_frame = recurse_thaw_java_frame<ContinuationHelper::NativeFrame>(caller, num_frames);
2963   assert(!is_bottom_frame, "");
2964 
2965   DEBUG_ONLY(before_thaw_java_frame(hf, caller, is_bottom_frame, num_frames);)
2966 
2967   assert(caller.sp() == caller.unextended_sp(), "");
2968 
2969   if (caller.is_interpreted_frame()) {
2970     _align_size += frame::align_wiggle; // we add one whether or not we've aligned because we add it in recurse_freeze_native_frame
2971   }
2972 
2973   // new_stack_frame must construct the resulting frame using hf.pc() rather than hf.raw_pc() because the frame is not
2974   // yet laid out in the stack, and so the original_pc is not stored in it.
2975   // As a result, f.is_deoptimized_frame() is always false and we must test hf to know if the frame is deoptimized.
2976   frame f = new_stack_frame<ContinuationHelper::NativeFrame>(hf, caller, false /* bottom */);
2977   intptr_t* const stack_frame_top = f.sp();
2978   intptr_t* const heap_frame_top = hf.unextended_sp();
2979 
2980   int fsize = ContinuationHelper::NativeFrame::size(hf);
2981   assert(fsize <= (int)(caller.unextended_sp() - f.unextended_sp()), "");
2982 
2983   intptr_t* from = heap_frame_top - frame::metadata_words_at_bottom;
2984   intptr_t* to   = stack_frame_top - frame::metadata_words_at_bottom;
2985   int sz = fsize + frame::metadata_words_at_bottom;
2986 
2987   copy_from_chunk(from, to, sz); // copying good oops because we invoked barriers above
2988 
2989   patch(f, caller, false /* bottom */);
2990 
2991   // f.is_deoptimized_frame() is always false and we must test hf.is_deoptimized_frame() (see comment above)
2992   assert(!f.is_deoptimized_frame(), "");
2993   assert(!hf.is_deoptimized_frame(), "");
2994   assert(!f.cb()->as_nmethod()->is_marked_for_deoptimization(), "");
2995 
2996   // can only fix caller once this frame is thawed (due to callee saved regs); this happens on the stack
2997   _cont.tail()->fix_thawed_frame(caller, SmallRegisterMap::instance_no_args());
2998 
2999   DEBUG_ONLY(after_thaw_java_frame(f, false /* bottom */);)
3000   assert(ContinuationHelper::NativeFrame::return_pc(f) == _caller_raw_pc, "wrong return pc");
3001   caller = f;
3002 }
3003 
3004 void ThawBase::finish_thaw(frame& f) {
3005   stackChunkOop chunk = _cont.tail();
3006 
3007   if (chunk->is_empty()) {
3008     // Only remove chunk from list if it can't be reused for another freeze
3009     if (seen_by_gc()) {
3010       _cont.set_tail(chunk->parent());
3011     } else {
3012       chunk->set_has_mixed_frames(false);
3013     }
3014     chunk->set_max_thawing_size(0);
3015   } else {
3016     chunk->set_max_thawing_size(chunk->max_thawing_size() - _align_size);
3017   }
3018   assert(chunk->is_empty() == (chunk->max_thawing_size() == 0), "");
3019 
3020   if (!is_aligned(f.sp(), frame::frame_alignment)) {
3021     assert(f.is_interpreted_frame(), "");
3022     f.set_sp(align_down(f.sp(), frame::frame_alignment));
3023   }
3024   push_return_frame(f);
3025    // can only fix caller after push_return_frame (due to callee saved regs)
3026   if (_process_args_at_top) {
3027     chunk->fix_thawed_frame(f, SmallRegisterMap::instance_with_args());
3028   } else {
3029     chunk->fix_thawed_frame(f, SmallRegisterMap::instance_no_args());
3030   }
3031 
3032   assert(_cont.is_empty() == _cont.last_frame().is_empty(), "");
3033 
3034   log_develop_trace(continuations)("thawed %d frames", _frames);
3035 
3036   LogTarget(Trace, continuations) lt;
3037   if (lt.develop_is_enabled()) {
3038     LogStream ls(lt);
3039     ls.print_cr("top hframe after (thaw):");
3040     _cont.last_frame().print_value_on(&ls);
3041   }
3042 }
3043 
3044 void ThawBase::push_return_frame(const frame& f) { // see generate_cont_thaw
3045   assert(!f.is_compiled_frame() || verify_deopt_state(f), "");
3046 
3047   LogTarget(Trace, continuations) lt;
3048   if (lt.develop_is_enabled()) {
3049     LogStream ls(lt);
3050     ls.print_cr("push_return_frame");
3051     f.print_value_on(&ls);
3052   }
3053 
3054   assert(f.sp() - frame::metadata_words_at_bottom >= _top_stack_address, "overwrote past thawing space"
3055     " to: " INTPTR_FORMAT " top_address: " INTPTR_FORMAT, p2i(f.sp() - frame::metadata_words), p2i(_top_stack_address));
3056   ContinuationHelper::Frame::patch_pc(f, f.raw_pc()); // in case we want to deopt the frame in a full transition, this is checked.
3057   ContinuationHelper::push_pd(f);
3058 
3059   assert(ContinuationHelper::Frame::assert_frame_laid_out(f), "");
3060 }
3061 
3062 // returns new top sp
3063 // called after preparations (stack overflow check and making room)
3064 template<typename ConfigT>
3065 static inline intptr_t* thaw_internal(JavaThread* thread, const Continuation::thaw_kind kind) {
3066   assert(thread == JavaThread::current(), "Must be current thread");
3067 
3068   CONT_JFR_ONLY(EventContinuationThaw event;)
3069 
3070   log_develop_trace(continuations)("~~~~ thaw kind: %d sp: " INTPTR_FORMAT, kind, p2i(thread->last_continuation()->entry_sp()));
3071 
3072   ContinuationEntry* entry = thread->last_continuation();
3073   assert(entry != nullptr, "");
3074   oop oopCont = entry->cont_oop(thread);
3075 
3076   assert(!jdk_internal_vm_Continuation::done(oopCont), "");
3077   assert(oopCont == get_continuation(thread), "");
3078   verify_continuation(oopCont);
3079 
3080   assert(entry->is_virtual_thread() == (entry->scope(thread) == java_lang_VirtualThread::vthread_scope()), "");
3081 
3082   ContinuationWrapper cont(thread, oopCont);
3083   log_develop_debug(continuations)("THAW #" INTPTR_FORMAT " " INTPTR_FORMAT, cont.hash(), p2i((oopDesc*)oopCont));
3084 
3085 #ifdef ASSERT
3086   set_anchor_to_entry(thread, cont.entry());
3087   log_frames(thread);
3088   clear_anchor(thread);
3089 #endif
3090 
3091   Thaw<ConfigT> thw(thread, cont);
3092   intptr_t* const sp = thw.thaw(kind);
3093   assert(is_aligned(sp, frame::frame_alignment), "");
3094   DEBUG_ONLY(log_frames_after_thaw(thread, cont, sp);)
3095 
3096   CONT_JFR_ONLY(thw.jfr_info().post_jfr_event(&event, cont.continuation(), thread);)
3097 
3098   verify_continuation(cont.continuation());
3099   log_develop_debug(continuations)("=== End of thaw #" INTPTR_FORMAT, cont.hash());
3100 
3101   return sp;
3102 }
3103 
3104 #ifdef ASSERT
3105 static void do_deopt_after_thaw(JavaThread* thread) {
3106   int i = 0;
3107   StackFrameStream fst(thread, true, false);
3108   fst.register_map()->set_include_argument_oops(false);
3109   ContinuationHelper::update_register_map_with_callee(*fst.current(), fst.register_map());
3110   for (; !fst.is_done(); fst.next()) {
3111     if (fst.current()->cb()->is_nmethod()) {
3112       nmethod* nm = fst.current()->cb()->as_nmethod();
3113       if (!nm->method()->is_continuation_native_intrinsic()) {
3114         nm->make_deoptimized();
3115       }
3116     }
3117   }
3118 }
3119 
3120 class ThawVerifyOopsClosure: public OopClosure {
3121   intptr_t* _p;
3122   outputStream* _st;
3123   bool is_good_oop(oop o) {
3124     return dbg_is_safe(o, -1) && dbg_is_safe(o->klass(), -1) && oopDesc::is_oop(o) && o->klass()->is_klass();
3125   }
3126 public:
3127   ThawVerifyOopsClosure(outputStream* st) : _p(nullptr), _st(st) {}
3128   intptr_t* p() { return _p; }
3129   void reset() { _p = nullptr; }
3130 
3131   virtual void do_oop(oop* p) {
3132     oop o = *p;
3133     if (o == nullptr || is_good_oop(o)) {
3134       return;
3135     }
3136     _p = (intptr_t*)p;
3137     _st->print_cr("*** non-oop " PTR_FORMAT " found at " PTR_FORMAT, p2i(*p), p2i(p));
3138   }
3139   virtual void do_oop(narrowOop* p) {
3140     oop o = RawAccess<>::oop_load(p);
3141     if (o == nullptr || is_good_oop(o)) {
3142       return;
3143     }
3144     _p = (intptr_t*)p;
3145     _st->print_cr("*** (narrow) non-oop %x found at " PTR_FORMAT, (int)(*p), p2i(p));
3146   }
3147 };
3148 
3149 static bool do_verify_after_thaw(JavaThread* thread, stackChunkOop chunk, outputStream* st) {
3150   assert(thread->has_last_Java_frame(), "");
3151 
3152   ResourceMark rm;
3153   ThawVerifyOopsClosure cl(st);
3154   NMethodToOopClosure cf(&cl, false);
3155 
3156   StackFrameStream fst(thread, true, false);
3157   fst.register_map()->set_include_argument_oops(false);
3158   ContinuationHelper::update_register_map_with_callee(*fst.current(), fst.register_map());
3159   for (; !fst.is_done() && !Continuation::is_continuation_enterSpecial(*fst.current()); fst.next()) {
3160     if (fst.current()->cb()->is_nmethod() && fst.current()->cb()->as_nmethod()->is_marked_for_deoptimization()) {
3161       st->print_cr(">>> do_verify_after_thaw deopt");
3162       fst.current()->deoptimize(nullptr);
3163       fst.current()->print_on(st);
3164     }
3165 
3166     fst.current()->oops_do(&cl, &cf, fst.register_map());
3167     if (cl.p() != nullptr) {
3168       frame fr = *fst.current();
3169       st->print_cr("Failed for frame barriers: %d",chunk->requires_barriers());
3170       fr.print_on(st);
3171       if (!fr.is_interpreted_frame()) {
3172         st->print_cr("size: %d argsize: %d",
3173                      ContinuationHelper::NonInterpretedUnknownFrame::size(fr),
3174                      ContinuationHelper::NonInterpretedUnknownFrame::stack_argsize(fr));
3175       }
3176       VMReg reg = fst.register_map()->find_register_spilled_here(cl.p(), fst.current()->sp());
3177       if (reg != nullptr) {
3178         st->print_cr("Reg %s %d", reg->name(), reg->is_stack() ? (int)reg->reg2stack() : -99);
3179       }
3180       cl.reset();
3181       DEBUG_ONLY(thread->print_frame_layout();)
3182       if (chunk != nullptr) {
3183         chunk->print_on(true, st);
3184       }
3185       return false;
3186     }
3187   }
3188   return true;
3189 }
3190 
3191 static bool verify_deopt_state(const frame& f) {
3192   nmethod* nm = f.cb()->as_nmethod();
3193   assert(f.is_deoptimized_frame() == nm->is_deopt_pc(f.raw_pc()), "");
3194   assert(f.is_deoptimized_frame() == (f.pc() != f.raw_pc()), "");
3195   assert(f.is_deoptimized_frame() == nm->is_deopt_pc(ContinuationHelper::Frame::real_pc(f)), "");
3196   return true;
3197 }
3198 
3199 static void log_frames(JavaThread* thread) {
3200   const static int show_entry_callers = 3;
3201   LogTarget(Trace, continuations) lt;
3202   if (!lt.develop_is_enabled()) {
3203     return;
3204   }
3205   LogStream ls(lt);
3206 
3207   ls.print_cr("------- frames --------- for thread " INTPTR_FORMAT, p2i(thread));
3208   if (!thread->has_last_Java_frame()) {
3209     ls.print_cr("NO ANCHOR!");
3210   }
3211 
3212   RegisterMap map(thread,
3213                   RegisterMap::UpdateMap::include,
3214                   RegisterMap::ProcessFrames::include,
3215                   RegisterMap::WalkContinuation::skip);
3216   map.set_include_argument_oops(false);
3217 
3218   if (false) {
3219     for (frame f = thread->last_frame(); !f.is_entry_frame(); f = f.sender(&map)) {
3220       f.print_on(&ls);
3221     }
3222   } else {
3223     map.set_skip_missing(true);
3224     ResetNoHandleMark rnhm;
3225     ResourceMark rm;
3226     HandleMark hm(Thread::current());
3227     FrameValues values;
3228 
3229     int i = 0;
3230     int post_entry = -1;
3231     for (frame f = thread->last_frame(); !f.is_first_frame(); f = f.sender(&map), i++) {
3232       f.describe(values, i, &map, i == 0);
3233       if (post_entry >= 0 || Continuation::is_continuation_enterSpecial(f))
3234         post_entry++;
3235       if (post_entry >= show_entry_callers)
3236         break;
3237     }
3238     values.print_on(thread, &ls);
3239   }
3240 
3241   ls.print_cr("======= end frames =========");
3242 }
3243 
3244 static void log_frames_after_thaw(JavaThread* thread, ContinuationWrapper& cont, intptr_t* sp) {
3245   intptr_t* sp0 = sp;
3246   address pc0 = *(address*)(sp - frame::sender_sp_ret_address_offset());
3247 
3248   bool preempted = false;
3249   stackChunkOop tail = cont.tail();
3250   if (tail != nullptr && tail->preempted()) {
3251     // Still preempted (monitor not acquired) so no frames were thawed.
3252     set_anchor(thread, cont.entrySP(), cont.entryPC());
3253     preempted = true;
3254   } else {
3255     set_anchor(thread, sp0);
3256   }
3257 
3258   log_frames(thread);
3259   if (LoomVerifyAfterThaw) {
3260     assert(do_verify_after_thaw(thread, cont.tail(), tty), "");
3261   }
3262   assert(preempted || ContinuationEntry::assert_entry_frame_laid_out(thread), "");
3263   clear_anchor(thread);
3264 
3265   LogTarget(Trace, continuations) lt;
3266   if (lt.develop_is_enabled()) {
3267     LogStream ls(lt);
3268     ls.print_cr("Jumping to frame (thaw):");
3269     frame(sp).print_value_on(&ls);
3270   }
3271 }
3272 #endif // ASSERT
3273 
3274 #include CPU_HEADER_INLINE(continuationFreezeThaw)
3275 
3276 #ifdef ASSERT
3277 static void print_frame_layout(const frame& f, bool callee_complete, outputStream* st) {
3278   ResourceMark rm;
3279   FrameValues values;
3280   assert(f.get_cb() != nullptr, "");
3281   RegisterMap map(f.is_heap_frame() ?
3282                     nullptr :
3283                     JavaThread::current(),
3284                   RegisterMap::UpdateMap::include,
3285                   RegisterMap::ProcessFrames::skip,
3286                   RegisterMap::WalkContinuation::skip);
3287   map.set_include_argument_oops(false);
3288   map.set_skip_missing(true);
3289   if (callee_complete) {
3290     frame::update_map_with_saved_link(&map, ContinuationHelper::Frame::callee_link_address(f));
3291   }
3292   const_cast<frame&>(f).describe(values, 0, &map, true);
3293   values.print_on(static_cast<JavaThread*>(nullptr), st);
3294 }
3295 #endif
3296 
3297 static address thaw_entry   = nullptr;
3298 static address freeze_entry = nullptr;
3299 static address freeze_preempt_entry = nullptr;
3300 
3301 address Continuation::thaw_entry() {
3302   return ::thaw_entry;
3303 }
3304 
3305 address Continuation::freeze_entry() {
3306   return ::freeze_entry;
3307 }
3308 
3309 address Continuation::freeze_preempt_entry() {
3310   return ::freeze_preempt_entry;
3311 }
3312 
3313 class ConfigResolve {
3314 public:
3315   static void resolve() { resolve_compressed(); }
3316 
3317   static void resolve_compressed() {
3318     UseCompressedOops ? resolve_gc<true>()
3319                       : resolve_gc<false>();
3320   }
3321 
3322 private:
3323   template <bool use_compressed>
3324   static void resolve_gc() {
3325     BarrierSet* bs = BarrierSet::barrier_set();
3326     assert(bs != nullptr, "freeze/thaw invoked before BarrierSet is set");
3327     switch (bs->kind()) {
3328 #define BARRIER_SET_RESOLVE_BARRIER_CLOSURE(bs_name)                    \
3329       case BarrierSet::bs_name: {                                       \
3330         resolve<use_compressed, typename BarrierSet::GetType<BarrierSet::bs_name>::type>(); \
3331       }                                                                 \
3332         break;
3333       FOR_EACH_BARRIER_SET_DO(BARRIER_SET_RESOLVE_BARRIER_CLOSURE)
3334 #undef BARRIER_SET_RESOLVE_BARRIER_CLOSURE
3335 
3336     default:
3337       fatal("BarrierSet resolving not implemented");
3338     };
3339   }
3340 
3341   template <bool use_compressed, typename BarrierSetT>
3342   static void resolve() {
3343     typedef Config<use_compressed ? oop_kind::NARROW : oop_kind::WIDE, BarrierSetT> SelectedConfigT;
3344 
3345     freeze_entry = (address)freeze<SelectedConfigT>;
3346     freeze_preempt_entry = (address)SelectedConfigT::freeze_preempt;
3347 
3348     // If we wanted, we could templatize by kind and have three different thaw entries
3349     thaw_entry   = (address)thaw<SelectedConfigT>;
3350   }
3351 };
3352 
3353 void Continuation::init() {
3354   ConfigResolve::resolve();
3355 }