Skip to content

Commit 2a6ec88

Browse files
committedJul 6, 2022
Merge
2 parents 35387d5 + 0526402 commit 2a6ec88

File tree

24 files changed

+824
-183
lines changed

24 files changed

+824
-183
lines changed
 

‎src/hotspot/cpu/s390/frame_s390.cpp

+22-11
Original file line numberDiff line numberDiff line change
@@ -230,30 +230,41 @@ frame frame::sender_for_interpreter_frame(RegisterMap *map) const {
230230
return frame(sender_sp(), sender_pc(), (intptr_t*)(ijava_state()->sender_sp));
231231
}
232232

233-
intptr_t* frame::compiled_sender_sp(CodeBlob* cb) const {
234-
return sender_sp();
235-
}
236-
237-
address* frame::compiled_sender_pc_addr(CodeBlob* cb) const {
238-
return sender_pc_addr();
239-
}
240-
241233
void frame::patch_pc(Thread* thread, address pc) {
242234
assert(_cb == CodeCache::find_blob(pc), "unexpected pc");
235+
address* pc_addr = (address*)&(own_abi()->return_pc);
236+
243237
if (TracePcPatching) {
244238
tty->print_cr("patch_pc at address " PTR_FORMAT " [" PTR_FORMAT " -> " PTR_FORMAT "] ",
245239
p2i(&((address*) _sp)[-1]), p2i(((address*) _sp)[-1]), p2i(pc));
246240
}
241+
assert(!Continuation::is_return_barrier_entry(*pc_addr), "return barrier");
242+
assert(_pc == *pc_addr || pc == *pc_addr || 0 == *pc_addr,
243+
"must be (pc: " INTPTR_FORMAT " _pc: " INTPTR_FORMAT " pc_addr: " INTPTR_FORMAT
244+
" *pc_addr: " INTPTR_FORMAT " sp: " INTPTR_FORMAT ")",
245+
p2i(pc), p2i(_pc), p2i(pc_addr), p2i(*pc_addr), p2i(sp()));
246+
DEBUG_ONLY(address old_pc = _pc;)
247247
own_abi()->return_pc = (uint64_t)pc;
248+
_pc = pc; // must be set before call to get_deopt_original_pc
248249
address original_pc = CompiledMethod::get_deopt_original_pc(this);
249250
if (original_pc != NULL) {
250-
assert(original_pc == _pc, "expected original to be stored before patching");
251+
// assert(original_pc == _pc, "expected original to be stored before patching");
251252
_deopt_state = is_deoptimized;
252-
// Leave _pc as is.
253+
_pc = original_pc;
253254
} else {
254255
_deopt_state = not_deoptimized;
255-
_pc = pc;
256256
}
257+
assert(!is_compiled_frame() || !_cb->as_compiled_method()->is_deopt_entry(_pc), "must be");
258+
259+
#ifdef ASSERT
260+
{
261+
frame f(this->sp(), pc, this->unextended_sp());
262+
assert(f.is_deoptimized_frame() == this->is_deoptimized_frame() && f.pc() == this->pc() && f.raw_pc() == this->raw_pc(),
263+
"must be (f.is_deoptimized_frame(): %d this->is_deoptimized_frame(): %d "
264+
"f.pc(): " INTPTR_FORMAT " this->pc(): " INTPTR_FORMAT " f.raw_pc(): " INTPTR_FORMAT " this->raw_pc(): " INTPTR_FORMAT ")",
265+
f.is_deoptimized_frame(), this->is_deoptimized_frame(), p2i(f.pc()), p2i(this->pc()), p2i(f.raw_pc()), p2i(this->raw_pc()));
266+
}
267+
#endif
257268
}
258269

259270
bool frame::is_interpreted_frame_valid(JavaThread* thread) const {

‎src/hotspot/cpu/s390/frame_s390.hpp

+3-7
Original file line numberDiff line numberDiff line change
@@ -460,15 +460,15 @@
460460

461461
private:
462462

463-
inline void find_codeblob_and_set_pc_and_deopt_state(address pc);
463+
// Initialize frame members (_pc and _sp must be given)
464+
inline void setup();
464465
const ImmutableOopMap* get_oop_map() const;
465466

466467
// Constructors
467468

468469
public:
469470
// To be used, if sp was not extended to match callee's calling convention.
470-
inline frame(intptr_t* sp, address pc);
471-
inline frame(intptr_t* sp, address pc, intptr_t* unextended_sp);
471+
inline frame(intptr_t* sp, address pc, intptr_t* unextended_sp = nullptr, intptr_t* fp = nullptr, CodeBlob* cb = nullptr);
472472

473473
// Access frame via stack pointer.
474474
inline intptr_t* sp_addr_at(int index) const { return &sp()[index]; }
@@ -479,10 +479,6 @@
479479
inline z_abi_160* callers_abi() const { return (z_abi_160*) fp(); }
480480

481481
private:
482-
483-
intptr_t* compiled_sender_sp(CodeBlob* cb) const;
484-
address* compiled_sender_pc_addr(CodeBlob* cb) const;
485-
486482
address* sender_pc_addr(void) const;
487483

488484
public:

‎src/hotspot/cpu/s390/frame_s390.inline.hpp

+58-52
Original file line numberDiff line numberDiff line change
@@ -28,71 +28,71 @@
2828

2929
#include "code/codeCache.hpp"
3030
#include "code/vmreg.inline.hpp"
31+
#include "runtime/sharedRuntime.hpp"
3132
#include "utilities/align.hpp"
3233

3334
// Inline functions for z/Architecture frames:
3435

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+
}
3746

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+
}
4054

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));
4258

4359
address original_pc = CompiledMethod::get_deopt_original_pc(this);
44-
if (original_pc != NULL) {
60+
if (original_pc != nullptr) {
4561
_pc = original_pc;
4662
_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)");
4765
} 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+
}
4971
}
5072

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");
5274
}
5375

5476
// Constructors
5577

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) {}
7081

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();
7786
}
7887

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) {}
8689

8790
// Generic constructor. Used by pns() in debug.cpp only
8891
#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();
9696
}
9797
#endif
9898

@@ -304,7 +304,16 @@ inline intptr_t* frame::real_fp() const {
304304
}
305305

306306
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+
}
308317
return NULL;
309318
}
310319

@@ -355,32 +364,29 @@ inline frame frame::sender(RegisterMap* map) const {
355364
return sender_for_interpreter_frame(map);
356365
}
357366
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);
359368

360369
// Must be native-compiled frame, i.e. the marshaling code for native
361370
// methods that exists in the core system.
362371
return frame(sender_sp(), sender_pc());
363372
}
364373

365374
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");
368376

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();
371379

372380
// Now adjust the map.
373-
374-
// Get the rest.
375381
if (map->update_map()) {
376382
// Tell GC to use argument oopmaps for some runtime stubs that need it.
377383
map->set_include_argument_oops(_cb->caller_must_gc_arguments(map->thread()));
378-
if (_cb->oop_maps() != NULL) {
384+
if (_cb->oop_maps() != nullptr) {
379385
OopMapSet::update_register_map(this, map);
380386
}
381387
}
382388

383-
return caller;
389+
return frame(sender_sp, sender_pc);
384390
}
385391

386392
template <typename RegisterMapT>

‎src/hotspot/cpu/s390/nativeInst_s390.hpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -657,13 +657,13 @@ class NativeGeneralJump: public NativeInstruction {
657657
class NativePostCallNop: public NativeInstruction {
658658
public:
659659
bool check() const { Unimplemented(); return false; }
660-
int displacement() const { Unimplemented(); return 0; }
660+
int displacement() const { return 0; }
661661
void patch(jint diff) { Unimplemented(); }
662662
void make_deopt() { Unimplemented(); }
663663
};
664664

665665
inline NativePostCallNop* nativePostCallNop_at(address address) {
666-
Unimplemented();
666+
// Unimplemented();
667667
return NULL;
668668
}
669669

@@ -675,7 +675,7 @@ class NativeDeoptInstruction: public NativeInstruction {
675675
void verify() { Unimplemented(); }
676676

677677
static bool is_deopt_at(address instr) {
678-
Unimplemented();
678+
// Unimplemented();
679679
return false;
680680
}
681681

‎src/hotspot/cpu/s390/stubGenerator_s390.cpp

+59-5
Original file line numberDiff line numberDiff line change
@@ -2857,6 +2857,44 @@ class StubGenerator: public StubCodeGenerator {
28572857
return start;
28582858
}
28592859

2860+
RuntimeStub* generate_cont_doYield() {
2861+
if (!Continuations::enabled()) return nullptr;
2862+
Unimplemented();
2863+
return nullptr;
2864+
}
2865+
2866+
address generate_cont_thaw(bool return_barrier, bool exception) {
2867+
if (!Continuations::enabled()) return nullptr;
2868+
Unimplemented();
2869+
return nullptr;
2870+
}
2871+
2872+
address generate_cont_thaw() {
2873+
if (!Continuations::enabled()) return nullptr;
2874+
Unimplemented();
2875+
return nullptr;
2876+
}
2877+
2878+
address generate_cont_returnBarrier() {
2879+
if (!Continuations::enabled()) return nullptr;
2880+
Unimplemented();
2881+
return nullptr;
2882+
}
2883+
2884+
address generate_cont_returnBarrier_exception() {
2885+
if (!Continuations::enabled()) return nullptr;
2886+
Unimplemented();
2887+
return nullptr;
2888+
}
2889+
2890+
#if INCLUDE_JFR
2891+
RuntimeStub* generate_jfr_write_checkpoint() {
2892+
if (!Continuations::enabled()) return nullptr;
2893+
Unimplemented();
2894+
return nullptr;
2895+
}
2896+
#endif // INCLUD_JFR
2897+
28602898
void generate_initial() {
28612899
// Generates all stubs and initializes the entry points.
28622900

@@ -2895,6 +2933,20 @@ class StubGenerator: public StubCodeGenerator {
28952933
StubRoutines::zarch::_trot_table_addr = (address)StubRoutines::zarch::_trot_table;
28962934
}
28972935

2936+
void generate_phase1() {
2937+
if (!Continuations::enabled()) return;
2938+
2939+
// Continuation stubs:
2940+
StubRoutines::_cont_thaw = generate_cont_thaw();
2941+
StubRoutines::_cont_returnBarrier = generate_cont_returnBarrier();
2942+
StubRoutines::_cont_returnBarrierExc = generate_cont_returnBarrier_exception();
2943+
StubRoutines::_cont_doYield_stub = generate_cont_doYield();
2944+
StubRoutines::_cont_doYield = StubRoutines::_cont_doYield_stub == nullptr ? nullptr
2945+
: StubRoutines::_cont_doYield_stub->entry_point();
2946+
2947+
JFR_ONLY(StubRoutines::_jfr_write_checkpoint_stub = generate_jfr_write_checkpoint();)
2948+
JFR_ONLY(StubRoutines::_jfr_write_checkpoint = StubRoutines::_jfr_write_checkpoint_stub->entry_point();)
2949+
}
28982950

28992951
void generate_all() {
29002952
// Generates all stubs and initializes the entry points.
@@ -2971,12 +3023,14 @@ class StubGenerator: public StubCodeGenerator {
29713023
}
29723024

29733025
public:
2974-
StubGenerator(CodeBuffer* code, bool all) : StubCodeGenerator(code) {
2975-
_stub_count = !all ? 0x100 : 0x200;
2976-
if (all) {
2977-
generate_all();
2978-
} else {
3026+
StubGenerator(CodeBuffer* code, int phase) : StubCodeGenerator(code) {
3027+
_stub_count = (phase == 0) ? 0x100 : 0x200;
3028+
if (phase == 0) {
29793029
generate_initial();
3030+
} else if (phase == 1) {
3031+
generate_phase1(); // stubs that must be available for the interpreter
3032+
} else {
3033+
generate_all();
29803034
}
29813035
}
29823036

‎src/hotspot/cpu/s390/templateInterpreterGenerator_s390.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -483,6 +483,7 @@ address TemplateInterpreterGenerator::generate_abstract_entry(void) {
483483
}
484484

485485
address TemplateInterpreterGenerator::generate_Continuation_doYield_entry(void) {
486+
if (!Continuations::enabled()) return nullptr;
486487
Unimplemented();
487488
return NULL;
488489
}

0 commit comments

Comments
 (0)
Please sign in to comment.