author | thartmann |
Wed, 17 Sep 2014 08:00:07 +0200 | |
changeset 26796 | 666464578742 |
parent 23214 | b6426873cb37 |
child 26942 | fa5ea7ff078d |
permissions | -rw-r--r-- |
1 | 1 |
/* |
22234
da823d78ad65
8029233: Update copyright year to match last edit in jdk8 hotspot repository for 2013
mikael
parents:
17016
diff
changeset
|
2 |
* Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
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 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef SHARE_VM_MEMORY_HEAP_HPP |
26 |
#define SHARE_VM_MEMORY_HEAP_HPP |
|
27 |
||
26796 | 28 |
#include "code/codeBlob.hpp" |
7397 | 29 |
#include "memory/allocation.hpp" |
30 |
#include "runtime/virtualspace.hpp" |
|
31 |
||
1 | 32 |
// Blocks |
33 |
||
34 |
class HeapBlock VALUE_OBJ_CLASS_SPEC { |
|
35 |
friend class VMStructs; |
|
36 |
||
37 |
public: |
|
38 |
struct Header { |
|
39 |
size_t _length; // the length in segments |
|
40 |
bool _used; // Used bit |
|
41 |
}; |
|
42 |
||
43 |
protected: |
|
44 |
union { |
|
45 |
Header _header; |
|
46 |
int64_t _padding[ (sizeof(Header) + sizeof(int64_t)-1) / sizeof(int64_t) ]; |
|
47 |
// pad to 0 mod 8 |
|
48 |
}; |
|
49 |
||
50 |
public: |
|
51 |
// Initialization |
|
52 |
void initialize(size_t length) { _header._length = length; set_used(); } |
|
53 |
||
54 |
// Accessors |
|
55 |
void* allocated_space() const { return (void*)(this + 1); } |
|
56 |
size_t length() const { return _header._length; } |
|
57 |
||
58 |
// Used/free |
|
59 |
void set_used() { _header._used = true; } |
|
60 |
void set_free() { _header._used = false; } |
|
61 |
bool free() { return !_header._used; } |
|
62 |
}; |
|
63 |
||
64 |
class FreeBlock: public HeapBlock { |
|
65 |
friend class VMStructs; |
|
66 |
protected: |
|
67 |
FreeBlock* _link; |
|
68 |
||
69 |
public: |
|
70 |
// Initialization |
|
71 |
void initialize(size_t length) { HeapBlock::initialize(length); _link= NULL; } |
|
72 |
||
73 |
// Merging |
|
74 |
void set_length(size_t l) { _header._length = l; } |
|
75 |
||
76 |
// Accessors |
|
77 |
FreeBlock* link() const { return _link; } |
|
78 |
void set_link(FreeBlock* link) { _link = link; } |
|
79 |
}; |
|
80 |
||
13195 | 81 |
class CodeHeap : public CHeapObj<mtCode> { |
1 | 82 |
friend class VMStructs; |
83 |
private: |
|
84 |
VirtualSpace _memory; // the memory holding the blocks |
|
85 |
VirtualSpace _segmap; // the memory holding the segment map |
|
86 |
||
87 |
size_t _number_of_committed_segments; |
|
88 |
size_t _number_of_reserved_segments; |
|
89 |
size_t _segment_size; |
|
90 |
int _log2_segment_size; |
|
91 |
||
92 |
size_t _next_segment; |
|
93 |
||
94 |
FreeBlock* _freelist; |
|
17016
78b1c3670525
8006952: Slow VM due to excessive code cache freelist iteration
neliasso
parents:
13963
diff
changeset
|
95 |
size_t _freelist_segments; // No. of segments in freelist |
23214
b6426873cb37
8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents:
22551
diff
changeset
|
96 |
int _freelist_length; |
26796 | 97 |
size_t _max_allocated_capacity; // Peak capacity that was allocated during lifetime of the heap |
98 |
||
99 |
const char* _name; // Name of the CodeHeap |
|
100 |
const int _code_blob_type; // CodeBlobType it contains |
|
101 |
bool _was_full; // True if the code heap was full |
|
23214
b6426873cb37
8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents:
22551
diff
changeset
|
102 |
|
b6426873cb37
8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents:
22551
diff
changeset
|
103 |
enum { free_sentinel = 0xFF }; |
1 | 104 |
|
105 |
// Helper functions |
|
17016
78b1c3670525
8006952: Slow VM due to excessive code cache freelist iteration
neliasso
parents:
13963
diff
changeset
|
106 |
size_t size_to_segments(size_t size) const { return (size + _segment_size - 1) >> _log2_segment_size; } |
78b1c3670525
8006952: Slow VM due to excessive code cache freelist iteration
neliasso
parents:
13963
diff
changeset
|
107 |
size_t segments_to_size(size_t number_of_segments) const { return number_of_segments << _log2_segment_size; } |
1 | 108 |
|
109 |
size_t segment_for(void* p) const { return ((char*)p - _memory.low()) >> _log2_segment_size; } |
|
23214
b6426873cb37
8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents:
22551
diff
changeset
|
110 |
bool is_segment_unused(int val) const { return val == free_sentinel; } |
1 | 111 |
HeapBlock* block_at(size_t i) const { return (HeapBlock*)(_memory.low() + (i << _log2_segment_size)); } |
112 |
||
113 |
void mark_segmap_as_free(size_t beg, size_t end); |
|
114 |
void mark_segmap_as_used(size_t beg, size_t end); |
|
115 |
||
116 |
// Freelist management helpers |
|
23214
b6426873cb37
8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents:
22551
diff
changeset
|
117 |
FreeBlock* following_block(FreeBlock* b); |
1 | 118 |
void insert_after(FreeBlock* a, FreeBlock* b); |
23214
b6426873cb37
8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents:
22551
diff
changeset
|
119 |
bool merge_right (FreeBlock* a); |
1 | 120 |
|
121 |
// Toplevel freelist management |
|
23214
b6426873cb37
8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents:
22551
diff
changeset
|
122 |
void add_to_freelist(HeapBlock* b); |
17016
78b1c3670525
8006952: Slow VM due to excessive code cache freelist iteration
neliasso
parents:
13963
diff
changeset
|
123 |
FreeBlock* search_freelist(size_t length, bool is_critical); |
1 | 124 |
|
125 |
// Iteration helpers |
|
126 |
void* next_free(HeapBlock* b) const; |
|
127 |
HeapBlock* first_block() const; |
|
128 |
HeapBlock* next_block(HeapBlock* b) const; |
|
129 |
HeapBlock* block_start(void* p) const; |
|
130 |
||
131 |
// to perform additional actions on creation of executable code |
|
132 |
void on_code_mapping(char* base, size_t size); |
|
23214
b6426873cb37
8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents:
22551
diff
changeset
|
133 |
void clear(); // clears all heap contents |
1 | 134 |
|
135 |
public: |
|
26796 | 136 |
CodeHeap(const char* name, const int code_blob_type); |
1 | 137 |
|
138 |
// Heap extents |
|
26796 | 139 |
bool reserve(ReservedSpace rs, size_t committed_size, size_t segment_size); |
22551 | 140 |
bool expand_by(size_t size); // expands committed memory by size |
1 | 141 |
|
142 |
// Memory allocation |
|
17016
78b1c3670525
8006952: Slow VM due to excessive code cache freelist iteration
neliasso
parents:
13963
diff
changeset
|
143 |
void* allocate (size_t size, bool is_critical); // allocates a block of size or returns NULL |
23214
b6426873cb37
8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents:
22551
diff
changeset
|
144 |
void deallocate(void* p); // deallocates a block |
1 | 145 |
|
146 |
// Attributes |
|
17016
78b1c3670525
8006952: Slow VM due to excessive code cache freelist iteration
neliasso
parents:
13963
diff
changeset
|
147 |
char* low_boundary() const { return _memory.low_boundary (); } |
78b1c3670525
8006952: Slow VM due to excessive code cache freelist iteration
neliasso
parents:
13963
diff
changeset
|
148 |
char* high() const { return _memory.high(); } |
78b1c3670525
8006952: Slow VM due to excessive code cache freelist iteration
neliasso
parents:
13963
diff
changeset
|
149 |
char* high_boundary() const { return _memory.high_boundary(); } |
1 | 150 |
|
17016
78b1c3670525
8006952: Slow VM due to excessive code cache freelist iteration
neliasso
parents:
13963
diff
changeset
|
151 |
bool contains(const void* p) const { return low_boundary() <= p && p < high(); } |
23214
b6426873cb37
8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents:
22551
diff
changeset
|
152 |
void* find_start(void* p) const; // returns the block containing p or NULL |
b6426873cb37
8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents:
22551
diff
changeset
|
153 |
size_t alignment_unit() const; // alignment of any block |
b6426873cb37
8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents:
22551
diff
changeset
|
154 |
size_t alignment_offset() const; // offset of first byte of any block, within the enclosing alignment unit |
b6426873cb37
8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents:
22551
diff
changeset
|
155 |
static size_t header_size(); // returns the header size for each heap block |
1 | 156 |
|
23214
b6426873cb37
8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents:
22551
diff
changeset
|
157 |
size_t allocated_in_freelist() const { return _freelist_segments * CodeCacheSegmentSize; } |
b6426873cb37
8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents:
22551
diff
changeset
|
158 |
int freelist_length() const { return _freelist_length; } // number of elements in the freelist |
1 | 159 |
|
160 |
// returns the first block or NULL |
|
161 |
void* first() const { return next_free(first_block()); } |
|
162 |
// returns the next block given a block p or NULL |
|
163 |
void* next(void* p) const { return next_free(next_block(block_start(p))); } |
|
164 |
||
165 |
// Statistics |
|
166 |
size_t capacity() const; |
|
167 |
size_t max_capacity() const; |
|
23214
b6426873cb37
8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents:
22551
diff
changeset
|
168 |
int allocated_segments() const; |
1 | 169 |
size_t allocated_capacity() const; |
26796 | 170 |
size_t max_allocated_capacity() const { return _max_allocated_capacity; } |
1 | 171 |
size_t unallocated_capacity() const { return max_capacity() - allocated_capacity(); } |
172 |
||
26796 | 173 |
// Returns true if the CodeHeap contains CodeBlobs of the given type |
174 |
bool accepts(int code_blob_type) const { return (_code_blob_type == code_blob_type); } |
|
175 |
int code_blob_type() const { return _code_blob_type; } |
|
176 |
||
177 |
// Debugging / Profiling |
|
178 |
const char* name() const { return _name; } |
|
179 |
bool was_full() { return _was_full; } |
|
180 |
void report_full() { _was_full = true; } |
|
181 |
||
17016
78b1c3670525
8006952: Slow VM due to excessive code cache freelist iteration
neliasso
parents:
13963
diff
changeset
|
182 |
private: |
78b1c3670525
8006952: Slow VM due to excessive code cache freelist iteration
neliasso
parents:
13963
diff
changeset
|
183 |
size_t heap_unallocated_capacity() const; |
78b1c3670525
8006952: Slow VM due to excessive code cache freelist iteration
neliasso
parents:
13963
diff
changeset
|
184 |
|
78b1c3670525
8006952: Slow VM due to excessive code cache freelist iteration
neliasso
parents:
13963
diff
changeset
|
185 |
public: |
1 | 186 |
// Debugging |
23214
b6426873cb37
8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents:
22551
diff
changeset
|
187 |
void verify() PRODUCT_RETURN; |
1 | 188 |
void print() PRODUCT_RETURN; |
189 |
}; |
|
7397 | 190 |
|
191 |
#endif // SHARE_VM_MEMORY_HEAP_HPP |