Integrated: 8315149: Add hsperf counters for CPU time of internal GC threads

2023-12-05 Thread Jonathan Joo
On Mon, 31 Jul 2023 01:50:07 GMT, Jonathan Joo wrote: > 8315149: Add hsperf counters for CPU time of internal GC threads This pull request has now been integrated. Changeset: 9e570105 Author: Jonathan Joo Committer: Man Cao URL: https://git.openjdk.org/jdk/com

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v53]

2023-12-01 Thread Jonathan Joo
On Fri, 1 Dec 2023 14:42:22 GMT, Albert Mingkun Yang wrote: >> I would say it depends on the use-case and here when switching to use static >> functions to use the instance it felt more like an all-static class. I agree >> that it would be nice to avoid the additional memory usage if `UsePerfDa

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v55]

2023-12-01 Thread Jonathan Joo
> 8315149: Add hsperf counters for CPU time of internal GC threads Jonathan Joo has updated the pull request incrementally with two additional commits since the last revision: - Only create CPUTimeCounters if supported - Ensure TTTC is destructed before publishing - Chan

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v53]

2023-12-01 Thread Jonathan Joo
On Fri, 1 Dec 2023 16:19:49 GMT, Volker Simonis wrote: >> src/hotspot/share/gc/parallel/parallelScavengeHeap.cpp line 905: >> >>> 903: gc_threads_do(&tttc); >>> 904: >>> 905: CPUTimeCounters::publish_gc_total_cpu_time(); >> >> As I suggested in the other comment, maybe we should not keep t

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v48]

2023-12-01 Thread Jonathan Joo
On Fri, 1 Dec 2023 21:01:29 GMT, Man Cao wrote: >> I agree that the counter is valuable if always up-to-date, but if it is out >> of sync compared to the "concurrent counters" I think it will confuse some >> users. So if we want to keep it I think we should try to keep it in sync. >> >> I sup

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v48]

2023-11-30 Thread Jonathan Joo
On Thu, 30 Nov 2023 09:30:14 GMT, Stefan Johansson wrote: >> Both `publish_gc_total_cpu_time` and `~ThreadTotalCPUTimeClosure` are called >> by the vm-thread inside a safepoint, so there shouldn't be any other threads >> running simultaneously, I believe. > > Me and Albert just spoke and we do

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v54]

2023-11-30 Thread Jonathan Joo
> 8315149: Add hsperf counters for CPU time of internal GC threads Jonathan Joo has updated the pull request incrementally with one additional commit since the last revision: Return after ShouldNotReachHere Co-authored-by: Stefan Johansson <54407259+kstef...@users.noreply.gith

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v53]

2023-11-29 Thread Jonathan Joo
> 8315149: Add hsperf counters for CPU time of internal GC threads Jonathan Joo has updated the pull request incrementally with one additional commit since the last revision: Add missing include - Changes: - all: https://git.openjdk.org/jdk/pull/15082/files - new: ht

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v48]

2023-11-29 Thread Jonathan Joo
On Wed, 29 Nov 2023 15:24:52 GMT, Albert Mingkun Yang wrote: >> src/hotspot/share/runtime/cpuTimeCounters.cpp line 91: >> >>> 89: } while (old_value != fetched_value); >>> 90: get_counter(CPUTimeGroups::CPUTimeType::gc_total)->inc(fetched_value); >>> 91: } >> >> Why do we have to do this pu

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v52]

2023-11-29 Thread Jonathan Joo
> 8315149: Add hsperf counters for CPU time of internal GC threads Jonathan Joo has updated the pull request incrementally with one additional commit since the last revision: fix whitespace again - Changes: - all: https://git.openjdk.org/jdk/pull/15082/files - new: ht

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v51]

2023-11-29 Thread Jonathan Joo
> 8315149: Add hsperf counters for CPU time of internal GC threads Jonathan Joo has updated the pull request with a new target base due to a merge or a rebase. The pull request now contains 56 commits: - Merge branch 'openjdk:master' into master - remove whitespace - Change A

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v50]

2023-11-29 Thread Jonathan Joo
> 8315149: Add hsperf counters for CPU time of internal GC threads Jonathan Joo has updated the pull request incrementally with one additional commit since the last revision: remove whitespace - Changes: - all: https://git.openjdk.org/jdk/pull/15082/files - new: ht

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v47]

2023-11-29 Thread Jonathan Joo
On Wed, 29 Nov 2023 15:23:55 GMT, Albert Mingkun Yang wrote: >> We could add a new closure just used by GC that 's a sub-class of >> `ThreadTotalCPUTimeClosure` and just adds this to the constructor: >> >> instance->inc_gc_total_cpu_time(net_cpu_time); >> >> >> That way we could get rid of `

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v49]

2023-11-29 Thread Jonathan Joo
> 8315149: Add hsperf counters for CPU time of internal GC threads Jonathan Joo has updated the pull request incrementally with one additional commit since the last revision: Change APIs to be all-static, address other comments - Changes: - all: https://git.openjdk.org/

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v47]

2023-11-29 Thread Jonathan Joo
On Thu, 23 Nov 2023 12:43:00 GMT, Albert Mingkun Yang wrote: >> Jonathan Joo has updated the pull request incrementally with one additional >> commit since the last revision: >> >> Cleanup and address comments > > src/hotspot/share/gc/g1/g1CollectedHeap.cpp line

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v48]

2023-11-27 Thread Jonathan Joo
> 8315149: Add hsperf counters for CPU time of internal GC threads Jonathan Joo has updated the pull request incrementally with two additional commits since the last revision: - Fix namespace issues (2) Co-authored-by: Stefan Johansson <54407259+kstef...@users.noreply.github.com&g

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v46]

2023-11-22 Thread Jonathan Joo
On Tue, 21 Nov 2023 21:42:39 GMT, Jonathan Joo wrote: >> 8315149: Add hsperf counters for CPU time of internal GC threads > > Jonathan Joo has updated the pull request incrementally with two additional > commits since the last revision: > > - Update memory tracking typ

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v47]

2023-11-22 Thread Jonathan Joo
> 8315149: Add hsperf counters for CPU time of internal GC threads Jonathan Joo has updated the pull request incrementally with one additional commit since the last revision: Cleanup and address comments - Changes: - all: https://git.openjdk.org/jdk/pull/15082/files -

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v46]

2023-11-21 Thread Jonathan Joo
On Tue, 21 Nov 2023 21:42:39 GMT, Jonathan Joo wrote: >> 8315149: Add hsperf counters for CPU time of internal GC threads > > Jonathan Joo has updated the pull request incrementally with two additional > commits since the last revision: > > - Update memory tracking typ

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v46]

2023-11-21 Thread Jonathan Joo
> 8315149: Add hsperf counters for CPU time of internal GC threads Jonathan Joo has updated the pull request incrementally with two additional commits since the last revision: - Update memory tracking type for CPUTimeCounters - Fix assertion logic - Changes: - all: ht

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v44]

2023-11-20 Thread Jonathan Joo
On Wed, 15 Nov 2023 23:50:02 GMT, Jonathan Joo wrote: >> 8315149: Add hsperf counters for CPU time of internal GC threads > > Jonathan Joo has updated the pull request incrementally with one additional > commit since the last revision: > > Fix whitespace Addressed com

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v45]

2023-11-20 Thread Jonathan Joo
> 8315149: Add hsperf counters for CPU time of internal GC threads Jonathan Joo has updated the pull request incrementally with one additional commit since the last revision: Address comments and refactor TTTC class for simplification - Changes: - all: https://git.openjdk.

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v42]

2023-11-15 Thread Jonathan Joo
On Wed, 15 Nov 2023 09:36:47 GMT, Stefan Johansson wrote: >> Jonathan Joo has updated the pull request incrementally with one additional >> commit since the last revision: >> >> Update parallel workers time after Remark > > Thanks for addressing my comm

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v44]

2023-11-15 Thread Jonathan Joo
> 8315149: Add hsperf counters for CPU time of internal GC threads Jonathan Joo has updated the pull request incrementally with one additional commit since the last revision: Fix whitespace - Changes: - all: https://git.openjdk.org/jdk/pull/15082/files - new: ht

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v43]

2023-11-15 Thread Jonathan Joo
> 8315149: Add hsperf counters for CPU time of internal GC threads Jonathan Joo has updated the pull request incrementally with two additional commits since the last revision: - Move vm and conc_dedup counters to cpuTimeCounters class - Revert test changes and fix whitespace iss

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v41]

2023-11-14 Thread Jonathan Joo
On Sat, 11 Nov 2023 00:23:28 GMT, Jonathan Joo wrote: >> 8315149: Add hsperf counters for CPU time of internal GC threads > > Jonathan Joo has updated the pull request incrementally with two additional > commits since the last revision: > > - Refactor ConcurrentR

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v42]

2023-11-14 Thread Jonathan Joo
> 8315149: Add hsperf counters for CPU time of internal GC threads Jonathan Joo has updated the pull request incrementally with one additional commit since the last revision: Update parallel workers time after Remark - Changes: - all: https://git.openjdk.org/jdk/pull/15

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v41]

2023-11-10 Thread Jonathan Joo
On Sat, 11 Nov 2023 00:23:28 GMT, Jonathan Joo wrote: >> 8315149: Add hsperf counters for CPU time of internal GC threads > > Jonathan Joo has updated the pull request incrementally with two additional > commits since the last revision: > > - Refactor ConcurrentR

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v40]

2023-11-10 Thread Jonathan Joo
On Thu, 9 Nov 2023 10:29:29 GMT, Stefan Johansson wrote: >> Jonathan Joo has updated the pull request incrementally with one additional >> commit since the last revision: >> >> Add missing cpuTimeCounters files > > src/hotspot/share/gc/g1/g1ConcurrentRefine

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v41]

2023-11-10 Thread Jonathan Joo
> 8315149: Add hsperf counters for CPU time of internal GC threads Jonathan Joo has updated the pull request incrementally with two additional commits since the last revision: - Refactor ConcurrentRefine logic - Make CPUTimeCounters a singleton class - Changes: - all: ht

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v40]

2023-11-08 Thread Jonathan Joo
> 8315149: Add hsperf counters for CPU time of internal GC threads Jonathan Joo has updated the pull request incrementally with one additional commit since the last revision: Add missing cpuTimeCounters files - Changes: - all: https://git.openjdk.org/jdk/pull/15082/fi

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v39]

2023-11-08 Thread Jonathan Joo
> 8315149: Add hsperf counters for CPU time of internal GC threads Jonathan Joo has updated the pull request incrementally with one additional commit since the last revision: Refactor changes to counters, successful build - Changes: - all: https://git.openjdk.org/jdk/p

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v38]

2023-11-06 Thread Jonathan Joo
> 8315149: Add hsperf counters for CPU time of internal GC threads Jonathan Joo has updated the pull request incrementally with one additional commit since the last revision: Attempt to fix duplicate name error in test - Changes: - all: https://git.openjdk.org/jdk/pull/15

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v35]

2023-11-01 Thread Jonathan Joo
On Wed, 1 Nov 2023 09:34:01 GMT, Stefan Johansson wrote: >> Jonathan Joo has updated the pull request incrementally with one additional >> commit since the last revision: >> >> Replace NULL with nullptr > > Sorry for being a bit late to this PR. I think the ad

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v37]

2023-11-01 Thread Jonathan Joo
> 8315149: Add hsperf counters for CPU time of internal GC threads Jonathan Joo has updated the pull request incrementally with two additional commits since the last revision: - revert gitignore change - Attempt to fix broken test - Changes: - all: https://git.openjdk.org/

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v36]

2023-11-01 Thread Jonathan Joo
> 8315149: Add hsperf counters for CPU time of internal GC threads Jonathan Joo has updated the pull request with a new target base due to a merge or a rebase. The incremental webrev excludes the unrelated changes brought in by the merge/rebase. The pull request contains 36 additional comm

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v35]

2023-10-30 Thread Jonathan Joo
> 8315149: Add hsperf counters for CPU time of internal GC threads Jonathan Joo has updated the pull request incrementally with one additional commit since the last revision: Replace NULL with nullptr - Changes: - all: https://git.openjdk.org/jdk/pull/15082/files -

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v34]

2023-10-30 Thread Jonathan Joo
> 8315149: Add hsperf counters for CPU time of internal GC threads Jonathan Joo has updated the pull request incrementally with one additional commit since the last revision: Implement hsperf counter for G1ServiceThread - Changes: - all: https://git.openjdk.org/jdk/pull/15

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v33]

2023-10-30 Thread Jonathan Joo
On Fri, 27 Oct 2023 14:00:43 GMT, Albert Mingkun Yang wrote: > Okay, these counters can be accessed frequently, but is it necessary for them > to provide up-to-date information on every access? If not, what level of > delay is acceptable? I assume this depends on how often AHS resizes the heap.

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v33]

2023-10-26 Thread Jonathan Joo
> 8315149: Add hsperf counters for CPU time of internal GC threads Jonathan Joo has updated the pull request incrementally with one additional commit since the last revision: Remove StringDedup from GC thread list - Changes: - all: https://git.openjdk.org/jdk/pull/15082/fi

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v32]

2023-10-25 Thread Jonathan Joo
> 8315149: Add hsperf counters for CPU time of internal GC threads Jonathan Joo has updated the pull request incrementally with one additional commit since the last revision: Use 64-bit atomic add for incrementing counters - Changes: - all: https://git.openjdk.org/jdk/p

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v31]

2023-10-25 Thread Jonathan Joo
> 8315149: Add hsperf counters for CPU time of internal GC threads Jonathan Joo has updated the pull request with a new target base due to a merge or a rebase. The incremental webrev excludes the unrelated changes brought in by the merge/rebase. The pull request contains 31 additional comm

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v18]

2023-10-12 Thread Jonathan Joo
On Wed, 11 Oct 2023 22:25:04 GMT, Man Cao wrote: >> src/hotspot/share/runtime/perfData.hpp line 64: >> >>> 62: COM_THREADS, >>> 63: SUN_THREADS, >>> 64: SUN_THREADS_GCCPU,// Subsystem for Sun Threads GC CPU >> >> Really not sure about this naming ... > > +1, dropping the "GC" seems b

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v30]

2023-10-12 Thread Jonathan Joo
> 8315149: Add hsperf counters for CPU time of internal GC threads Jonathan Joo has updated the pull request incrementally with one additional commit since the last revision: Add call to publish in parallel gc and update counter names - Changes: - all: https://git.openjdk.

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v27]

2023-10-12 Thread Jonathan Joo
On Wed, 11 Oct 2023 23:23:11 GMT, Man Cao wrote: >> Jonathan Joo has updated the pull request incrementally with one additional >> commit since the last revision: >> >> add comment and change if defined to ifdef > > src/hotspot/share/gc/shared/collect

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v29]

2023-10-12 Thread Jonathan Joo
> 8315149: Add hsperf counters for CPU time of internal GC threads Jonathan Joo has updated the pull request incrementally with one additional commit since the last revision: Add Copyright header to test and formatting changes - Changes: - all: https://git.openjdk.org/jdk/p

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v28]

2023-10-12 Thread Jonathan Joo
> 8315149: Add hsperf counters for CPU time of internal GC threads Jonathan Joo has updated the pull request incrementally with one additional commit since the last revision: Fix test - Changes: - all: https://git.openjdk.org/jdk/pull/15082/files - new: ht

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v27]

2023-10-04 Thread Jonathan Joo
On Thu, 5 Oct 2023 03:00:36 GMT, Jonathan Joo wrote: >> 8315149: Add hsperf counters for CPU time of internal GC threads > > Jonathan Joo has updated the pull request incrementally with one additional > commit since the last revision: > > add comment and change if defin

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v27]

2023-10-04 Thread Jonathan Joo
> 8315149: Add hsperf counters for CPU time of internal GC threads Jonathan Joo has updated the pull request incrementally with one additional commit since the last revision: add comment and change if defined to ifdef - Changes: - all: https://git.openjdk.org/jdk/pull/15

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v26]

2023-10-04 Thread Jonathan Joo
> 8315149: Add hsperf counters for CPU time of internal GC threads Jonathan Joo has updated the pull request incrementally with one additional commit since the last revision: Remove header and fix long to jlong - Changes: - all: https://git.openjdk.org/jdk/pull/15082/fi

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v25]

2023-10-03 Thread Jonathan Joo
> 8315149: Add hsperf counters for CPU time of internal GC threads Jonathan Joo has updated the pull request incrementally with one additional commit since the last revision: Update logic to use cmpxchg rather than add - Changes: - all: https://git.openjdk.org/jdk/pull/15

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v24]

2023-09-19 Thread Jonathan Joo
> 8315149: Add hsperf counters for CPU time of internal GC threads Jonathan Joo has updated the pull request incrementally with one additional commit since the last revision: Fix build issues - Changes: - all: https://git.openjdk.org/jdk/pull/15082/files - new: ht

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v23]

2023-09-19 Thread Jonathan Joo
> 8315149: Add hsperf counters for CPU time of internal GC threads Jonathan Joo has updated the pull request incrementally with one additional commit since the last revision: Fix logic for publishing total cpu time and convert atomic jlong to long - Changes: - all: ht

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v22]

2023-09-18 Thread Jonathan Joo
> 8315149: Add hsperf counters for CPU time of internal GC threads Jonathan Joo has updated the pull request incrementally with one additional commit since the last revision: Fix more broken headers for sanity checks - Changes: - all: https://git.openjdk.org/jdk/pull/15

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v21]

2023-09-18 Thread Jonathan Joo
> 8315149: Add hsperf counters for CPU time of internal GC threads Jonathan Joo has updated the pull request incrementally with one additional commit since the last revision: Add more header files for broken debug build - Changes: - all: https://git.openjdk.org/jdk/pull/15

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v20]

2023-09-18 Thread Jonathan Joo
> 8315149: Add hsperf counters for CPU time of internal GC threads Jonathan Joo has updated the pull request incrementally with one additional commit since the last revision: Add header for failing build check - Changes: - all: https://git.openjdk.org/jdk/pull/15082/fi

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v18]

2023-09-15 Thread Jonathan Joo
On Fri, 15 Sep 2023 01:29:57 GMT, David Holmes wrote: >> Jonathan Joo has updated the pull request incrementally with one additional >> commit since the last revision: >> >> Clean up test and improve total counter name > > test/jdk/sun/tools/jcmd/TestGcC

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v19]

2023-09-15 Thread Jonathan Joo
> 8315149: Add hsperf counters for CPU time of internal GC threads Jonathan Joo has updated the pull request incrementally with one additional commit since the last revision: Address dholmes@ comments - Changes: - all: https://git.openjdk.org/jdk/pull/15082/files -

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v18]

2023-09-14 Thread Jonathan Joo
> 8315149: Add hsperf counters for CPU time of internal GC threads Jonathan Joo has updated the pull request incrementally with one additional commit since the last revision: Clean up test and improve total counter name - Changes: - all: https://git.openjdk.org/jdk/pull/15

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v17]

2023-09-14 Thread Jonathan Joo
> 8315149: Add hsperf counters for CPU time of internal GC threads Jonathan Joo has updated the pull request incrementally with one additional commit since the last revision: Add unit test to check existence of GC CPU counters - Changes: - all: https://git.openjdk.org/jdk/p

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v16]

2023-09-14 Thread Jonathan Joo
> 8315149: Add hsperf counters for CPU time of internal GC threads Jonathan Joo has updated the pull request incrementally with one additional commit since the last revision: Fix segfaults on build - Changes: - all: https://git.openjdk.org/jdk/pull/15082/files - new: ht

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v15]

2023-09-14 Thread Jonathan Joo
> 8315149: Add hsperf counters for CPU time of internal GC threads Jonathan Joo has updated the pull request incrementally with one additional commit since the last revision: comment out lines that cause segfault - Changes: - all: https://git.openjdk.org/jdk/pull/15082/fi

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v14]

2023-09-14 Thread Jonathan Joo
> 8315149: Add hsperf counters for CPU time of internal GC threads Jonathan Joo has updated the pull request incrementally with one additional commit since the last revision: Update to improve total time tracking - Changes: - all: https://git.openjdk.org/jdk/pull/15082/fi

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v13]

2023-09-13 Thread Jonathan Joo
> 8315149: Add hsperf counters for CPU time of internal GC threads Jonathan Joo has updated the pull request incrementally with one additional commit since the last revision: Update total gc cpu implementation (still not finished) - Changes: - all: https://git.openjdk.org/

Re: RFR: 8315149: Add hsperf counters for CPU time of internal GC threads [v12]

2023-09-13 Thread Jonathan Joo
> 8315149: Add hsperf counters for CPU time of internal GC threads Jonathan Joo has updated the pull request incrementally with one additional commit since the last revision: Partial commit attempting to add total cpu tracker - Changes: - all: https://git.openjdk.org/jdk/p