annotate src/share/vm/memory/memRegion.hpp @ 1972:f95d63e2154a

6989984: Use standard include model for Hospot Summary: Replaced MakeDeps and the includeDB files with more standardized solutions. Reviewed-by: coleenp, kvn, kamg
author stefank
date Tue, 23 Nov 2010 13:22:55 -0800
parents c18cbe5936b8
children d2a62e0f25eb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
2 * Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
25 #ifndef SHARE_VM_MEMORY_MEMREGION_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #define SHARE_VM_MEMORY_MEMREGION_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #include "memory/allocation.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29 #include "utilities/debug.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
30 #include "utilities/globalDefinitions.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
31
0
a61af66fc99e Initial load
duke
parents:
diff changeset
32 // A very simple data structure representing a contigous region
a61af66fc99e Initial load
duke
parents:
diff changeset
33 // region of address space.
a61af66fc99e Initial load
duke
parents:
diff changeset
34
a61af66fc99e Initial load
duke
parents:
diff changeset
35 // Note that MemRegions are passed by value, not by reference.
a61af66fc99e Initial load
duke
parents:
diff changeset
36 // The intent is that they remain very small and contain no
a61af66fc99e Initial load
duke
parents:
diff changeset
37 // objects.
a61af66fc99e Initial load
duke
parents:
diff changeset
38
a61af66fc99e Initial load
duke
parents:
diff changeset
39 class MemRegion VALUE_OBJ_CLASS_SPEC {
a61af66fc99e Initial load
duke
parents:
diff changeset
40 friend class VMStructs;
a61af66fc99e Initial load
duke
parents:
diff changeset
41 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
42 HeapWord* _start;
a61af66fc99e Initial load
duke
parents:
diff changeset
43 size_t _word_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
44
a61af66fc99e Initial load
duke
parents:
diff changeset
45 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
46 MemRegion() : _start(NULL), _word_size(0) {};
a61af66fc99e Initial load
duke
parents:
diff changeset
47 MemRegion(HeapWord* start, size_t word_size) :
a61af66fc99e Initial load
duke
parents:
diff changeset
48 _start(start), _word_size(word_size) {};
a61af66fc99e Initial load
duke
parents:
diff changeset
49 MemRegion(HeapWord* start, HeapWord* end) :
a61af66fc99e Initial load
duke
parents:
diff changeset
50 _start(start), _word_size(pointer_delta(end, start)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
51 assert(end >= start, "incorrect constructor arguments");
a61af66fc99e Initial load
duke
parents:
diff changeset
52 }
a61af66fc99e Initial load
duke
parents:
diff changeset
53
a61af66fc99e Initial load
duke
parents:
diff changeset
54 MemRegion(const MemRegion& mr): _start(mr._start), _word_size(mr._word_size) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
55
a61af66fc99e Initial load
duke
parents:
diff changeset
56 MemRegion intersection(const MemRegion mr2) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
57 // regions must overlap or be adjacent
a61af66fc99e Initial load
duke
parents:
diff changeset
58 MemRegion _union(const MemRegion mr2) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
59 // minus will fail a guarantee if mr2 is interior to this,
a61af66fc99e Initial load
duke
parents:
diff changeset
60 // since there's no way to return 2 disjoint regions.
a61af66fc99e Initial load
duke
parents:
diff changeset
61 MemRegion minus(const MemRegion mr2) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
62
a61af66fc99e Initial load
duke
parents:
diff changeset
63 HeapWord* start() const { return _start; }
a61af66fc99e Initial load
duke
parents:
diff changeset
64 HeapWord* end() const { return _start + _word_size; }
a61af66fc99e Initial load
duke
parents:
diff changeset
65 HeapWord* last() const { return _start + _word_size - 1; }
a61af66fc99e Initial load
duke
parents:
diff changeset
66
a61af66fc99e Initial load
duke
parents:
diff changeset
67 void set_start(HeapWord* start) { _start = start; }
a61af66fc99e Initial load
duke
parents:
diff changeset
68 void set_end(HeapWord* end) { _word_size = pointer_delta(end, _start); }
a61af66fc99e Initial load
duke
parents:
diff changeset
69 void set_word_size(size_t word_size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
70 _word_size = word_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
71 }
a61af66fc99e Initial load
duke
parents:
diff changeset
72
a61af66fc99e Initial load
duke
parents:
diff changeset
73 bool contains(const MemRegion mr2) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
74 return _start <= mr2._start && end() >= mr2.end();
a61af66fc99e Initial load
duke
parents:
diff changeset
75 }
a61af66fc99e Initial load
duke
parents:
diff changeset
76 bool contains(const void* addr) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
77 return addr >= (void*)_start && addr < (void*)end();
a61af66fc99e Initial load
duke
parents:
diff changeset
78 }
a61af66fc99e Initial load
duke
parents:
diff changeset
79 bool equals(const MemRegion mr2) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
80 // first disjunct since we do not have a canonical empty set
a61af66fc99e Initial load
duke
parents:
diff changeset
81 return ((is_empty() && mr2.is_empty()) ||
a61af66fc99e Initial load
duke
parents:
diff changeset
82 (start() == mr2.start() && end() == mr2.end()));
a61af66fc99e Initial load
duke
parents:
diff changeset
83 }
a61af66fc99e Initial load
duke
parents:
diff changeset
84
a61af66fc99e Initial load
duke
parents:
diff changeset
85 size_t byte_size() const { return _word_size * sizeof(HeapWord); }
a61af66fc99e Initial load
duke
parents:
diff changeset
86 size_t word_size() const { return _word_size; }
a61af66fc99e Initial load
duke
parents:
diff changeset
87
a61af66fc99e Initial load
duke
parents:
diff changeset
88 bool is_empty() const { return word_size() == 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
89 };
a61af66fc99e Initial load
duke
parents:
diff changeset
90
a61af66fc99e Initial load
duke
parents:
diff changeset
91 // For iteration over MemRegion's.
a61af66fc99e Initial load
duke
parents:
diff changeset
92
a61af66fc99e Initial load
duke
parents:
diff changeset
93 class MemRegionClosure : public StackObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
94 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
95 virtual void do_MemRegion(MemRegion mr) = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
96 };
a61af66fc99e Initial load
duke
parents:
diff changeset
97
a61af66fc99e Initial load
duke
parents:
diff changeset
98 // A ResourceObj version of MemRegionClosure
a61af66fc99e Initial load
duke
parents:
diff changeset
99
a61af66fc99e Initial load
duke
parents:
diff changeset
100 class MemRegionClosureRO: public MemRegionClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
101 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
102 void* operator new(size_t size, ResourceObj::allocation_type type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
103 return ResourceObj::operator new(size, type);
a61af66fc99e Initial load
duke
parents:
diff changeset
104 }
a61af66fc99e Initial load
duke
parents:
diff changeset
105 void* operator new(size_t size, Arena *arena) {
a61af66fc99e Initial load
duke
parents:
diff changeset
106 return ResourceObj::operator new(size, arena);
a61af66fc99e Initial load
duke
parents:
diff changeset
107 }
a61af66fc99e Initial load
duke
parents:
diff changeset
108 void* operator new(size_t size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
109 return ResourceObj::operator new(size);
a61af66fc99e Initial load
duke
parents:
diff changeset
110 }
a61af66fc99e Initial load
duke
parents:
diff changeset
111
a61af66fc99e Initial load
duke
parents:
diff changeset
112 void operator delete(void* p) {} // nothing to do
a61af66fc99e Initial load
duke
parents:
diff changeset
113 };
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
114
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
115 #endif // SHARE_VM_MEMORY_MEMREGION_HPP