Skip to content

Commit f9d1b5e

Browse files
committedSep 14, 2020
ZGC: Concurrent execution stack processing
1 parent 49b220f commit f9d1b5e

File tree

133 files changed

+2288
-519
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

133 files changed

+2288
-519
lines changed
 

‎src/hotspot/cpu/aarch64/aarch64.ad

+11-4
Original file line numberDiff line numberDiff line change
@@ -1958,9 +1958,10 @@ void MachEpilogNode::format(PhaseRegAlloc *ra_, outputStream *st) const {
19581958
}
19591959

19601960
if (do_polling() && C->is_method_compilation()) {
1961-
st->print("# touch polling page\n\t");
1962-
st->print("ldr rscratch1, [rthread],#polling_page_offset\n\t");
1963-
st->print("ldr zr, [rscratch1]");
1961+
st->print("# test polling word\n\t");
1962+
st->print("ldr rscratch1, [rthread],#%d\n\t", in_bytes(JavaThread::polling_word_offset()));
1963+
st->print("cmp sp, rscratch1\n\t");
1964+
st->print("bhi #slow_path");
19641965
}
19651966
}
19661967
#endif
@@ -1977,7 +1978,13 @@ void MachEpilogNode::emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const {
19771978
}
19781979

19791980
if (do_polling() && C->is_method_compilation()) {
1980-
__ fetch_and_read_polling_page(rscratch1, relocInfo::poll_return_type);
1981+
Label dummy_label;
1982+
Label* code_stub = &dummy_label;
1983+
if (!C->output()->in_scratch_emit_size()) {
1984+
code_stub = &C->output()->safepoint_poll_table()->add_safepoint(_masm);
1985+
}
1986+
__ relocate(relocInfo::poll_return_type);
1987+
__ safepoint_poll(*code_stub, true /* at_return */, false /* acquire */, true /* in_nmethod */);
19811988
}
19821989
}
19831990

‎src/hotspot/cpu/aarch64/c1_CodeStubs_aarch64.cpp

+13
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,19 @@
3838

3939
#define __ ce->masm()->
4040

41+
void C1SafepointPollStub::emit_code(LIR_Assembler* ce) {
42+
__ bind(_entry);
43+
InternalAddress safepoint_pc(ce->masm()->pc() - ce->masm()->offset() + safepoint_offset());
44+
__ lea(rscratch1, safepoint_pc);
45+
__ str(rscratch1, Address(rthread, JavaThread::saved_exception_pc_offset()));
46+
47+
assert(SharedRuntime::polling_page_return_handler_blob() != NULL,
48+
"polling page return stub not created yet");
49+
address stub = SharedRuntime::polling_page_return_handler_blob()->entry_point();
50+
51+
__ far_jump(RuntimeAddress(stub));
52+
}
53+
4154
void CounterOverflowStub::emit_code(LIR_Assembler* ce) {
4255
__ bind(_entry);
4356
Metadata *m = _method->as_constant_ptr()->as_metadata();

0 commit comments

Comments
 (0)