@@ -202,7 +202,7 @@ static void verify_continuation(oop continuation) { }
202
202
#endif
203
203
204
204
static freeze_result is_pinned0 (JavaThread* thread, oop cont_scope, bool safepoint);
205
- template <typename ConfigT, bool preempt> static inline int freeze_internal (JavaThread* current, intptr_t * const sp);
205
+ template <typename ConfigT, bool preempt> static inline freeze_result freeze_internal (JavaThread* current, intptr_t * const sp);
206
206
207
207
static inline int prepare_thaw_internal (JavaThread* thread, bool return_barrier);
208
208
template <typename ConfigT> static inline intptr_t * thaw_internal (JavaThread* thread, const Continuation::thaw_kind kind);
@@ -218,7 +218,7 @@ static JRT_BLOCK_ENTRY(int, freeze(JavaThread* current, intptr_t* sp))
218
218
current->set_cont_fastpath (nullptr );
219
219
}
220
220
221
- return ConfigT::freeze(current, sp);
221
+ return checked_cast< int >( ConfigT::freeze(current, sp) );
222
222
JRT_END
223
223
224
224
JRT_LEAF (int , Continuation::prepare_thaw(JavaThread* thread, bool return_barrier))
@@ -255,11 +255,11 @@ class Config {
255
255
typedef Config<oops, BarrierSetT> SelfT;
256
256
using OopT = std::conditional_t <oops == oop_kind::NARROW, narrowOop, oop>;
257
257
258
- static int freeze (JavaThread* thread, intptr_t * const sp) {
258
+ static freeze_result freeze (JavaThread* thread, intptr_t * const sp) {
259
259
return freeze_internal<SelfT, false >(thread, sp);
260
260
}
261
261
262
- static int freeze_preempt (JavaThread* thread, intptr_t * const sp) {
262
+ static freeze_result freeze_preempt (JavaThread* thread, intptr_t * const sp) {
263
263
return freeze_internal<SelfT, true >(thread, sp);
264
264
}
265
265
@@ -1666,15 +1666,15 @@ bool FreezeBase::check_valid_fast_path() {
1666
1666
}
1667
1667
#endif // ASSERT
1668
1668
1669
- static inline int freeze_epilog (ContinuationWrapper& cont) {
1669
+ static inline freeze_result freeze_epilog (ContinuationWrapper& cont) {
1670
1670
verify_continuation (cont.continuation ());
1671
1671
assert (!cont.is_empty (), " " );
1672
1672
1673
1673
log_develop_debug (continuations)(" === End of freeze cont ### #" INTPTR_FORMAT, cont.hash ());
1674
- return 0 ;
1674
+ return freeze_ok ;
1675
1675
}
1676
1676
1677
- static int freeze_epilog (JavaThread* thread, ContinuationWrapper& cont, freeze_result res) {
1677
+ static freeze_result freeze_epilog (JavaThread* thread, ContinuationWrapper& cont, freeze_result res) {
1678
1678
if (UNLIKELY (res != freeze_ok)) {
1679
1679
verify_continuation (cont.continuation ());
1680
1680
log_develop_trace (continuations)(" === end of freeze (fail %d)" , res);
@@ -1685,7 +1685,7 @@ static int freeze_epilog(JavaThread* thread, ContinuationWrapper& cont, freeze_r
1685
1685
return freeze_epilog (cont);
1686
1686
}
1687
1687
1688
- static int preempt_epilog (ContinuationWrapper& cont, freeze_result res, frame& old_last_frame) {
1688
+ static freeze_result preempt_epilog (ContinuationWrapper& cont, freeze_result res, frame& old_last_frame) {
1689
1689
if (UNLIKELY (res != freeze_ok)) {
1690
1690
verify_continuation (cont.continuation ());
1691
1691
log_develop_trace (continuations)(" === end of freeze (fail %d)" , res);
@@ -1699,7 +1699,7 @@ static int preempt_epilog(ContinuationWrapper& cont, freeze_result res, frame& o
1699
1699
}
1700
1700
1701
1701
template <typename ConfigT, bool preempt>
1702
- static inline int freeze_internal (JavaThread* current, intptr_t * const sp) {
1702
+ static inline freeze_result freeze_internal (JavaThread* current, intptr_t * const sp) {
1703
1703
assert (!current->has_pending_exception (), " " );
1704
1704
1705
1705
#ifdef ASSERT
0 commit comments