@@ -690,7 +690,8 @@ class ContMirror {
690
690
static bool is_in_chunk (oop chunk, void * p);
691
691
static bool is_usable_in_chunk (oop chunk, void * p);
692
692
static inline void reset_chunk_counters (oop chunk);
693
- oop find_chunk (void * p) const ;
693
+ oop find_chunk (size_t sp_offset, size_t * chunk_offset) const ;
694
+ oop find_chunk_by_address (void * p) const ;
694
695
695
696
template <op_mode mode> const hframe last_frame ();
696
697
template <op_mode mode> void set_last_frame (const hframe& f);
@@ -1237,7 +1238,7 @@ inline void ContMirror::reset_chunk_counters(oop chunk) {
1237
1238
jdk_internal_misc_StackChunk::set_numOops (chunk, -1 );
1238
1239
}
1239
1240
1240
- oop ContMirror::find_chunk (void * p) const {
1241
+ oop ContMirror::find_chunk_by_address (void * p) const {
1241
1242
for (oop chunk = tail (); chunk != (oop)NULL ; chunk = jdk_internal_misc_StackChunk::parent (chunk)) {
1242
1243
if (is_in_chunk (chunk, p)) {
1243
1244
assert (is_usable_in_chunk (chunk, p), " " );
@@ -1247,6 +1248,23 @@ oop ContMirror::find_chunk(void* p) const {
1247
1248
return (oop)NULL ;
1248
1249
}
1249
1250
1251
+ oop ContMirror::find_chunk (size_t sp_offset, size_t * chunk_offset) const {
1252
+ size_t offset = 0 ;
1253
+ for (oop chunk = tail (); chunk != (oop)NULL ; chunk = jdk_internal_misc_StackChunk::parent (chunk)) {
1254
+ if (is_empty_chunk (chunk)) continue ;
1255
+ const size_t end = jdk_internal_misc_StackChunk::size (chunk) - jdk_internal_misc_StackChunk::argsize (chunk);
1256
+ const int chunk_sp = jdk_internal_misc_StackChunk::sp (chunk);
1257
+ size_t offset_in_chunk = sp_offset - offset;
1258
+ if (chunk_sp + offset_in_chunk < end) {
1259
+ // tty->print_cr(">>> find_chunk chunk %p sp_offset: %ld offset: %ld, chunk_sp: %d offset_in_chunk: %ld end: %ld", (oopDesc*)chunk, sp_offset, offset, chunk_sp, offset_in_chunk, end);
1260
+ if (chunk_offset != NULL ) *chunk_offset = offset;
1261
+ return chunk;
1262
+ }
1263
+ offset += end - chunk_sp;
1264
+ }
1265
+ return (oop)NULL ;
1266
+ }
1267
+
1250
1268
template <typename Event> void ContMirror::post_jfr_event (Event* e, JavaThread* jt) {
1251
1269
if (e->should_commit ()) {
1252
1270
log_develop_trace (jvmcont)(" JFR event: frames: %d iframes: %d size: %d refs: %d" , _e_num_frames, _e_num_interpreted_frames, _e_size, _e_num_refs);
@@ -4905,10 +4923,12 @@ bool Continuation::is_scope_bottom(oop cont_scope, const frame& f, const Registe
4905
4923
4906
4924
static frame chunk_top_frame_pd (oop chunk, intptr_t * sp, RegisterMap* map);
4907
4925
4908
- static frame chunk_top_frame (oop chunk, RegisterMap* map) {
4926
+ static frame chunk_top_frame (oop chunk, RegisterMap* map, size_t offset, size_t index ) {
4909
4927
intptr_t * sp = (intptr_t *)InstanceStackChunkKlass::start_of_stack (chunk) + jdk_internal_misc_StackChunk::sp (chunk);
4910
- // tty->print_cr(">>> chunk_top_frame usp: %p", sp);
4911
- return chunk_top_frame_pd (chunk, sp, map);
4928
+ frame f = chunk_top_frame_pd (chunk, sp, map);
4929
+ f.set_offset_sp (offset);
4930
+ f.set_frame_index (index );
4931
+ return f;
4912
4932
}
4913
4933
4914
4934
static frame continuation_body_top_frame (ContMirror& cont, RegisterMap* map) {
@@ -4929,7 +4949,7 @@ static frame continuation_top_frame(oop contOop, RegisterMap* map) {
4929
4949
for (oop chunk = cont.tail (); chunk != (oop)NULL ; chunk = jdk_internal_misc_StackChunk::parent (chunk)) {
4930
4950
if (!ContMirror::is_empty_chunk (chunk)) {
4931
4951
map->set_in_cont (true , true );
4932
- return chunk_top_frame (chunk, map);
4952
+ return chunk_top_frame (chunk, map, 0 , 0 );
4933
4953
}
4934
4954
}
4935
4955
@@ -5000,29 +5020,45 @@ static frame sender_for_frame(const frame& f, RegisterMap* map) {
5000
5020
assert (map->in_cont (), " " );
5001
5021
ContMirror cont (map);
5002
5022
5003
- oop chunk = cont.find_chunk (f.unextended_sp ());
5023
+ assert (!f.is_empty (), " " );
5024
+
5004
5025
bool from_chunk = false ;
5005
- if (chunk != (oop) NULL ) {
5026
+ if (map-> in_chunk () ) {
5006
5027
from_chunk = true ;
5007
- // we add to the pointer instead of subtracting from the bounds
5008
- if (ContMirror::is_in_chunk (chunk, f.unextended_sp () + f.cb ()->frame_size () + jdk_internal_misc_StackChunk::argsize (chunk) + frame_metadata)) {
5009
- map->set_in_cont (false , false ); // to prevent infinite recursion
5010
- frame sender = f.sender (map);
5011
- map->set_in_cont (true , true );
5012
- // tty->print_cr(">>> sender_for_frame usp: %p", sender.unextended_sp());
5028
+
5029
+ size_t frame_index = f.frame_index ();
5030
+ size_t chunk_offset;
5031
+ oop chunk = cont.find_chunk (f.offset_sp (), &chunk_offset);
5032
+ assert (!ContMirror::is_empty_chunk (chunk), " " );
5033
+ assert (chunk != (oop)NULL , " " );
5034
+ intptr_t * chunk_sp = (intptr_t *)InstanceStackChunkKlass::start_of_stack (chunk) + jdk_internal_misc_StackChunk::sp (chunk);
5035
+ intptr_t * sp = chunk_sp + (f.offset_sp () - chunk_offset);
5036
+
5037
+ frame f = sp_to_frame (sp);
5038
+ if (ContMirror::is_in_chunk (chunk, sp + f.cb ()->frame_size () + jdk_internal_misc_StackChunk::argsize (chunk) + frame_metadata)) {
5039
+ frame sender = sp_to_frame (sp + f.cb ()->frame_size ());
5040
+
5013
5041
assert (ContMirror::is_usable_in_chunk (chunk, sender.unextended_sp ()), " " );
5042
+ sender.set_offset_sp (chunk_offset + (sender.sp () - chunk_sp));
5043
+ sender.set_frame_index (frame_index + 1 );
5044
+ if (map->update_map ()) {
5045
+ frame::update_map_with_saved_link (map, (intptr_t **)(intptr_t )(-2 * BytesPerWord)); // for chunk frames, we store offset TODO PD
5046
+ }
5014
5047
return sender;
5015
5048
}
5049
+ const size_t end = jdk_internal_misc_StackChunk::size (chunk) - jdk_internal_misc_StackChunk::argsize (chunk);
5050
+ chunk_offset += end - jdk_internal_misc_StackChunk::sp (chunk);
5016
5051
chunk = jdk_internal_misc_StackChunk::parent (chunk);
5017
5052
if (chunk != (oop)NULL ) {
5018
5053
assert (!ContMirror::is_empty_chunk (chunk), " " );
5019
- return chunk_top_frame (chunk, map);
5054
+ return chunk_top_frame (chunk, map, chunk_offset, frame_index + 1 );
5020
5055
}
5021
5056
assert (map->in_cont (), " " );
5022
5057
if (map->in_chunk ()) map->set_in_cont (true , false );
5023
- assert (!map->in_chunk (), " " );
5024
5058
}
5025
5059
5060
+ assert (!map->in_chunk (), " " );
5061
+
5026
5062
hframe sender = from_chunk ? cont.last_frame <mode_slow>()
5027
5063
: cont.from_frame (f).sender <mode_slow>(cont);
5028
5064
@@ -5158,27 +5194,27 @@ address Continuation::oop_address(objArrayOop ref_stack, int ref_sp, int index)
5158
5194
bool Continuation::is_in_usable_stack (address addr, const RegisterMap* map) {
5159
5195
ContMirror cont (map);
5160
5196
5161
- oop chunk = cont.find_chunk (addr);
5197
+ oop chunk = cont.find_chunk_by_address (addr);
5162
5198
assert (((intptr_t **)addr == Frame::map_link_address (map)) || (map->in_chunk () == (chunk != (oop)NULL )), " map->in_chunk(): %d" , map->in_chunk ());
5163
5199
return (chunk != (oop)NULL ) ? ContMirror::is_usable_in_chunk (chunk, addr)
5164
5200
: (cont.is_in_stack (addr) || cont.is_in_ref_stack (addr)
5165
5201
|| (intptr_t **)addr == java_lang_Continuation::raw_fp_address (cont.mirror ())); // TODO PD
5166
5202
}
5167
5203
5168
- // address Continuation::usp_offset_to_location(const frame& fr, const RegisterMap* map, const int usp_offset_in_bytes) {
5169
- // return usp_offset_to_location(fr, map, usp_offset_in_bytes, find_oop_in_compiled_frame(fr, map, usp_offset_in_bytes) >= 0);
5170
- // }
5171
-
5172
5204
// if oop, it is narrow iff UseCompressedOops
5173
5205
address Continuation::usp_offset_to_location (const frame& fr, const RegisterMap* map, const int usp_offset_in_bytes, bool is_oop) {
5174
5206
assert (fr.is_compiled_frame (), " " );
5175
5207
ContMirror cont (map);
5176
5208
5177
5209
assert (map->in_cont (), " " );
5178
5210
5179
- assert (map->in_chunk () == (cont.find_chunk (fr.unextended_sp ()) != (oop)NULL ), " " );
5180
- if (cont.find_chunk (fr.unextended_sp ()) != (oop)NULL ) {
5181
- return (address)fr.unextended_sp () + usp_offset_in_bytes;
5211
+ if (map->in_chunk ()) {
5212
+ size_t chunk_offset;
5213
+ oop chunk = cont.find_chunk (fr.offset_sp (), &chunk_offset);
5214
+ assert (chunk != (oop)NULL , " " );
5215
+ size_t offset_in_chunk = jdk_internal_misc_StackChunk::sp (chunk) + (fr.offset_sp () - chunk_offset);
5216
+ intptr_t * sp = (intptr_t *)InstanceStackChunkKlass::start_of_stack (chunk) + offset_in_chunk;
5217
+ return (address)sp + usp_offset_in_bytes;
5182
5218
}
5183
5219
5184
5220
assert (!map->in_chunk (), " fr.unextended_sp: " INTPTR_FORMAT, p2i (fr.unextended_sp ()));
@@ -5200,8 +5236,8 @@ int Continuation::usp_offset_to_index(const frame& fr, const RegisterMap* map, c
5200
5236
assert (fr.is_compiled_frame () || is_stub (fr.cb ()), " " );
5201
5237
ContMirror cont (map);
5202
5238
5203
- assert (map->in_chunk () == (cont. find_chunk (fr. unextended_sp ()) != (oop) NULL ), " " );
5204
- if (cont.find_chunk (fr.unextended_sp () ) != (oop)NULL ) {
5239
+ if (map->in_chunk ()) {
5240
+ assert (cont.find_chunk (fr.offset_sp (), NULL ) != (oop)NULL , " " );
5205
5241
return usp_offset_in_bytes;
5206
5242
}
5207
5243
@@ -5226,22 +5262,6 @@ int Continuation::usp_offset_to_index(const frame& fr, const RegisterMap* map, c
5226
5262
return index ;
5227
5263
}
5228
5264
5229
- // address Continuation::reg_to_location(const frame& fr, const RegisterMap* map, VMReg reg) {
5230
- // return reg_to_location(fr, map, reg, find_oop_in_compiled_frame(fr, map, reg) >= 0);
5231
- // }
5232
-
5233
- // address Continuation::reg_to_location(const frame& fr, const RegisterMap* map, VMReg reg, bool is_oop) {
5234
- // assert (map != NULL, "");
5235
- // oop cont;
5236
- // assert (map->in_cont(), "");
5237
- // if (map->in_cont()) {
5238
- // cont = map->cont();
5239
- // } else {
5240
- // cont = get_continutation_for_frame(map->thread(), fr);
5241
- // }
5242
- // return reg_to_location(cont, fr, map, reg, is_oop);
5243
- // }
5244
-
5245
5265
address Continuation::reg_to_location (const frame& fr, const RegisterMap* map, VMReg reg, bool is_oop) {
5246
5266
assert (map != NULL , " " );
5247
5267
assert (fr.is_compiled_frame (), " " );
@@ -5255,9 +5275,15 @@ address Continuation::reg_to_location(const frame& fr, const RegisterMap* map, V
5255
5275
5256
5276
ContMirror cont (map);
5257
5277
5258
- assert (map->in_chunk () == (cont.find_chunk (fr.unextended_sp ()) != (oop)NULL ), " " );
5259
- if (cont.find_chunk (fr.unextended_sp ()) != (oop)NULL ) {
5260
- return map->location (reg);
5278
+ if (map->in_chunk ()) {
5279
+ intptr_t usp_offset_in_bytes = (intptr_t )map->location (reg); // see usp_offset_to_index for the chunk case
5280
+
5281
+ size_t chunk_offset;
5282
+ oop chunk = cont.find_chunk (fr.offset_sp (), &chunk_offset);
5283
+ assert (chunk != (oop)NULL , " " );
5284
+ size_t offset_in_chunk = jdk_internal_misc_StackChunk::sp (chunk) + (fr.offset_sp () - chunk_offset);
5285
+ intptr_t * sp = (intptr_t *)InstanceStackChunkKlass::start_of_stack (chunk) + offset_in_chunk;
5286
+ return (address)sp + usp_offset_in_bytes;
5261
5287
}
5262
5288
5263
5289
hframe hf = cont.from_frame (fr);
0 commit comments