< prev index next >

src/share/vm/classfile/classFileParser.hpp

Print this page
rev 8957 : 8223147: JFR Backport
8199712: Flight Recorder
8203346: JFR: Inconsistent signature of jfr_add_string_constant
8195817: JFR.stop should require name of recording
8195818: JFR.start should increase autogenerated name by one
8195819: Remove recording=x from jcmd JFR.check output
8203921: JFR thread sampling is missing fixes from JDK-8194552
8203929: Limit amount of data for JFR.dump
8203664: JFR start failure after AppCDS archive created with JFR StartFlightRecording
8003209: JFR events for network utilization
8207392: [PPC64] Implement JFR profiling

*** 45,54 **** --- 45,55 ---- private: bool _need_verify; bool _relax_verify; u2 _major_version; u2 _minor_version; + u2 _this_class_index; Symbol* _class_name; ClassLoaderData* _loader_data; KlassHandle _host_klass; GrowableArray<Handle>* _cp_patches; // overrides for CP entries
*** 489,496 **** --- 490,504 ---- // Verifier checks static void check_super_class_access(instanceKlassHandle this_klass, TRAPS); static void check_super_interface_access(instanceKlassHandle this_klass, TRAPS); static void check_final_method_override(instanceKlassHandle this_klass, TRAPS); static void check_illegal_static_method(instanceKlassHandle this_klass, TRAPS); + + u2 this_class_index() const { return _this_class_index; } + + #if INCLUDE_JFR + ClassFileStream* clone_stream() const; + void set_klass_to_deallocate(InstanceKlass* klass); + #endif // INCLUDE_JFR }; #endif // SHARE_VM_CLASSFILE_CLASSFILEPARSER_HPP
< prev index next >