File tree 1 file changed +3
-3
lines changed
src/hotspot/share/runtime
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2155,12 +2155,13 @@ class Thaw {
2155
2155
assert (!chunk->is_empty (), " " );
2156
2156
assert (!chunk->has_mixed_frames (), " " );
2157
2157
assert (!chunk->requires_barriers (), " " );
2158
-
2159
- static const int threshold = 500 ; // words
2158
+ assert (!_thread->is_interp_only_mode (), " " );
2160
2159
2161
2160
log_develop_trace (jvmcont)(" thaw_fast" );
2162
2161
if (log_develop_is_enabled (Debug, jvmcont)) chunk->print_on (true , tty);
2163
2162
2163
+ static const int threshold = 500 ; // words
2164
+
2164
2165
int sp = chunk->sp ();
2165
2166
int size = chunk->stack_size () - sp;
2166
2167
int argsize;
@@ -2314,7 +2315,6 @@ class Thaw {
2314
2315
int num_frames = (return_barrier ? 1 : 2 );
2315
2316
2316
2317
log_develop_trace (jvmcont)(" thaw slow" );
2317
- assert (!_thread->is_interp_only_mode (), " " );
2318
2318
2319
2319
bool last_interpreted = false ;
2320
2320
if (chunk->has_mixed_frames ()) {
You can’t perform that action at this time.
0 commit comments