src/share/vm/prims/jvm.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File
*** old/src/share/vm/prims/jvm.cpp	Tue Aug 26 09:46:43 2014
--- new/src/share/vm/prims/jvm.cpp	Tue Aug 26 09:46:41 2014

*** 1401,1418 **** --- 1401,1410 ---- oop mirror = JNIHandles::resolve_non_null(cls); return (jboolean) java_lang_Class::is_primitive(mirror); JVM_END JVM_ENTRY(jclass, JVM_GetComponentType(JNIEnv *env, jclass cls)) JVMWrapper("JVM_GetComponentType"); oop mirror = JNIHandles::resolve_non_null(cls); oop result = Reflection::array_component_type(mirror, CHECK_NULL); return (jclass) JNIHandles::make_local(env, result); JVM_END JVM_ENTRY(jint, JVM_GetClassModifiers(JNIEnv *env, jclass cls)) JVMWrapper("JVM_GetClassModifiers"); if (java_lang_Class::is_primitive(JNIHandles::resolve_non_null(cls))) { // Primitive type return JVM_ACC_ABSTRACT | JVM_ACC_FINAL | JVM_ACC_PUBLIC;

src/share/vm/prims/jvm.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File