hotspot/src/share/vm/services/memoryUsage.hpp
author dsamersoff
Wed, 25 Jan 2012 21:10:08 +0400
changeset 11598 db8931f2a56d
parent 7397 5b173b4ca846
child 20001 7446501f55bc
permissions -rw-r--r--
7132515: Add dcmd to manage UnlockingCommercialFeature flag Summary: Added dcmd to unlock or check status of UnlockingCommercialFeature flag Reviewed-by: fparain, rottenha
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
     2
 * Copyright (c) 2003, 2010, 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
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    25
#ifndef SHARE_VM_SERVICES_MEMORYUSAGE_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#define SHARE_VM_SERVICES_MEMORYUSAGE_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "utilities/globalDefinitions.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
// A memory usage contains the following attributes about memory usage:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
//  initSize - represents the initial amount of memory (in bytes) that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
//     the Java virtual machine requests from the operating system
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
//     for memory management.  The Java virtual machine may request
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
//     additional memory from the operating system later when appropriate.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
//     Its value may be undefined.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
//  used      - represents the amount of memory currently used (in bytes).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
//  committed - represents the amount of memory (in bytes) that is
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
//     guaranteed to be available for use by the Java virtual machine.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
//     The amount of committed memory may change over time (increase
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
//     or decrease).  It is guaranteed to be greater than or equal
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
//     to initSize.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
//  maxSize   - represents the maximum amount of memory (in bytes)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
//     that can be used for memory management. The maximum amount of
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
//     memory for memory management could be less than the amount of
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
//     committed memory.  Its value may be undefined.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
class MemoryUsage VALUE_OBJ_CLASS_SPEC {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  size_t _initSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  size_t _used;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  size_t _committed;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  size_t _maxSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  // Constructors
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  MemoryUsage(size_t i, size_t u, size_t c, size_t m) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
    _initSize(i), _used(u), _committed(c), _maxSize(m) {};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  MemoryUsage() :
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
    _initSize(0), _used(0), _committed(0), _maxSize(0) {};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  size_t init_size() const { return _initSize; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  size_t used()      const { return _used; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  size_t committed() const { return _committed; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  size_t max_size()  const { return _maxSize; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  inline static jlong convert_to_jlong(size_t val) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    // In the 64-bit vm, a size_t can overflow a jlong (which is signed).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    jlong ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
    if (val == (size_t)-1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
      ret = -1L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
      NOT_LP64(ret = val;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
      LP64_ONLY(ret = MIN2(val, (size_t)max_jlong);)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
    return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  jlong init_size_as_jlong() const { return convert_to_jlong(_initSize); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  jlong used_as_jlong()      const { return convert_to_jlong(_used); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  jlong committed_as_jlong() const { return convert_to_jlong(_committed); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  jlong max_size_as_jlong()  const { return convert_to_jlong(_maxSize); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    83
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    84
#endif // SHARE_VM_SERVICES_MEMORYUSAGE_HPP