< prev index next >

src/share/vm/prims/jvmtiExport.hpp

Print this page

        

*** 148,158 **** JVMTI_VERSION_VALUE = 0x30000000, JVMDI_VERSION_VALUE = 0x20000000 }; static void post_field_modification(JavaThread *thread, Method* method, address location, ! KlassHandle field_klass, Handle object, jfieldID field, char sig_type, jvalue *value); // posts a DynamicCodeGenerated event (internal/private implementation). // The public post_dynamic_code_generated* functions make use of the --- 148,158 ---- JVMTI_VERSION_VALUE = 0x30000000, JVMDI_VERSION_VALUE = 0x20000000 }; static void post_field_modification(JavaThread *thread, Method* method, address location, ! Klass* field_klass, Handle object, jfieldID field, char sig_type, jvalue *value); // posts a DynamicCodeGenerated event (internal/private implementation). // The public post_dynamic_code_generated* functions make use of the
*** 308,329 **** oop obj, Klass* klass, jfieldID fieldID, bool is_static) NOT_JVMTI_RETURN_(NULL); static void post_field_access_by_jni (JavaThread *thread, oop obj, Klass* klass, jfieldID fieldID, bool is_static) NOT_JVMTI_RETURN; static void post_field_access (JavaThread *thread, Method* method, ! address location, KlassHandle field_klass, Handle object, jfieldID field) NOT_JVMTI_RETURN; static oop jni_SetField_probe (JavaThread *thread, jobject jobj, oop obj, Klass* klass, jfieldID fieldID, bool is_static, char sig_type, jvalue *value) NOT_JVMTI_RETURN_(NULL); static oop jni_SetField_probe_nh (JavaThread *thread, jobject jobj, oop obj, Klass* klass, jfieldID fieldID, bool is_static, char sig_type, jvalue *value) NOT_JVMTI_RETURN_(NULL); static void post_field_modification_by_jni(JavaThread *thread, oop obj, Klass* klass, jfieldID fieldID, bool is_static, char sig_type, jvalue *value); static void post_raw_field_modification(JavaThread *thread, Method* method, ! address location, KlassHandle field_klass, Handle object, jfieldID field, char sig_type, jvalue *value) NOT_JVMTI_RETURN; static void post_method_entry (JavaThread *thread, Method* method, frame current_frame) NOT_JVMTI_RETURN; static void post_method_exit (JavaThread *thread, Method* method, frame current_frame) NOT_JVMTI_RETURN; --- 308,329 ---- oop obj, Klass* klass, jfieldID fieldID, bool is_static) NOT_JVMTI_RETURN_(NULL); static void post_field_access_by_jni (JavaThread *thread, oop obj, Klass* klass, jfieldID fieldID, bool is_static) NOT_JVMTI_RETURN; static void post_field_access (JavaThread *thread, Method* method, ! address location, Klass* field_klass, Handle object, jfieldID field) NOT_JVMTI_RETURN; static oop jni_SetField_probe (JavaThread *thread, jobject jobj, oop obj, Klass* klass, jfieldID fieldID, bool is_static, char sig_type, jvalue *value) NOT_JVMTI_RETURN_(NULL); static oop jni_SetField_probe_nh (JavaThread *thread, jobject jobj, oop obj, Klass* klass, jfieldID fieldID, bool is_static, char sig_type, jvalue *value) NOT_JVMTI_RETURN_(NULL); static void post_field_modification_by_jni(JavaThread *thread, oop obj, Klass* klass, jfieldID fieldID, bool is_static, char sig_type, jvalue *value); static void post_raw_field_modification(JavaThread *thread, Method* method, ! address location, Klass* field_klass, Handle object, jfieldID field, char sig_type, jvalue *value) NOT_JVMTI_RETURN; static void post_method_entry (JavaThread *thread, Method* method, frame current_frame) NOT_JVMTI_RETURN; static void post_method_exit (JavaThread *thread, Method* method, frame current_frame) NOT_JVMTI_RETURN;
< prev index next >