1
- /* Copyright (c) 2019, 2022 , Oracle and/or its affiliates. All rights reserved.
1
+ /* Copyright (c) 2019, 2021 , Oracle and/or its affiliates. All rights reserved.
2
2
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
3
3
*
4
4
* This code is free software; you can redistribute it and/or modify it
@@ -129,7 +129,7 @@ StackChunkFrameStream<mixed>::StackChunkFrameStream(stackChunkOop chunk, bool gc
129
129
// }
130
130
}
131
131
DEBUG_ONLY (else _unextended_sp = nullptr ;)
132
-
132
+
133
133
if (is_stub ()) {
134
134
get_oopmap (pc (), 0 );
135
135
DEBUG_ONLY (_has_stub = true );
@@ -142,7 +142,7 @@ StackChunkFrameStream<mixed>::StackChunkFrameStream(stackChunkOop chunk, const f
142
142
assert (mixed || !chunk->has_mixed_frames (), " " );
143
143
144
144
DEBUG_ONLY (_index = 0 ;)
145
-
145
+
146
146
_end = chunk->bottom_address ();
147
147
148
148
assert (chunk->is_in_chunk (f.sp ()), " " );
@@ -178,13 +178,13 @@ inline bool StackChunkFrameStream<mixed>::is_compiled() const {
178
178
}
179
179
180
180
template <bool mixed>
181
- inline bool StackChunkFrameStream<mixed>::is_interpreted() const {
182
- return mixed ? (!is_done () && Interpreter::contains (pc ())) : false ;
181
+ inline bool StackChunkFrameStream<mixed>::is_interpreted() const {
182
+ return mixed ? (!is_done () && Interpreter::contains (pc ())) : false ;
183
183
}
184
184
185
185
template <bool mixed>
186
186
inline int StackChunkFrameStream<mixed>::frame_size() const {
187
- return is_interpreted () ? interpreter_frame_size ()
187
+ return is_interpreted () ? interpreter_frame_size ()
188
188
: cb ()->frame_size () + stack_argsize ();
189
189
}
190
190
@@ -247,26 +247,26 @@ inline void StackChunkFrameStream<mixed>::get_cb() {
247
247
return ;
248
248
}
249
249
250
- assert (pc () != nullptr && dbg_is_safe (pc (), -1 ),
251
- " index: %d sp: " INTPTR_FORMAT " sp offset: %d end offset: %d size: %d chunk sp: %d" ,
250
+ assert (pc () != nullptr && dbg_is_safe (pc (), -1 ),
251
+ " index: %d sp: " INTPTR_FORMAT " sp offset: %d end offset: %d size: %d chunk sp: %d" ,
252
252
_index, p2i (sp ()), _chunk->to_offset (sp ()), _chunk->to_offset (_chunk->bottom_address ()), _chunk->stack_size (), _chunk->sp ());
253
253
254
254
_cb = CodeCache::find_blob_fast (pc ());
255
255
256
256
// if (_cb == nullptr) { tty->print_cr("OOPS"); os::print_location(tty, (intptr_t)pc()); }
257
- assert (_cb != nullptr ,
258
- " index: %d sp: " INTPTR_FORMAT " sp offset: %d end offset: %d size: %d chunk sp: %d gc_flag: %d" ,
257
+ assert (_cb != nullptr ,
258
+ " index: %d sp: " INTPTR_FORMAT " sp offset: %d end offset: %d size: %d chunk sp: %d gc_flag: %d" ,
259
259
_index, p2i (sp ()), _chunk->to_offset (sp ()), _chunk->to_offset (_chunk->bottom_address ()), _chunk->stack_size (), _chunk->sp (), _chunk->is_gc_mode ());
260
- assert (is_interpreted () || ((is_stub () || is_compiled ()) && _cb->frame_size () > 0 ),
261
- " index: %d sp: " INTPTR_FORMAT " sp offset: %d end offset: %d size: %d chunk sp: %d is_stub: %d is_compiled: %d frame_size: %d mixed: %d" ,
260
+ assert (is_interpreted () || ((is_stub () || is_compiled ()) && _cb->frame_size () > 0 ),
261
+ " index: %d sp: " INTPTR_FORMAT " sp offset: %d end offset: %d size: %d chunk sp: %d is_stub: %d is_compiled: %d frame_size: %d mixed: %d" ,
262
262
_index, p2i (sp ()), _chunk->to_offset (sp ()), _chunk->to_offset (_chunk->bottom_address ()), _chunk->stack_size (), _chunk->sp (), is_stub (), is_compiled (), _cb->frame_size (), mixed);
263
263
}
264
264
265
265
template <bool mixed>
266
266
inline void StackChunkFrameStream<mixed>::get_oopmap() const {
267
267
if (is_interpreted ()) return ;
268
268
assert (is_compiled (), " " );
269
- get_oopmap (pc (), CodeCache::find_oopmap_slot_fast (pc ()));
269
+ get_oopmap (pc (), CodeCache::find_oopmap_slot_fast (pc ()));
270
270
}
271
271
272
272
template <bool mixed>
@@ -416,12 +416,12 @@ template<bool mixed>
416
416
template <class DerivedOopClosureType , class RegisterMapT >
417
417
inline void StackChunkFrameStream<mixed>::iterate_derived_pointers(DerivedOopClosureType* closure, const RegisterMapT* map) const {
418
418
if (is_interpreted ()) return ;
419
-
419
+
420
420
for (OopMapStream oms (oopmap ()); !oms.is_done (); oms.next ()) {
421
421
OopMapValue omv = oms.current ();
422
422
if (omv.type () != OopMapValue::derived_oop_value)
423
423
continue ;
424
-
424
+
425
425
intptr_t * derived_loc = (intptr_t *)reg_to_loc (omv.reg (), map);
426
426
intptr_t * base_loc = (intptr_t *)reg_to_loc (omv.content_reg (), map); // see OopMapDo<OopMapFnT, DerivedOopFnT, ValueFilterT>::walk_derived_pointers1
427
427
@@ -430,7 +430,7 @@ inline void StackChunkFrameStream<mixed>::iterate_derived_pointers(DerivedOopClo
430
430
assert (derived_loc != base_loc, " Base and derived in same location" );
431
431
assert (is_in_oops (base_loc, map), " not found: " INTPTR_FORMAT, p2i (base_loc));
432
432
assert (!is_in_oops (derived_loc, map), " found: " INTPTR_FORMAT, p2i (derived_loc));
433
-
433
+
434
434
Devirtualizer::do_derived_oop (closure, (oop*)base_loc, (derived_pointer*)derived_loc);
435
435
}
436
436
OrderAccess::storestore (); // to preserve that we set the offset *before* fixing the base oop
@@ -610,7 +610,7 @@ inline void InstanceStackChunkKlass::iterate_stack(stackChunkOop obj, StackChunk
610
610
611
611
RegisterMap full_map ((JavaThread*)nullptr , true , false , true );
612
612
full_map.set_include_argument_oops (false );
613
-
613
+
614
614
f.next (&full_map);
615
615
616
616
// log_develop_trace(jvmcont)("stackChunkOopDesc::iterate_stack this: " INTPTR_FORMAT " safepoint yield caller frame: %d", p2i(this), f.index());
0 commit comments