Skip to content

Commit 9935440

Browse files
committedJul 23, 2021
Merge
2 parents a7d3012 + e3800e6 commit 9935440

File tree

20 files changed

+225
-90
lines changed

20 files changed

+225
-90
lines changed
 

‎src/hotspot/share/gc/z/c2/zBarrierSetC2.cpp

+12
Original file line numberDiff line numberDiff line change
@@ -296,6 +296,18 @@ void ZBarrierSetC2::clone_at_expansion(PhaseMacroExpand* phase, ArrayCopyNode* a
296296
Node* dest_offset = ac->in(ArrayCopyNode::DestPos);
297297
Node* length = ac->in(ArrayCopyNode::Length);
298298

299+
if (bt == T_OBJECT) {
300+
// BarrierSetC2::clone sets the offsets via BarrierSetC2::arraycopy_payload_base_offset
301+
// which 8-byte aligns them to allow for word size copies. Make sure the offsets point
302+
// to the first element in the array when cloning object arrays. Otherwise, load
303+
// barriers are applied to parts of the header.
304+
assert(src_offset == dest_offset, "should be equal");
305+
assert((src_offset->get_long() == arrayOopDesc::base_offset_in_bytes(T_OBJECT) && UseCompressedClassPointers) ||
306+
(src_offset->get_long() == arrayOopDesc::length_offset_in_bytes() && !UseCompressedClassPointers),
307+
"unexpected offset for object array clone");
308+
src_offset = phase->longcon(arrayOopDesc::base_offset_in_bytes(T_OBJECT));
309+
dest_offset = src_offset;
310+
}
299311
Node* payload_src = phase->basic_plus_adr(src, src_offset);
300312
Node* payload_dst = phase->basic_plus_adr(dest, dest_offset);
301313

‎src/hotspot/share/opto/macroArrayCopy.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -307,8 +307,8 @@ address PhaseMacroExpand::basictype2arraycopy(BasicType t,
307307
bool disjoint_bases,
308308
const char* &name,
309309
bool dest_uninitialized) {
310-
const TypeInt* src_offset_inttype = _igvn.find_int_type(src_offset);;
311-
const TypeInt* dest_offset_inttype = _igvn.find_int_type(dest_offset);;
310+
const TypeInt* src_offset_inttype = _igvn.find_int_type(src_offset);
311+
const TypeInt* dest_offset_inttype = _igvn.find_int_type(dest_offset);
312312

313313
bool aligned = false;
314314
bool disjoint = disjoint_bases;

‎src/hotspot/share/prims/whitebox.cpp

+27-1
Original file line numberDiff line numberDiff line change
@@ -2122,7 +2122,32 @@ WB_ENTRY(void, WB_AsyncHandshakeWalkStack(JNIEnv* env, jobject wb, jobject threa
21222122
}
21232123
WB_END
21242124

2125-
//Some convenience methods to deal with objects from java
2125+
static volatile int _emulated_lock = 0;
2126+
2127+
WB_ENTRY(void, WB_LockAndBlock(JNIEnv* env, jobject wb, jboolean suspender))
2128+
JavaThread* self = JavaThread::current();
2129+
2130+
{
2131+
// Before trying to acquire the lock transition into a safepoint safe state.
2132+
// Otherwise if either suspender or suspendee blocks for a safepoint
2133+
// in ~ThreadBlockInVM the other one could loop forever trying to acquire
2134+
// the lock without allowing the safepoint to progress.
2135+
ThreadBlockInVM tbivm(self);
2136+
2137+
// We will deadlock here if we are 'suspender' and 'suspendee'
2138+
// suspended in ~ThreadBlockInVM. This verifies we only suspend
2139+
// at the right place.
2140+
while (Atomic::cmpxchg(&_emulated_lock, 0, 1) != 0) {}
2141+
assert(_emulated_lock == 1, "Must be locked");
2142+
2143+
// Sleep much longer in suspendee to force situation where
2144+
// 'suspender' is waiting above to acquire lock.
2145+
os::naked_short_sleep(suspender ? 1 : 10);
2146+
}
2147+
Atomic::store(&_emulated_lock, 0);
2148+
WB_END
2149+
2150+
// Some convenience methods to deal with objects from java
21262151
int WhiteBox::offset_for_field(const char* field_name, oop object,
21272152
Symbol* signature_symbol) {
21282153
assert(field_name != NULL && strlen(field_name) > 0, "Field name not valid");
@@ -2613,6 +2638,7 @@ static JNINativeMethod methods[] = {
26132638
{CC"handshakeReadMonitors", CC"(Ljava/lang/Thread;)Z", (void*)&WB_HandshakeReadMonitors },
26142639
{CC"handshakeWalkStack", CC"(Ljava/lang/Thread;Z)I", (void*)&WB_HandshakeWalkStack },
26152640
{CC"asyncHandshakeWalkStack", CC"(Ljava/lang/Thread;)V", (void*)&WB_AsyncHandshakeWalkStack },
2641+
{CC"lockAndBlock", CC"(Z)V", (void*)&WB_LockAndBlock},
26162642
{CC"checkThreadObjOfTerminatingThread", CC"(Ljava/lang/Thread;)V", (void*)&WB_CheckThreadObjOfTerminatingThread },
26172643
{CC"verifyFrames", CC"(ZZ)V", (void*)&WB_VerifyFrames },
26182644
{CC"addCompilerDirective", CC"(Ljava/lang/String;)I",

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

+34-14
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ class HandshakeOperation : public CHeapObj<mtThread> {
7777
int32_t pending_threads() { return Atomic::load(&_pending_threads); }
7878
const char* name() { return _handshake_cl->name(); }
7979
bool is_async() { return _handshake_cl->is_async(); }
80+
bool is_suspend() { return _handshake_cl->is_suspend(); }
8081
};
8182

8283
class AsyncHandshakeOperation : public HandshakeOperation {
@@ -376,6 +377,7 @@ void Handshake::execute(HandshakeClosure* hs_cl, JavaThread* target) {
376377
// Check for pending handshakes to avoid possible deadlocks where our
377378
// target is trying to handshake us.
378379
if (SafepointMechanism::should_process(self)) {
380+
// Will not suspend here.
379381
ThreadBlockInVM tbivm(self);
380382
}
381383
hsy.process();
@@ -425,11 +427,19 @@ bool HandshakeState::operation_pending(HandshakeOperation* op) {
425427
return _queue.contains(mo);
426428
}
427429

428-
HandshakeOperation* HandshakeState::get_op_for_self() {
430+
static bool no_suspend_filter(HandshakeOperation* op) {
431+
return !op->is_suspend();
432+
}
433+
434+
HandshakeOperation* HandshakeState::get_op_for_self(bool allow_suspend) {
429435
assert(_handshakee == Thread::current(), "Must be called by self");
430436
assert(_lock.owned_by_self(), "Lock must be held");
431-
return _queue.peek();
432-
};
437+
if (allow_suspend) {
438+
return _queue.peek();
439+
} else {
440+
return _queue.peek(no_suspend_filter);
441+
}
442+
}
433443

434444
static bool non_self_queue_filter(HandshakeOperation* op) {
435445
return !op->is_async();
@@ -441,6 +451,11 @@ bool HandshakeState::have_non_self_executable_operation() {
441451
return _queue.contains(non_self_queue_filter);
442452
}
443453

454+
bool HandshakeState::has_a_non_suspend_operation() {
455+
MutexLocker ml(&_lock, Mutex::_no_safepoint_check_flag);
456+
return _queue.contains(no_suspend_filter);
457+
}
458+
444459
HandshakeOperation* HandshakeState::get_op() {
445460
assert(_handshakee != Thread::current(), "Must not be called by self");
446461
assert(_lock.owned_by_self(), "Lock must be held");
@@ -454,25 +469,22 @@ void HandshakeState::remove_op(HandshakeOperation* op) {
454469
assert(ret == op, "Popped op must match requested op");
455470
};
456471

457-
bool HandshakeState::process_by_self() {
472+
bool HandshakeState::process_by_self(bool allow_suspend) {
458473
assert(Thread::current() == _handshakee, "should call from _handshakee");
459474
assert(!_handshakee->is_terminated(), "should not be a terminated thread");
460475
assert(_handshakee->thread_state() != _thread_blocked, "should not be in a blocked state");
461476
assert(_handshakee->thread_state() != _thread_in_native, "should not be in native");
477+
462478
ThreadInVMForHandshake tivm(_handshakee);
463-
{
464-
// Handshakes cannot safely safepoint.
465-
// The exception to this rule is the asynchronous suspension handshake.
466-
// It by-passes the NSV by manually doing the transition.
467-
NoSafepointVerifier nsv;
468-
return process_self_inner();
469-
}
470-
}
479+
// Handshakes cannot safely safepoint.
480+
// The exception to this rule is the asynchronous suspension handshake.
481+
// It by-passes the NSV by manually doing the transition.
482+
NoSafepointVerifier nsv;
471483

472-
bool HandshakeState::process_self_inner() {
473484
while (has_operation()) {
474485
MutexLocker ml(&_lock, Mutex::_no_safepoint_check_flag);
475-
HandshakeOperation* op = get_op_for_self();
486+
487+
HandshakeOperation* op = get_op_for_self(allow_suspend);
476488
if (op != NULL) {
477489
assert(op->_target == NULL || op->_target == Thread::current(), "Wrong thread");
478490
bool async = op->is_async();
@@ -621,6 +633,7 @@ class ThreadSelfSuspensionHandshake : public AsyncHandshakeClosure {
621633
assert(current == Thread::current(), "Must be self executed.");
622634
current->handshake_state()->do_self_suspend();
623635
}
636+
virtual bool is_suspend() { return true; }
624637
};
625638

626639
bool HandshakeState::suspend_with_handshake() {
@@ -667,8 +680,15 @@ class SuspendThreadHandshake : public HandshakeClosure {
667680
};
668681

669682
bool HandshakeState::suspend() {
683+
JavaThread* self = JavaThread::current();
670684
SuspendThreadHandshake st;
671685
Handshake::execute(&st, _handshakee);
686+
if (_handshakee == self) {
687+
// If target is the current thread we need to call this to do the
688+
// actual suspend since Handshake::execute() above only installed
689+
// the asynchronous handshake.
690+
SafepointMechanism::process_if_requested(self);
691+
}
672692
return st.did_suspend();
673693
}
674694

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

+7-9
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ class HandshakeClosure : public ThreadClosure, public CHeapObj<mtThread> {
4949
virtual ~HandshakeClosure() {}
5050
const char* name() const { return _name; }
5151
virtual bool is_async() { return false; }
52+
virtual bool is_suspend() { return false; }
5253
virtual void do_thread(Thread* thread) = 0;
5354
};
5455

@@ -92,15 +93,8 @@ class HandshakeState {
9293
bool possibly_can_process_handshake();
9394
bool can_process_handshake();
9495

95-
// Returns false if the JavaThread finished all its handshake operations.
96-
// If the method returns true there is still potential work to be done,
97-
// but we need to check for a safepoint before.
98-
// (This is due to a suspension handshake which put the JavaThread in blocked
99-
// state so a safepoint may be in-progress.)
100-
bool process_self_inner();
101-
10296
bool have_non_self_executable_operation();
103-
HandshakeOperation* get_op_for_self();
97+
HandshakeOperation* get_op_for_self(bool allow_suspend);
10498
HandshakeOperation* get_op();
10599
void remove_op(HandshakeOperation* op);
106100

@@ -123,10 +117,14 @@ class HandshakeState {
123117
bool has_operation() {
124118
return !_queue.is_empty();
125119
}
120+
bool has_a_non_suspend_operation();
126121

127122
bool operation_pending(HandshakeOperation* op);
128123

129-
bool process_by_self();
124+
// If the method returns true we need to check for a possible safepoint.
125+
// This is due to a suspension handshake which put the JavaThread in blocked
126+
// state so a safepoint may be in-progress.
127+
bool process_by_self(bool allow_suspend);
130128

131129
enum ProcessResult {
132130
_no_operation = 0,

‎src/hotspot/share/runtime/interfaceSupport.inline.hpp

+6-4
Original file line numberDiff line numberDiff line change
@@ -243,8 +243,10 @@ template <typename PRE_PROC>
243243
class ThreadBlockInVMPreprocess : public ThreadStateTransition {
244244
private:
245245
PRE_PROC& _pr;
246+
bool _allow_suspend;
246247
public:
247-
ThreadBlockInVMPreprocess(JavaThread* thread, PRE_PROC& pr) : ThreadStateTransition(thread), _pr(pr) {
248+
ThreadBlockInVMPreprocess(JavaThread* thread, PRE_PROC& pr, bool allow_suspend = true)
249+
: ThreadStateTransition(thread), _pr(pr), _allow_suspend(allow_suspend) {
248250
assert(thread->thread_state() == _thread_in_vm, "coming from wrong thread state");
249251
thread->check_possible_safepoint();
250252
// Once we are blocked vm expects stack to be walkable
@@ -257,9 +259,9 @@ class ThreadBlockInVMPreprocess : public ThreadStateTransition {
257259
// Change to transition state and ensure it is seen by the VM thread.
258260
_thread->set_thread_state_fence(_thread_blocked_trans);
259261

260-
if (SafepointMechanism::should_process(_thread)) {
262+
if (SafepointMechanism::should_process(_thread, _allow_suspend)) {
261263
_pr(_thread);
262-
SafepointMechanism::process_if_requested(_thread);
264+
SafepointMechanism::process_if_requested(_thread, _allow_suspend);
263265
}
264266

265267
_thread->set_thread_state(_thread_in_vm);
@@ -289,7 +291,7 @@ class ThreadBlockInVM {
289291
ThreadBlockInVMPreprocess<InFlightMutexRelease> _tbivmpp;
290292
public:
291293
ThreadBlockInVM(JavaThread* thread, Mutex** in_flight_mutex_addr = NULL)
292-
: _ifmr(in_flight_mutex_addr), _tbivmpp(thread, _ifmr) {}
294+
: _ifmr(in_flight_mutex_addr), _tbivmpp(thread, _ifmr, /* allow_suspend= */ false) {}
293295
};
294296

295297
// Debug class instantiated in JRT_ENTRY macro.

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

+21-25
Original file line numberDiff line numberDiff line change
@@ -76,29 +76,6 @@ void SafepointMechanism::default_initialize() {
7676
}
7777
}
7878

79-
void SafepointMechanism::process(JavaThread *thread) {
80-
bool need_rechecking;
81-
do {
82-
if (global_poll()) {
83-
// Any load in ::block() must not pass the global poll load.
84-
// Otherwise we might load an old safepoint counter (for example).
85-
OrderAccess::loadload();
86-
SafepointSynchronize::block(thread);
87-
}
88-
89-
// The call to on_safepoint fixes the thread's oops and the first few frames.
90-
//
91-
// The call has been carefully placed here to cater to a few situations:
92-
// 1) After we exit from block after a global poll
93-
// 2) After a thread races with the disarming of the global poll and transitions from native/blocked
94-
// 3) Before the handshake code is run
95-
StackWatermarkSet::on_safepoint(thread);
96-
97-
need_rechecking = thread->handshake_state()->has_operation() && thread->handshake_state()->process_by_self();
98-
99-
} while (need_rechecking);
100-
}
101-
10279
uintptr_t SafepointMechanism::compute_poll_word(bool armed, uintptr_t stack_watermark) {
10380
if (armed) {
10481
log_debug(stackbarrier)("Computed armed for tid %d", Thread::current()->osthread()->thread_id());
@@ -134,12 +111,31 @@ void SafepointMechanism::update_poll_values(JavaThread* thread) {
134111
}
135112
}
136113

137-
void SafepointMechanism::process_if_requested_slow(JavaThread *thread) {
114+
void SafepointMechanism::process(JavaThread *thread, bool allow_suspend) {
138115
// Read global poll and has_handshake after local poll
139116
OrderAccess::loadload();
140117

141118
// local poll already checked, if used.
142-
process(thread);
119+
bool need_rechecking;
120+
do {
121+
if (global_poll()) {
122+
// Any load in ::block() must not pass the global poll load.
123+
// Otherwise we might load an old safepoint counter (for example).
124+
OrderAccess::loadload();
125+
SafepointSynchronize::block(thread);
126+
}
127+
128+
// The call to on_safepoint fixes the thread's oops and the first few frames.
129+
//
130+
// The call has been carefully placed here to cater to a few situations:
131+
// 1) After we exit from block after a global poll
132+
// 2) After a thread races with the disarming of the global poll and transitions from native/blocked
133+
// 3) Before the handshake code is run
134+
StackWatermarkSet::on_safepoint(thread);
135+
136+
need_rechecking = thread->handshake_state()->has_operation() && thread->handshake_state()->process_by_self(allow_suspend);
137+
} while (need_rechecking);
138+
143139
update_poll_values(thread);
144140
OrderAccess::cross_modify_fence();
145141
}

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

+6-5
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,9 @@ class SafepointMechanism : public AllStatic {
5050

5151
static inline bool global_poll();
5252

53-
static void process(JavaThread *thread);
54-
static void process_if_requested_slow(JavaThread *thread);
53+
static void process(JavaThread *thread, bool allow_suspend);
54+
55+
static inline bool should_process_no_suspend(JavaThread* thread);
5556

5657
static void default_initialize();
5758

@@ -60,7 +61,7 @@ class SafepointMechanism : public AllStatic {
6061
static uintptr_t compute_poll_word(bool armed, uintptr_t stack_watermark);
6162

6263
const static intptr_t _poll_bit = 1;
63-
public:
64+
public:
6465
static inline bool local_poll_armed(JavaThread* thread);
6566
static intptr_t poll_bit() { return _poll_bit; }
6667

@@ -79,10 +80,10 @@ class SafepointMechanism : public AllStatic {
7980
};
8081

8182
// Call this method to see if this thread should block for a safepoint or process handshake.
82-
static inline bool should_process(JavaThread* thread);
83+
static inline bool should_process(JavaThread* thread, bool allow_suspend = true);
8384

8485
// Processes a pending requested operation.
85-
static inline void process_if_requested(JavaThread* thread);
86+
static inline void process_if_requested(JavaThread* thread, bool allow_suspend = true);
8687
static inline void process_if_requested_with_exit_check(JavaThread* thread, bool check_asyncs);
8788
// Compute what the poll values should be and install them.
8889
static void update_poll_values(JavaThread* thread);

‎src/hotspot/share/runtime/safepointMechanism.inline.hpp

+23-4
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
#include "runtime/safepointMechanism.hpp"
2929

3030
#include "runtime/atomic.hpp"
31+
#include "runtime/handshake.hpp"
3132
#include "runtime/safepoint.hpp"
3233
#include "runtime/thread.inline.hpp"
3334

@@ -61,11 +62,29 @@ bool SafepointMechanism::global_poll() {
6162
return (SafepointSynchronize::_state != SafepointSynchronize::_not_synchronized);
6263
}
6364

64-
bool SafepointMechanism::should_process(JavaThread* thread) {
65-
return local_poll_armed(thread);
65+
bool SafepointMechanism::should_process_no_suspend(JavaThread* thread) {
66+
if (global_poll() || thread->handshake_state()->has_a_non_suspend_operation()) {
67+
return true;
68+
} else {
69+
// We ignore suspend requests if any and just check before returning if we need
70+
// to fix the thread's oops and first few frames due to a possible safepoint.
71+
StackWatermarkSet::on_safepoint(thread);
72+
update_poll_values(thread);
73+
OrderAccess::cross_modify_fence();
74+
return false;
75+
}
76+
}
77+
78+
bool SafepointMechanism::should_process(JavaThread* thread, bool allow_suspend) {
79+
if (!local_poll_armed(thread)) {
80+
return false;
81+
} else if (allow_suspend) {
82+
return true;
83+
}
84+
return should_process_no_suspend(thread);
6685
}
6786

68-
void SafepointMechanism::process_if_requested(JavaThread* thread) {
87+
void SafepointMechanism::process_if_requested(JavaThread* thread, bool allow_suspend) {
6988

7089
// Macos/aarch64 should be in the right state for safepoint (e.g.
7190
// deoptimization needs WXWrite). Crashes caused by the wrong state rarely
@@ -77,7 +96,7 @@ void SafepointMechanism::process_if_requested(JavaThread* thread) {
7796
#endif
7897

7998
if (local_poll_armed(thread)) {
80-
process_if_requested_slow(thread);
99+
process(thread, allow_suspend);
81100
}
82101
}
83102

‎src/java.base/share/classes/java/lang/annotation/Target.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,16 @@
2828
/**
2929
* Indicates the contexts in which an annotation interface is applicable. The
3030
* declaration contexts and type contexts in which an annotation interface may
31-
* be applicable are specified in JLS 9.6.4.1, and denoted in source code by
31+
* be applicable are specified in JLS {@jls 9.6.4.1}, and denoted in source code by
3232
* enum constants of {@link ElementType java.lang.annotation.ElementType}.
3333
*
3434
* <p>If an {@code @Target} meta-annotation is not present on an annotation
3535
* interface {@code T}, then an annotation of type {@code T} may be written as
36-
* a modifier for any declaration except a type parameter declaration.
36+
* a modifier for any declaration.
3737
*
3838
* <p>If an {@code @Target} meta-annotation is present, the compiler will enforce
3939
* the usage restrictions indicated by {@code ElementType}
40-
* enum constants, in line with JLS 9.7.4.
40+
* enum constants, in line with JLS {@jls 9.7.4}.
4141
*
4242
* <p>For example, this {@code @Target} meta-annotation indicates that the
4343
* declared interface is itself a meta-annotation interface. It can only be

‎src/jdk.jpackage/share/native/applauncher/AppLauncher.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ Jvm* AppLauncher::createJvmLauncher() const {
113113
}
114114

115115
SysInfo::setEnvVariable(libEnvVarName, SysInfo::getEnvVariable(
116-
std::nothrow, libEnvVarName) + _T(";") + appDirPath);
116+
std::nothrow, libEnvVarName) + FileUtils::pathSeparator + appDirPath);
117117

118118
std::unique_ptr<Jvm> jvm(new Jvm());
119119

‎test/hotspot/jtreg/compiler/arraycopy/TestObjectArrayClone.java

+5-4
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,15 @@
2323

2424
/*
2525
* @test
26-
* @bug 8155643
27-
* @summary Test Object.clone() intrinsic if ReduceInitialCardMarks is disabled.
26+
* @bug 8155643 8268125 8270461
27+
* @summary Test Object.clone() intrinsic.
2828
*
2929
* @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:-ReduceInitialCardMarks
3030
* -XX:CompileCommand=compileonly,compiler.arraycopy.TestObjectArrayClone::testClone*
3131
* compiler.arraycopy.TestObjectArrayClone
32-
*
33-
* @run main/othervm -XX:+IgnoreUnrecognizedVMOptions
32+
* @run main/othervm -XX:CompileCommand=compileonly,compiler.arraycopy.TestObjectArrayClone::testClone*
33+
* compiler.arraycopy.TestObjectArrayClone
34+
* @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:-UseCompressedClassPointers -Xmx128m
3435
* -XX:CompileCommand=compileonly,compiler.arraycopy.TestObjectArrayClone::testClone*
3536
* compiler.arraycopy.TestObjectArrayClone
3637
*/

‎test/hotspot/jtreg/runtime/Safepoint/TestAbortVMOnSafepointTimeout.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@
3131
* @summary Check if VM can kill thread which doesn't reach safepoint.
3232
* @bug 8219584 8227528
3333
* @library /testlibrary /test/lib
34-
* @build TestAbortVMOnSafepointTimeout
34+
* @build sun.hotspot.WhiteBox
3535
* @run driver jdk.test.lib.helpers.ClassFileInstaller sun.hotspot.WhiteBox
36-
* @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI TestAbortVMOnSafepointTimeout
36+
* @run driver TestAbortVMOnSafepointTimeout
3737
*/
3838

3939
public class TestAbortVMOnSafepointTimeout {

‎test/hotspot/jtreg/runtime/StackTrace/LargeClassTest.java

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2018, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -28,8 +28,7 @@
2828
* @library /test/lib
2929
* @modules java.base/jdk.internal.org.objectweb.asm
3030
* java.base/jdk.internal.misc
31-
* @compile LargeClassTest.java
32-
* @run main LargeClassTest
31+
* @run driver LargeClassTest
3332
*/
3433

3534
import java.io.File;

‎test/hotspot/jtreg/runtime/Thread/TestThreadDumpSMRInfo.java

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2017, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -85,9 +85,4 @@ public static void main(String[] args) throws Exception {
8585

8686
System.out.println("Test PASSED.");
8787
}
88-
89-
static void usage() {
90-
System.err.println("Usage: java TestThreadDumpSMRInfo [-v]");
91-
System.exit(1);
92-
}
9388
}

‎test/hotspot/jtreg/runtime/duplAttributes/DuplAttributesTest.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2014, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2014, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -44,6 +44,7 @@ public static void runTest(String test, String result) throws Throwable {
4444
ProcessBuilder pb = ProcessTools.createJavaProcessBuilder(test);
4545
OutputAnalyzer output = new OutputAnalyzer(pb.start());
4646
output.shouldContain("java.lang.ClassFormatError: Multiple " + result);
47+
output.shouldNotHaveExitValue(0);
4748
}
4849

4950
public static void main(String args[]) throws Throwable {

‎test/hotspot/jtreg/runtime/handshake/HandshakeTimeoutTest.java

+1
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ public static void main(String[] args) throws Exception {
5757
"HandshakeTimeoutTest$Test");
5858

5959
OutputAnalyzer output = ProcessTools.executeProcess(pb);
60+
output.shouldNotHaveExitValue(0);
6061
output.reportDiagnosticSummary();
6162
// In rare cases the target wakes up and performs the handshake at the same time as we timeout.
6263
// Therefore it's not certain the timeout will find any thread.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
/*
2+
* Copyright (c) 2021, Oracle and/or its affiliates. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*
23+
*/
24+
25+
/*
26+
* @test SuspendBlocked
27+
* @bug 8270085
28+
* @library /test/lib
29+
* @build SuspendBlocked
30+
* @run driver jdk.test.lib.helpers.ClassFileInstaller sun.hotspot.WhiteBox
31+
* @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI SuspendBlocked
32+
*/
33+
34+
import jdk.test.lib.Asserts;
35+
import sun.hotspot.WhiteBox;
36+
37+
public class SuspendBlocked {
38+
39+
public static void main(String... args) throws Exception {
40+
Thread suspend_thread = new Thread(() -> run_loop());
41+
suspend_thread.start();
42+
WhiteBox wb = WhiteBox.getWhiteBox();
43+
for (int i = 0; i < 100; i++) {
44+
suspend_thread.suspend();
45+
wb.lockAndBlock(/* suspender= */ true);
46+
suspend_thread.resume();
47+
Thread.sleep(1);
48+
}
49+
suspend_thread.join();
50+
}
51+
52+
public static void run_loop() {
53+
WhiteBox wb = WhiteBox.getWhiteBox();
54+
for (int i = 0; i < 100; i++) {
55+
wb.lockAndBlock(/* suspender= */ false);
56+
}
57+
}
58+
}

‎test/hotspot/jtreg/runtime/jni/checked/TestCheckedJniExceptionCheck.java

+10-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -30,6 +30,7 @@
3030
*/
3131

3232
import java.util.List;
33+
import jdk.test.lib.Utils;
3334
import jdk.test.lib.process.ProcessTools;
3435
import jdk.test.lib.process.OutputAnalyzer;
3536

@@ -154,6 +155,7 @@ private native void initMethodIds(String callableMethodName,
154155

155156
// Check warnings appear where they should, with start/end statements in output...
156157
static void checkOuputForCorrectWarnings(OutputAnalyzer oa) throws RuntimeException {
158+
oa.shouldHaveExitValue(0);
157159
List<String> lines = oa.asLines();
158160
int expectedWarnings = 0;
159161
int warningCount = 0;
@@ -175,12 +177,10 @@ static void checkOuputForCorrectWarnings(OutputAnalyzer oa) throws RuntimeExcept
175177
oa.reportDiagnosticSummary();
176178
throw new RuntimeException("Unexpected warning at line " + lineNo);
177179
}
178-
}
179-
else if (line.startsWith(EXPECT_WARNING_START)) {
180+
} else if (line.startsWith(EXPECT_WARNING_START)) {
180181
String countStr = line.substring(EXPECT_WARNING_START.length() + 1);
181182
expectedWarnings = Integer.parseInt(countStr);
182-
}
183-
else if (line.startsWith(EXPECT_WARNING_END)) {
183+
} else if (line.startsWith(EXPECT_WARNING_END)) {
184184
if (warningCount != expectedWarnings) {
185185
oa.reportDiagnosticSummary();
186186
throw new RuntimeException("Missing warning at line " + lineNo);
@@ -189,6 +189,9 @@ else if (line.startsWith(EXPECT_WARNING_END)) {
189189
expectedWarnings = 0;
190190
}
191191
}
192+
if (!testStartLine) {
193+
throw new RuntimeException("Missing test start line after " + lineNo + " lines");
194+
}
192195
/*
193196
System.out.println("Output looks good...");
194197
oa.reportDiagnosticSummary();
@@ -203,7 +206,8 @@ public static void main(String[] args) throws Throwable {
203206

204207
// launch and check output
205208
checkOuputForCorrectWarnings(ProcessTools.executeTestJvm("-Xcheck:jni",
206-
"TestCheckedJniExceptionCheck"));
209+
"-Djava.library.path=" + Utils.TEST_NATIVE_PATH,
210+
"TestCheckedJniExceptionCheck"));
207211
}
208212

209213
}

‎test/lib/sun/hotspot/WhiteBox.java

+2
Original file line numberDiff line numberDiff line change
@@ -608,6 +608,8 @@ public Object getMethodOption(Executable method, String name) {
608608
public native boolean handshakeReadMonitors(Thread t);
609609
public native void asyncHandshakeWalkStack(Thread t);
610610

611+
public native void lockAndBlock(boolean suspender);
612+
611613
// Returns true on linux if library has the noexecstack flag set.
612614
public native boolean checkLibSpecifiesNoexecstack(String libfilename);
613615

1 commit comments

Comments
 (1)

openjdk-notifier[bot] commented on Jul 23, 2021

@openjdk-notifier[bot]
Please sign in to comment.