/* * Copyright (c) 2003, 2018, 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. */ #include #include #include #include #include #include "agent_common.h" #include "nsk_tools.h" #include "JVMTITools.h" #include "jvmti_tools.h" #ifdef __cplusplus extern "C" { #endif #define PASSED 0 #define STATUS_FAILED 2 /* classes which must have the class load event */ static const char *expSigs[] = { "Lnsk/jvmti/ClassLoad/classload001;", "Lnsk/jvmti/ClassLoad/classload001$TestedClass;" }; #define EXP_SIG_NUM (sizeof(expSigs)/sizeof(char*)) /* classes which must not have the class load event */ static const char *unexpSigs[] = { "Z", /* boolean */ "B", /* byte */ "C", /* char */ "D", /* double */ "F", /* float */ "I", /* integer */ "J", /* long */ "S", /* short */ "[Z", /* boolean array */ "[B", /* byte array */ "[C", /* char array */ "[D", /* double array */ "[F", /* float array */ "[I", /* integer array */ "[J", /* long array */ "[S", /* short array */ "[Lnsk/jvmti/ClassLoad/classload001$TestedClass;" }; #define UNEXP_SIG_NUM (sizeof(unexpSigs)/sizeof(char*)) static volatile int clsEvents[EXP_SIG_NUM]; static volatile int primClsEvents[UNEXP_SIG_NUM]; static jint result = PASSED; static jvmtiEnv *jvmti = NULL; static jvmtiEventCallbacks callbacks; static jrawMonitorID countLock; static void initCounters() { size_t i; for(i=0; i