hotspot/src/share/vm/memory/memRegion.hpp
author zgu
Thu, 28 Jun 2012 17:03:16 -0400
changeset 13195 be27e1b6a4b9
parent 7397 5b173b4ca846
child 13728 882756847a04
permissions -rw-r--r--
6995781: Native Memory Tracking (Phase 1) 7151532: DCmd for hotspot native memory tracking Summary: Implementation of native memory tracking phase 1, which tracks VM native memory usage, and related DCmd Reviewed-by: acorn, coleenp, fparain
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) 2000, 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_MEMORY_MEMREGION_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#define SHARE_VM_MEMORY_MEMREGION_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 "memory/allocation.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "utilities/debug.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "utilities/globalDefinitions.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
// A very simple data structure representing a contigous region
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
// region of address space.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// Note that MemRegions are passed by value, not by reference.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// The intent is that they remain very small and contain no
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// objects.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
class MemRegion VALUE_OBJ_CLASS_SPEC {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  HeapWord* _start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  size_t    _word_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  MemRegion() : _start(NULL), _word_size(0) {};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  MemRegion(HeapWord* start, size_t word_size) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
    _start(start), _word_size(word_size) {};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  MemRegion(HeapWord* start, HeapWord* end) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
    _start(start), _word_size(pointer_delta(end, start)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
    assert(end >= start, "incorrect constructor arguments");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  MemRegion(const MemRegion& mr): _start(mr._start), _word_size(mr._word_size) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  MemRegion intersection(const MemRegion mr2) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  // regions must overlap or be adjacent
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  MemRegion _union(const MemRegion mr2) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  // minus will fail a guarantee if mr2 is interior to this,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  // since there's no way to return 2 disjoint regions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  MemRegion minus(const MemRegion mr2) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  HeapWord* start() const { return _start; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  HeapWord* end() const   { return _start + _word_size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  HeapWord* last() const  { return _start + _word_size - 1; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  void set_start(HeapWord* start) { _start = start; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  void set_end(HeapWord* end)     { _word_size = pointer_delta(end, _start); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  void set_word_size(size_t word_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
    _word_size = word_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  bool contains(const MemRegion mr2) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
    return _start <= mr2._start && end() >= mr2.end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  bool contains(const void* addr) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
    return addr >= (void*)_start && addr < (void*)end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  bool equals(const MemRegion mr2) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
    // first disjunct since we do not have a canonical empty set
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
    return ((is_empty() && mr2.is_empty()) ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
            (start() == mr2.start() && end() == mr2.end()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  size_t byte_size() const { return _word_size * sizeof(HeapWord); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  size_t word_size() const { return _word_size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  bool is_empty() const { return word_size() == 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
// For iteration over MemRegion's.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
class MemRegionClosure : public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  virtual void do_MemRegion(MemRegion mr) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
// A ResourceObj version of MemRegionClosure
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
class MemRegionClosureRO: public MemRegionClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
public:
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 7397
diff changeset
   102
  void* operator new(size_t size, ResourceObj::allocation_type type, MEMFLAGS flags) {
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 7397
diff changeset
   103
        return ResourceObj::operator new(size, type, flags);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  void* operator new(size_t size, Arena *arena) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
        return ResourceObj::operator new(size, arena);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  void* operator new(size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
        return ResourceObj::operator new(size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  void  operator delete(void* p) {} // nothing to do
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   114
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   115
#endif // SHARE_VM_MEMORY_MEMREGION_HPP