/* * Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions.
*/
// This code can be called from the main thread, which is _thread_in_native, // or by an existing JavaTestThread, which is _thread_in_vm. if (THREAD->thread_state() == _thread_in_native) {
ThreadInVMfromNative tivfn(THREAD);
thread_oop = JavaThread::create_system_thread_object(name, false/* not visible */, CHECK);
JavaThread::start_internal_daemon(THREAD, thread, thread_oop, NoPriority);
} else {
thread_oop = JavaThread::create_system_thread_object(name, false/* not visible */, CHECK);
JavaThread::start_internal_daemon(THREAD, thread, thread_oop, NoPriority);
}
}
// This class and thread keep the non-safepoint op running while we do our testing. class VMThreadBlocker : public JavaThread {
Semaphore _ready;
Semaphore _unblock;
// Calls a single-argument function of type F with the current thread (this) // and a self-assigned thread id as its input in a new thread when doit() is run. template<typename F> class BasicTestThread : public JavaTestThread { private:
F _fun; constint _id; public:
BasicTestThread(F fun, int id, Semaphore* sem)
: JavaTestThread(sem),
_fun(fun),
_id(id) {
}
virtual ~BasicTestThread(){};
void main_run() override {
_fun(this, _id);
}
};
// A TestThreadGroup starts and tracks N threads running the same callable F. // The callable F should have the signature void(Thread*,int) where Thread* // is the current thread and int is an id in the range [0,N). template<typename F> class TestThreadGroup { private:
VMThreadBlocker* _blocker;
BasicTestThread<F>** _threads; constint _length;
Semaphore _sem;
public:
NONCOPYABLE(TestThreadGroup);
TestThreadGroup(F fun, constint number_of_threads)
:
_threads(NEW_C_HEAP_ARRAY(BasicTestThread<F>*, number_of_threads, mtTest)),
_length(number_of_threads),
_sem() { for (int i = 0; i < _length; i++) {
_threads[i] = new BasicTestThread<F>(fun, i, &_sem);
}
}
~TestThreadGroup() {
FREE_C_HEAP_ARRAY(BasicTestThread<F>*, _threads);
}
void doit() {
_blocker = VMThreadBlocker::start(); for (int i = 0; i < _length; i++) {
_threads[i]->doit();
}
} void join() { for (int i = 0; i < _length; i++) {
_sem.wait();
}
_blocker->release();
}
};
template <typename FUNC> class SingleTestThread : public JavaTestThread {
FUNC& _f; public:
SingleTestThread(Semaphore* post, FUNC& f)
: JavaTestThread(post), _f(f) {
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.