< prev index next >

src/share/vm/gc_implementation/g1/g1MMUTracker.cpp

Print this page
rev 8910 : full patch for jfr

@@ -1,7 +1,7 @@
 /*
- * Copyright (c) 2001, 2011, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2001, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
  * under the terms of the GNU General Public License version 2 only, as
  * published by the Free Software Foundation.

@@ -103,10 +103,15 @@
   } else {
     _head_index = trim_index(_head_index + 1);
     ++_no_entries;
   }
   _array[_head_index] = G1MMUTrackerQueueElem(start, end);
+
+  if (EnableJFR) {
+    double slice_time = calculate_gc_time(end);
+    G1MMUTracer::report_mmu(_time_slice, slice_time, _max_gc_time, gc_thread);
+  }
 }
 
 // basically the _internal call does not remove expired entries
 // this is for trying things out in the future and a couple
 // of other places (debugging)
< prev index next >