Skip to content

Commit b709b3f

Browse files
committedMar 24, 2022
Remove more templates
1 parent b83c1c8 commit b709b3f

File tree

3 files changed

+22
-37
lines changed

3 files changed

+22
-37
lines changed
 

‎src/hotspot/cpu/aarch64/continuation_aarch64.inline.hpp

-2
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,6 @@ inline void FreezeBase::set_top_frame_metadata_pd(const frame& hf) {
216216
: (intptr_t)hf.fp();
217217
}
218218

219-
template <typename FKind>
220219
inline void FreezeBase::patch_pd(frame& hf, const frame& caller) {
221220
if (caller.is_interpreted_frame()) {
222221
assert (!caller.is_empty(), "");
@@ -306,7 +305,6 @@ inline intptr_t* ThawBase::align(const frame& hf, intptr_t* vsp, frame& caller,
306305
return vsp;
307306
}
308307

309-
template<typename FKind>
310308
inline void ThawBase::patch_pd(frame& f, const frame& caller) {
311309
patch_callee_link(caller, caller.fp());
312310
}

‎src/hotspot/cpu/x86/continuation_x86.inline.hpp

-2
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,6 @@ inline void FreezeBase::set_top_frame_metadata_pd(const frame& hf) {
211211
: (intptr_t)hf.fp();
212212
}
213213

214-
template <typename FKind>
215214
inline void FreezeBase::patch_pd(frame& hf, const frame& caller) {
216215
if (caller.is_interpreted_frame()) {
217216
assert(!caller.is_empty(), "");
@@ -294,7 +293,6 @@ inline intptr_t* ThawBase::align(const frame& hf, intptr_t* vsp, frame& caller,
294293
return vsp;
295294
}
296295

297-
template<typename FKind>
298296
inline void ThawBase::patch_pd(frame& f, const frame& caller) {
299297
patch_callee_link(caller, caller.fp());
300298
}

‎src/hotspot/share/runtime/continuation.cpp

+22-33
Original file line numberDiff line numberDiff line change
@@ -1057,9 +1057,7 @@ class FreezeBase {
10571057
inline freeze_result recurse_freeze_java_frame(const frame& f, frame& caller, int fsize, int argsize);
10581058
inline void before_freeze_java_frame(const frame& f, const frame& caller, int fsize, int argsize, bool bottom);
10591059
inline void after_freeze_java_frame(const frame& hf, bool bottom);
1060-
template<typename FKind> // the callee's type
10611060
freeze_result finalize_freeze(const frame& callee, frame& caller, int argsize);
1062-
template <typename FKind>
10631061
void patch(const frame& f, frame& hf, const frame& caller, bool bottom);
10641062
NOINLINE freeze_result recurse_freeze_interpreted_frame(frame& f, frame& caller, int callee_argsize, bool callee_interpreted);
10651063
freeze_result recurse_freeze_compiled_frame(frame& f, frame& caller, int callee_argsize, bool callee_interpreted);
@@ -1068,10 +1066,11 @@ class FreezeBase {
10681066

10691067
inline bool stack_overflow();
10701068

1069+
static frame sender(const frame& f) { return f.is_interpreted_frame() ? sender<Interpreted>(f): sender<NonInterpretedUnknown>(f); }
10711070
template<typename FKind> static inline frame sender(const frame& f);
10721071
template<typename FKind> frame new_hframe(frame& f, frame& caller);
10731072
inline void set_top_frame_metadata_pd(const frame& hf);
1074-
template <typename FKind> inline void patch_pd(frame& callee, const frame& caller);
1073+
inline void patch_pd(frame& callee, const frame& caller);
10751074
static inline void relativize_interpreted_frame_metadata(const frame& f, const frame& hf);
10761075

10771076
protected:
@@ -1464,7 +1463,7 @@ inline freeze_result FreezeBase::recurse_freeze_java_frame(const frame& f, frame
14641463
NOT_PRODUCT(_frames++;)
14651464

14661465
if (FKind::frame_bottom(f) >= _bottom_address - 1) { // sometimes there's space after enterSpecial
1467-
return finalize_freeze<FKind>(f, caller, argsize); // recursion end
1466+
return finalize_freeze(f, caller, argsize); // recursion end
14681467
} else {
14691468
frame senderf = sender<FKind>(f);
14701469
assert(FKind::interpreted || senderf.sp() == senderf.unextended_sp(), "");
@@ -1498,9 +1497,8 @@ inline void FreezeBase::after_freeze_java_frame(const frame& hf, bool bottom) {
14981497
}
14991498
}
15001499

1501-
template<typename FKind> // the callee's type
15021500
freeze_result FreezeBase::finalize_freeze(const frame& callee, frame& caller, int argsize) {
1503-
assert(FKind::interpreted || argsize == _cont.argsize(), "argsize: %d cont.argsize: %d", argsize, _cont.argsize());
1501+
assert(callee.is_interpreted_frame() || argsize == _cont.argsize(), "argsize: %d cont.argsize: %d", argsize, _cont.argsize());
15041502
log_develop_trace(jvmcont)("bottom: " INTPTR_FORMAT " count %d size: %d argsize: %d",
15051503
p2i(_bottom_address), _frames, _size << LogBytesPerWord, argsize);
15061504

@@ -1528,7 +1526,7 @@ freeze_result FreezeBase::finalize_freeze(const frame& callee, frame& caller, in
15281526
StackChunkFrameStream<chunk_frames::MIXED> last(chunk);
15291527
unextended_sp += last.unextended_sp() - last.sp(); // can be negative (-1), often with lambda forms
15301528
}
1531-
if (FKind::interpreted == top_interpreted) {
1529+
if (callee.is_interpreted_frame() == top_interpreted) {
15321530
overlap = argsize;
15331531
}
15341532
}
@@ -1625,37 +1623,33 @@ freeze_result FreezeBase::finalize_freeze(const frame& callee, frame& caller, in
16251623

16261624
assert(!empty || Continuation::is_continuation_entry_frame(callee, nullptr), "");
16271625

1628-
frame entry = sender<FKind>(callee);
1626+
frame entry = sender(callee);
16291627

16301628
assert(Continuation::is_return_barrier_entry(entry.pc()) || Continuation::is_continuation_enterSpecial(entry), "");
1631-
assert(FKind::interpreted || entry.sp() == entry.unextended_sp(), "");
1629+
assert(callee.is_interpreted_frame() || entry.sp() == entry.unextended_sp(), "");
16321630
#endif
16331631

16341632
return freeze_ok_bottom;
16351633
}
16361634

1637-
template <typename FKind>
16381635
void FreezeBase::patch(const frame& f, frame& hf, const frame& caller, bool bottom) {
1639-
assert(FKind::is_instance(f), "");
1640-
16411636
if (bottom) {
16421637
address last_pc = caller.pc();
16431638
assert((last_pc == nullptr) == _cont.tail()->is_empty(), "");
1644-
FKind::patch_pc(caller, last_pc);
1639+
Frame::patch_pc(caller, last_pc);
16451640
} else {
16461641
assert(!caller.is_empty(), "");
16471642
}
16481643

1649-
patch_pd<FKind>(hf, caller);
1644+
patch_pd(hf, caller);
16501645

1651-
if (FKind::interpreted) {
1646+
if (f.is_interpreted_frame()) {
16521647
assert(hf.is_heap_frame(), "should be");
16531648
Interpreted::patch_sender_sp(hf, caller.unextended_sp());
16541649
}
16551650

16561651
#ifdef ASSERT
1657-
if (!FKind::interpreted && !FKind::stub) {
1658-
assert(hf.get_cb()->is_compiled(), "");
1652+
if (hf.is_compiled_frame()) {
16591653
if (f.is_deoptimized_frame()) { // TODO DEOPT: long term solution: unroll on freeze and patch pc
16601654
log_develop_trace(jvmcont)("Freezing deoptimized frame");
16611655
assert(f.cb()->as_compiled_method()->is_deopt_pc(f.raw_pc()), "");
@@ -1721,7 +1715,7 @@ NOINLINE freeze_result FreezeBase::recurse_freeze_interpreted_frame(frame& f, fr
17211715

17221716
relativize_interpreted_frame_metadata(f, hf);
17231717

1724-
patch<Interpreted>(f, hf, caller, bottom);
1718+
patch(f, hf, caller, bottom);
17251719

17261720
CONT_JFR_ONLY(_cont.record_interpreted_frame();)
17271721
DEBUG_ONLY(after_freeze_java_frame(hf, bottom);)
@@ -1763,7 +1757,7 @@ freeze_result FreezeBase::recurse_freeze_compiled_frame(frame& f, frame& caller,
17631757
_align_size += ContinuationHelper::align_wiggle; // See Thaw::align
17641758
}
17651759

1766-
patch<Compiled>(f, hf, caller, bottom);
1760+
patch(f, hf, caller, bottom);
17671761

17681762
assert(bottom || Interpreter::contains(Compiled::real_pc(caller)) == caller.is_interpreted_frame(), "");
17691763

@@ -2319,14 +2313,11 @@ class ThawBase {
23192313

23202314
private:
23212315
void thaw(const frame& hf, frame& caller, int num_frames, bool top);
2322-
template<typename FKind>
2323-
bool recurse_thaw_java_frame(frame& caller, int num_frames);
2324-
template<typename FKind>
2316+
template<typename FKind> bool recurse_thaw_java_frame(frame& caller, int num_frames);
23252317
void finalize_thaw(frame& entry, int argsize);
23262318

23272319
inline void before_thaw_java_frame(const frame& hf, const frame& caller, bool bottom, int num_frame);
23282320
inline void after_thaw_java_frame(const frame& f, bool bottom);
2329-
template<typename FKind>
23302321
inline void patch(frame& f, const frame& caller, bool bottom);
23312322
void clear_bitmap_bits(intptr_t* start, int range);
23322323

@@ -2338,7 +2329,7 @@ class ThawBase {
23382329
void push_return_frame(frame& f);
23392330
inline frame new_entry_frame();
23402331
template<typename FKind> frame new_frame(const frame& hf, frame& caller, bool bottom);
2341-
template<typename FKind> inline void patch_pd(frame& f, const frame& sender);
2332+
inline void patch_pd(frame& f, const frame& sender);
23422333
inline intptr_t* align(const frame& hf, intptr_t* vsp, frame& caller, bool bottom);
23432334

23442335
intptr_t* push_interpreter_return_frame(intptr_t* sp);
@@ -2628,15 +2619,14 @@ bool ThawBase::recurse_thaw_java_frame(frame& caller, int num_frames) {
26282619
}
26292620

26302621
if (num_frames == 1 || _stream.is_done()) { // end recursion
2631-
finalize_thaw<FKind>(caller, argsize);
2622+
finalize_thaw(caller, FKind::interpreted ? 0 : argsize);
26322623
return true; // bottom
26332624
} else { // recurse
26342625
thaw(_stream.to_frame(), caller, num_frames - 1, false);
26352626
return false;
26362627
}
26372628
}
26382629

2639-
template<typename FKind>
26402630
void ThawBase::finalize_thaw(frame& entry, int argsize) {
26412631
stackChunkOop chunk = _cont.tail();
26422632

@@ -2655,7 +2645,7 @@ void ThawBase::finalize_thaw(frame& entry, int argsize) {
26552645
int delta = _stream.unextended_sp() - _top_unextended_sp;
26562646
chunk->set_max_size(chunk->max_size() - delta);
26572647

2658-
_cont.set_argsize(FKind::interpreted ? 0 : argsize);
2648+
_cont.set_argsize(argsize);
26592649
entry = new_entry_frame();
26602650

26612651
assert(entry.sp() == _cont.entrySP(), "");
@@ -2683,16 +2673,15 @@ inline void ThawBase::after_thaw_java_frame(const frame& f, bool bottom) {
26832673
}
26842674
}
26852675

2686-
template<typename FKind>
26872676
inline void ThawBase::patch(frame& f, const frame& caller, bool bottom) {
26882677
assert(!bottom || caller.fp() == _cont.entryFP(), "");
26892678
if (bottom) {
2690-
FKind::patch_pc(caller, _cont.is_empty() ? caller.raw_pc() : StubRoutines::cont_returnBarrier());
2679+
Frame::patch_pc(caller, _cont.is_empty() ? caller.raw_pc() : StubRoutines::cont_returnBarrier());
26912680
}
26922681

2693-
patch_pd<FKind>(f, caller); // TODO: reevaluate if and when this is necessary -only bottom & interpreted caller?
2682+
patch_pd(f, caller); // TODO: reevaluate if and when this is necessary -only bottom & interpreted caller?
26942683

2695-
if (FKind::interpreted) {
2684+
if (f.is_interpreted_frame()) {
26962685
Interpreted::patch_sender_sp(f, caller.unextended_sp());
26972686
}
26982687

@@ -2744,7 +2733,7 @@ NOINLINE void ThawBase::recurse_thaw_interpreted_frame(const frame& hf, frame& c
27442733

27452734
set_interpreter_frame_bottom(f, frame_bottom); // the copy overwrites the metadata
27462735
derelativize_interpreted_frame_metadata(hf, f);
2747-
patch<Interpreted>(f, caller, bottom);
2736+
patch(f, caller, bottom);
27482737

27492738
#ifdef ASSERT
27502739
LogTarget(Trace, jvmcont) lt;
@@ -2808,7 +2797,7 @@ void ThawBase::recurse_thaw_compiled_frame(const frame& hf, frame& caller, int n
28082797

28092798
copy_from_chunk(from, to, sz);
28102799

2811-
patch<Compiled>(f, caller, bottom);
2800+
patch(f, caller, bottom);
28122801

28132802
if (f.cb()->is_nmethod()) {
28142803
f.cb()->as_nmethod()->run_nmethod_entry_barrier();

0 commit comments

Comments
 (0)
Please sign in to comment.