annotate src/share/vm/adlc/arena.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) 1998, 2002, 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 // All classes in the virtual machine must be subclassed
a61af66fc99e Initial load
duke
parents:
diff changeset
26 // by one of the following allocation classes:
a61af66fc99e Initial load
duke
parents:
diff changeset
27 //
a61af66fc99e Initial load
duke
parents:
diff changeset
28 //
a61af66fc99e Initial load
duke
parents:
diff changeset
29 // For objects allocated in the C-heap (managed by: free & malloc).
a61af66fc99e Initial load
duke
parents:
diff changeset
30 // - CHeapObj
a61af66fc99e Initial load
duke
parents:
diff changeset
31 //
a61af66fc99e Initial load
duke
parents:
diff changeset
32 //
a61af66fc99e Initial load
duke
parents:
diff changeset
33 // For embedded objects.
a61af66fc99e Initial load
duke
parents:
diff changeset
34 // - ValueObj
a61af66fc99e Initial load
duke
parents:
diff changeset
35 //
a61af66fc99e Initial load
duke
parents:
diff changeset
36 // For classes used as name spaces.
a61af66fc99e Initial load
duke
parents:
diff changeset
37 // - AllStatic
a61af66fc99e Initial load
duke
parents:
diff changeset
38 //
a61af66fc99e Initial load
duke
parents:
diff changeset
39
a61af66fc99e Initial load
duke
parents:
diff changeset
40 class CHeapObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
41 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
42 void* operator new(size_t size);
a61af66fc99e Initial load
duke
parents:
diff changeset
43 void operator delete(void* p);
a61af66fc99e Initial load
duke
parents:
diff changeset
44 void* new_array(size_t size);
a61af66fc99e Initial load
duke
parents:
diff changeset
45 };
a61af66fc99e Initial load
duke
parents:
diff changeset
46
a61af66fc99e Initial load
duke
parents:
diff changeset
47
a61af66fc99e Initial load
duke
parents:
diff changeset
48 // Base class for objects used as value objects.
a61af66fc99e Initial load
duke
parents:
diff changeset
49 // Calling new or delete will result in fatal error.
a61af66fc99e Initial load
duke
parents:
diff changeset
50
a61af66fc99e Initial load
duke
parents:
diff changeset
51 class ValueObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
52 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
53 void* operator new(size_t size);
a61af66fc99e Initial load
duke
parents:
diff changeset
54 void operator delete(void* p);
a61af66fc99e Initial load
duke
parents:
diff changeset
55 };
a61af66fc99e Initial load
duke
parents:
diff changeset
56
a61af66fc99e Initial load
duke
parents:
diff changeset
57 // Base class for classes that constitute name spaces.
a61af66fc99e Initial load
duke
parents:
diff changeset
58
a61af66fc99e Initial load
duke
parents:
diff changeset
59 class AllStatic {
a61af66fc99e Initial load
duke
parents:
diff changeset
60 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
61 void* operator new(size_t size);
a61af66fc99e Initial load
duke
parents:
diff changeset
62 void operator delete(void* p);
a61af66fc99e Initial load
duke
parents:
diff changeset
63 };
a61af66fc99e Initial load
duke
parents:
diff changeset
64
a61af66fc99e Initial load
duke
parents:
diff changeset
65
a61af66fc99e Initial load
duke
parents:
diff changeset
66 //------------------------------Chunk------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
67 // Linked list of raw memory chunks
a61af66fc99e Initial load
duke
parents:
diff changeset
68 class Chunk: public CHeapObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
69 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
70 void* operator new(size_t size, size_t length);
a61af66fc99e Initial load
duke
parents:
diff changeset
71 void operator delete(void* p, size_t length);
a61af66fc99e Initial load
duke
parents:
diff changeset
72 Chunk(size_t length);
a61af66fc99e Initial load
duke
parents:
diff changeset
73
a61af66fc99e Initial load
duke
parents:
diff changeset
74 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
75 init_size = 1*1024, // Size of first chunk
a61af66fc99e Initial load
duke
parents:
diff changeset
76 size = 32*1024 // Default size of an Arena chunk (following the first)
a61af66fc99e Initial load
duke
parents:
diff changeset
77 };
a61af66fc99e Initial load
duke
parents:
diff changeset
78 Chunk* _next; // Next Chunk in list
a61af66fc99e Initial load
duke
parents:
diff changeset
79 size_t _len; // Size of this Chunk
a61af66fc99e Initial load
duke
parents:
diff changeset
80
a61af66fc99e Initial load
duke
parents:
diff changeset
81 void chop(); // Chop this chunk
a61af66fc99e Initial load
duke
parents:
diff changeset
82 void next_chop(); // Chop next chunk
a61af66fc99e Initial load
duke
parents:
diff changeset
83
a61af66fc99e Initial load
duke
parents:
diff changeset
84 // Boundaries of data area (possibly unused)
a61af66fc99e Initial load
duke
parents:
diff changeset
85 char* bottom() const { return ((char*) this) + sizeof(Chunk); }
a61af66fc99e Initial load
duke
parents:
diff changeset
86 char* top() const { return bottom() + _len; }
a61af66fc99e Initial load
duke
parents:
diff changeset
87 };
a61af66fc99e Initial load
duke
parents:
diff changeset
88
a61af66fc99e Initial load
duke
parents:
diff changeset
89
a61af66fc99e Initial load
duke
parents:
diff changeset
90 //------------------------------Arena------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
91 // Fast allocation of memory
a61af66fc99e Initial load
duke
parents:
diff changeset
92 class Arena: public CHeapObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
93 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
94 friend class ResourceMark;
a61af66fc99e Initial load
duke
parents:
diff changeset
95 friend class HandleMark;
a61af66fc99e Initial load
duke
parents:
diff changeset
96 friend class NoHandleMark;
a61af66fc99e Initial load
duke
parents:
diff changeset
97 Chunk *_first; // First chunk
a61af66fc99e Initial load
duke
parents:
diff changeset
98 Chunk *_chunk; // current chunk
a61af66fc99e Initial load
duke
parents:
diff changeset
99 char *_hwm, *_max; // High water mark and max in current chunk
a61af66fc99e Initial load
duke
parents:
diff changeset
100 void* grow(size_t x); // Get a new Chunk of at least size x
a61af66fc99e Initial load
duke
parents:
diff changeset
101 size_t _size_in_bytes; // Size of arena (used for memory usage tracing)
a61af66fc99e Initial load
duke
parents:
diff changeset
102 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
103 Arena();
a61af66fc99e Initial load
duke
parents:
diff changeset
104 Arena(size_t init_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
105 Arena(Arena *old);
a61af66fc99e Initial load
duke
parents:
diff changeset
106 ~Arena() { _first->chop(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
107 char* hwm() const { return _hwm; }
a61af66fc99e Initial load
duke
parents:
diff changeset
108
a61af66fc99e Initial load
duke
parents:
diff changeset
109 // Fast allocate in the arena. Common case is: pointer test + increment.
a61af66fc99e Initial load
duke
parents:
diff changeset
110 void* Amalloc(size_t x) {
a61af66fc99e Initial load
duke
parents:
diff changeset
111 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
112 x = (x + (8-1)) & ((unsigned)(-8));
a61af66fc99e Initial load
duke
parents:
diff changeset
113 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
114 x = (x + (4-1)) & ((unsigned)(-4));
a61af66fc99e Initial load
duke
parents:
diff changeset
115 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
116 if (_hwm + x > _max) {
a61af66fc99e Initial load
duke
parents:
diff changeset
117 return grow(x);
a61af66fc99e Initial load
duke
parents:
diff changeset
118 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
119 char *old = _hwm;
a61af66fc99e Initial load
duke
parents:
diff changeset
120 _hwm += x;
a61af66fc99e Initial load
duke
parents:
diff changeset
121 return old;
a61af66fc99e Initial load
duke
parents:
diff changeset
122 }
a61af66fc99e Initial load
duke
parents:
diff changeset
123 }
a61af66fc99e Initial load
duke
parents:
diff changeset
124 // Further assume size is padded out to words
a61af66fc99e Initial load
duke
parents:
diff changeset
125 // Warning: in LP64, Amalloc_4 is really Amalloc_8
a61af66fc99e Initial load
duke
parents:
diff changeset
126 void *Amalloc_4(size_t x) {
a61af66fc99e Initial load
duke
parents:
diff changeset
127 assert( (x&(sizeof(char*)-1)) == 0, "misaligned size" );
a61af66fc99e Initial load
duke
parents:
diff changeset
128 if (_hwm + x > _max) {
a61af66fc99e Initial load
duke
parents:
diff changeset
129 return grow(x);
a61af66fc99e Initial load
duke
parents:
diff changeset
130 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
131 char *old = _hwm;
a61af66fc99e Initial load
duke
parents:
diff changeset
132 _hwm += x;
a61af66fc99e Initial load
duke
parents:
diff changeset
133 return old;
a61af66fc99e Initial load
duke
parents:
diff changeset
134 }
a61af66fc99e Initial load
duke
parents:
diff changeset
135 }
a61af66fc99e Initial load
duke
parents:
diff changeset
136
a61af66fc99e Initial load
duke
parents:
diff changeset
137 // Fast delete in area. Common case is: NOP (except for storage reclaimed)
a61af66fc99e Initial load
duke
parents:
diff changeset
138 void Afree(void *ptr, size_t size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
139 if (((char*)ptr) + size == _hwm) _hwm = (char*)ptr;
a61af66fc99e Initial load
duke
parents:
diff changeset
140 }
a61af66fc99e Initial load
duke
parents:
diff changeset
141
a61af66fc99e Initial load
duke
parents:
diff changeset
142 void *Acalloc( size_t items, size_t x );
a61af66fc99e Initial load
duke
parents:
diff changeset
143 void *Arealloc( void *old_ptr, size_t old_size, size_t new_size );
a61af66fc99e Initial load
duke
parents:
diff changeset
144
a61af66fc99e Initial load
duke
parents:
diff changeset
145 // Reset this Arena to empty, and return this Arenas guts in a new Arena.
a61af66fc99e Initial load
duke
parents:
diff changeset
146 Arena *reset(void);
a61af66fc99e Initial load
duke
parents:
diff changeset
147
a61af66fc99e Initial load
duke
parents:
diff changeset
148 // Determine if pointer belongs to this Arena or not.
a61af66fc99e Initial load
duke
parents:
diff changeset
149 bool contains( const void *ptr ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
150
a61af66fc99e Initial load
duke
parents:
diff changeset
151 // Total of all chunks in use (not thread-safe)
a61af66fc99e Initial load
duke
parents:
diff changeset
152 size_t used() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
153
a61af66fc99e Initial load
duke
parents:
diff changeset
154 // Total # of bytes used
a61af66fc99e Initial load
duke
parents:
diff changeset
155 size_t size_in_bytes() const { return _size_in_bytes; }
a61af66fc99e Initial load
duke
parents:
diff changeset
156 void set_size_in_bytes(size_t size) { _size_in_bytes = size; }
a61af66fc99e Initial load
duke
parents:
diff changeset
157 };