src/hotspot/share/gc/cms/gSpaceCounters.hpp
author erikj
Tue, 12 Sep 2017 19:03:39 +0200
changeset 47216 71c04702a3d5
parent 30764 hotspot/src/share/vm/gc/cms/gSpaceCounters.hpp@fec48bf5a827
child 48157 7c4d43c26352
permissions -rw-r--r--
8187443: Forest Consolidation: Move files to unified layout Reviewed-by: darcy, ihse
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 27880
diff changeset
     2
 * Copyright (c) 2002, 2015, 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
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 27880
diff changeset
    25
#ifndef SHARE_VM_GC_CMS_GSPACECOUNTERS_HPP
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 27880
diff changeset
    26
#define SHARE_VM_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
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  ~GSpaceCounters() {
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 22234
diff changeset
    56
    if (_name_space != NULL) FREE_C_HEAP_ARRAY(char, _name_space);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  inline void update_capacity() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
    _capacity->set_value(_gen->capacity());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  inline void update_used() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
    _used->set_value(_gen->used());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  // special version of update_used() to allow the used value to be
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  // passed as a parameter. This method can can be used in cases were
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  // the  utilization is already known and/or when the _gen->used()
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  // method is known to be expensive and we want to avoid unnecessary
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  // calls to it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  inline void update_used(size_t used) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
    _used->set_value(used);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  inline void inc_used(size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
    _used->inc(size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  debug_only(
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
    // for security reasons, we do not allow arbitrary reads from
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
    // the counters as they may live in shared memory.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
    jlong used() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
      return _used->get_value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
    jlong capacity() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
      return _used->get_value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  )
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  inline void update_all() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
    update_used();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
    update_capacity();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  const char* name_space() const        { return _name_space; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
class GenerationUsedHelper : public PerfLongSampleHelper {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
    Generation* _gen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
    GenerationUsedHelper(Generation* g) : _gen(g) { }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
    inline jlong take_sample() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
      return _gen->used();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   111
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 27880
diff changeset
   112
#endif // SHARE_VM_GC_CMS_GSPACECOUNTERS_HPP