Skip to content

Commit e77aed6

Browse files
committedNov 30, 2020
8256754: Deoptimization::revoke_for_object_deoptimization: stack processing start call is redundant
Reviewed-by: dlong, eosterlund
1 parent 738efea commit e77aed6

File tree

4 files changed

+21
-4
lines changed

4 files changed

+21
-4
lines changed
 

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

+2-4
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@
6363
#include "runtime/handles.inline.hpp"
6464
#include "runtime/interfaceSupport.inline.hpp"
6565
#include "runtime/jniHandles.inline.hpp"
66+
#include "runtime/keepStackGCProcessed.hpp"
6667
#include "runtime/objectMonitor.inline.hpp"
6768
#include "runtime/safepointVerifiers.hpp"
6869
#include "runtime/sharedRuntime.hpp"
@@ -1651,10 +1652,7 @@ void Deoptimization::revoke_for_object_deoptimization(JavaThread* deoptee_thread
16511652
return;
16521653
}
16531654
GrowableArray<Handle>* objects_to_revoke = new GrowableArray<Handle>();
1654-
if (deoptee_thread != thread) {
1655-
// Process stack of deoptee thread as we will access oops during object deoptimization.
1656-
StackWatermarkSet::start_processing(deoptee_thread, StackWatermarkKind::gc);
1657-
}
1655+
assert(KeepStackGCProcessedMark::stack_is_kept_gc_processed(deoptee_thread), "must be");
16581656
// Collect monitors but only those with eliminated locking.
16591657
get_monitors_from_stack(objects_to_revoke, deoptee_thread, fr, map, true);
16601658

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

+16
Original file line numberDiff line numberDiff line change
@@ -58,3 +58,19 @@ KeepStackGCProcessedMark::~KeepStackGCProcessedMark() {
5858
void KeepStackGCProcessedMark::finish_processing() {
5959
StackWatermarkSet::finish_processing(_jt, NULL /* context */, StackWatermarkKind::gc);
6060
}
61+
62+
#ifdef ASSERT
63+
bool KeepStackGCProcessedMark::stack_is_kept_gc_processed(JavaThread* jt) {
64+
if (!Thread::current()->is_Java_thread()) {
65+
assert(SafepointSynchronize::is_at_safepoint() && Thread::current()->is_VM_thread(),
66+
"must be either Java thread or VM thread in a safepoint");
67+
return true;
68+
}
69+
StackWatermark* our_watermark = StackWatermarkSet::get(JavaThread::current(), StackWatermarkKind::gc);
70+
if (our_watermark == nullptr) {
71+
return true;
72+
}
73+
StackWatermark* their_watermark = StackWatermarkSet::get(jt, StackWatermarkKind::gc);
74+
return our_watermark->linked_watermark() == their_watermark;
75+
}
76+
#endif // ASSERT

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

+2
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ class KeepStackGCProcessedMark : public StackObj {
4343
public:
4444
KeepStackGCProcessedMark(JavaThread* jt);
4545
~KeepStackGCProcessedMark();
46+
47+
static bool stack_is_kept_gc_processed(JavaThread* jt) NOT_DEBUG({ return true; }) ;
4648
};
4749

4850

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

+1
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ class StackWatermark : public CHeapObj<mtInternal> {
130130
void set_next(StackWatermark* n) { _next = n; }
131131

132132
void link_watermark(StackWatermark* watermark);
133+
DEBUG_ONLY(StackWatermark* linked_watermark() const { return _linked_watermark; })
133134

134135
uintptr_t watermark();
135136
uintptr_t last_processed();

0 commit comments

Comments
 (0)
Please sign in to comment.