annotate src/share/vm/memory/memRegion.hpp @ 1721:413ad0331a0c

6977924: Changes for 6975078 produce build error with certain gcc versions Summary: The changes introduced for 6975078 assign badHeapOopVal to the _allocation field in the ResourceObj class. In 32 bit linux builds with certain versions of gcc this assignment will be flagged as an error while compiling allocation.cpp. In 32 bit builds the constant value badHeapOopVal (which is cast to an intptr_t) is negative. The _allocation field is typed as an unsigned intptr_t and gcc catches this as an error. Reviewed-by: jcoomes, ysr, phh
author johnc
date Wed, 18 Aug 2010 10:59:06 -0700
parents c18cbe5936b8
children f95d63e2154a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
2 * Copyright (c) 2000, 2004, 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
a61af66fc99e Initial load
duke
parents:
diff changeset
25 // A very simple data structure representing a contigous region
a61af66fc99e Initial load
duke
parents:
diff changeset
26 // region of address space.
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28 // Note that MemRegions are passed by value, not by reference.
a61af66fc99e Initial load
duke
parents:
diff changeset
29 // The intent is that they remain very small and contain no
a61af66fc99e Initial load
duke
parents:
diff changeset
30 // objects.
a61af66fc99e Initial load
duke
parents:
diff changeset
31
a61af66fc99e Initial load
duke
parents:
diff changeset
32 class MemRegion VALUE_OBJ_CLASS_SPEC {
a61af66fc99e Initial load
duke
parents:
diff changeset
33 friend class VMStructs;
a61af66fc99e Initial load
duke
parents:
diff changeset
34 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
35 HeapWord* _start;
a61af66fc99e Initial load
duke
parents:
diff changeset
36 size_t _word_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
37
a61af66fc99e Initial load
duke
parents:
diff changeset
38 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
39 MemRegion() : _start(NULL), _word_size(0) {};
a61af66fc99e Initial load
duke
parents:
diff changeset
40 MemRegion(HeapWord* start, size_t word_size) :
a61af66fc99e Initial load
duke
parents:
diff changeset
41 _start(start), _word_size(word_size) {};
a61af66fc99e Initial load
duke
parents:
diff changeset
42 MemRegion(HeapWord* start, HeapWord* end) :
a61af66fc99e Initial load
duke
parents:
diff changeset
43 _start(start), _word_size(pointer_delta(end, start)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
44 assert(end >= start, "incorrect constructor arguments");
a61af66fc99e Initial load
duke
parents:
diff changeset
45 }
a61af66fc99e Initial load
duke
parents:
diff changeset
46
a61af66fc99e Initial load
duke
parents:
diff changeset
47 MemRegion(const MemRegion& mr): _start(mr._start), _word_size(mr._word_size) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
48
a61af66fc99e Initial load
duke
parents:
diff changeset
49 MemRegion intersection(const MemRegion mr2) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
50 // regions must overlap or be adjacent
a61af66fc99e Initial load
duke
parents:
diff changeset
51 MemRegion _union(const MemRegion mr2) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
52 // minus will fail a guarantee if mr2 is interior to this,
a61af66fc99e Initial load
duke
parents:
diff changeset
53 // since there's no way to return 2 disjoint regions.
a61af66fc99e Initial load
duke
parents:
diff changeset
54 MemRegion minus(const MemRegion mr2) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
55
a61af66fc99e Initial load
duke
parents:
diff changeset
56 HeapWord* start() const { return _start; }
a61af66fc99e Initial load
duke
parents:
diff changeset
57 HeapWord* end() const { return _start + _word_size; }
a61af66fc99e Initial load
duke
parents:
diff changeset
58 HeapWord* last() const { return _start + _word_size - 1; }
a61af66fc99e Initial load
duke
parents:
diff changeset
59
a61af66fc99e Initial load
duke
parents:
diff changeset
60 void set_start(HeapWord* start) { _start = start; }
a61af66fc99e Initial load
duke
parents:
diff changeset
61 void set_end(HeapWord* end) { _word_size = pointer_delta(end, _start); }
a61af66fc99e Initial load
duke
parents:
diff changeset
62 void set_word_size(size_t word_size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
63 _word_size = word_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
64 }
a61af66fc99e Initial load
duke
parents:
diff changeset
65
a61af66fc99e Initial load
duke
parents:
diff changeset
66 bool contains(const MemRegion mr2) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
67 return _start <= mr2._start && end() >= mr2.end();
a61af66fc99e Initial load
duke
parents:
diff changeset
68 }
a61af66fc99e Initial load
duke
parents:
diff changeset
69 bool contains(const void* addr) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
70 return addr >= (void*)_start && addr < (void*)end();
a61af66fc99e Initial load
duke
parents:
diff changeset
71 }
a61af66fc99e Initial load
duke
parents:
diff changeset
72 bool equals(const MemRegion mr2) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
73 // first disjunct since we do not have a canonical empty set
a61af66fc99e Initial load
duke
parents:
diff changeset
74 return ((is_empty() && mr2.is_empty()) ||
a61af66fc99e Initial load
duke
parents:
diff changeset
75 (start() == mr2.start() && end() == mr2.end()));
a61af66fc99e Initial load
duke
parents:
diff changeset
76 }
a61af66fc99e Initial load
duke
parents:
diff changeset
77
a61af66fc99e Initial load
duke
parents:
diff changeset
78 size_t byte_size() const { return _word_size * sizeof(HeapWord); }
a61af66fc99e Initial load
duke
parents:
diff changeset
79 size_t word_size() const { return _word_size; }
a61af66fc99e Initial load
duke
parents:
diff changeset
80
a61af66fc99e Initial load
duke
parents:
diff changeset
81 bool is_empty() const { return word_size() == 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
82 };
a61af66fc99e Initial load
duke
parents:
diff changeset
83
a61af66fc99e Initial load
duke
parents:
diff changeset
84 // For iteration over MemRegion's.
a61af66fc99e Initial load
duke
parents:
diff changeset
85
a61af66fc99e Initial load
duke
parents:
diff changeset
86 class MemRegionClosure : public StackObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
87 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
88 virtual void do_MemRegion(MemRegion mr) = 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 // A ResourceObj version of MemRegionClosure
a61af66fc99e Initial load
duke
parents:
diff changeset
92
a61af66fc99e Initial load
duke
parents:
diff changeset
93 class MemRegionClosureRO: public MemRegionClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
94 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
95 void* operator new(size_t size, ResourceObj::allocation_type type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
96 return ResourceObj::operator new(size, type);
a61af66fc99e Initial load
duke
parents:
diff changeset
97 }
a61af66fc99e Initial load
duke
parents:
diff changeset
98 void* operator new(size_t size, Arena *arena) {
a61af66fc99e Initial load
duke
parents:
diff changeset
99 return ResourceObj::operator new(size, arena);
a61af66fc99e Initial load
duke
parents:
diff changeset
100 }
a61af66fc99e Initial load
duke
parents:
diff changeset
101 void* operator new(size_t size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
102 return ResourceObj::operator new(size);
a61af66fc99e Initial load
duke
parents:
diff changeset
103 }
a61af66fc99e Initial load
duke
parents:
diff changeset
104
a61af66fc99e Initial load
duke
parents:
diff changeset
105 void operator delete(void* p) {} // nothing to do
a61af66fc99e Initial load
duke
parents:
diff changeset
106 };