22
22
*
23
23
*/
24
24
25
+ #include " oops/stackChunkOop.hpp"
25
26
#include " precompiled.hpp"
26
27
#include " classfile/javaClasses.inline.hpp"
27
28
#include " classfile/javaThreadStatus.hpp"
54
55
#include " runtime/vframe_hp.hpp"
55
56
56
57
vframe::vframe (const frame* fr, const RegisterMap* reg_map, JavaThread* thread)
57
- : _reg_map(reg_map), _thread(thread) {
58
+ : _reg_map(reg_map), _thread(thread),
59
+ _chunk(Thread::current(), reg_map->stack_chunk()(), reg_map->stack_chunk().not_null()) {
58
60
assert (fr != NULL , " must have frame" );
59
61
_fr = *fr;
60
62
}
61
63
62
64
vframe::vframe (const frame* fr, JavaThread* thread)
63
- : _reg_map(thread), _thread(thread) {
65
+ : _reg_map(thread), _thread(thread), _chunk() {
64
66
assert (fr != NULL , " must have frame" );
65
67
_fr = *fr;
68
+ assert (!_reg_map.in_cont (), " " );
66
69
}
67
70
68
71
vframe* vframe::new_vframe (StackFrameStream& fst, JavaThread* thread) {
@@ -134,6 +137,12 @@ javaVFrame* vframe::java_sender() const {
134
137
return NULL ;
135
138
}
136
139
140
+ void vframe::restore_register_map () const {
141
+ if (_reg_map.stack_chunk ()() != stack_chunk ()) {
142
+ const_cast <vframe*>(this )->_reg_map .set_stack_chunk (stack_chunk ());
143
+ }
144
+ }
145
+
137
146
// ------------- javaVFrame --------------
138
147
139
148
GrowableArray<MonitorInfo*>* javaVFrame::locked_monitors () {
@@ -283,24 +292,24 @@ void javaVFrame::print_lock_info_on(outputStream* st, int frame_count) {
283
292
// ------------- interpretedVFrame --------------
284
293
285
294
u_char * interpretedVFrame::bcp () const {
286
- return (! register_map ()-> in_cont ()) ? fr ().interpreter_frame_bcp () : register_map ()-> stack_chunk ()->interpreter_frame_bcp (fr ());
295
+ return stack_chunk () == NULL ? fr ().interpreter_frame_bcp () : stack_chunk ()->interpreter_frame_bcp (fr ());
287
296
}
288
297
289
298
void interpretedVFrame::set_bcp (u_char * bcp) {
290
- assert (! register_map ()-> in_cont () , " " ); // unsupported for now because seems to be unused
299
+ assert (stack_chunk () == NULL , " " ); // unsupported for now because seems to be unused
291
300
fr ().interpreter_frame_set_bcp (bcp);
292
301
}
293
302
294
303
intptr_t * interpretedVFrame::locals_addr_at (int offset) const {
295
- assert (! register_map ()-> in_cont () , " " ); // unsupported for now because seems to be unused
304
+ assert (stack_chunk () == NULL , " " ); // unsupported for now because seems to be unused
296
305
assert (fr ().is_interpreted_frame (), " frame should be an interpreted frame" );
297
306
return fr ().interpreter_frame_local_at (offset);
298
307
}
299
308
300
309
301
310
GrowableArray<MonitorInfo*>* interpretedVFrame::monitors () const {
302
311
GrowableArray<MonitorInfo*>* result = new GrowableArray<MonitorInfo*>(5 );
303
- if (! register_map ()-> in_cont () ) { // no monitors in continuations
312
+ if (stack_chunk () == NULL ) { // no monitors in continuations
304
313
for (BasicObjectLock* current = (fr ().previous_monitor_in_interpreter_frame (fr ().interpreter_frame_monitor_begin ()));
305
314
current >= fr ().interpreter_frame_monitor_end ();
306
315
current = fr ().previous_monitor_in_interpreter_frame (current)) {
@@ -315,13 +324,14 @@ int interpretedVFrame::bci() const {
315
324
}
316
325
317
326
Method* interpretedVFrame::method () const {
318
- return (!register_map ()->in_cont ()) ? fr ().interpreter_frame_method () : register_map ()->stack_chunk ()->interpreter_frame_method (fr ());
327
+ // assert ((stack_chunk() != NULL) == register_map()->in_cont(), "_in_cont: %d register_map()->in_cont(): %d", stack_chunk() != NULL, register_map()->in_cont());
328
+ return stack_chunk () == NULL ? fr ().interpreter_frame_method () : stack_chunk ()->interpreter_frame_method (fr ());
319
329
}
320
330
321
- static StackValue* create_stack_value_from_oop_map (const RegisterMap* reg_map,
322
- const InterpreterOopMap& oop_mask,
331
+ static StackValue* create_stack_value_from_oop_map (const InterpreterOopMap& oop_mask,
323
332
int index,
324
- const intptr_t * const addr) {
333
+ const intptr_t * const addr,
334
+ stackChunkOop chunk) {
325
335
326
336
assert (index >= 0 &&
327
337
index < oop_mask.number_of_entries (), " invariant" );
@@ -330,8 +340,8 @@ static StackValue* create_stack_value_from_oop_map(const RegisterMap* reg_map,
330
340
if (oop_mask.is_oop (index )) {
331
341
oop obj = NULL ;
332
342
if (addr != NULL ) {
333
- if (reg_map-> in_cont () ) {
334
- obj = (reg_map-> stack_chunk () ->has_bitmap () && UseCompressedOops) ? (oop)HeapAccess<>::oop_load ((narrowOop*)addr) : HeapAccess<>::oop_load ((oop*)addr);
343
+ if (chunk != NULL ) {
344
+ obj = (chunk ->has_bitmap () && UseCompressedOops) ? (oop)HeapAccess<>::oop_load ((narrowOop*)addr) : HeapAccess<>::oop_load ((oop*)addr);
335
345
} else {
336
346
obj = *(oop*)addr;
337
347
}
@@ -361,21 +371,21 @@ static void stack_locals(StackValueCollection* result,
361
371
int length,
362
372
const InterpreterOopMap& oop_mask,
363
373
const frame& fr,
364
- const RegisterMap* reg_map ) {
374
+ const stackChunkOop chunk ) {
365
375
366
376
assert (result != NULL , " invariant" );
367
377
368
378
for (int i = 0 ; i < length; ++i) {
369
379
const intptr_t * addr;
370
- if (!reg_map-> in_cont () ) {
380
+ if (chunk == NULL ) {
371
381
addr = fr.interpreter_frame_local_at (i);
372
382
assert (addr >= fr.sp (), " must be inside the frame" );
373
383
} else {
374
- addr = reg_map-> stack_chunk () ->interpreter_frame_local_at (fr, i);
384
+ addr = chunk ->interpreter_frame_local_at (fr, i);
375
385
}
376
386
assert (addr != NULL , " invariant" );
377
387
378
- StackValue* const sv = create_stack_value_from_oop_map (reg_map, oop_mask, i, addr);
388
+ StackValue* const sv = create_stack_value_from_oop_map (oop_mask, i, addr, chunk );
379
389
assert (sv != NULL , " sanity check" );
380
390
381
391
result->add (sv);
@@ -387,27 +397,27 @@ static void stack_expressions(StackValueCollection* result,
387
397
int max_locals,
388
398
const InterpreterOopMap& oop_mask,
389
399
const frame& fr,
390
- const RegisterMap* reg_map ) {
400
+ const stackChunkOop chunk ) {
391
401
392
402
assert (result != NULL , " invariant" );
393
403
394
404
for (int i = 0 ; i < length; ++i) {
395
405
const intptr_t * addr;
396
- if (!reg_map-> in_cont () ) {
406
+ if (chunk == NULL ) {
397
407
addr = fr.interpreter_frame_expression_stack_at (i);
398
408
assert (addr != NULL , " invariant" );
399
409
if (!is_in_expression_stack (fr, addr)) {
400
410
// Need to ensure no bogus escapes.
401
411
addr = NULL ;
402
412
}
403
413
} else {
404
- addr = reg_map-> stack_chunk () ->interpreter_frame_expression_stack_at (fr, i);
414
+ addr = chunk ->interpreter_frame_expression_stack_at (fr, i);
405
415
}
406
416
407
- StackValue* const sv = create_stack_value_from_oop_map (reg_map,
408
- oop_mask,
417
+ StackValue* const sv = create_stack_value_from_oop_map (oop_mask,
409
418
i + max_locals,
410
- addr);
419
+ addr,
420
+ chunk);
411
421
assert (sv != NULL , " sanity check" );
412
422
413
423
result->add (sv);
@@ -456,9 +466,9 @@ StackValueCollection* interpretedVFrame::stack_data(bool expressions) const {
456
466
}
457
467
458
468
if (expressions) {
459
- stack_expressions (result, length, max_locals, oop_mask, fr (), register_map ());
469
+ stack_expressions (result, length, max_locals, oop_mask, fr (), stack_chunk ());
460
470
} else {
461
- stack_locals (result, length, oop_mask, fr (), register_map ());
471
+ stack_locals (result, length, oop_mask, fr (), stack_chunk ());
462
472
}
463
473
464
474
assert (length == result->size (), " invariant" );
0 commit comments