8290059: Do not use std::thread in panama tests

Reviewed-by: mcimadamore, stuefe, erikj
This commit is contained in:
Jorn Vernee 2022-07-28 14:53:26 +00:00
parent 5214a17d81
commit 54a2c5a6d1
7 changed files with 172 additions and 48 deletions

View File

@ -53,6 +53,8 @@ BUILD_JDK_JTREG_EXECUTABLES_CFLAGS_exeJliLaunchTest := \
-I$(TOPDIR)/src/java.base/$(OPENJDK_TARGET_OS_TYPE)/native/libjli \
-I$(TOPDIR)/src/java.base/$(OPENJDK_TARGET_OS)/native/libjli
TEST_LIB_NATIVE_SRC := $(TOPDIR)/test/lib/native
# Platform specific setup
ifeq ($(call isTargetOs, windows), true)
BUILD_JDK_JTREG_EXCLUDE += libDirectIO.c libInheritedChannel.c \
@ -67,26 +69,32 @@ ifeq ($(call isTargetOs, windows), true)
BUILD_JDK_JTREG_EXECUTABLES_LIBS_exeNullCallerTest := $(LIBCXX) jvm.lib
BUILD_JDK_JTREG_EXECUTABLES_LIBS_exerevokeall := advapi32.lib
BUILD_JDK_JTREG_EXECUTABLES_CFLAGS_exeNullCallerTest := /EHsc
BUILD_JDK_JTREG_LIBRARIES_CFLAGS_libAsyncStackWalk := /EHsc
BUILD_JDK_JTREG_LIBRARIES_CFLAGS_libAsyncInvokers := /EHsc
BUILD_JDK_JTREG_LIBRARIES_LDFLAGS_libLinkerInvokerUnnamed := /EHsc
BUILD_JDK_JTREG_LIBRARIES_LDFLAGS_libLinkerInvokerModule := /EHsc
BUILD_JDK_JTREG_LIBRARIES_LDFLAGS_libLoaderLookupInvoker := /EHsc
BUILD_JDK_JTREG_LIBRARIES_LDFLAGS_libAsyncStackWalk := $(LIBCXX)
BUILD_JDK_JTREG_LIBRARIES_LDFLAGS_libAsyncInvokers := $(LIBCXX)
BUILD_JDK_JTREG_LIBRARIES_LDFLAGS_libLinkerInvokerUnnamed := $(LIBCXX)
BUILD_JDK_JTREG_LIBRARIES_LDFLAGS_libLinkerInvokerModule := $(LIBCXX)
BUILD_JDK_JTREG_LIBRARIES_LDFLAGS_libLoaderLookupInvoker := $(LIBCXX)
# java.lang.foreign tests
BUILD_JDK_JTREG_LIBRARIES_CFLAGS_libAsyncStackWalk := -I$(TEST_LIB_NATIVE_SRC)
BUILD_JDK_JTREG_LIBRARIES_CFLAGS_libLinkerInvokerUnnamed := -I$(TEST_LIB_NATIVE_SRC)
BUILD_JDK_JTREG_LIBRARIES_CFLAGS_libLinkerInvokerModule := -I$(TEST_LIB_NATIVE_SRC)
BUILD_JDK_JTREG_LIBRARIES_CFLAGS_libLoaderLookupInvoker := -I$(TEST_LIB_NATIVE_SRC)
BUILD_JDK_JTREG_LIBRARIES_CFLAGS_libAsyncInvokers := -I$(TEST_LIB_NATIVE_SRC)
BUILD_JDK_JTREG_LIBRARIES_LIBS_libTracePinnedThreads := jvm.lib
else
BUILD_JDK_JTREG_LIBRARIES_LIBS_libstringPlatformChars := -ljava
BUILD_JDK_JTREG_LIBRARIES_LIBS_libDirectIO := -ljava
BUILD_JDK_JTREG_LIBRARIES_LDFLAGS_libNativeThread := -pthread
BUILD_JDK_JTREG_LIBRARIES_LDFLAGS_libAsyncStackWalk := $(LIBCXX) -pthread
BUILD_JDK_JTREG_LIBRARIES_LDFLAGS_libAsyncInvokers := $(LIBCXX) -pthread
BUILD_JDK_JTREG_LIBRARIES_LDFLAGS_libLinkerInvokerUnnamed := $(LIBCXX) -pthread
BUILD_JDK_JTREG_LIBRARIES_LDFLAGS_libLinkerInvokerModule := $(LIBCXX) -pthread
BUILD_JDK_JTREG_LIBRARIES_LDFLAGS_libLoaderLookupInvoker := $(LIBCXX) -pthread
# java.lang.foreign tests
BUILD_JDK_JTREG_LIBRARIES_CFLAGS_libAsyncStackWalk := -I$(TEST_LIB_NATIVE_SRC)
BUILD_JDK_JTREG_LIBRARIES_LDFLAGS_libAsyncStackWalk := -pthread
BUILD_JDK_JTREG_LIBRARIES_CFLAGS_libAsyncInvokers := -I$(TEST_LIB_NATIVE_SRC)
BUILD_JDK_JTREG_LIBRARIES_LDFLAGS_libAsyncInvokers := -pthread
BUILD_JDK_JTREG_LIBRARIES_CFLAGS_libLinkerInvokerUnnamed := -I$(TEST_LIB_NATIVE_SRC)
BUILD_JDK_JTREG_LIBRARIES_LDFLAGS_libLinkerInvokerUnnamed := -pthread
BUILD_JDK_JTREG_LIBRARIES_CFLAGS_libLinkerInvokerModule := -I$(TEST_LIB_NATIVE_SRC)
BUILD_JDK_JTREG_LIBRARIES_LDFLAGS_libLinkerInvokerModule := -pthread
BUILD_JDK_JTREG_LIBRARIES_CFLAGS_libLoaderLookupInvoker := -I$(TEST_LIB_NATIVE_SRC)
BUILD_JDK_JTREG_LIBRARIES_LDFLAGS_libLoaderLookupInvoker := -pthread
BUILD_JDK_JTREG_LIBRARIES_LIBS_libExplicitAttach := -ljvm
BUILD_JDK_JTREG_LIBRARIES_LDFLAGS_libExplicitAttach := -pthread
BUILD_JDK_JTREG_LIBRARIES_LDFLAGS_libImplicitAttach := -pthread

View File

@ -23,9 +23,10 @@
*/
#include "jni.h"
#include <thread>
#include "testlib_threads.h"
void call(JavaVM *jvm) {
void call(void* ctxt) {
JavaVM* jvm = (JavaVM*) ctxt;
JNIEnv* env;
jvm->AttachCurrentThread((void**)&env, NULL);
jclass linkerClass = env->FindClass("java/lang/foreign/Linker");
@ -39,7 +40,6 @@ extern "C" {
Java_org_openjdk_foreigntest_PanamaMainUnnamedModule_nativeLinker0(JNIEnv *env, jclass cls) {
JavaVM* jvm;
env->GetJavaVM(&jvm);
std::thread thrd(call, jvm);
thrd.join();
run_in_new_thread_and_join(call, jvm);
}
}

View File

@ -23,9 +23,10 @@
*/
#include "jni.h"
#include <thread>
#include "testlib_threads.h"
void call(JavaVM *jvm) {
void call(void* ctxt) {
JavaVM *jvm = (JavaVM*) ctxt;
JNIEnv* env;
jvm->AttachCurrentThread((void**)&env, NULL);
jclass linkerClass = env->FindClass("java/lang/foreign/Linker");
@ -39,7 +40,6 @@ extern "C" {
Java_org_openjdk_foreigntest_PanamaMainJNI_nativeLinker0(JNIEnv *env, jclass cls) {
JavaVM* jvm;
env->GetJavaVM(&jvm);
std::thread thrd(call, jvm);
thrd.join();
run_in_new_thread_and_join(call, jvm);
}
}

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2021, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2021, 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
@ -21,27 +21,40 @@
* questions.
*/
#include <thread>
#include "testlib_threads.h"
#include "shared.h"
template<typename CB>
void proc_v(void* v_cb) {
((CB) v_cb)();
}
template<typename CB>
void launch_v(CB cb) {
std::thread thrd(cb);
thrd.join();
run_in_new_thread_and_join(&proc_v<CB>, (void*) cb);
}
template<typename O, typename CB>
void start(O& out, CB cb) {
out = cb();
struct Context {
CB cb;
O o;
};
template<typename O, typename CB>
void proc(void* context) {
Context<O, CB>* ctxt = (Context<O, CB>*) context;
ctxt->o = ctxt->cb();
}
template<typename O, typename CB>
O launch(CB cb) {
O result;
std::thread thrd(&start<O, CB>, std::ref(result), cb);
thrd.join();
return result;
Context<O, CB> ctxt;
ctxt.cb = cb;
run_in_new_thread_and_join(&proc<O, CB>, &ctxt);
return ctxt.o;
}
extern "C" {

View File

@ -23,18 +23,21 @@
*/
#include "jni.h"
#include <thread>
#include "testlib_threads.h"
jobject res;
struct Context {
JavaVM* jvm;
jobject res;
};
jobject call(JavaVM *jvm) {
void call(void* ctxt) {
Context* context = (Context*) ctxt;
JNIEnv* env;
jvm->AttachCurrentThread((void**)&env, NULL);
context->jvm->AttachCurrentThread((void**)&env, NULL);
jclass symbolLookupClass = env->FindClass("java/lang/foreign/SymbolLookup");
jmethodID loaderLookupMethod = env->GetStaticMethodID(symbolLookupClass, "loaderLookup", "()Ljava/lang/foreign/SymbolLookup;");
res = env->NewGlobalRef(env->CallStaticObjectMethod(symbolLookupClass, loaderLookupMethod));
jvm->DetachCurrentThread();
return res;
context->res = env->NewGlobalRef(env->CallStaticObjectMethod(symbolLookupClass, loaderLookupMethod));
context->jvm->DetachCurrentThread();
}
extern "C" {
@ -42,8 +45,9 @@ extern "C" {
Java_TestLoaderLookupJNI_loaderLookup0(JNIEnv *env, jclass cls) {
JavaVM* jvm;
env->GetJavaVM(&jvm);
std::thread thrd(call, jvm);
thrd.join();
return res;
Context context;
context.jvm = jvm;
run_in_new_thread_and_join(call, &context);
return context.res;
}
}

View File

@ -22,7 +22,7 @@
*
*/
#include <thread>
#include "testlib_threads.h"
#ifdef _WIN64
#define EXPORT __declspec(dllexport)
@ -30,15 +30,17 @@
#define EXPORT
#endif
static void start(void (*cb)(void)) {
typedef void (*CB_t)(void);
static void start(void* ctxt) {
CB_t cb = (CB_t) ctxt;
for (int i = 0; i < 25000; i++) {
cb();
}
}
extern "C" {
EXPORT void asyncStackWalk(void (*cb)(void)) {
std::thread thrd(start, cb);
thrd.join();
EXPORT void asyncStackWalk(CB_t cb) {
run_in_new_thread_and_join(start, (void*) cb);
}
}

View File

@ -0,0 +1,97 @@
/*
* Copyright (c) 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.
*/
#ifndef TEST_LIB_NATIVE_THREAD_H
#define TEST_LIB_NATIVE_THREAD_H
// Header only library for using threads in tests
#include <stdlib.h>
#include <stdio.h>
#ifdef _WIN32
#include <windows.h>
#else
#include <unistd.h>
#include <pthread.h>
#endif
extern "C" {
typedef void(*PROCEDURE)(void*);
struct Helper {
PROCEDURE proc;
void* context;
};
static void fatal(const char* message, int code) {
fputs(message, stderr);
// exit the test with a non-zero exit code to avoid accidental false positives
exit(code);
}
// Adapt from the callback type the OS API expects to
// our OS-independent PROCEDURE type.
#ifdef _WIN32
static DWORD procedure(_In_ LPVOID ctxt) {
#else
void* procedure(void* ctxt) {
#endif
Helper* helper = (Helper*)ctxt;
helper->proc(helper->context);
return 0;
}
// Run 'proc' in a newly started thread, passing 'context' to it
// as an argument, and then join that thread.
void run_in_new_thread_and_join(PROCEDURE proc, void* context) {
struct Helper helper;
helper.proc = proc;
helper.context = context;
#ifdef _WIN32
HANDLE thread = CreateThread(NULL, 0, procedure, &helper, 0, NULL);
if (thread == NULL) {
fatal("failed to create thread", GetLastError());
}
if (WaitForSingleObject(thread, INFINITE) != WAIT_OBJECT_0) {
// Should be WAIT_FAILED, since this is not a mutex, and
// we set no timeout.
fatal("failed to join thread", GetLastError());
}
#else
pthread_t thread;
int result = pthread_create(&thread, NULL, procedure, &helper);
if (result != 0) {
fatal("failed to create thread", result);
}
result = pthread_join(thread, NULL);
if (result != 0) {
fatal("failed to join thread", result);
}
#endif
}
}
#endif // TEST_LIB_NATIVE_THREAD_H