Skip to content

Commit 4f8ac69

Browse files
author
duke
committedSep 15, 2021
Automatic merge of jdk:master into master
2 parents ebcbcd3 + 8290424 commit 4f8ac69

File tree

8 files changed

+0
-10
lines changed

8 files changed

+0
-10
lines changed
 

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

-1
Original file line numberDiff line numberDiff line change
@@ -814,7 +814,6 @@ frame::frame(void* sp, void* fp, void* pc) {
814814
init((intptr_t*)sp, (intptr_t*)fp, (address)pc);
815815
}
816816

817-
void frame::pd_ps() {}
818817
#endif
819818

820819
void JavaFrameAnchor::make_walkable(JavaThread* thread) {

‎src/hotspot/cpu/arm/frame_arm.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -574,7 +574,6 @@ frame::frame(void* sp, void* fp, void* pc) {
574574
init((intptr_t*)sp, (intptr_t*)fp, (address)pc);
575575
}
576576

577-
void frame::pd_ps() {}
578577
#endif
579578

580579
intptr_t *frame::initial_deoptimization_info() {

‎src/hotspot/cpu/ppc/frame_ppc.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -387,5 +387,4 @@ frame::frame(void* sp, void* fp, void* pc) : _sp((intptr_t*)sp), _unextended_sp(
387387
find_codeblob_and_set_pc_and_deopt_state((address)pc); // also sets _fp and adjusts _unextended_sp
388388
}
389389

390-
void frame::pd_ps() {}
391390
#endif

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

-2
Original file line numberDiff line numberDiff line change
@@ -628,8 +628,6 @@ void frame::describe_pd(FrameValues& values, int frame_no) {
628628
}
629629
}
630630

631-
632-
void frame::pd_ps() {}
633631
#endif // !PRODUCT
634632

635633
intptr_t *frame::initial_deoptimization_info() {

‎src/hotspot/cpu/x86/frame_x86.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -718,7 +718,6 @@ frame::frame(void* sp, void* fp, void* pc) {
718718
init((intptr_t*)sp, (intptr_t*)fp, (address)pc);
719719
}
720720

721-
void frame::pd_ps() {}
722721
#endif
723722

724723
void JavaFrameAnchor::make_walkable(JavaThread* thread) {

‎src/hotspot/cpu/zero/frame_zero.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -396,5 +396,4 @@ frame::frame(void* sp, void* fp, void* pc) {
396396
Unimplemented();
397397
}
398398

399-
void frame::pd_ps() {}
400399
#endif

‎src/hotspot/share/runtime/frame.hpp

-2
Original file line numberDiff line numberDiff line change
@@ -400,8 +400,6 @@ class frame {
400400
// Usage:
401401
// assert(frame::verify_return_pc(return_address), "must be a return pc");
402402

403-
NOT_PRODUCT(void pd_ps();) // platform dependent frame printing
404-
405403
#include CPU_HEADER(frame)
406404

407405
};

‎src/hotspot/share/utilities/debug.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,6 @@ extern "C" JNIEXPORT void ps() { // print stack
511511
f = f.sender(&reg_map);
512512
tty->print("(guessing starting frame id=" PTR_FORMAT " based on current fp)\n", p2i(f.id()));
513513
p->trace_stack_from(vframe::new_vframe(&f, &reg_map, p));
514-
f.pd_ps();
515514
#endif
516515
}
517516
}

0 commit comments

Comments
 (0)
Failed to load comments.