< prev index next >

test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/ForceEarlyReturn/earlyretfp/earlyretfp.cpp

Print this page
rev 51722 : 8210700: Clean up JNI_ENV_ARG and factorize the macros for vmTestbase/jvmti/unit tests
Summary:
Reviewed-by:

*** 25,49 **** #include <string.h> #include "jvmti.h" #include "agent_common.h" #include "JVMTITools.h" - #ifdef __cplusplus extern "C" { - #endif - - #ifndef JNI_ENV_ARG - - #ifdef __cplusplus - #define JNI_ENV_ARG(x, y) y - #define JNI_ENV_PTR(x) x - #else - #define JNI_ENV_ARG(x,y) x, y - #define JNI_ENV_PTR(x) (*x) - #endif - #endif #define PASSED 0 #define STATUS_FAILED 2 #define RETURN_FAILED errCode = STATUS_FAILED; fflush(0); return --- 25,36 ----
*** 324,335 **** printf("Printdump is turned on!\n"); printdump = JNI_TRUE; } ! res = JNI_ENV_PTR(jvm)->GetEnv(JNI_ENV_ARG(jvm, (void **) &jvmti), ! JVMTI_VERSION_1_1); if (res != JNI_OK || jvmti == NULL) { printf("Wrong error code from a valid call to GetEnv!\n"); return JNI_ERR; } --- 311,321 ---- printf("Printdump is turned on!\n"); printdump = JNI_TRUE; } ! res = jvm->GetEnv((void **) &jvmti, JVMTI_VERSION_1_1); if (res != JNI_OK || jvmti == NULL) { printf("Wrong error code from a valid call to GetEnv!\n"); return JNI_ERR; }
*** 394,426 **** !caps.can_generate_method_exit_events || !caps.can_generate_single_step_events) { return; } ! midRun = JNI_ENV_PTR(env)->GetMethodID(JNI_ENV_ARG(env, cls), ! "run", "()V"); if (midRun == NULL) { printf("Cannot find Method ID for method run\n"); RETURN_FAILED; } ! midCheckPoint = JNI_ENV_PTR(env)->GetMethodID(JNI_ENV_ARG(env, cls), ! "checkPoint", "()V"); if (midCheckPoint == NULL) { printf("Cannot find Method ID for method checkPoint\n"); RETURN_FAILED; } ! midCountDownFloat = JNI_ENV_PTR(env)->GetMethodID(JNI_ENV_ARG(env, cls), ! "countDownFloat", "(I)F"); if (midCountDownFloat == NULL) { printf("Cannot find Method ID for method countDownFloat\n"); RETURN_FAILED; } ! midCountDownDouble = JNI_ENV_PTR(env)->GetMethodID(JNI_ENV_ARG(env, cls), ! "countDownDouble", "(I)D"); if (midCountDownDouble == NULL) { printf("Cannot find Method ID for method countDownDouble\n"); RETURN_FAILED; } --- 380,408 ---- !caps.can_generate_method_exit_events || !caps.can_generate_single_step_events) { return; } ! midRun = env->GetMethodID(cls, "run", "()V"); if (midRun == NULL) { printf("Cannot find Method ID for method run\n"); RETURN_FAILED; } ! midCheckPoint = env->GetMethodID(cls, "checkPoint", "()V"); if (midCheckPoint == NULL) { printf("Cannot find Method ID for method checkPoint\n"); RETURN_FAILED; } ! midCountDownFloat = env->GetMethodID(cls, "countDownFloat", "(I)F"); if (midCountDownFloat == NULL) { printf("Cannot find Method ID for method countDownFloat\n"); RETURN_FAILED; } ! midCountDownDouble = env->GetMethodID(cls, "countDownDouble", "(I)D"); if (midCountDownDouble == NULL) { printf("Cannot find Method ID for method countDownDouble\n"); RETURN_FAILED; }
*** 471,478 **** } fflush(0); return errCode; } - #ifdef __cplusplus } - #endif --- 453,458 ----
< prev index next >