src/hotspot/share/memory/memRegion.hpp
author coleenp
Wed, 14 Mar 2018 07:27:19 -0400
changeset 49392 2956d0ece7a9
parent 49364 601146c66cad
child 49455 848864ed9b17
permissions -rw-r--r--
8199282: Remove ValueObj class for allocation subclassing for gc code Reviewed-by: stefank, kbarrett
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
49364
601146c66cad 8173070: Remove ValueObj class for allocation subclassing for runtime code
coleenp
parents: 47216
diff changeset
     2
 * Copyright (c) 2000, 2018, 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
49392
2956d0ece7a9 8199282: Remove ValueObj class for allocation subclassing for gc code
coleenp
parents: 49364
diff changeset
    37
// objects. These should never be allocated in heap but we do
17376
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 13728
diff changeset
    38
// create MemRegions (in CardTableModRefBS) in heap so operator
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 13728
diff changeset
    39
// new and operator new [] added for this special case.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    41
class MetaWord;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    42
49364
601146c66cad 8173070: Remove ValueObj class for allocation subclassing for runtime code
coleenp
parents: 47216
diff changeset
    43
class MemRegion {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  HeapWord* _start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  size_t    _word_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  MemRegion() : _start(NULL), _word_size(0) {};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  MemRegion(HeapWord* start, size_t word_size) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
    _start(start), _word_size(word_size) {};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  MemRegion(HeapWord* start, HeapWord* end) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
    _start(start), _word_size(pointer_delta(end, start)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
    assert(end >= start, "incorrect constructor arguments");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    57
  MemRegion(MetaWord* start, MetaWord* end) :
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    58
    _start((HeapWord*)start), _word_size(pointer_delta(end, start)) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    59
    assert(end >= start, "incorrect constructor arguments");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    60
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  MemRegion(const MemRegion& mr): _start(mr._start), _word_size(mr._word_size) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  MemRegion intersection(const MemRegion mr2) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  // regions must overlap or be adjacent
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  MemRegion _union(const MemRegion mr2) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  // minus will fail a guarantee if mr2 is interior to this,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  // since there's no way to return 2 disjoint regions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  MemRegion minus(const MemRegion mr2) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  HeapWord* start() const { return _start; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  HeapWord* end() const   { return _start + _word_size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  HeapWord* last() const  { return _start + _word_size - 1; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  void set_start(HeapWord* start) { _start = start; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  void set_end(HeapWord* end)     { _word_size = pointer_delta(end, _start); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  void set_word_size(size_t word_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
    _word_size = word_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
  bool contains(const MemRegion mr2) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
    return _start <= mr2._start && end() >= mr2.end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  bool contains(const void* addr) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
    return addr >= (void*)_start && addr < (void*)end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  bool equals(const MemRegion mr2) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    // first disjunct since we do not have a canonical empty set
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
    return ((is_empty() && mr2.is_empty()) ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
            (start() == mr2.start() && end() == mr2.end()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  size_t byte_size() const { return _word_size * sizeof(HeapWord); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  size_t word_size() const { return _word_size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  bool is_empty() const { return word_size() == 0; }
19696
bd5a0131bde1 8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents: 17376
diff changeset
    97
  void* operator new(size_t size) throw();
bd5a0131bde1 8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents: 17376
diff changeset
    98
  void* operator new [](size_t size) throw();
17376
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 13728
diff changeset
    99
  void  operator delete(void* p);
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 13728
diff changeset
   100
  void  operator delete [](void* p);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
// For iteration over MemRegion's.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
class MemRegionClosure : public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  virtual void do_MemRegion(MemRegion mr) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
// A ResourceObj version of MemRegionClosure
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
class MemRegionClosureRO: public MemRegionClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
public:
19696
bd5a0131bde1 8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents: 17376
diff changeset
   114
  void* operator new(size_t size, ResourceObj::allocation_type type, MEMFLAGS flags) throw() {
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 7397
diff changeset
   115
        return ResourceObj::operator new(size, type, flags);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  }
19696
bd5a0131bde1 8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents: 17376
diff changeset
   117
  void* operator new(size_t size, Arena *arena) throw() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
        return ResourceObj::operator new(size, arena);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  }
19696
bd5a0131bde1 8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents: 17376
diff changeset
   120
  void* operator new(size_t size) throw() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
        return ResourceObj::operator new(size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  void  operator delete(void* p) {} // nothing to do
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   126
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   127
#endif // SHARE_VM_MEMORY_MEMREGION_HPP