src/hotspot/share/gc/cms/gSpaceCounters.hpp
author coleenp
Thu, 10 Jan 2019 15:13:51 -0500
changeset 53244 9807daeb47c4
parent 48157 7c4d43c26352
child 55539 734e58d8477b
permissions -rw-r--r--
8216167: Update include guards to reflect correct directories Summary: Use script and some manual fixup to fix directores names in include guards. Reviewed-by: lfoltan, eosterlund, kbarrett
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 48157
diff changeset
     2
 * Copyright (c) 2002, 2019, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 48157
diff changeset
    25
#ifndef SHARE_GC_CMS_GSPACECOUNTERS_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 48157
diff changeset
    26
#define SHARE_GC_CMS_GSPACECOUNTERS_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 27880
diff changeset
    28
#include "gc/shared/generation.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 27880
diff changeset
    29
#include "gc/shared/generationCounters.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 27880
diff changeset
    30
#include "runtime/perfData.hpp"
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13963
diff changeset
    31
#include "utilities/macros.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
// A GSpaceCounter is a holder class for performance counters
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// that track a space;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 7397
diff changeset
    36
class GSpaceCounters: public CHeapObj<mtGC> {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  PerfVariable*      _capacity;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  PerfVariable*      _used;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  // Constant PerfData types don't need to retain a reference.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  // However, it's a good idea to document them here.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  // PerfConstant*     _size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  Generation*       _gen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  char*             _name_space;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  GSpaceCounters(const char* name, int ordinal, size_t max_size, Generation* g,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
                 GenerationCounters* gc, bool sampled=true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
48157
7c4d43c26352 8192061: Clean up allocation.inline.hpp includes
stefank
parents: 47216
diff changeset
    55
  ~GSpaceCounters();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  inline void update_capacity() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
    _capacity->set_value(_gen->capacity());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  inline void update_used() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
    _used->set_value(_gen->used());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  // special version of update_used() to allow the used value to be
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  // passed as a parameter. This method can can be used in cases were
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  // the  utilization is already known and/or when the _gen->used()
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  // method is known to be expensive and we want to avoid unnecessary
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  // calls to it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  inline void update_used(size_t used) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
    _used->set_value(used);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  inline void inc_used(size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
    _used->inc(size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  debug_only(
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
    // for security reasons, we do not allow arbitrary reads from
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
    // the counters as they may live in shared memory.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
    jlong used() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
      return _used->get_value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
    jlong capacity() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
      return _used->get_value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  )
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  inline void update_all() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    update_used();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    update_capacity();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  const char* name_space() const        { return _name_space; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
class GenerationUsedHelper : public PerfLongSampleHelper {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
    Generation* _gen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    GenerationUsedHelper(Generation* g) : _gen(g) { }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
    inline jlong take_sample() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
      return _gen->used();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   109
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 48157
diff changeset
   110
#endif // SHARE_GC_CMS_GSPACECOUNTERS_HPP