< prev index next >

src/hotspot/share/include/jvm.h

Print this page
*** 169,10 ***
--- 169,13 ---
  JVM_GetVmArguments(JNIEnv *env);
  
  JNIEXPORT jboolean JNICALL
  JVM_IsPreviewEnabled(void);
  
+ JNIEXPORT jboolean JNICALL
+ JVM_IsValhallaEnabled(void);
+ 
  JNIEXPORT jboolean JNICALL
  JVM_IsContinuationsSupported(void);
  
  JNIEXPORT jboolean JNICALL
  JVM_IsForeignLinkerSupported(void);

*** 418,11 ***
  JNIEXPORT jclass JNICALL
  JVM_FindPrimitiveClass(JNIEnv *env, const char *utf);
  
  
  /*
!  * Find a class from a boot class loader. Returns NULL if class not found.
   */
  JNIEXPORT jclass JNICALL
  JVM_FindClassFromBootLoader(JNIEnv *env, const char *name);
  
  /*
--- 421,11 ---
  JNIEXPORT jclass JNICALL
  JVM_FindPrimitiveClass(JNIEnv *env, const char *utf);
  
  
  /*
!  * Find a class from a boot class loader. Returns nullptr if class not found.
   */
  JNIEXPORT jclass JNICALL
  JVM_FindClassFromBootLoader(JNIEnv *env, const char *name);
  
  /*

*** 569,10 ***
--- 572,13 ---
  JVM_IsPrimitiveClass(JNIEnv *env, jclass cls);
  
  JNIEXPORT jboolean JNICALL
  JVM_IsHiddenClass(JNIEnv *env, jclass cls);
  
+ JNIEXPORT jboolean JNICALL
+ JVM_IsIdentityClass(JNIEnv *env, jclass cls);
+ 
  JNIEXPORT jint JNICALL
  JVM_GetClassModifiers(JNIEnv *env, jclass cls);
  
  JNIEXPORT jobjectArray JNICALL
  JVM_GetDeclaredClasses(JNIEnv *env, jclass ofClass);
< prev index next >