hotspot/src/share/vm/memory/memRegion.hpp
author trims
Thu, 27 May 2010 19:08:38 -0700
changeset 5547 f4b087cbb361
parent 1 489c9b5090e2
child 7397 5b173b4ca846
permissions -rw-r--r--
6941466: Oracle rebranding changes for Hotspot repositories Summary: Change all the Sun copyrights to Oracle copyright Reviewed-by: ohair
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
     2
 * Copyright (c) 2000, 2004, 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
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
// A very simple data structure representing a contigous region
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
// region of address space.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
// Note that MemRegions are passed by value, not by reference.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
// The intent is that they remain very small and contain no
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
// objects.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
class MemRegion VALUE_OBJ_CLASS_SPEC {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  HeapWord* _start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  size_t    _word_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  MemRegion() : _start(NULL), _word_size(0) {};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  MemRegion(HeapWord* start, size_t word_size) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
    _start(start), _word_size(word_size) {};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  MemRegion(HeapWord* start, HeapWord* end) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
    _start(start), _word_size(pointer_delta(end, start)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
    assert(end >= start, "incorrect constructor arguments");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  MemRegion(const MemRegion& mr): _start(mr._start), _word_size(mr._word_size) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  MemRegion intersection(const MemRegion mr2) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  // regions must overlap or be adjacent
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  MemRegion _union(const MemRegion mr2) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  // minus will fail a guarantee if mr2 is interior to this,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  // since there's no way to return 2 disjoint regions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  MemRegion minus(const MemRegion mr2) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  HeapWord* start() const { return _start; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  HeapWord* end() const   { return _start + _word_size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  HeapWord* last() const  { return _start + _word_size - 1; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  void set_start(HeapWord* start) { _start = start; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  void set_end(HeapWord* end)     { _word_size = pointer_delta(end, _start); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  void set_word_size(size_t word_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
    _word_size = word_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  bool contains(const MemRegion mr2) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    return _start <= mr2._start && end() >= mr2.end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  bool contains(const void* addr) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
    return addr >= (void*)_start && addr < (void*)end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  bool equals(const MemRegion mr2) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
    // first disjunct since we do not have a canonical empty set
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
    return ((is_empty() && mr2.is_empty()) ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
            (start() == mr2.start() && end() == mr2.end()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  size_t byte_size() const { return _word_size * sizeof(HeapWord); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  size_t word_size() const { return _word_size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  bool is_empty() const { return word_size() == 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
// For iteration over MemRegion's.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
class MemRegionClosure : public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  virtual void do_MemRegion(MemRegion mr) = 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
// A ResourceObj version of MemRegionClosure
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
class MemRegionClosureRO: public MemRegionClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  void* operator new(size_t size, ResourceObj::allocation_type type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
        return ResourceObj::operator new(size, type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  void* operator new(size_t size, Arena *arena) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
        return ResourceObj::operator new(size, arena);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  void* operator new(size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
        return ResourceObj::operator new(size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  void  operator delete(void* p) {} // nothing to do
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
};