Skip to content

Commit a20642d

Browse files
committedMar 31, 2021
Move incorrect assertion
1 parent c75f81f commit a20642d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -2155,12 +2155,13 @@ class Thaw {
21552155
assert (!chunk->is_empty(), "");
21562156
assert (!chunk->has_mixed_frames(), "");
21572157
assert (!chunk->requires_barriers(), "");
2158-
2159-
static const int threshold = 500; // words
2158+
assert (!_thread->is_interp_only_mode(), "");
21602159

21612160
log_develop_trace(jvmcont)("thaw_fast");
21622161
if (log_develop_is_enabled(Debug, jvmcont)) chunk->print_on(true, tty);
21632162

2163+
static const int threshold = 500; // words
2164+
21642165
int sp = chunk->sp();
21652166
int size = chunk->stack_size() - sp;
21662167
int argsize;
@@ -2314,7 +2315,6 @@ class Thaw {
23142315
int num_frames = (return_barrier ? 1 : 2);
23152316

23162317
log_develop_trace(jvmcont)("thaw slow");
2317-
assert (!_thread->is_interp_only_mode(), "");
23182318

23192319
bool last_interpreted = false;
23202320
if (chunk->has_mixed_frames()) {

0 commit comments

Comments
 (0)
Please sign in to comment.