Skip to content

Commit b3de8f6

Browse files
committedNov 4, 2024
Use freeze_result consistently
1 parent 1139631 commit b3de8f6

File tree

4 files changed

+20
-20
lines changed

4 files changed

+20
-20
lines changed
 

‎src/hotspot/share/runtime/continuation.cpp

+8-8
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,12 @@ JVM_END
6161
class JvmtiUnmountBeginMark : public StackObj {
6262
Handle _vthread;
6363
JavaThread* _target;
64-
int _preempt_result;
64+
freeze_result _result;
6565
bool _failed;
6666

6767
public:
6868
JvmtiUnmountBeginMark(JavaThread* t) :
69-
_vthread(t, t->vthread()), _target(t), _preempt_result(freeze_pinned_native), _failed(false) {
69+
_vthread(t, t->vthread()), _target(t), _result(freeze_pinned_native), _failed(false) {
7070
assert(!_target->is_in_VTMS_transition(), "must be");
7171

7272
if (JvmtiVTMSTransitionDisabler::VTMS_notify_jvmti_events()) {
@@ -101,7 +101,7 @@ class JvmtiUnmountBeginMark : public StackObj {
101101
// been set while blocked in the allocation path during freeze.
102102
bool jvmti_present = JvmtiVTMSTransitionDisabler::VTMS_notify_jvmti_events();
103103

104-
if (_preempt_result != freeze_ok) {
104+
if (_result != freeze_ok) {
105105
// Undo transition
106106
if (jvmti_present) {
107107
JvmtiVTMSTransitionDisabler::finish_VTMS_transition((jthread)_vthread.raw_value(), false);
@@ -120,7 +120,7 @@ class JvmtiUnmountBeginMark : public StackObj {
120120
}
121121
}
122122
}
123-
void set_preempt_result(int res) { _preempt_result = res; }
123+
void set_result(freeze_result res) { _result = res; }
124124
bool failed() { return _failed; }
125125
};
126126

@@ -141,7 +141,7 @@ static bool is_vthread_safe_to_preempt(JavaThread* target, oop vthread) {
141141
return JVMTI_ONLY(is_vthread_safe_to_preempt_for_jvmti(target, vthread)) NOT_JVMTI(true);
142142
}
143143

144-
typedef int (*FreezeContFnT)(JavaThread*, intptr_t*);
144+
typedef freeze_result (*FreezeContFnT)(JavaThread*, intptr_t*);
145145

146146
static void verify_preempt_preconditions(JavaThread* target, oop continuation) {
147147
assert(target == JavaThread::current(), "no support for external preemption");
@@ -153,7 +153,7 @@ static void verify_preempt_preconditions(JavaThread* target, oop continuation) {
153153
assert(!target->has_pending_exception(), "");
154154
}
155155

156-
int Continuation::try_preempt(JavaThread* target, oop continuation) {
156+
freeze_result Continuation::try_preempt(JavaThread* target, oop continuation) {
157157
verify_preempt_preconditions(target, continuation);
158158

159159
if (LockingMode == LM_LEGACY) {
@@ -166,9 +166,9 @@ int Continuation::try_preempt(JavaThread* target, oop continuation) {
166166

167167
JVMTI_ONLY(JvmtiUnmountBeginMark jubm(target);)
168168
JVMTI_ONLY(if (jubm.failed()) return freeze_pinned_native;)
169-
int res = CAST_TO_FN_PTR(FreezeContFnT, freeze_preempt_entry())(target, target->last_Java_sp());
169+
freeze_result res = CAST_TO_FN_PTR(FreezeContFnT, freeze_preempt_entry())(target, target->last_Java_sp());
170170
log_trace(continuations, preempt)("try_preempt: %d", res);
171-
JVMTI_ONLY(jubm.set_preempt_result(res);)
171+
JVMTI_ONLY(jubm.set_result(res);)
172172
return res;
173173
}
174174

‎src/hotspot/share/runtime/continuation.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ class Continuation : AllStatic {
9090
static int prepare_thaw(JavaThread* thread, bool return_barrier);
9191
static address thaw_entry();
9292

93-
static int try_preempt(JavaThread* target, oop continuation);
93+
static freeze_result try_preempt(JavaThread* target, oop continuation);
9494

9595
static ContinuationEntry* get_continuation_entry_for_continuation(JavaThread* thread, oop continuation);
9696
static ContinuationEntry* get_continuation_entry_for_sp(JavaThread* thread, intptr_t* const sp);

‎src/hotspot/share/runtime/continuationFreezeThaw.cpp

+9-9
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ static void verify_continuation(oop continuation) { }
202202
#endif
203203

204204
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);
206206

207207
static inline int prepare_thaw_internal(JavaThread* thread, bool return_barrier);
208208
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))
218218
current->set_cont_fastpath(nullptr);
219219
}
220220

221-
return ConfigT::freeze(current, sp);
221+
return checked_cast<int>(ConfigT::freeze(current, sp));
222222
JRT_END
223223

224224
JRT_LEAF(int, Continuation::prepare_thaw(JavaThread* thread, bool return_barrier))
@@ -255,11 +255,11 @@ class Config {
255255
typedef Config<oops, BarrierSetT> SelfT;
256256
using OopT = std::conditional_t<oops == oop_kind::NARROW, narrowOop, oop>;
257257

258-
static int freeze(JavaThread* thread, intptr_t* const sp) {
258+
static freeze_result freeze(JavaThread* thread, intptr_t* const sp) {
259259
return freeze_internal<SelfT, false>(thread, sp);
260260
}
261261

262-
static int freeze_preempt(JavaThread* thread, intptr_t* const sp) {
262+
static freeze_result freeze_preempt(JavaThread* thread, intptr_t* const sp) {
263263
return freeze_internal<SelfT, true>(thread, sp);
264264
}
265265

@@ -1666,15 +1666,15 @@ bool FreezeBase::check_valid_fast_path() {
16661666
}
16671667
#endif // ASSERT
16681668

1669-
static inline int freeze_epilog(ContinuationWrapper& cont) {
1669+
static inline freeze_result freeze_epilog(ContinuationWrapper& cont) {
16701670
verify_continuation(cont.continuation());
16711671
assert(!cont.is_empty(), "");
16721672

16731673
log_develop_debug(continuations)("=== End of freeze cont ### #" INTPTR_FORMAT, cont.hash());
1674-
return 0;
1674+
return freeze_ok;
16751675
}
16761676

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) {
16781678
if (UNLIKELY(res != freeze_ok)) {
16791679
verify_continuation(cont.continuation());
16801680
log_develop_trace(continuations)("=== end of freeze (fail %d)", res);
@@ -1685,7 +1685,7 @@ static int freeze_epilog(JavaThread* thread, ContinuationWrapper& cont, freeze_r
16851685
return freeze_epilog(cont);
16861686
}
16871687

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) {
16891689
if (UNLIKELY(res != freeze_ok)) {
16901690
verify_continuation(cont.continuation());
16911691
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
16991699
}
17001700

17011701
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) {
17031703
assert(!current->has_pending_exception(), "");
17041704

17051705
#ifdef ASSERT

‎src/hotspot/share/runtime/objectMonitor.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,7 @@ void ObjectMonitor::enter_with_contention_mark(JavaThread *current, ObjectMonito
517517

518518
ContinuationEntry* ce = current->last_continuation();
519519
if (ce != nullptr && ce->is_virtual_thread()) {
520-
int result = Continuation::try_preempt(current, ce->cont_oop(current));
520+
freeze_result result = Continuation::try_preempt(current, ce->cont_oop(current));
521521
if (result == freeze_ok) {
522522
bool acquired = VThreadMonitorEnter(current);
523523
if (acquired) {
@@ -1691,7 +1691,7 @@ void ObjectMonitor::wait(jlong millis, bool interruptible, TRAPS) {
16911691

16921692
ContinuationEntry* ce = current->last_continuation();
16931693
if (ce != nullptr && ce->is_virtual_thread()) {
1694-
int result = Continuation::try_preempt(current, ce->cont_oop(current));
1694+
freeze_result result = Continuation::try_preempt(current, ce->cont_oop(current));
16951695
if (result == freeze_ok) {
16961696
VThreadWait(current, millis);
16971697
current->set_current_waiting_monitor(nullptr);

0 commit comments

Comments
 (0)
Please sign in to comment.