src/share/vm/jfr/leakprofiler/chains/dfsClosure.cpp

Mon, 12 Aug 2019 18:30:40 +0300

author
apetushkov
date
Mon, 12 Aug 2019 18:30:40 +0300
changeset 9858
b985cbb00e68
child 9885
8e875c964f41
permissions
-rw-r--r--

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
8202835: jfr/event/os/TestSystemProcess.java fails on missing events
Summary: Backport JFR from JDK11. Initial integration
Reviewed-by: neugens

     1 /*
     2  * Copyright (c) 2014, 2018, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     8  *
     9  * This code is distributed in the hope that it will be useful, but WITHOUT
    10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    12  * version 2 for more details (a copy is included in the LICENSE file that
    13  * accompanied this code).
    14  *
    15  * You should have received a copy of the GNU General Public License version
    16  * 2 along with this work; if not, write to the Free Software Foundation,
    17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    18  *
    19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    20  * or visit www.oracle.com if you need additional information or have any
    21  * questions.
    22  *
    23  */
    25 #include "precompiled.hpp"
    26 #include "jfr/leakprofiler/chains/dfsClosure.hpp"
    27 #include "jfr/leakprofiler/chains/edge.hpp"
    28 #include "jfr/leakprofiler/chains/edgeStore.hpp"
    29 #include "jfr/leakprofiler/utilities/granularTimer.hpp"
    30 #include "jfr/leakprofiler/chains/bitset.hpp"
    31 #include "jfr/leakprofiler/utilities/unifiedOop.hpp"
    32 #include "jfr/leakprofiler/utilities/rootType.hpp"
    33 #include "jfr/leakprofiler/chains/rootSetClosure.hpp"
    34 #include "memory/iterator.inline.hpp"
    35 #include "memory/resourceArea.hpp"
    36 #include "oops/oop.inline.hpp"
    37 #include "utilities/align.hpp"
    39 // max dfs depth should not exceed size of stack
    40 static const size_t max_dfs_depth = 5000;
    42 EdgeStore* DFSClosure::_edge_store = NULL;
    43 BitSet* DFSClosure::_mark_bits = NULL;
    44 const Edge* DFSClosure::_start_edge = NULL;
    45 size_t DFSClosure::_max_depth = max_dfs_depth;
    46 bool DFSClosure::_ignore_root_set = false;
    48 DFSClosure::DFSClosure() :
    49   _parent(NULL),
    50   _reference(NULL),
    51   _depth(0) {
    52 }
    54 DFSClosure::DFSClosure(DFSClosure* parent, size_t depth) :
    55   _parent(parent),
    56   _reference(NULL),
    57   _depth(depth) {
    58 }
    60 void DFSClosure::find_leaks_from_edge(EdgeStore* edge_store,
    61                                       BitSet* mark_bits,
    62                                       const Edge* start_edge) {
    63   assert(edge_store != NULL, "invariant");
    64   assert(mark_bits != NULL," invariant");
    65   assert(start_edge != NULL, "invariant");
    67   _edge_store = edge_store;
    68   _mark_bits = mark_bits;
    69   _start_edge = start_edge;
    70   _ignore_root_set = false;
    71   assert(_max_depth == max_dfs_depth, "invariant");
    73   // Depth-first search, starting from a BFS egde
    74   DFSClosure dfs;
    75   start_edge->pointee()->oop_iterate(&dfs);
    76 }
    78 void DFSClosure::find_leaks_from_root_set(EdgeStore* edge_store,
    79                                           BitSet* mark_bits) {
    80   assert(edge_store != NULL, "invariant");
    81   assert(mark_bits != NULL, "invariant");
    83   _edge_store = edge_store;
    84   _mark_bits = mark_bits;
    85   _start_edge = NULL;
    87   // Mark root set, to avoid going sideways
    88   _max_depth = 1;
    89   _ignore_root_set = false;
    90   DFSClosure dfs1;
    91   RootSetClosure::process_roots(&dfs1);
    93   // Depth-first search
    94   _max_depth = max_dfs_depth;
    95   _ignore_root_set = true;
    96   assert(_start_edge == NULL, "invariant");
    97   DFSClosure dfs2;
    98   RootSetClosure::process_roots(&dfs2);
    99 }
   101 void DFSClosure::closure_impl(const oop* reference, const oop pointee) {
   102   assert(pointee != NULL, "invariant");
   103   assert(reference != NULL, "invariant");
   105   if (GranularTimer::is_finished()) {
   106      return;
   107   }
   108   if (_depth == 0 && _ignore_root_set) {
   109     // Root set is already marked, but we want
   110     // to continue, so skip is_marked check.
   111     assert(_mark_bits->is_marked(pointee), "invariant");
   112   } else {
   113     if (_mark_bits->is_marked(pointee)) {
   114       return;
   115     }
   116   }
   118   _reference = reference;
   119   _mark_bits->mark_obj(pointee);
   120   assert(_mark_bits->is_marked(pointee), "invariant");
   122   // is the pointee a sample object?
   123   if (NULL == pointee->mark()) {
   124     add_chain();
   125   }
   127   assert(_max_depth >= 1, "invariant");
   128   if (_depth < _max_depth - 1) {
   129     DFSClosure next_level(this, _depth + 1);
   130     pointee->oop_iterate(&next_level);
   131   }
   132 }
   134 void DFSClosure::add_chain() {
   135   const size_t length = _start_edge == NULL ? _depth + 1 :
   136                         _start_edge->distance_to_root() + 1 + _depth + 1;
   138   ResourceMark rm;
   139   Edge* const chain = NEW_RESOURCE_ARRAY(Edge, length);
   140   size_t idx = 0;
   142   // aggregate from depth-first search
   143   const DFSClosure* c = this;
   144   while (c != NULL) {
   145     chain[idx++] = Edge(NULL, c->reference());
   146     c = c->parent();
   147   }
   149   assert(idx == _depth + 1, "invariant");
   151   // aggregate from breadth-first search
   152   const Edge* current = _start_edge;
   153   while (current != NULL) {
   154     chain[idx++] = Edge(NULL, current->reference());
   155     current = current->parent();
   156   }
   157   assert(idx == length, "invariant");
   158   _edge_store->add_chain(chain, length);
   159 }
   161 void DFSClosure::do_oop(oop* ref) {
   162   assert(ref != NULL, "invariant");
   163   assert(is_aligned(ref, HeapWordSize), "invariant");
   164   const oop pointee = *ref;
   165   if (pointee != NULL) {
   166     closure_impl(ref, pointee);
   167   }
   168 }
   170 void DFSClosure::do_oop(narrowOop* ref) {
   171   assert(ref != NULL, "invariant");
   172   assert(is_aligned(ref, sizeof(narrowOop)), "invariant");
   173   const oop pointee = oopDesc::load_decode_heap_oop(ref);
   174   if (pointee != NULL) {
   175     closure_impl(UnifiedOop::encode(ref), pointee);
   176   }
   177 }

mercurial