< prev index next >

src/share/vm/gc_implementation/shared/ageTable.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

*** 25,34 **** --- 25,35 ---- #ifndef SHARE_VM_GC_IMPLEMENTATION_SHARED_AGETABLE_HPP #define SHARE_VM_GC_IMPLEMENTATION_SHARED_AGETABLE_HPP #include "oops/markOop.hpp" #include "oops/oop.hpp" + #include "gc_implementation/shared/gcTrace.hpp" #include "runtime/perfData.hpp" /* Copyright (c) 1992-2009 Oracle and/or its affiliates, and Stanford University. See the LICENSE file for license information. */
*** 67,77 **** // for parallel young generation gc. void merge(ageTable* subTable); void merge_par(ageTable* subTable); // calculate new tenuring threshold based on age information ! uint compute_tenuring_threshold(size_t survivor_capacity); private: PerfVariable* _perf_sizes[table_size]; }; --- 68,78 ---- // for parallel young generation gc. void merge(ageTable* subTable); void merge_par(ageTable* subTable); // calculate new tenuring threshold based on age information ! uint compute_tenuring_threshold(size_t survivor_capacity, GCTracer &tracer); private: PerfVariable* _perf_sizes[table_size]; };
< prev index next >