|
28 | 28 |
|
29 | 29 | #include "code/codeCache.hpp"
|
30 | 30 | #include "code/vmreg.inline.hpp"
|
| 31 | +#include "runtime/sharedRuntime.hpp" |
31 | 32 | #include "utilities/align.hpp"
|
32 | 33 |
|
33 | 34 | // Inline functions for z/Architecture frames:
|
34 | 35 |
|
35 |
| -inline void frame::find_codeblob_and_set_pc_and_deopt_state(address pc) { |
36 |
| - assert(pc != NULL, "precondition: must have PC"); |
| 36 | +// Initialize frame members (_sp must be given) |
| 37 | +inline void frame::setup() { |
| 38 | + if (_pc == nullptr) { |
| 39 | + _pc = (address)own_abi()->return_pc; |
| 40 | + assert(_pc != nullptr, "must have PC"); |
| 41 | + } |
| 42 | + |
| 43 | + if (_cb == nullptr) { |
| 44 | + _cb = CodeCache::find_blob(_pc); |
| 45 | + } |
37 | 46 |
|
38 |
| - _cb = CodeCache::find_blob(pc); |
39 |
| - _pc = pc; // Must be set for get_deopt_original_pc(). |
| 47 | + if (_fp == nullptr) { |
| 48 | + _fp = (intptr_t*)own_abi()->callers_sp; |
| 49 | + } |
| 50 | + |
| 51 | + if (_unextended_sp == nullptr) { |
| 52 | + _unextended_sp = _sp; |
| 53 | + } |
40 | 54 |
|
41 |
| - _fp = (intptr_t *) own_abi()->callers_sp; |
| 55 | + // When thawing continuation frames the _unextended_sp passed to the constructor is not aligend |
| 56 | + assert(_on_heap || (is_aligned(_sp, alignment_in_bytes) && is_aligned(_fp, alignment_in_bytes)), |
| 57 | + "invalid alignment sp:" PTR_FORMAT " unextended_sp:" PTR_FORMAT " fp:" PTR_FORMAT, p2i(_sp), p2i(_unextended_sp), p2i(_fp)); |
42 | 58 |
|
43 | 59 | address original_pc = CompiledMethod::get_deopt_original_pc(this);
|
44 |
| - if (original_pc != NULL) { |
| 60 | + if (original_pc != nullptr) { |
45 | 61 | _pc = original_pc;
|
46 | 62 | _deopt_state = is_deoptimized;
|
| 63 | + assert(_cb == nullptr || _cb->as_compiled_method()->insts_contains_inclusive(_pc), |
| 64 | + "original PC must be in the main code section of the the compiled method (or must be immediately following it)"); |
47 | 65 | } else {
|
48 |
| - _deopt_state = not_deoptimized; |
| 66 | + if (_cb == SharedRuntime::deopt_blob()) { |
| 67 | + _deopt_state = is_deoptimized; |
| 68 | + } else { |
| 69 | + _deopt_state = not_deoptimized; |
| 70 | + } |
49 | 71 | }
|
50 | 72 |
|
51 |
| - assert(((uint64_t)_sp & 0x7) == 0, "SP must be 8-byte aligned"); |
| 73 | + // assert(_on_heap || is_aligned(_sp, frame::frame_alignment), "SP must be 8-byte aligned"); |
52 | 74 | }
|
53 | 75 |
|
54 | 76 | // Constructors
|
55 | 77 |
|
56 |
| -// Initialize all fields, _unextended_sp will be adjusted in find_codeblob_and_set_pc_and_deopt_state. |
57 |
| -inline frame::frame() : _sp(NULL), _pc(NULL), _cb(NULL), _deopt_state(unknown), _on_heap(false), |
58 |
| -#ifdef ASSERT |
59 |
| - _frame_index(-1), |
60 |
| -#endif |
61 |
| - _unextended_sp(NULL), _fp(NULL) {} |
62 |
| - |
63 |
| -inline frame::frame(intptr_t* sp) : _sp(sp), _on_heap(false), |
64 |
| -#ifdef ASSERT |
65 |
| - _frame_index(-1), |
66 |
| -#endif |
67 |
| - _unextended_sp(sp) { |
68 |
| - find_codeblob_and_set_pc_and_deopt_state((address)own_abi()->return_pc); |
69 |
| -} |
| 78 | +// Initialize all fields |
| 79 | +inline frame::frame() : _sp(nullptr), _pc(nullptr), _cb(nullptr), _oop_map(nullptr), _deopt_state(unknown), |
| 80 | + _on_heap(false), DEBUG_ONLY(_frame_index(-1) COMMA) _unextended_sp(nullptr), _fp(nullptr) {} |
70 | 81 |
|
71 |
| -inline frame::frame(intptr_t* sp, address pc) : _sp(sp), _on_heap(false), |
72 |
| -#ifdef ASSERT |
73 |
| - _frame_index(-1), |
74 |
| -#endif |
75 |
| - _unextended_sp(sp) { |
76 |
| - find_codeblob_and_set_pc_and_deopt_state(pc); // Also sets _fp and adjusts _unextended_sp. |
| 82 | +inline frame::frame(intptr_t* sp, address pc, intptr_t* unextended_sp, intptr_t* fp, CodeBlob* cb) |
| 83 | + : _sp(sp), _pc(pc), _cb(cb), _oop_map(nullptr), |
| 84 | + _on_heap(false), DEBUG_ONLY(_frame_index(-1) COMMA) _unextended_sp(unextended_sp), _fp(fp) { |
| 85 | + setup(); |
77 | 86 | }
|
78 | 87 |
|
79 |
| -inline frame::frame(intptr_t* sp, address pc, intptr_t* unextended_sp) : _sp(sp), _on_heap(false), |
80 |
| -#ifdef ASSERT |
81 |
| - _frame_index(-1), |
82 |
| -#endif |
83 |
| - _unextended_sp(unextended_sp) { |
84 |
| - find_codeblob_and_set_pc_and_deopt_state(pc); // Also sets _fp and adjusts _unextended_sp. |
85 |
| -} |
| 88 | +inline frame::frame(intptr_t* sp) : frame(sp, nullptr) {} |
86 | 89 |
|
87 | 90 | // Generic constructor. Used by pns() in debug.cpp only
|
88 | 91 | #ifndef PRODUCT
|
89 |
| -inline frame::frame(void* sp, void* pc, void* unextended_sp) : |
90 |
| - _sp((intptr_t*)sp), _pc(NULL), _cb(NULL), _on_heap(false), |
91 |
| -#ifdef ASSERT |
92 |
| - _frame_index(-1), |
93 |
| -#endif |
94 |
| - _unextended_sp((intptr_t*)unextended_sp) { |
95 |
| - find_codeblob_and_set_pc_and_deopt_state((address)pc); // Also sets _fp and adjusts _unextended_sp. |
| 92 | +inline frame::frame(void* sp, void* pc, void* unextended_sp) |
| 93 | + : _sp((intptr_t*)sp), _pc((address)pc), _cb(nullptr), _oop_map(nullptr), |
| 94 | + _on_heap(false), DEBUG_ONLY(_frame_index(-1) COMMA) _unextended_sp((intptr_t*)unextended_sp) { |
| 95 | + setup(); |
96 | 96 | }
|
97 | 97 | #endif
|
98 | 98 |
|
@@ -304,7 +304,16 @@ inline intptr_t* frame::real_fp() const {
|
304 | 304 | }
|
305 | 305 |
|
306 | 306 | inline const ImmutableOopMap* frame::get_oop_map() const {
|
307 |
| - Unimplemented(); |
| 307 | + if (_cb == NULL) return NULL; |
| 308 | + if (_cb->oop_maps() != NULL) { |
| 309 | + NativePostCallNop* nop = nativePostCallNop_at(_pc); |
| 310 | + if (nop != NULL && nop->displacement() != 0) { |
| 311 | + int slot = ((nop->displacement() >> 24) & 0xff); |
| 312 | + return _cb->oop_map_for_slot(slot, _pc); |
| 313 | + } |
| 314 | + const ImmutableOopMap* oop_map = OopMapSet::find_map(this); |
| 315 | + return oop_map; |
| 316 | + } |
308 | 317 | return NULL;
|
309 | 318 | }
|
310 | 319 |
|
@@ -355,32 +364,29 @@ inline frame frame::sender(RegisterMap* map) const {
|
355 | 364 | return sender_for_interpreter_frame(map);
|
356 | 365 | }
|
357 | 366 | assert(_cb == CodeCache::find_blob(pc()),"Must be the same");
|
358 |
| - if (_cb != NULL) return sender_for_compiled_frame(map); |
| 367 | + if (_cb != nullptr) return sender_for_compiled_frame(map); |
359 | 368 |
|
360 | 369 | // Must be native-compiled frame, i.e. the marshaling code for native
|
361 | 370 | // methods that exists in the core system.
|
362 | 371 | return frame(sender_sp(), sender_pc());
|
363 | 372 | }
|
364 | 373 |
|
365 | 374 | inline frame frame::sender_for_compiled_frame(RegisterMap *map) const {
|
366 |
| - assert(map != NULL, "map must be set"); |
367 |
| - // Frame owned by compiler. |
| 375 | + assert(map != nullptr, "map must be set"); |
368 | 376 |
|
369 |
| - address pc = *compiled_sender_pc_addr(_cb); |
370 |
| - frame caller(compiled_sender_sp(_cb), pc); |
| 377 | + intptr_t* sender_sp = this->sender_sp(); |
| 378 | + address sender_pc = this->sender_pc(); |
371 | 379 |
|
372 | 380 | // Now adjust the map.
|
373 |
| - |
374 |
| - // Get the rest. |
375 | 381 | if (map->update_map()) {
|
376 | 382 | // Tell GC to use argument oopmaps for some runtime stubs that need it.
|
377 | 383 | map->set_include_argument_oops(_cb->caller_must_gc_arguments(map->thread()));
|
378 |
| - if (_cb->oop_maps() != NULL) { |
| 384 | + if (_cb->oop_maps() != nullptr) { |
379 | 385 | OopMapSet::update_register_map(this, map);
|
380 | 386 | }
|
381 | 387 | }
|
382 | 388 |
|
383 |
| - return caller; |
| 389 | + return frame(sender_sp, sender_pc); |
384 | 390 | }
|
385 | 391 |
|
386 | 392 | template <typename RegisterMapT>
|
|
0 commit comments