annotate src/share/vm/asm/codeBuffer.cpp @ 4710:41406797186b

7113012: G1: rename not-fully-young GCs as "mixed" Summary: Renamed partially-young GCs as mixed and fully-young GCs as young. Change all external output that includes those terms (GC log and GC ergo log) as well as any comments, fields, methods, etc. The changeset also includes very minor code tidying up (added some curly brackets). Reviewed-by: johnc, brutisso
author tonyp
date Fri, 16 Dec 2011 02:14:27 -0500
parents 44ce519bc3d1
children 04b9a2566eec d2a62e0f25eb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1685
diff changeset
2 * Copyright (c) 1997, 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: 579
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 579
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: 579
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: 1762
diff changeset
25 #include "precompiled.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1762
diff changeset
26 #include "asm/codeBuffer.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1762
diff changeset
27 #include "compiler/disassembler.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1762
diff changeset
28 #include "utilities/copy.hpp"
4059
44ce519bc3d1 7104960: JSR 292: +VerifyMethodHandles in product JVM can overflow buffer
never
parents: 4040
diff changeset
29 #include "utilities/xmlstream.hpp"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
30
a61af66fc99e Initial load
duke
parents:
diff changeset
31 // The structure of a CodeSection:
a61af66fc99e Initial load
duke
parents:
diff changeset
32 //
a61af66fc99e Initial load
duke
parents:
diff changeset
33 // _start -> +----------------+
a61af66fc99e Initial load
duke
parents:
diff changeset
34 // | machine code...|
a61af66fc99e Initial load
duke
parents:
diff changeset
35 // _end -> |----------------|
a61af66fc99e Initial load
duke
parents:
diff changeset
36 // | |
a61af66fc99e Initial load
duke
parents:
diff changeset
37 // | (empty) |
a61af66fc99e Initial load
duke
parents:
diff changeset
38 // | |
a61af66fc99e Initial load
duke
parents:
diff changeset
39 // | |
a61af66fc99e Initial load
duke
parents:
diff changeset
40 // +----------------+
a61af66fc99e Initial load
duke
parents:
diff changeset
41 // _limit -> | |
a61af66fc99e Initial load
duke
parents:
diff changeset
42 //
a61af66fc99e Initial load
duke
parents:
diff changeset
43 // _locs_start -> +----------------+
a61af66fc99e Initial load
duke
parents:
diff changeset
44 // |reloc records...|
a61af66fc99e Initial load
duke
parents:
diff changeset
45 // |----------------|
a61af66fc99e Initial load
duke
parents:
diff changeset
46 // _locs_end -> | |
a61af66fc99e Initial load
duke
parents:
diff changeset
47 // | |
a61af66fc99e Initial load
duke
parents:
diff changeset
48 // | (empty) |
a61af66fc99e Initial load
duke
parents:
diff changeset
49 // | |
a61af66fc99e Initial load
duke
parents:
diff changeset
50 // | |
a61af66fc99e Initial load
duke
parents:
diff changeset
51 // +----------------+
a61af66fc99e Initial load
duke
parents:
diff changeset
52 // _locs_limit -> | |
a61af66fc99e Initial load
duke
parents:
diff changeset
53 // The _end (resp. _limit) pointer refers to the first
a61af66fc99e Initial load
duke
parents:
diff changeset
54 // unused (resp. unallocated) byte.
a61af66fc99e Initial load
duke
parents:
diff changeset
55
a61af66fc99e Initial load
duke
parents:
diff changeset
56 // The structure of the CodeBuffer while code is being accumulated:
a61af66fc99e Initial load
duke
parents:
diff changeset
57 //
a61af66fc99e Initial load
duke
parents:
diff changeset
58 // _total_start -> \
a61af66fc99e Initial load
duke
parents:
diff changeset
59 // _insts._start -> +----------------+
a61af66fc99e Initial load
duke
parents:
diff changeset
60 // | |
a61af66fc99e Initial load
duke
parents:
diff changeset
61 // | Code |
a61af66fc99e Initial load
duke
parents:
diff changeset
62 // | |
a61af66fc99e Initial load
duke
parents:
diff changeset
63 // _stubs._start -> |----------------|
a61af66fc99e Initial load
duke
parents:
diff changeset
64 // | |
a61af66fc99e Initial load
duke
parents:
diff changeset
65 // | Stubs | (also handlers for deopt/exception)
a61af66fc99e Initial load
duke
parents:
diff changeset
66 // | |
a61af66fc99e Initial load
duke
parents:
diff changeset
67 // _consts._start -> |----------------|
a61af66fc99e Initial load
duke
parents:
diff changeset
68 // | |
a61af66fc99e Initial load
duke
parents:
diff changeset
69 // | Constants |
a61af66fc99e Initial load
duke
parents:
diff changeset
70 // | |
a61af66fc99e Initial load
duke
parents:
diff changeset
71 // +----------------+
a61af66fc99e Initial load
duke
parents:
diff changeset
72 // + _total_size -> | |
a61af66fc99e Initial load
duke
parents:
diff changeset
73 //
a61af66fc99e Initial load
duke
parents:
diff changeset
74 // When the code and relocations are copied to the code cache,
a61af66fc99e Initial load
duke
parents:
diff changeset
75 // the empty parts of each section are removed, and everything
a61af66fc99e Initial load
duke
parents:
diff changeset
76 // is copied into contiguous locations.
a61af66fc99e Initial load
duke
parents:
diff changeset
77
a61af66fc99e Initial load
duke
parents:
diff changeset
78 typedef CodeBuffer::csize_t csize_t; // file-local definition
a61af66fc99e Initial load
duke
parents:
diff changeset
79
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1685
diff changeset
80 // External buffer, in a predefined CodeBlob.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
81 // Important: The code_start must be taken exactly, and not realigned.
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1685
diff changeset
82 CodeBuffer::CodeBuffer(CodeBlob* blob) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
83 initialize_misc("static buffer");
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1685
diff changeset
84 initialize(blob->content_begin(), blob->content_size());
4059
44ce519bc3d1 7104960: JSR 292: +VerifyMethodHandles in product JVM can overflow buffer
never
parents: 4040
diff changeset
85 verify_section_allocation();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
86 }
a61af66fc99e Initial load
duke
parents:
diff changeset
87
a61af66fc99e Initial load
duke
parents:
diff changeset
88 void CodeBuffer::initialize(csize_t code_size, csize_t locs_size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
89 // Compute maximal alignment.
a61af66fc99e Initial load
duke
parents:
diff changeset
90 int align = _insts.alignment();
a61af66fc99e Initial load
duke
parents:
diff changeset
91 // Always allow for empty slop around each section.
a61af66fc99e Initial load
duke
parents:
diff changeset
92 int slop = (int) CodeSection::end_slop();
a61af66fc99e Initial load
duke
parents:
diff changeset
93
a61af66fc99e Initial load
duke
parents:
diff changeset
94 assert(blob() == NULL, "only once");
a61af66fc99e Initial load
duke
parents:
diff changeset
95 set_blob(BufferBlob::create(_name, code_size + (align+slop) * (SECT_LIMIT+1)));
a61af66fc99e Initial load
duke
parents:
diff changeset
96 if (blob() == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
97 // The assembler constructor will throw a fatal on an empty CodeBuffer.
a61af66fc99e Initial load
duke
parents:
diff changeset
98 return; // caller must test this
a61af66fc99e Initial load
duke
parents:
diff changeset
99 }
a61af66fc99e Initial load
duke
parents:
diff changeset
100
a61af66fc99e Initial load
duke
parents:
diff changeset
101 // Set up various pointers into the blob.
a61af66fc99e Initial load
duke
parents:
diff changeset
102 initialize(_total_start, _total_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
103
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1685
diff changeset
104 assert((uintptr_t)insts_begin() % CodeEntryAlignment == 0, "instruction start not code entry aligned");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
105
a61af66fc99e Initial load
duke
parents:
diff changeset
106 pd_initialize();
a61af66fc99e Initial load
duke
parents:
diff changeset
107
a61af66fc99e Initial load
duke
parents:
diff changeset
108 if (locs_size != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
109 _insts.initialize_locs(locs_size / sizeof(relocInfo));
a61af66fc99e Initial load
duke
parents:
diff changeset
110 }
a61af66fc99e Initial load
duke
parents:
diff changeset
111
4059
44ce519bc3d1 7104960: JSR 292: +VerifyMethodHandles in product JVM can overflow buffer
never
parents: 4040
diff changeset
112 verify_section_allocation();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
113 }
a61af66fc99e Initial load
duke
parents:
diff changeset
114
a61af66fc99e Initial load
duke
parents:
diff changeset
115
a61af66fc99e Initial load
duke
parents:
diff changeset
116 CodeBuffer::~CodeBuffer() {
4059
44ce519bc3d1 7104960: JSR 292: +VerifyMethodHandles in product JVM can overflow buffer
never
parents: 4040
diff changeset
117 verify_section_allocation();
44ce519bc3d1 7104960: JSR 292: +VerifyMethodHandles in product JVM can overflow buffer
never
parents: 4040
diff changeset
118
0
a61af66fc99e Initial load
duke
parents:
diff changeset
119 // If we allocate our code buffer from the CodeCache
a61af66fc99e Initial load
duke
parents:
diff changeset
120 // via a BufferBlob, and it's not permanent, then
a61af66fc99e Initial load
duke
parents:
diff changeset
121 // free the BufferBlob.
a61af66fc99e Initial load
duke
parents:
diff changeset
122 // The rest of the memory will be freed when the ResourceObj
a61af66fc99e Initial load
duke
parents:
diff changeset
123 // is released.
a61af66fc99e Initial load
duke
parents:
diff changeset
124 for (CodeBuffer* cb = this; cb != NULL; cb = cb->before_expand()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
125 // Previous incarnations of this buffer are held live, so that internal
a61af66fc99e Initial load
duke
parents:
diff changeset
126 // addresses constructed before expansions will not be confused.
a61af66fc99e Initial load
duke
parents:
diff changeset
127 cb->free_blob();
a61af66fc99e Initial load
duke
parents:
diff changeset
128 }
561
5bfdb08ea692 6782260: Memory leak in CodeBuffer::create_patch_overflow
never
parents: 196
diff changeset
129
5bfdb08ea692 6782260: Memory leak in CodeBuffer::create_patch_overflow
never
parents: 196
diff changeset
130 // free any overflow storage
5bfdb08ea692 6782260: Memory leak in CodeBuffer::create_patch_overflow
never
parents: 196
diff changeset
131 delete _overflow_arena;
5bfdb08ea692 6782260: Memory leak in CodeBuffer::create_patch_overflow
never
parents: 196
diff changeset
132
0
a61af66fc99e Initial load
duke
parents:
diff changeset
133 #ifdef ASSERT
1685
0e35fa8ebccd 6973963: SEGV in ciBlock::start_bci() with EA
kvn
parents: 1603
diff changeset
134 // Save allocation type to execute assert in ~ResourceObj()
0e35fa8ebccd 6973963: SEGV in ciBlock::start_bci() with EA
kvn
parents: 1603
diff changeset
135 // which is called after this destructor.
2015
79d8657be916 6993125: runThese crashes with assert(Thread::current()->on_local_stack((address)this))
kvn
parents: 1972
diff changeset
136 assert(_default_oop_recorder.allocated_on_stack(), "should be embedded object");
1685
0e35fa8ebccd 6973963: SEGV in ciBlock::start_bci() with EA
kvn
parents: 1603
diff changeset
137 ResourceObj::allocation_type at = _default_oop_recorder.get_allocation_type();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
138 Copy::fill_to_bytes(this, sizeof(*this), badResourceValue);
1685
0e35fa8ebccd 6973963: SEGV in ciBlock::start_bci() with EA
kvn
parents: 1603
diff changeset
139 ResourceObj::set_allocation_type((address)(&_default_oop_recorder), at);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
140 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
141 }
a61af66fc99e Initial load
duke
parents:
diff changeset
142
a61af66fc99e Initial load
duke
parents:
diff changeset
143 void CodeBuffer::initialize_oop_recorder(OopRecorder* r) {
a61af66fc99e Initial load
duke
parents:
diff changeset
144 assert(_oop_recorder == &_default_oop_recorder && _default_oop_recorder.is_unused(), "do this once");
a61af66fc99e Initial load
duke
parents:
diff changeset
145 DEBUG_ONLY(_default_oop_recorder.oop_size()); // force unused OR to be frozen
a61af66fc99e Initial load
duke
parents:
diff changeset
146 _oop_recorder = r;
a61af66fc99e Initial load
duke
parents:
diff changeset
147 }
a61af66fc99e Initial load
duke
parents:
diff changeset
148
a61af66fc99e Initial load
duke
parents:
diff changeset
149 void CodeBuffer::initialize_section_size(CodeSection* cs, csize_t size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
150 assert(cs != &_insts, "insts is the memory provider, not the consumer");
a61af66fc99e Initial load
duke
parents:
diff changeset
151 csize_t slop = CodeSection::end_slop(); // margin between sections
a61af66fc99e Initial load
duke
parents:
diff changeset
152 int align = cs->alignment();
a61af66fc99e Initial load
duke
parents:
diff changeset
153 assert(is_power_of_2(align), "sanity");
a61af66fc99e Initial load
duke
parents:
diff changeset
154 address start = _insts._start;
a61af66fc99e Initial load
duke
parents:
diff changeset
155 address limit = _insts._limit;
a61af66fc99e Initial load
duke
parents:
diff changeset
156 address middle = limit - size;
a61af66fc99e Initial load
duke
parents:
diff changeset
157 middle -= (intptr_t)middle & (align-1); // align the division point downward
a61af66fc99e Initial load
duke
parents:
diff changeset
158 guarantee(middle - slop > start, "need enough space to divide up");
a61af66fc99e Initial load
duke
parents:
diff changeset
159 _insts._limit = middle - slop; // subtract desired space, plus slop
a61af66fc99e Initial load
duke
parents:
diff changeset
160 cs->initialize(middle, limit - middle);
a61af66fc99e Initial load
duke
parents:
diff changeset
161 assert(cs->start() == middle, "sanity");
a61af66fc99e Initial load
duke
parents:
diff changeset
162 assert(cs->limit() == limit, "sanity");
a61af66fc99e Initial load
duke
parents:
diff changeset
163 // give it some relocations to start with, if the main section has them
a61af66fc99e Initial load
duke
parents:
diff changeset
164 if (_insts.has_locs()) cs->initialize_locs(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
165 }
a61af66fc99e Initial load
duke
parents:
diff changeset
166
a61af66fc99e Initial load
duke
parents:
diff changeset
167 void CodeBuffer::freeze_section(CodeSection* cs) {
a61af66fc99e Initial load
duke
parents:
diff changeset
168 CodeSection* next_cs = (cs == consts())? NULL: code_section(cs->index()+1);
a61af66fc99e Initial load
duke
parents:
diff changeset
169 csize_t frozen_size = cs->size();
a61af66fc99e Initial load
duke
parents:
diff changeset
170 if (next_cs != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
171 frozen_size = next_cs->align_at_start(frozen_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
172 }
a61af66fc99e Initial load
duke
parents:
diff changeset
173 address old_limit = cs->limit();
a61af66fc99e Initial load
duke
parents:
diff changeset
174 address new_limit = cs->start() + frozen_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
175 relocInfo* old_locs_limit = cs->locs_limit();
a61af66fc99e Initial load
duke
parents:
diff changeset
176 relocInfo* new_locs_limit = cs->locs_end();
a61af66fc99e Initial load
duke
parents:
diff changeset
177 // Patch the limits.
a61af66fc99e Initial load
duke
parents:
diff changeset
178 cs->_limit = new_limit;
a61af66fc99e Initial load
duke
parents:
diff changeset
179 cs->_locs_limit = new_locs_limit;
a61af66fc99e Initial load
duke
parents:
diff changeset
180 cs->_frozen = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
181 if (!next_cs->is_allocated() && !next_cs->is_frozen()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
182 // Give remaining buffer space to the following section.
a61af66fc99e Initial load
duke
parents:
diff changeset
183 next_cs->initialize(new_limit, old_limit - new_limit);
a61af66fc99e Initial load
duke
parents:
diff changeset
184 next_cs->initialize_shared_locs(new_locs_limit,
a61af66fc99e Initial load
duke
parents:
diff changeset
185 old_locs_limit - new_locs_limit);
a61af66fc99e Initial load
duke
parents:
diff changeset
186 }
a61af66fc99e Initial load
duke
parents:
diff changeset
187 }
a61af66fc99e Initial load
duke
parents:
diff changeset
188
a61af66fc99e Initial load
duke
parents:
diff changeset
189 void CodeBuffer::set_blob(BufferBlob* blob) {
a61af66fc99e Initial load
duke
parents:
diff changeset
190 _blob = blob;
a61af66fc99e Initial load
duke
parents:
diff changeset
191 if (blob != NULL) {
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1685
diff changeset
192 address start = blob->content_begin();
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1685
diff changeset
193 address end = blob->content_end();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
194 // Round up the starting address.
a61af66fc99e Initial load
duke
parents:
diff changeset
195 int align = _insts.alignment();
a61af66fc99e Initial load
duke
parents:
diff changeset
196 start += (-(intptr_t)start) & (align-1);
a61af66fc99e Initial load
duke
parents:
diff changeset
197 _total_start = start;
a61af66fc99e Initial load
duke
parents:
diff changeset
198 _total_size = end - start;
a61af66fc99e Initial load
duke
parents:
diff changeset
199 } else {
1762
0878d7bae69f 6961697: move nmethod constants section before instruction section
twisti
parents: 1748
diff changeset
200 #ifdef ASSERT
0
a61af66fc99e Initial load
duke
parents:
diff changeset
201 // Clean out dangling pointers.
a61af66fc99e Initial load
duke
parents:
diff changeset
202 _total_start = badAddress;
1762
0878d7bae69f 6961697: move nmethod constants section before instruction section
twisti
parents: 1748
diff changeset
203 _consts._start = _consts._end = badAddress;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
204 _insts._start = _insts._end = badAddress;
a61af66fc99e Initial load
duke
parents:
diff changeset
205 _stubs._start = _stubs._end = badAddress;
1762
0878d7bae69f 6961697: move nmethod constants section before instruction section
twisti
parents: 1748
diff changeset
206 #endif //ASSERT
0
a61af66fc99e Initial load
duke
parents:
diff changeset
207 }
a61af66fc99e Initial load
duke
parents:
diff changeset
208 }
a61af66fc99e Initial load
duke
parents:
diff changeset
209
a61af66fc99e Initial load
duke
parents:
diff changeset
210 void CodeBuffer::free_blob() {
a61af66fc99e Initial load
duke
parents:
diff changeset
211 if (_blob != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
212 BufferBlob::free(_blob);
a61af66fc99e Initial load
duke
parents:
diff changeset
213 set_blob(NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
214 }
a61af66fc99e Initial load
duke
parents:
diff changeset
215 }
a61af66fc99e Initial load
duke
parents:
diff changeset
216
a61af66fc99e Initial load
duke
parents:
diff changeset
217 const char* CodeBuffer::code_section_name(int n) {
a61af66fc99e Initial load
duke
parents:
diff changeset
218 #ifdef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
219 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
220 #else //PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
221 switch (n) {
1762
0878d7bae69f 6961697: move nmethod constants section before instruction section
twisti
parents: 1748
diff changeset
222 case SECT_CONSTS: return "consts";
0
a61af66fc99e Initial load
duke
parents:
diff changeset
223 case SECT_INSTS: return "insts";
a61af66fc99e Initial load
duke
parents:
diff changeset
224 case SECT_STUBS: return "stubs";
a61af66fc99e Initial load
duke
parents:
diff changeset
225 default: return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
226 }
a61af66fc99e Initial load
duke
parents:
diff changeset
227 #endif //PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
228 }
a61af66fc99e Initial load
duke
parents:
diff changeset
229
a61af66fc99e Initial load
duke
parents:
diff changeset
230 int CodeBuffer::section_index_of(address addr) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
231 for (int n = 0; n < (int)SECT_LIMIT; n++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
232 const CodeSection* cs = code_section(n);
a61af66fc99e Initial load
duke
parents:
diff changeset
233 if (cs->allocates(addr)) return n;
a61af66fc99e Initial load
duke
parents:
diff changeset
234 }
a61af66fc99e Initial load
duke
parents:
diff changeset
235 return SECT_NONE;
a61af66fc99e Initial load
duke
parents:
diff changeset
236 }
a61af66fc99e Initial load
duke
parents:
diff changeset
237
a61af66fc99e Initial load
duke
parents:
diff changeset
238 int CodeBuffer::locator(address addr) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
239 for (int n = 0; n < (int)SECT_LIMIT; n++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
240 const CodeSection* cs = code_section(n);
a61af66fc99e Initial load
duke
parents:
diff changeset
241 if (cs->allocates(addr)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
242 return locator(addr - cs->start(), n);
a61af66fc99e Initial load
duke
parents:
diff changeset
243 }
a61af66fc99e Initial load
duke
parents:
diff changeset
244 }
a61af66fc99e Initial load
duke
parents:
diff changeset
245 return -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
246 }
a61af66fc99e Initial load
duke
parents:
diff changeset
247
a61af66fc99e Initial load
duke
parents:
diff changeset
248 address CodeBuffer::locator_address(int locator) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
249 if (locator < 0) return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
250 address start = code_section(locator_sect(locator))->start();
a61af66fc99e Initial load
duke
parents:
diff changeset
251 return start + locator_pos(locator);
a61af66fc99e Initial load
duke
parents:
diff changeset
252 }
a61af66fc99e Initial load
duke
parents:
diff changeset
253
a61af66fc99e Initial load
duke
parents:
diff changeset
254 address CodeBuffer::decode_begin() {
a61af66fc99e Initial load
duke
parents:
diff changeset
255 address begin = _insts.start();
a61af66fc99e Initial load
duke
parents:
diff changeset
256 if (_decode_begin != NULL && _decode_begin > begin)
a61af66fc99e Initial load
duke
parents:
diff changeset
257 begin = _decode_begin;
a61af66fc99e Initial load
duke
parents:
diff changeset
258 return begin;
a61af66fc99e Initial load
duke
parents:
diff changeset
259 }
a61af66fc99e Initial load
duke
parents:
diff changeset
260
a61af66fc99e Initial load
duke
parents:
diff changeset
261
a61af66fc99e Initial load
duke
parents:
diff changeset
262 GrowableArray<int>* CodeBuffer::create_patch_overflow() {
a61af66fc99e Initial load
duke
parents:
diff changeset
263 if (_overflow_arena == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
264 _overflow_arena = new Arena();
a61af66fc99e Initial load
duke
parents:
diff changeset
265 }
a61af66fc99e Initial load
duke
parents:
diff changeset
266 return new (_overflow_arena) GrowableArray<int>(_overflow_arena, 8, 0, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
267 }
a61af66fc99e Initial load
duke
parents:
diff changeset
268
a61af66fc99e Initial load
duke
parents:
diff changeset
269
a61af66fc99e Initial load
duke
parents:
diff changeset
270 // Helper function for managing labels and their target addresses.
a61af66fc99e Initial load
duke
parents:
diff changeset
271 // Returns a sensible address, and if it is not the label's final
a61af66fc99e Initial load
duke
parents:
diff changeset
272 // address, notes the dependency (at 'branch_pc') on the label.
a61af66fc99e Initial load
duke
parents:
diff changeset
273 address CodeSection::target(Label& L, address branch_pc) {
a61af66fc99e Initial load
duke
parents:
diff changeset
274 if (L.is_bound()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
275 int loc = L.loc();
a61af66fc99e Initial load
duke
parents:
diff changeset
276 if (index() == CodeBuffer::locator_sect(loc)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
277 return start() + CodeBuffer::locator_pos(loc);
a61af66fc99e Initial load
duke
parents:
diff changeset
278 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
279 return outer()->locator_address(loc);
a61af66fc99e Initial load
duke
parents:
diff changeset
280 }
a61af66fc99e Initial load
duke
parents:
diff changeset
281 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
282 assert(allocates2(branch_pc), "sanity");
a61af66fc99e Initial load
duke
parents:
diff changeset
283 address base = start();
a61af66fc99e Initial load
duke
parents:
diff changeset
284 int patch_loc = CodeBuffer::locator(branch_pc - base, index());
a61af66fc99e Initial load
duke
parents:
diff changeset
285 L.add_patch_at(outer(), patch_loc);
a61af66fc99e Initial load
duke
parents:
diff changeset
286
a61af66fc99e Initial load
duke
parents:
diff changeset
287 // Need to return a pc, doesn't matter what it is since it will be
a61af66fc99e Initial load
duke
parents:
diff changeset
288 // replaced during resolution later.
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 100
diff changeset
289 // Don't return NULL or badAddress, since branches shouldn't overflow.
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 100
diff changeset
290 // Don't return base either because that could overflow displacements
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 100
diff changeset
291 // for shorter branches. It will get checked when bound.
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 100
diff changeset
292 return branch_pc;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
293 }
a61af66fc99e Initial load
duke
parents:
diff changeset
294 }
a61af66fc99e Initial load
duke
parents:
diff changeset
295
a61af66fc99e Initial load
duke
parents:
diff changeset
296 void CodeSection::relocate(address at, RelocationHolder const& spec, int format) {
a61af66fc99e Initial load
duke
parents:
diff changeset
297 Relocation* reloc = spec.reloc();
a61af66fc99e Initial load
duke
parents:
diff changeset
298 relocInfo::relocType rtype = (relocInfo::relocType) reloc->type();
a61af66fc99e Initial load
duke
parents:
diff changeset
299 if (rtype == relocInfo::none) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
300
a61af66fc99e Initial load
duke
parents:
diff changeset
301 // The assertion below has been adjusted, to also work for
a61af66fc99e Initial load
duke
parents:
diff changeset
302 // relocation for fixup. Sometimes we want to put relocation
a61af66fc99e Initial load
duke
parents:
diff changeset
303 // information for the next instruction, since it will be patched
a61af66fc99e Initial load
duke
parents:
diff changeset
304 // with a call.
a61af66fc99e Initial load
duke
parents:
diff changeset
305 assert(start() <= at && at <= end()+1,
a61af66fc99e Initial load
duke
parents:
diff changeset
306 "cannot relocate data outside code boundaries");
a61af66fc99e Initial load
duke
parents:
diff changeset
307
a61af66fc99e Initial load
duke
parents:
diff changeset
308 if (!has_locs()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
309 // no space for relocation information provided => code cannot be
a61af66fc99e Initial load
duke
parents:
diff changeset
310 // relocated. Make sure that relocate is only called with rtypes
a61af66fc99e Initial load
duke
parents:
diff changeset
311 // that can be ignored for this kind of code.
a61af66fc99e Initial load
duke
parents:
diff changeset
312 assert(rtype == relocInfo::none ||
a61af66fc99e Initial load
duke
parents:
diff changeset
313 rtype == relocInfo::runtime_call_type ||
a61af66fc99e Initial load
duke
parents:
diff changeset
314 rtype == relocInfo::internal_word_type||
a61af66fc99e Initial load
duke
parents:
diff changeset
315 rtype == relocInfo::section_word_type ||
a61af66fc99e Initial load
duke
parents:
diff changeset
316 rtype == relocInfo::external_word_type,
a61af66fc99e Initial load
duke
parents:
diff changeset
317 "code needs relocation information");
a61af66fc99e Initial load
duke
parents:
diff changeset
318 // leave behind an indication that we attempted a relocation
a61af66fc99e Initial load
duke
parents:
diff changeset
319 DEBUG_ONLY(_locs_start = _locs_limit = (relocInfo*)badAddress);
a61af66fc99e Initial load
duke
parents:
diff changeset
320 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
321 }
a61af66fc99e Initial load
duke
parents:
diff changeset
322
a61af66fc99e Initial load
duke
parents:
diff changeset
323 // Advance the point, noting the offset we'll have to record.
a61af66fc99e Initial load
duke
parents:
diff changeset
324 csize_t offset = at - locs_point();
a61af66fc99e Initial load
duke
parents:
diff changeset
325 set_locs_point(at);
a61af66fc99e Initial load
duke
parents:
diff changeset
326
a61af66fc99e Initial load
duke
parents:
diff changeset
327 // Test for a couple of overflow conditions; maybe expand the buffer.
a61af66fc99e Initial load
duke
parents:
diff changeset
328 relocInfo* end = locs_end();
a61af66fc99e Initial load
duke
parents:
diff changeset
329 relocInfo* req = end + relocInfo::length_limit;
a61af66fc99e Initial load
duke
parents:
diff changeset
330 // Check for (potential) overflow
a61af66fc99e Initial load
duke
parents:
diff changeset
331 if (req >= locs_limit() || offset >= relocInfo::offset_limit()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
332 req += (uint)offset / (uint)relocInfo::offset_limit();
a61af66fc99e Initial load
duke
parents:
diff changeset
333 if (req >= locs_limit()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
334 // Allocate or reallocate.
a61af66fc99e Initial load
duke
parents:
diff changeset
335 expand_locs(locs_count() + (req - end));
a61af66fc99e Initial load
duke
parents:
diff changeset
336 // reload pointer
a61af66fc99e Initial load
duke
parents:
diff changeset
337 end = locs_end();
a61af66fc99e Initial load
duke
parents:
diff changeset
338 }
a61af66fc99e Initial load
duke
parents:
diff changeset
339 }
a61af66fc99e Initial load
duke
parents:
diff changeset
340
a61af66fc99e Initial load
duke
parents:
diff changeset
341 // If the offset is giant, emit filler relocs, of type 'none', but
a61af66fc99e Initial load
duke
parents:
diff changeset
342 // each carrying the largest possible offset, to advance the locs_point.
a61af66fc99e Initial load
duke
parents:
diff changeset
343 while (offset >= relocInfo::offset_limit()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
344 assert(end < locs_limit(), "adjust previous paragraph of code");
a61af66fc99e Initial load
duke
parents:
diff changeset
345 *end++ = filler_relocInfo();
a61af66fc99e Initial load
duke
parents:
diff changeset
346 offset -= filler_relocInfo().addr_offset();
a61af66fc99e Initial load
duke
parents:
diff changeset
347 }
a61af66fc99e Initial load
duke
parents:
diff changeset
348
a61af66fc99e Initial load
duke
parents:
diff changeset
349 // If it's a simple reloc with no data, we'll just write (rtype | offset).
a61af66fc99e Initial load
duke
parents:
diff changeset
350 (*end) = relocInfo(rtype, offset, format);
a61af66fc99e Initial load
duke
parents:
diff changeset
351
a61af66fc99e Initial load
duke
parents:
diff changeset
352 // If it has data, insert the prefix, as (data_prefix_tag | data1), data2.
a61af66fc99e Initial load
duke
parents:
diff changeset
353 end->initialize(this, reloc);
a61af66fc99e Initial load
duke
parents:
diff changeset
354 }
a61af66fc99e Initial load
duke
parents:
diff changeset
355
a61af66fc99e Initial load
duke
parents:
diff changeset
356 void CodeSection::initialize_locs(int locs_capacity) {
a61af66fc99e Initial load
duke
parents:
diff changeset
357 assert(_locs_start == NULL, "only one locs init step, please");
a61af66fc99e Initial load
duke
parents:
diff changeset
358 // Apply a priori lower limits to relocation size:
a61af66fc99e Initial load
duke
parents:
diff changeset
359 csize_t min_locs = MAX2(size() / 16, (csize_t)4);
a61af66fc99e Initial load
duke
parents:
diff changeset
360 if (locs_capacity < min_locs) locs_capacity = min_locs;
a61af66fc99e Initial load
duke
parents:
diff changeset
361 relocInfo* locs_start = NEW_RESOURCE_ARRAY(relocInfo, locs_capacity);
a61af66fc99e Initial load
duke
parents:
diff changeset
362 _locs_start = locs_start;
a61af66fc99e Initial load
duke
parents:
diff changeset
363 _locs_end = locs_start;
a61af66fc99e Initial load
duke
parents:
diff changeset
364 _locs_limit = locs_start + locs_capacity;
a61af66fc99e Initial load
duke
parents:
diff changeset
365 _locs_own = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
366 }
a61af66fc99e Initial load
duke
parents:
diff changeset
367
a61af66fc99e Initial load
duke
parents:
diff changeset
368 void CodeSection::initialize_shared_locs(relocInfo* buf, int length) {
a61af66fc99e Initial load
duke
parents:
diff changeset
369 assert(_locs_start == NULL, "do this before locs are allocated");
a61af66fc99e Initial load
duke
parents:
diff changeset
370 // Internal invariant: locs buf must be fully aligned.
a61af66fc99e Initial load
duke
parents:
diff changeset
371 // See copy_relocations_to() below.
a61af66fc99e Initial load
duke
parents:
diff changeset
372 while ((uintptr_t)buf % HeapWordSize != 0 && length > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
373 ++buf; --length;
a61af66fc99e Initial load
duke
parents:
diff changeset
374 }
a61af66fc99e Initial load
duke
parents:
diff changeset
375 if (length > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
376 _locs_start = buf;
a61af66fc99e Initial load
duke
parents:
diff changeset
377 _locs_end = buf;
a61af66fc99e Initial load
duke
parents:
diff changeset
378 _locs_limit = buf + length;
a61af66fc99e Initial load
duke
parents:
diff changeset
379 _locs_own = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
380 }
a61af66fc99e Initial load
duke
parents:
diff changeset
381 }
a61af66fc99e Initial load
duke
parents:
diff changeset
382
a61af66fc99e Initial load
duke
parents:
diff changeset
383 void CodeSection::initialize_locs_from(const CodeSection* source_cs) {
a61af66fc99e Initial load
duke
parents:
diff changeset
384 int lcount = source_cs->locs_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
385 if (lcount != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
386 initialize_shared_locs(source_cs->locs_start(), lcount);
a61af66fc99e Initial load
duke
parents:
diff changeset
387 _locs_end = _locs_limit = _locs_start + lcount;
a61af66fc99e Initial load
duke
parents:
diff changeset
388 assert(is_allocated(), "must have copied code already");
a61af66fc99e Initial load
duke
parents:
diff changeset
389 set_locs_point(start() + source_cs->locs_point_off());
a61af66fc99e Initial load
duke
parents:
diff changeset
390 }
a61af66fc99e Initial load
duke
parents:
diff changeset
391 assert(this->locs_count() == source_cs->locs_count(), "sanity");
a61af66fc99e Initial load
duke
parents:
diff changeset
392 }
a61af66fc99e Initial load
duke
parents:
diff changeset
393
a61af66fc99e Initial load
duke
parents:
diff changeset
394 void CodeSection::expand_locs(int new_capacity) {
a61af66fc99e Initial load
duke
parents:
diff changeset
395 if (_locs_start == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
396 initialize_locs(new_capacity);
a61af66fc99e Initial load
duke
parents:
diff changeset
397 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
398 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
399 int old_count = locs_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
400 int old_capacity = locs_capacity();
a61af66fc99e Initial load
duke
parents:
diff changeset
401 if (new_capacity < old_capacity * 2)
a61af66fc99e Initial load
duke
parents:
diff changeset
402 new_capacity = old_capacity * 2;
a61af66fc99e Initial load
duke
parents:
diff changeset
403 relocInfo* locs_start;
a61af66fc99e Initial load
duke
parents:
diff changeset
404 if (_locs_own) {
a61af66fc99e Initial load
duke
parents:
diff changeset
405 locs_start = REALLOC_RESOURCE_ARRAY(relocInfo, _locs_start, old_capacity, new_capacity);
a61af66fc99e Initial load
duke
parents:
diff changeset
406 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
407 locs_start = NEW_RESOURCE_ARRAY(relocInfo, new_capacity);
1603
d93949c5bdcc 6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents: 1552
diff changeset
408 Copy::conjoint_jbytes(_locs_start, locs_start, old_capacity * sizeof(relocInfo));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
409 _locs_own = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
410 }
a61af66fc99e Initial load
duke
parents:
diff changeset
411 _locs_start = locs_start;
a61af66fc99e Initial load
duke
parents:
diff changeset
412 _locs_end = locs_start + old_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
413 _locs_limit = locs_start + new_capacity;
a61af66fc99e Initial load
duke
parents:
diff changeset
414 }
a61af66fc99e Initial load
duke
parents:
diff changeset
415 }
a61af66fc99e Initial load
duke
parents:
diff changeset
416
a61af66fc99e Initial load
duke
parents:
diff changeset
417
a61af66fc99e Initial load
duke
parents:
diff changeset
418 /// Support for emitting the code to its final location.
a61af66fc99e Initial load
duke
parents:
diff changeset
419 /// The pattern is the same for all functions.
a61af66fc99e Initial load
duke
parents:
diff changeset
420 /// We iterate over all the sections, padding each to alignment.
a61af66fc99e Initial load
duke
parents:
diff changeset
421
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1685
diff changeset
422 csize_t CodeBuffer::total_content_size() const {
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1685
diff changeset
423 csize_t size_so_far = 0;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
424 for (int n = 0; n < (int)SECT_LIMIT; n++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
425 const CodeSection* cs = code_section(n);
a61af66fc99e Initial load
duke
parents:
diff changeset
426 if (cs->is_empty()) continue; // skip trivial section
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1685
diff changeset
427 size_so_far = cs->align_at_start(size_so_far);
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1685
diff changeset
428 size_so_far += cs->size();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
429 }
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1685
diff changeset
430 return size_so_far;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
431 }
a61af66fc99e Initial load
duke
parents:
diff changeset
432
a61af66fc99e Initial load
duke
parents:
diff changeset
433 void CodeBuffer::compute_final_layout(CodeBuffer* dest) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
434 address buf = dest->_total_start;
a61af66fc99e Initial load
duke
parents:
diff changeset
435 csize_t buf_offset = 0;
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1685
diff changeset
436 assert(dest->_total_size >= total_content_size(), "must be big enough");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
437
a61af66fc99e Initial load
duke
parents:
diff changeset
438 {
a61af66fc99e Initial load
duke
parents:
diff changeset
439 // not sure why this is here, but why not...
a61af66fc99e Initial load
duke
parents:
diff changeset
440 int alignSize = MAX2((intx) sizeof(jdouble), CodeEntryAlignment);
a61af66fc99e Initial load
duke
parents:
diff changeset
441 assert( (dest->_total_start - _insts.start()) % alignSize == 0, "copy must preserve alignment");
a61af66fc99e Initial load
duke
parents:
diff changeset
442 }
a61af66fc99e Initial load
duke
parents:
diff changeset
443
a61af66fc99e Initial load
duke
parents:
diff changeset
444 const CodeSection* prev_cs = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
445 CodeSection* prev_dest_cs = NULL;
1762
0878d7bae69f 6961697: move nmethod constants section before instruction section
twisti
parents: 1748
diff changeset
446
0878d7bae69f 6961697: move nmethod constants section before instruction section
twisti
parents: 1748
diff changeset
447 for (int n = (int) SECT_FIRST; n < (int) SECT_LIMIT; n++) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
448 // figure compact layout of each section
a61af66fc99e Initial load
duke
parents:
diff changeset
449 const CodeSection* cs = code_section(n);
1762
0878d7bae69f 6961697: move nmethod constants section before instruction section
twisti
parents: 1748
diff changeset
450 csize_t csize = cs->size();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
451
a61af66fc99e Initial load
duke
parents:
diff changeset
452 CodeSection* dest_cs = dest->code_section(n);
a61af66fc99e Initial load
duke
parents:
diff changeset
453 if (!cs->is_empty()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
454 // Compute initial padding; assign it to the previous non-empty guy.
a61af66fc99e Initial load
duke
parents:
diff changeset
455 // Cf. figure_expanded_capacities.
a61af66fc99e Initial load
duke
parents:
diff changeset
456 csize_t padding = cs->align_at_start(buf_offset) - buf_offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
457 if (padding != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
458 buf_offset += padding;
a61af66fc99e Initial load
duke
parents:
diff changeset
459 assert(prev_dest_cs != NULL, "sanity");
a61af66fc99e Initial load
duke
parents:
diff changeset
460 prev_dest_cs->_limit += padding;
a61af66fc99e Initial load
duke
parents:
diff changeset
461 }
a61af66fc99e Initial load
duke
parents:
diff changeset
462 #ifdef ASSERT
1762
0878d7bae69f 6961697: move nmethod constants section before instruction section
twisti
parents: 1748
diff changeset
463 if (prev_cs != NULL && prev_cs->is_frozen() && n < (SECT_LIMIT - 1)) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
464 // Make sure the ends still match up.
a61af66fc99e Initial load
duke
parents:
diff changeset
465 // This is important because a branch in a frozen section
a61af66fc99e Initial load
duke
parents:
diff changeset
466 // might target code in a following section, via a Label,
a61af66fc99e Initial load
duke
parents:
diff changeset
467 // and without a relocation record. See Label::patch_instructions.
a61af66fc99e Initial load
duke
parents:
diff changeset
468 address dest_start = buf+buf_offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
469 csize_t start2start = cs->start() - prev_cs->start();
a61af66fc99e Initial load
duke
parents:
diff changeset
470 csize_t dest_start2start = dest_start - prev_dest_cs->start();
a61af66fc99e Initial load
duke
parents:
diff changeset
471 assert(start2start == dest_start2start, "cannot stretch frozen sect");
a61af66fc99e Initial load
duke
parents:
diff changeset
472 }
a61af66fc99e Initial load
duke
parents:
diff changeset
473 #endif //ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
474 prev_dest_cs = dest_cs;
a61af66fc99e Initial load
duke
parents:
diff changeset
475 prev_cs = cs;
a61af66fc99e Initial load
duke
parents:
diff changeset
476 }
a61af66fc99e Initial load
duke
parents:
diff changeset
477
a61af66fc99e Initial load
duke
parents:
diff changeset
478 debug_only(dest_cs->_start = NULL); // defeat double-initialization assert
a61af66fc99e Initial load
duke
parents:
diff changeset
479 dest_cs->initialize(buf+buf_offset, csize);
a61af66fc99e Initial load
duke
parents:
diff changeset
480 dest_cs->set_end(buf+buf_offset+csize);
a61af66fc99e Initial load
duke
parents:
diff changeset
481 assert(dest_cs->is_allocated(), "must always be allocated");
a61af66fc99e Initial load
duke
parents:
diff changeset
482 assert(cs->is_empty() == dest_cs->is_empty(), "sanity");
a61af66fc99e Initial load
duke
parents:
diff changeset
483
a61af66fc99e Initial load
duke
parents:
diff changeset
484 buf_offset += csize;
a61af66fc99e Initial load
duke
parents:
diff changeset
485 }
a61af66fc99e Initial load
duke
parents:
diff changeset
486
a61af66fc99e Initial load
duke
parents:
diff changeset
487 // Done calculating sections; did it come out to the right end?
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1685
diff changeset
488 assert(buf_offset == total_content_size(), "sanity");
4059
44ce519bc3d1 7104960: JSR 292: +VerifyMethodHandles in product JVM can overflow buffer
never
parents: 4040
diff changeset
489 dest->verify_section_allocation();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
490 }
a61af66fc99e Initial load
duke
parents:
diff changeset
491
1762
0878d7bae69f 6961697: move nmethod constants section before instruction section
twisti
parents: 1748
diff changeset
492 csize_t CodeBuffer::total_offset_of(CodeSection* cs) const {
0878d7bae69f 6961697: move nmethod constants section before instruction section
twisti
parents: 1748
diff changeset
493 csize_t size_so_far = 0;
0878d7bae69f 6961697: move nmethod constants section before instruction section
twisti
parents: 1748
diff changeset
494 for (int n = (int) SECT_FIRST; n < (int) SECT_LIMIT; n++) {
0878d7bae69f 6961697: move nmethod constants section before instruction section
twisti
parents: 1748
diff changeset
495 const CodeSection* cur_cs = code_section(n);
0878d7bae69f 6961697: move nmethod constants section before instruction section
twisti
parents: 1748
diff changeset
496 if (!cur_cs->is_empty()) {
0878d7bae69f 6961697: move nmethod constants section before instruction section
twisti
parents: 1748
diff changeset
497 size_so_far = cur_cs->align_at_start(size_so_far);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
498 }
1762
0878d7bae69f 6961697: move nmethod constants section before instruction section
twisti
parents: 1748
diff changeset
499 if (cur_cs->index() == cs->index()) {
0878d7bae69f 6961697: move nmethod constants section before instruction section
twisti
parents: 1748
diff changeset
500 return size_so_far;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
501 }
1762
0878d7bae69f 6961697: move nmethod constants section before instruction section
twisti
parents: 1748
diff changeset
502 size_so_far += cur_cs->size();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
503 }
a61af66fc99e Initial load
duke
parents:
diff changeset
504 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
505 return -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
506 }
a61af66fc99e Initial load
duke
parents:
diff changeset
507
a61af66fc99e Initial load
duke
parents:
diff changeset
508 csize_t CodeBuffer::total_relocation_size() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
509 csize_t lsize = copy_relocations_to(NULL); // dry run only
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1685
diff changeset
510 csize_t csize = total_content_size();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
511 csize_t total = RelocIterator::locs_and_index_size(csize, lsize);
a61af66fc99e Initial load
duke
parents:
diff changeset
512 return (csize_t) align_size_up(total, HeapWordSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
513 }
a61af66fc99e Initial load
duke
parents:
diff changeset
514
a61af66fc99e Initial load
duke
parents:
diff changeset
515 csize_t CodeBuffer::copy_relocations_to(CodeBlob* dest) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
516 address buf = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
517 csize_t buf_offset = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
518 csize_t buf_limit = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
519 if (dest != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
520 buf = (address)dest->relocation_begin();
a61af66fc99e Initial load
duke
parents:
diff changeset
521 buf_limit = (address)dest->relocation_end() - buf;
a61af66fc99e Initial load
duke
parents:
diff changeset
522 assert((uintptr_t)buf % HeapWordSize == 0, "buf must be fully aligned");
a61af66fc99e Initial load
duke
parents:
diff changeset
523 assert(buf_limit % HeapWordSize == 0, "buf must be evenly sized");
a61af66fc99e Initial load
duke
parents:
diff changeset
524 }
a61af66fc99e Initial load
duke
parents:
diff changeset
525 // if dest == NULL, this is just the sizing pass
a61af66fc99e Initial load
duke
parents:
diff changeset
526
a61af66fc99e Initial load
duke
parents:
diff changeset
527 csize_t code_end_so_far = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
528 csize_t code_point_so_far = 0;
1762
0878d7bae69f 6961697: move nmethod constants section before instruction section
twisti
parents: 1748
diff changeset
529 for (int n = (int) SECT_FIRST; n < (int)SECT_LIMIT; n++) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
530 // pull relocs out of each section
a61af66fc99e Initial load
duke
parents:
diff changeset
531 const CodeSection* cs = code_section(n);
a61af66fc99e Initial load
duke
parents:
diff changeset
532 assert(!(cs->is_empty() && cs->locs_count() > 0), "sanity");
a61af66fc99e Initial load
duke
parents:
diff changeset
533 if (cs->is_empty()) continue; // skip trivial section
a61af66fc99e Initial load
duke
parents:
diff changeset
534 relocInfo* lstart = cs->locs_start();
a61af66fc99e Initial load
duke
parents:
diff changeset
535 relocInfo* lend = cs->locs_end();
a61af66fc99e Initial load
duke
parents:
diff changeset
536 csize_t lsize = (csize_t)( (address)lend - (address)lstart );
a61af66fc99e Initial load
duke
parents:
diff changeset
537 csize_t csize = cs->size();
a61af66fc99e Initial load
duke
parents:
diff changeset
538 code_end_so_far = cs->align_at_start(code_end_so_far);
a61af66fc99e Initial load
duke
parents:
diff changeset
539
a61af66fc99e Initial load
duke
parents:
diff changeset
540 if (lsize > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
541 // Figure out how to advance the combined relocation point
a61af66fc99e Initial load
duke
parents:
diff changeset
542 // first to the beginning of this section.
a61af66fc99e Initial load
duke
parents:
diff changeset
543 // We'll insert one or more filler relocs to span that gap.
a61af66fc99e Initial load
duke
parents:
diff changeset
544 // (Don't bother to improve this by editing the first reloc's offset.)
a61af66fc99e Initial load
duke
parents:
diff changeset
545 csize_t new_code_point = code_end_so_far;
a61af66fc99e Initial load
duke
parents:
diff changeset
546 for (csize_t jump;
a61af66fc99e Initial load
duke
parents:
diff changeset
547 code_point_so_far < new_code_point;
a61af66fc99e Initial load
duke
parents:
diff changeset
548 code_point_so_far += jump) {
a61af66fc99e Initial load
duke
parents:
diff changeset
549 jump = new_code_point - code_point_so_far;
a61af66fc99e Initial load
duke
parents:
diff changeset
550 relocInfo filler = filler_relocInfo();
a61af66fc99e Initial load
duke
parents:
diff changeset
551 if (jump >= filler.addr_offset()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
552 jump = filler.addr_offset();
a61af66fc99e Initial load
duke
parents:
diff changeset
553 } else { // else shrink the filler to fit
a61af66fc99e Initial load
duke
parents:
diff changeset
554 filler = relocInfo(relocInfo::none, jump);
a61af66fc99e Initial load
duke
parents:
diff changeset
555 }
a61af66fc99e Initial load
duke
parents:
diff changeset
556 if (buf != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
557 assert(buf_offset + (csize_t)sizeof(filler) <= buf_limit, "filler in bounds");
a61af66fc99e Initial load
duke
parents:
diff changeset
558 *(relocInfo*)(buf+buf_offset) = filler;
a61af66fc99e Initial load
duke
parents:
diff changeset
559 }
a61af66fc99e Initial load
duke
parents:
diff changeset
560 buf_offset += sizeof(filler);
a61af66fc99e Initial load
duke
parents:
diff changeset
561 }
a61af66fc99e Initial load
duke
parents:
diff changeset
562
a61af66fc99e Initial load
duke
parents:
diff changeset
563 // Update code point and end to skip past this section:
a61af66fc99e Initial load
duke
parents:
diff changeset
564 csize_t last_code_point = code_end_so_far + cs->locs_point_off();
a61af66fc99e Initial load
duke
parents:
diff changeset
565 assert(code_point_so_far <= last_code_point, "sanity");
a61af66fc99e Initial load
duke
parents:
diff changeset
566 code_point_so_far = last_code_point; // advance past this guy's relocs
a61af66fc99e Initial load
duke
parents:
diff changeset
567 }
a61af66fc99e Initial load
duke
parents:
diff changeset
568 code_end_so_far += csize; // advance past this guy's instructions too
a61af66fc99e Initial load
duke
parents:
diff changeset
569
a61af66fc99e Initial load
duke
parents:
diff changeset
570 // Done with filler; emit the real relocations:
a61af66fc99e Initial load
duke
parents:
diff changeset
571 if (buf != NULL && lsize != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
572 assert(buf_offset + lsize <= buf_limit, "target in bounds");
a61af66fc99e Initial load
duke
parents:
diff changeset
573 assert((uintptr_t)lstart % HeapWordSize == 0, "sane start");
a61af66fc99e Initial load
duke
parents:
diff changeset
574 if (buf_offset % HeapWordSize == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
575 // Use wordwise copies if possible:
a61af66fc99e Initial load
duke
parents:
diff changeset
576 Copy::disjoint_words((HeapWord*)lstart,
a61af66fc99e Initial load
duke
parents:
diff changeset
577 (HeapWord*)(buf+buf_offset),
a61af66fc99e Initial load
duke
parents:
diff changeset
578 (lsize + HeapWordSize-1) / HeapWordSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
579 } else {
1603
d93949c5bdcc 6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents: 1552
diff changeset
580 Copy::conjoint_jbytes(lstart, buf+buf_offset, lsize);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
581 }
a61af66fc99e Initial load
duke
parents:
diff changeset
582 }
a61af66fc99e Initial load
duke
parents:
diff changeset
583 buf_offset += lsize;
a61af66fc99e Initial load
duke
parents:
diff changeset
584 }
a61af66fc99e Initial load
duke
parents:
diff changeset
585
a61af66fc99e Initial load
duke
parents:
diff changeset
586 // Align end of relocation info in target.
a61af66fc99e Initial load
duke
parents:
diff changeset
587 while (buf_offset % HeapWordSize != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
588 if (buf != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
589 relocInfo padding = relocInfo(relocInfo::none, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
590 assert(buf_offset + (csize_t)sizeof(padding) <= buf_limit, "padding in bounds");
a61af66fc99e Initial load
duke
parents:
diff changeset
591 *(relocInfo*)(buf+buf_offset) = padding;
a61af66fc99e Initial load
duke
parents:
diff changeset
592 }
a61af66fc99e Initial load
duke
parents:
diff changeset
593 buf_offset += sizeof(relocInfo);
a61af66fc99e Initial load
duke
parents:
diff changeset
594 }
a61af66fc99e Initial load
duke
parents:
diff changeset
595
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1685
diff changeset
596 assert(code_end_so_far == total_content_size(), "sanity");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
597
a61af66fc99e Initial load
duke
parents:
diff changeset
598 // Account for index:
a61af66fc99e Initial load
duke
parents:
diff changeset
599 if (buf != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
600 RelocIterator::create_index(dest->relocation_begin(),
a61af66fc99e Initial load
duke
parents:
diff changeset
601 buf_offset / sizeof(relocInfo),
a61af66fc99e Initial load
duke
parents:
diff changeset
602 dest->relocation_end());
a61af66fc99e Initial load
duke
parents:
diff changeset
603 }
a61af66fc99e Initial load
duke
parents:
diff changeset
604
a61af66fc99e Initial load
duke
parents:
diff changeset
605 return buf_offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
606 }
a61af66fc99e Initial load
duke
parents:
diff changeset
607
a61af66fc99e Initial load
duke
parents:
diff changeset
608 void CodeBuffer::copy_code_to(CodeBlob* dest_blob) {
a61af66fc99e Initial load
duke
parents:
diff changeset
609 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
610 if (PrintNMethods && (WizardMode || Verbose)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
611 tty->print("done with CodeBuffer:");
a61af66fc99e Initial load
duke
parents:
diff changeset
612 ((CodeBuffer*)this)->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
613 }
a61af66fc99e Initial load
duke
parents:
diff changeset
614 #endif //PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
615
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1685
diff changeset
616 CodeBuffer dest(dest_blob);
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1685
diff changeset
617 assert(dest_blob->content_size() >= total_content_size(), "good sizing");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
618 this->compute_final_layout(&dest);
a61af66fc99e Initial load
duke
parents:
diff changeset
619 relocate_code_to(&dest);
a61af66fc99e Initial load
duke
parents:
diff changeset
620
a61af66fc99e Initial load
duke
parents:
diff changeset
621 // transfer comments from buffer to blob
a61af66fc99e Initial load
duke
parents:
diff changeset
622 dest_blob->set_comments(_comments);
a61af66fc99e Initial load
duke
parents:
diff changeset
623
a61af66fc99e Initial load
duke
parents:
diff changeset
624 // Done moving code bytes; were they the right size?
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1685
diff changeset
625 assert(round_to(dest.total_content_size(), oopSize) == dest_blob->content_size(), "sanity");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
626
a61af66fc99e Initial load
duke
parents:
diff changeset
627 // Flush generated code
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1685
diff changeset
628 ICache::invalidate_range(dest_blob->code_begin(), dest_blob->code_size());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
629 }
a61af66fc99e Initial load
duke
parents:
diff changeset
630
1762
0878d7bae69f 6961697: move nmethod constants section before instruction section
twisti
parents: 1748
diff changeset
631 // Move all my code into another code buffer. Consult applicable
0878d7bae69f 6961697: move nmethod constants section before instruction section
twisti
parents: 1748
diff changeset
632 // relocs to repair embedded addresses. The layout in the destination
0878d7bae69f 6961697: move nmethod constants section before instruction section
twisti
parents: 1748
diff changeset
633 // CodeBuffer is different to the source CodeBuffer: the destination
0878d7bae69f 6961697: move nmethod constants section before instruction section
twisti
parents: 1748
diff changeset
634 // CodeBuffer gets the final layout (consts, insts, stubs in order of
0878d7bae69f 6961697: move nmethod constants section before instruction section
twisti
parents: 1748
diff changeset
635 // ascending address).
0
a61af66fc99e Initial load
duke
parents:
diff changeset
636 void CodeBuffer::relocate_code_to(CodeBuffer* dest) const {
4040
754110e02bd5 7103380: assertion failure with -XX:+PrintNativeNMethods
never
parents: 2015
diff changeset
637 address dest_end = dest->_total_start + dest->_total_size;
754110e02bd5 7103380: assertion failure with -XX:+PrintNativeNMethods
never
parents: 2015
diff changeset
638 address dest_filled = NULL;
1762
0878d7bae69f 6961697: move nmethod constants section before instruction section
twisti
parents: 1748
diff changeset
639 for (int n = (int) SECT_FIRST; n < (int) SECT_LIMIT; n++) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
640 // pull code out of each section
a61af66fc99e Initial load
duke
parents:
diff changeset
641 const CodeSection* cs = code_section(n);
a61af66fc99e Initial load
duke
parents:
diff changeset
642 if (cs->is_empty()) continue; // skip trivial section
a61af66fc99e Initial load
duke
parents:
diff changeset
643 CodeSection* dest_cs = dest->code_section(n);
a61af66fc99e Initial load
duke
parents:
diff changeset
644 assert(cs->size() == dest_cs->size(), "sanity");
a61af66fc99e Initial load
duke
parents:
diff changeset
645 csize_t usize = dest_cs->size();
a61af66fc99e Initial load
duke
parents:
diff changeset
646 csize_t wsize = align_size_up(usize, HeapWordSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
647 assert(dest_cs->start() + wsize <= dest_end, "no overflow");
a61af66fc99e Initial load
duke
parents:
diff changeset
648 // Copy the code as aligned machine words.
a61af66fc99e Initial load
duke
parents:
diff changeset
649 // This may also include an uninitialized partial word at the end.
a61af66fc99e Initial load
duke
parents:
diff changeset
650 Copy::disjoint_words((HeapWord*)cs->start(),
a61af66fc99e Initial load
duke
parents:
diff changeset
651 (HeapWord*)dest_cs->start(),
a61af66fc99e Initial load
duke
parents:
diff changeset
652 wsize / HeapWordSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
653
a61af66fc99e Initial load
duke
parents:
diff changeset
654 if (dest->blob() == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
655 // Destination is a final resting place, not just another buffer.
a61af66fc99e Initial load
duke
parents:
diff changeset
656 // Normalize uninitialized bytes in the final padding.
a61af66fc99e Initial load
duke
parents:
diff changeset
657 Copy::fill_to_bytes(dest_cs->end(), dest_cs->remaining(),
a61af66fc99e Initial load
duke
parents:
diff changeset
658 Assembler::code_fill_byte());
a61af66fc99e Initial load
duke
parents:
diff changeset
659 }
4040
754110e02bd5 7103380: assertion failure with -XX:+PrintNativeNMethods
never
parents: 2015
diff changeset
660 // Keep track of the highest filled address
754110e02bd5 7103380: assertion failure with -XX:+PrintNativeNMethods
never
parents: 2015
diff changeset
661 dest_filled = MAX2(dest_filled, dest_cs->end() + dest_cs->remaining());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
662
a61af66fc99e Initial load
duke
parents:
diff changeset
663 assert(cs->locs_start() != (relocInfo*)badAddress,
a61af66fc99e Initial load
duke
parents:
diff changeset
664 "this section carries no reloc storage, but reloc was attempted");
a61af66fc99e Initial load
duke
parents:
diff changeset
665
a61af66fc99e Initial load
duke
parents:
diff changeset
666 // Make the new code copy use the old copy's relocations:
a61af66fc99e Initial load
duke
parents:
diff changeset
667 dest_cs->initialize_locs_from(cs);
a61af66fc99e Initial load
duke
parents:
diff changeset
668
a61af66fc99e Initial load
duke
parents:
diff changeset
669 { // Repair the pc relative information in the code after the move
a61af66fc99e Initial load
duke
parents:
diff changeset
670 RelocIterator iter(dest_cs);
a61af66fc99e Initial load
duke
parents:
diff changeset
671 while (iter.next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
672 iter.reloc()->fix_relocation_after_move(this, dest);
a61af66fc99e Initial load
duke
parents:
diff changeset
673 }
a61af66fc99e Initial load
duke
parents:
diff changeset
674 }
a61af66fc99e Initial load
duke
parents:
diff changeset
675 }
4040
754110e02bd5 7103380: assertion failure with -XX:+PrintNativeNMethods
never
parents: 2015
diff changeset
676
754110e02bd5 7103380: assertion failure with -XX:+PrintNativeNMethods
never
parents: 2015
diff changeset
677 if (dest->blob() == NULL) {
754110e02bd5 7103380: assertion failure with -XX:+PrintNativeNMethods
never
parents: 2015
diff changeset
678 // Destination is a final resting place, not just another buffer.
754110e02bd5 7103380: assertion failure with -XX:+PrintNativeNMethods
never
parents: 2015
diff changeset
679 // Normalize uninitialized bytes in the final padding.
754110e02bd5 7103380: assertion failure with -XX:+PrintNativeNMethods
never
parents: 2015
diff changeset
680 Copy::fill_to_bytes(dest_filled, dest_end - dest_filled,
754110e02bd5 7103380: assertion failure with -XX:+PrintNativeNMethods
never
parents: 2015
diff changeset
681 Assembler::code_fill_byte());
754110e02bd5 7103380: assertion failure with -XX:+PrintNativeNMethods
never
parents: 2015
diff changeset
682
754110e02bd5 7103380: assertion failure with -XX:+PrintNativeNMethods
never
parents: 2015
diff changeset
683 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
684 }
a61af66fc99e Initial load
duke
parents:
diff changeset
685
a61af66fc99e Initial load
duke
parents:
diff changeset
686 csize_t CodeBuffer::figure_expanded_capacities(CodeSection* which_cs,
a61af66fc99e Initial load
duke
parents:
diff changeset
687 csize_t amount,
a61af66fc99e Initial load
duke
parents:
diff changeset
688 csize_t* new_capacity) {
a61af66fc99e Initial load
duke
parents:
diff changeset
689 csize_t new_total_cap = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
690
1762
0878d7bae69f 6961697: move nmethod constants section before instruction section
twisti
parents: 1748
diff changeset
691 for (int n = (int) SECT_FIRST; n < (int) SECT_LIMIT; n++) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
692 const CodeSection* sect = code_section(n);
a61af66fc99e Initial load
duke
parents:
diff changeset
693
a61af66fc99e Initial load
duke
parents:
diff changeset
694 if (!sect->is_empty()) {
1762
0878d7bae69f 6961697: move nmethod constants section before instruction section
twisti
parents: 1748
diff changeset
695 // Compute initial padding; assign it to the previous section,
0878d7bae69f 6961697: move nmethod constants section before instruction section
twisti
parents: 1748
diff changeset
696 // even if it's empty (e.g. consts section can be empty).
0878d7bae69f 6961697: move nmethod constants section before instruction section
twisti
parents: 1748
diff changeset
697 // Cf. compute_final_layout
0
a61af66fc99e Initial load
duke
parents:
diff changeset
698 csize_t padding = sect->align_at_start(new_total_cap) - new_total_cap;
a61af66fc99e Initial load
duke
parents:
diff changeset
699 if (padding != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
700 new_total_cap += padding;
1762
0878d7bae69f 6961697: move nmethod constants section before instruction section
twisti
parents: 1748
diff changeset
701 assert(n - 1 >= SECT_FIRST, "sanity");
0878d7bae69f 6961697: move nmethod constants section before instruction section
twisti
parents: 1748
diff changeset
702 new_capacity[n - 1] += padding;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
703 }
a61af66fc99e Initial load
duke
parents:
diff changeset
704 }
a61af66fc99e Initial load
duke
parents:
diff changeset
705
a61af66fc99e Initial load
duke
parents:
diff changeset
706 csize_t exp = sect->size(); // 100% increase
a61af66fc99e Initial load
duke
parents:
diff changeset
707 if ((uint)exp < 4*K) exp = 4*K; // minimum initial increase
a61af66fc99e Initial load
duke
parents:
diff changeset
708 if (sect == which_cs) {
a61af66fc99e Initial load
duke
parents:
diff changeset
709 if (exp < amount) exp = amount;
a61af66fc99e Initial load
duke
parents:
diff changeset
710 if (StressCodeBuffers) exp = amount; // expand only slightly
a61af66fc99e Initial load
duke
parents:
diff changeset
711 } else if (n == SECT_INSTS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
712 // scale down inst increases to a more modest 25%
a61af66fc99e Initial load
duke
parents:
diff changeset
713 exp = 4*K + ((exp - 4*K) >> 2);
a61af66fc99e Initial load
duke
parents:
diff changeset
714 if (StressCodeBuffers) exp = amount / 2; // expand only slightly
a61af66fc99e Initial load
duke
parents:
diff changeset
715 } else if (sect->is_empty()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
716 // do not grow an empty secondary section
a61af66fc99e Initial load
duke
parents:
diff changeset
717 exp = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
718 }
a61af66fc99e Initial load
duke
parents:
diff changeset
719 // Allow for inter-section slop:
a61af66fc99e Initial load
duke
parents:
diff changeset
720 exp += CodeSection::end_slop();
a61af66fc99e Initial load
duke
parents:
diff changeset
721 csize_t new_cap = sect->size() + exp;
a61af66fc99e Initial load
duke
parents:
diff changeset
722 if (new_cap < sect->capacity()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
723 // No need to expand after all.
a61af66fc99e Initial load
duke
parents:
diff changeset
724 new_cap = sect->capacity();
a61af66fc99e Initial load
duke
parents:
diff changeset
725 }
a61af66fc99e Initial load
duke
parents:
diff changeset
726 new_capacity[n] = new_cap;
a61af66fc99e Initial load
duke
parents:
diff changeset
727 new_total_cap += new_cap;
a61af66fc99e Initial load
duke
parents:
diff changeset
728 }
a61af66fc99e Initial load
duke
parents:
diff changeset
729
a61af66fc99e Initial load
duke
parents:
diff changeset
730 return new_total_cap;
a61af66fc99e Initial load
duke
parents:
diff changeset
731 }
a61af66fc99e Initial load
duke
parents:
diff changeset
732
a61af66fc99e Initial load
duke
parents:
diff changeset
733 void CodeBuffer::expand(CodeSection* which_cs, csize_t amount) {
a61af66fc99e Initial load
duke
parents:
diff changeset
734 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
735 if (PrintNMethods && (WizardMode || Verbose)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
736 tty->print("expanding CodeBuffer:");
a61af66fc99e Initial load
duke
parents:
diff changeset
737 this->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
738 }
a61af66fc99e Initial load
duke
parents:
diff changeset
739
a61af66fc99e Initial load
duke
parents:
diff changeset
740 if (StressCodeBuffers && blob() != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
741 static int expand_count = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
742 if (expand_count >= 0) expand_count += 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
743 if (expand_count > 100 && is_power_of_2(expand_count)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
744 tty->print_cr("StressCodeBuffers: have expanded %d times", expand_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
745 // simulate an occasional allocation failure:
a61af66fc99e Initial load
duke
parents:
diff changeset
746 free_blob();
a61af66fc99e Initial load
duke
parents:
diff changeset
747 }
a61af66fc99e Initial load
duke
parents:
diff changeset
748 }
a61af66fc99e Initial load
duke
parents:
diff changeset
749 #endif //PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
750
a61af66fc99e Initial load
duke
parents:
diff changeset
751 // Resizing must be allowed
a61af66fc99e Initial load
duke
parents:
diff changeset
752 {
a61af66fc99e Initial load
duke
parents:
diff changeset
753 if (blob() == NULL) return; // caller must check for blob == NULL
a61af66fc99e Initial load
duke
parents:
diff changeset
754 for (int n = 0; n < (int)SECT_LIMIT; n++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
755 guarantee(!code_section(n)->is_frozen(), "resizing not allowed when frozen");
a61af66fc99e Initial load
duke
parents:
diff changeset
756 }
a61af66fc99e Initial load
duke
parents:
diff changeset
757 }
a61af66fc99e Initial load
duke
parents:
diff changeset
758
a61af66fc99e Initial load
duke
parents:
diff changeset
759 // Figure new capacity for each section.
a61af66fc99e Initial load
duke
parents:
diff changeset
760 csize_t new_capacity[SECT_LIMIT];
a61af66fc99e Initial load
duke
parents:
diff changeset
761 csize_t new_total_cap
a61af66fc99e Initial load
duke
parents:
diff changeset
762 = figure_expanded_capacities(which_cs, amount, new_capacity);
a61af66fc99e Initial load
duke
parents:
diff changeset
763
a61af66fc99e Initial load
duke
parents:
diff changeset
764 // Create a new (temporary) code buffer to hold all the new data
a61af66fc99e Initial load
duke
parents:
diff changeset
765 CodeBuffer cb(name(), new_total_cap, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
766 if (cb.blob() == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
767 // Failed to allocate in code cache.
a61af66fc99e Initial load
duke
parents:
diff changeset
768 free_blob();
a61af66fc99e Initial load
duke
parents:
diff changeset
769 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
770 }
a61af66fc99e Initial load
duke
parents:
diff changeset
771
a61af66fc99e Initial load
duke
parents:
diff changeset
772 // Create an old code buffer to remember which addresses used to go where.
a61af66fc99e Initial load
duke
parents:
diff changeset
773 // This will be useful when we do final assembly into the code cache,
a61af66fc99e Initial load
duke
parents:
diff changeset
774 // because we will need to know how to warp any internal address that
a61af66fc99e Initial load
duke
parents:
diff changeset
775 // has been created at any time in this CodeBuffer's past.
a61af66fc99e Initial load
duke
parents:
diff changeset
776 CodeBuffer* bxp = new CodeBuffer(_total_start, _total_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
777 bxp->take_over_code_from(this); // remember the old undersized blob
a61af66fc99e Initial load
duke
parents:
diff changeset
778 DEBUG_ONLY(this->_blob = NULL); // silence a later assert
a61af66fc99e Initial load
duke
parents:
diff changeset
779 bxp->_before_expand = this->_before_expand;
a61af66fc99e Initial load
duke
parents:
diff changeset
780 this->_before_expand = bxp;
a61af66fc99e Initial load
duke
parents:
diff changeset
781
a61af66fc99e Initial load
duke
parents:
diff changeset
782 // Give each section its required (expanded) capacity.
1762
0878d7bae69f 6961697: move nmethod constants section before instruction section
twisti
parents: 1748
diff changeset
783 for (int n = (int)SECT_LIMIT-1; n >= SECT_FIRST; n--) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
784 CodeSection* cb_sect = cb.code_section(n);
a61af66fc99e Initial load
duke
parents:
diff changeset
785 CodeSection* this_sect = code_section(n);
a61af66fc99e Initial load
duke
parents:
diff changeset
786 if (new_capacity[n] == 0) continue; // already nulled out
1762
0878d7bae69f 6961697: move nmethod constants section before instruction section
twisti
parents: 1748
diff changeset
787 if (n != SECT_INSTS) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
788 cb.initialize_section_size(cb_sect, new_capacity[n]);
a61af66fc99e Initial load
duke
parents:
diff changeset
789 }
a61af66fc99e Initial load
duke
parents:
diff changeset
790 assert(cb_sect->capacity() >= new_capacity[n], "big enough");
a61af66fc99e Initial load
duke
parents:
diff changeset
791 address cb_start = cb_sect->start();
a61af66fc99e Initial load
duke
parents:
diff changeset
792 cb_sect->set_end(cb_start + this_sect->size());
a61af66fc99e Initial load
duke
parents:
diff changeset
793 if (this_sect->mark() == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
794 cb_sect->clear_mark();
a61af66fc99e Initial load
duke
parents:
diff changeset
795 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
796 cb_sect->set_mark(cb_start + this_sect->mark_off());
a61af66fc99e Initial load
duke
parents:
diff changeset
797 }
a61af66fc99e Initial load
duke
parents:
diff changeset
798 }
a61af66fc99e Initial load
duke
parents:
diff changeset
799
a61af66fc99e Initial load
duke
parents:
diff changeset
800 // Move all the code and relocations to the new blob:
a61af66fc99e Initial load
duke
parents:
diff changeset
801 relocate_code_to(&cb);
a61af66fc99e Initial load
duke
parents:
diff changeset
802
a61af66fc99e Initial load
duke
parents:
diff changeset
803 // Copy the temporary code buffer into the current code buffer.
a61af66fc99e Initial load
duke
parents:
diff changeset
804 // Basically, do {*this = cb}, except for some control information.
a61af66fc99e Initial load
duke
parents:
diff changeset
805 this->take_over_code_from(&cb);
a61af66fc99e Initial load
duke
parents:
diff changeset
806 cb.set_blob(NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
807
a61af66fc99e Initial load
duke
parents:
diff changeset
808 // Zap the old code buffer contents, to avoid mistakenly using them.
a61af66fc99e Initial load
duke
parents:
diff changeset
809 debug_only(Copy::fill_to_bytes(bxp->_total_start, bxp->_total_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
810 badCodeHeapFreeVal));
a61af66fc99e Initial load
duke
parents:
diff changeset
811
a61af66fc99e Initial load
duke
parents:
diff changeset
812 _decode_begin = NULL; // sanity
a61af66fc99e Initial load
duke
parents:
diff changeset
813
a61af66fc99e Initial load
duke
parents:
diff changeset
814 // Make certain that the new sections are all snugly inside the new blob.
4059
44ce519bc3d1 7104960: JSR 292: +VerifyMethodHandles in product JVM can overflow buffer
never
parents: 4040
diff changeset
815 verify_section_allocation();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
816
a61af66fc99e Initial load
duke
parents:
diff changeset
817 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
818 if (PrintNMethods && (WizardMode || Verbose)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
819 tty->print("expanded CodeBuffer:");
a61af66fc99e Initial load
duke
parents:
diff changeset
820 this->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
821 }
a61af66fc99e Initial load
duke
parents:
diff changeset
822 #endif //PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
823 }
a61af66fc99e Initial load
duke
parents:
diff changeset
824
a61af66fc99e Initial load
duke
parents:
diff changeset
825 void CodeBuffer::take_over_code_from(CodeBuffer* cb) {
a61af66fc99e Initial load
duke
parents:
diff changeset
826 // Must already have disposed of the old blob somehow.
a61af66fc99e Initial load
duke
parents:
diff changeset
827 assert(blob() == NULL, "must be empty");
a61af66fc99e Initial load
duke
parents:
diff changeset
828 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
829
a61af66fc99e Initial load
duke
parents:
diff changeset
830 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
831 // Take the new blob away from cb.
a61af66fc99e Initial load
duke
parents:
diff changeset
832 set_blob(cb->blob());
a61af66fc99e Initial load
duke
parents:
diff changeset
833 // Take over all the section pointers.
a61af66fc99e Initial load
duke
parents:
diff changeset
834 for (int n = 0; n < (int)SECT_LIMIT; n++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
835 CodeSection* cb_sect = cb->code_section(n);
a61af66fc99e Initial load
duke
parents:
diff changeset
836 CodeSection* this_sect = code_section(n);
a61af66fc99e Initial load
duke
parents:
diff changeset
837 this_sect->take_over_code_from(cb_sect);
a61af66fc99e Initial load
duke
parents:
diff changeset
838 }
a61af66fc99e Initial load
duke
parents:
diff changeset
839 _overflow_arena = cb->_overflow_arena;
a61af66fc99e Initial load
duke
parents:
diff changeset
840 // Make sure the old cb won't try to use it or free it.
a61af66fc99e Initial load
duke
parents:
diff changeset
841 DEBUG_ONLY(cb->_blob = (BufferBlob*)badAddress);
a61af66fc99e Initial load
duke
parents:
diff changeset
842 }
a61af66fc99e Initial load
duke
parents:
diff changeset
843
4059
44ce519bc3d1 7104960: JSR 292: +VerifyMethodHandles in product JVM can overflow buffer
never
parents: 4040
diff changeset
844 void CodeBuffer::verify_section_allocation() {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
845 address tstart = _total_start;
4059
44ce519bc3d1 7104960: JSR 292: +VerifyMethodHandles in product JVM can overflow buffer
never
parents: 4040
diff changeset
846 if (tstart == badAddress) return; // smashed by set_blob(NULL)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
847 address tend = tstart + _total_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
848 if (_blob != NULL) {
4059
44ce519bc3d1 7104960: JSR 292: +VerifyMethodHandles in product JVM can overflow buffer
never
parents: 4040
diff changeset
849
44ce519bc3d1 7104960: JSR 292: +VerifyMethodHandles in product JVM can overflow buffer
never
parents: 4040
diff changeset
850 guarantee(tstart >= _blob->content_begin(), "sanity");
44ce519bc3d1 7104960: JSR 292: +VerifyMethodHandles in product JVM can overflow buffer
never
parents: 4040
diff changeset
851 guarantee(tend <= _blob->content_end(), "sanity");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
852 }
1762
0878d7bae69f 6961697: move nmethod constants section before instruction section
twisti
parents: 1748
diff changeset
853 // Verify disjointness.
0878d7bae69f 6961697: move nmethod constants section before instruction section
twisti
parents: 1748
diff changeset
854 for (int n = (int) SECT_FIRST; n < (int) SECT_LIMIT; n++) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
855 CodeSection* sect = code_section(n);
1762
0878d7bae69f 6961697: move nmethod constants section before instruction section
twisti
parents: 1748
diff changeset
856 if (!sect->is_allocated() || sect->is_empty()) continue;
4059
44ce519bc3d1 7104960: JSR 292: +VerifyMethodHandles in product JVM can overflow buffer
never
parents: 4040
diff changeset
857 guarantee((intptr_t)sect->start() % sect->alignment() == 0
0
a61af66fc99e Initial load
duke
parents:
diff changeset
858 || sect->is_empty() || _blob == NULL,
a61af66fc99e Initial load
duke
parents:
diff changeset
859 "start is aligned");
1762
0878d7bae69f 6961697: move nmethod constants section before instruction section
twisti
parents: 1748
diff changeset
860 for (int m = (int) SECT_FIRST; m < (int) SECT_LIMIT; m++) {
0878d7bae69f 6961697: move nmethod constants section before instruction section
twisti
parents: 1748
diff changeset
861 CodeSection* other = code_section(m);
0878d7bae69f 6961697: move nmethod constants section before instruction section
twisti
parents: 1748
diff changeset
862 if (!other->is_allocated() || other == sect) continue;
4059
44ce519bc3d1 7104960: JSR 292: +VerifyMethodHandles in product JVM can overflow buffer
never
parents: 4040
diff changeset
863 guarantee(!other->contains(sect->start() ), "sanity");
1762
0878d7bae69f 6961697: move nmethod constants section before instruction section
twisti
parents: 1748
diff changeset
864 // limit is an exclusive address and can be the start of another
0878d7bae69f 6961697: move nmethod constants section before instruction section
twisti
parents: 1748
diff changeset
865 // section.
4059
44ce519bc3d1 7104960: JSR 292: +VerifyMethodHandles in product JVM can overflow buffer
never
parents: 4040
diff changeset
866 guarantee(!other->contains(sect->limit() - 1), "sanity");
1762
0878d7bae69f 6961697: move nmethod constants section before instruction section
twisti
parents: 1748
diff changeset
867 }
4059
44ce519bc3d1 7104960: JSR 292: +VerifyMethodHandles in product JVM can overflow buffer
never
parents: 4040
diff changeset
868 guarantee(sect->end() <= tend, "sanity");
44ce519bc3d1 7104960: JSR 292: +VerifyMethodHandles in product JVM can overflow buffer
never
parents: 4040
diff changeset
869 guarantee(sect->end() <= sect->limit(), "sanity");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
870 }
a61af66fc99e Initial load
duke
parents:
diff changeset
871 }
4059
44ce519bc3d1 7104960: JSR 292: +VerifyMethodHandles in product JVM can overflow buffer
never
parents: 4040
diff changeset
872
44ce519bc3d1 7104960: JSR 292: +VerifyMethodHandles in product JVM can overflow buffer
never
parents: 4040
diff changeset
873 void CodeBuffer::log_section_sizes(const char* name) {
44ce519bc3d1 7104960: JSR 292: +VerifyMethodHandles in product JVM can overflow buffer
never
parents: 4040
diff changeset
874 if (xtty != NULL) {
44ce519bc3d1 7104960: JSR 292: +VerifyMethodHandles in product JVM can overflow buffer
never
parents: 4040
diff changeset
875 // log info about buffer usage
44ce519bc3d1 7104960: JSR 292: +VerifyMethodHandles in product JVM can overflow buffer
never
parents: 4040
diff changeset
876 xtty->print_cr("<blob name='%s' size='%d'>", name, _total_size);
44ce519bc3d1 7104960: JSR 292: +VerifyMethodHandles in product JVM can overflow buffer
never
parents: 4040
diff changeset
877 for (int n = (int) CodeBuffer::SECT_FIRST; n < (int) CodeBuffer::SECT_LIMIT; n++) {
44ce519bc3d1 7104960: JSR 292: +VerifyMethodHandles in product JVM can overflow buffer
never
parents: 4040
diff changeset
878 CodeSection* sect = code_section(n);
44ce519bc3d1 7104960: JSR 292: +VerifyMethodHandles in product JVM can overflow buffer
never
parents: 4040
diff changeset
879 if (!sect->is_allocated() || sect->is_empty()) continue;
44ce519bc3d1 7104960: JSR 292: +VerifyMethodHandles in product JVM can overflow buffer
never
parents: 4040
diff changeset
880 xtty->print_cr("<sect index='%d' size='" SIZE_FORMAT "' free='" SIZE_FORMAT "'/>",
44ce519bc3d1 7104960: JSR 292: +VerifyMethodHandles in product JVM can overflow buffer
never
parents: 4040
diff changeset
881 n, sect->limit() - sect->start(), sect->limit() - sect->end());
44ce519bc3d1 7104960: JSR 292: +VerifyMethodHandles in product JVM can overflow buffer
never
parents: 4040
diff changeset
882 }
44ce519bc3d1 7104960: JSR 292: +VerifyMethodHandles in product JVM can overflow buffer
never
parents: 4040
diff changeset
883 xtty->print_cr("</blob>");
44ce519bc3d1 7104960: JSR 292: +VerifyMethodHandles in product JVM can overflow buffer
never
parents: 4040
diff changeset
884 }
44ce519bc3d1 7104960: JSR 292: +VerifyMethodHandles in product JVM can overflow buffer
never
parents: 4040
diff changeset
885 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
886
a61af66fc99e Initial load
duke
parents:
diff changeset
887 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
888
a61af66fc99e Initial load
duke
parents:
diff changeset
889 void CodeSection::dump() {
a61af66fc99e Initial load
duke
parents:
diff changeset
890 address ptr = start();
a61af66fc99e Initial load
duke
parents:
diff changeset
891 for (csize_t step; ptr < end(); ptr += step) {
a61af66fc99e Initial load
duke
parents:
diff changeset
892 step = end() - ptr;
a61af66fc99e Initial load
duke
parents:
diff changeset
893 if (step > jintSize * 4) step = jintSize * 4;
a61af66fc99e Initial load
duke
parents:
diff changeset
894 tty->print(PTR_FORMAT ": ", ptr);
a61af66fc99e Initial load
duke
parents:
diff changeset
895 while (step > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
896 tty->print(" " PTR32_FORMAT, *(jint*)ptr);
a61af66fc99e Initial load
duke
parents:
diff changeset
897 ptr += jintSize;
a61af66fc99e Initial load
duke
parents:
diff changeset
898 }
a61af66fc99e Initial load
duke
parents:
diff changeset
899 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
900 }
a61af66fc99e Initial load
duke
parents:
diff changeset
901 }
a61af66fc99e Initial load
duke
parents:
diff changeset
902
a61af66fc99e Initial load
duke
parents:
diff changeset
903
a61af66fc99e Initial load
duke
parents:
diff changeset
904 void CodeSection::decode() {
a61af66fc99e Initial load
duke
parents:
diff changeset
905 Disassembler::decode(start(), end());
a61af66fc99e Initial load
duke
parents:
diff changeset
906 }
a61af66fc99e Initial load
duke
parents:
diff changeset
907
a61af66fc99e Initial load
duke
parents:
diff changeset
908
a61af66fc99e Initial load
duke
parents:
diff changeset
909 void CodeBuffer::block_comment(intptr_t offset, const char * comment) {
a61af66fc99e Initial load
duke
parents:
diff changeset
910 _comments.add_comment(offset, comment);
a61af66fc99e Initial load
duke
parents:
diff changeset
911 }
a61af66fc99e Initial load
duke
parents:
diff changeset
912
a61af66fc99e Initial load
duke
parents:
diff changeset
913 class CodeComment: public CHeapObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
914 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
915 friend class CodeComments;
a61af66fc99e Initial load
duke
parents:
diff changeset
916 intptr_t _offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
917 const char * _comment;
a61af66fc99e Initial load
duke
parents:
diff changeset
918 CodeComment* _next;
a61af66fc99e Initial load
duke
parents:
diff changeset
919
a61af66fc99e Initial load
duke
parents:
diff changeset
920 ~CodeComment() {
a61af66fc99e Initial load
duke
parents:
diff changeset
921 assert(_next == NULL, "wrong interface for freeing list");
a61af66fc99e Initial load
duke
parents:
diff changeset
922 os::free((void*)_comment);
a61af66fc99e Initial load
duke
parents:
diff changeset
923 }
a61af66fc99e Initial load
duke
parents:
diff changeset
924
a61af66fc99e Initial load
duke
parents:
diff changeset
925 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
926 CodeComment(intptr_t offset, const char * comment) {
a61af66fc99e Initial load
duke
parents:
diff changeset
927 _offset = offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
928 _comment = os::strdup(comment);
a61af66fc99e Initial load
duke
parents:
diff changeset
929 _next = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
930 }
a61af66fc99e Initial load
duke
parents:
diff changeset
931
a61af66fc99e Initial load
duke
parents:
diff changeset
932 intptr_t offset() const { return _offset; }
a61af66fc99e Initial load
duke
parents:
diff changeset
933 const char * comment() const { return _comment; }
a61af66fc99e Initial load
duke
parents:
diff changeset
934 CodeComment* next() { return _next; }
a61af66fc99e Initial load
duke
parents:
diff changeset
935
a61af66fc99e Initial load
duke
parents:
diff changeset
936 void set_next(CodeComment* next) { _next = next; }
a61af66fc99e Initial load
duke
parents:
diff changeset
937
a61af66fc99e Initial load
duke
parents:
diff changeset
938 CodeComment* find(intptr_t offset) {
a61af66fc99e Initial load
duke
parents:
diff changeset
939 CodeComment* a = this;
a61af66fc99e Initial load
duke
parents:
diff changeset
940 while (a != NULL && a->_offset != offset) {
a61af66fc99e Initial load
duke
parents:
diff changeset
941 a = a->_next;
a61af66fc99e Initial load
duke
parents:
diff changeset
942 }
a61af66fc99e Initial load
duke
parents:
diff changeset
943 return a;
a61af66fc99e Initial load
duke
parents:
diff changeset
944 }
a61af66fc99e Initial load
duke
parents:
diff changeset
945 };
a61af66fc99e Initial load
duke
parents:
diff changeset
946
a61af66fc99e Initial load
duke
parents:
diff changeset
947
a61af66fc99e Initial load
duke
parents:
diff changeset
948 void CodeComments::add_comment(intptr_t offset, const char * comment) {
a61af66fc99e Initial load
duke
parents:
diff changeset
949 CodeComment* c = new CodeComment(offset, comment);
a61af66fc99e Initial load
duke
parents:
diff changeset
950 CodeComment* insert = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
951 if (_comments != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
952 CodeComment* c = _comments->find(offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
953 insert = c;
a61af66fc99e Initial load
duke
parents:
diff changeset
954 while (c && c->offset() == offset) {
a61af66fc99e Initial load
duke
parents:
diff changeset
955 insert = c;
a61af66fc99e Initial load
duke
parents:
diff changeset
956 c = c->next();
a61af66fc99e Initial load
duke
parents:
diff changeset
957 }
a61af66fc99e Initial load
duke
parents:
diff changeset
958 }
a61af66fc99e Initial load
duke
parents:
diff changeset
959 if (insert) {
a61af66fc99e Initial load
duke
parents:
diff changeset
960 // insert after comments with same offset
a61af66fc99e Initial load
duke
parents:
diff changeset
961 c->set_next(insert->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
962 insert->set_next(c);
a61af66fc99e Initial load
duke
parents:
diff changeset
963 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
964 c->set_next(_comments);
a61af66fc99e Initial load
duke
parents:
diff changeset
965 _comments = c;
a61af66fc99e Initial load
duke
parents:
diff changeset
966 }
a61af66fc99e Initial load
duke
parents:
diff changeset
967 }
a61af66fc99e Initial load
duke
parents:
diff changeset
968
a61af66fc99e Initial load
duke
parents:
diff changeset
969
a61af66fc99e Initial load
duke
parents:
diff changeset
970 void CodeComments::assign(CodeComments& other) {
a61af66fc99e Initial load
duke
parents:
diff changeset
971 assert(_comments == NULL, "don't overwrite old value");
a61af66fc99e Initial load
duke
parents:
diff changeset
972 _comments = other._comments;
a61af66fc99e Initial load
duke
parents:
diff changeset
973 }
a61af66fc99e Initial load
duke
parents:
diff changeset
974
a61af66fc99e Initial load
duke
parents:
diff changeset
975
a61af66fc99e Initial load
duke
parents:
diff changeset
976 void CodeComments::print_block_comment(outputStream* stream, intptr_t offset) {
a61af66fc99e Initial load
duke
parents:
diff changeset
977 if (_comments != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
978 CodeComment* c = _comments->find(offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
979 while (c && c->offset() == offset) {
100
c7c777385a15 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 0
diff changeset
980 stream->bol();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
981 stream->print(" ;; ");
a61af66fc99e Initial load
duke
parents:
diff changeset
982 stream->print_cr(c->comment());
a61af66fc99e Initial load
duke
parents:
diff changeset
983 c = c->next();
a61af66fc99e Initial load
duke
parents:
diff changeset
984 }
a61af66fc99e Initial load
duke
parents:
diff changeset
985 }
a61af66fc99e Initial load
duke
parents:
diff changeset
986 }
a61af66fc99e Initial load
duke
parents:
diff changeset
987
a61af66fc99e Initial load
duke
parents:
diff changeset
988
a61af66fc99e Initial load
duke
parents:
diff changeset
989 void CodeComments::free() {
a61af66fc99e Initial load
duke
parents:
diff changeset
990 CodeComment* n = _comments;
a61af66fc99e Initial load
duke
parents:
diff changeset
991 while (n) {
a61af66fc99e Initial load
duke
parents:
diff changeset
992 // unlink the node from the list saving a pointer to the next
a61af66fc99e Initial load
duke
parents:
diff changeset
993 CodeComment* p = n->_next;
a61af66fc99e Initial load
duke
parents:
diff changeset
994 n->_next = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
995 delete n;
a61af66fc99e Initial load
duke
parents:
diff changeset
996 n = p;
a61af66fc99e Initial load
duke
parents:
diff changeset
997 }
a61af66fc99e Initial load
duke
parents:
diff changeset
998 _comments = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
999 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1000
a61af66fc99e Initial load
duke
parents:
diff changeset
1001
a61af66fc99e Initial load
duke
parents:
diff changeset
1002
a61af66fc99e Initial load
duke
parents:
diff changeset
1003 void CodeBuffer::decode() {
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1685
diff changeset
1004 Disassembler::decode(decode_begin(), insts_end());
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1685
diff changeset
1005 _decode_begin = insts_end();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1006 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1007
a61af66fc99e Initial load
duke
parents:
diff changeset
1008
a61af66fc99e Initial load
duke
parents:
diff changeset
1009 void CodeBuffer::skip_decode() {
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1685
diff changeset
1010 _decode_begin = insts_end();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1011 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1012
a61af66fc99e Initial load
duke
parents:
diff changeset
1013
a61af66fc99e Initial load
duke
parents:
diff changeset
1014 void CodeBuffer::decode_all() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1015 for (int n = 0; n < (int)SECT_LIMIT; n++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1016 // dump contents of each section
a61af66fc99e Initial load
duke
parents:
diff changeset
1017 CodeSection* cs = code_section(n);
a61af66fc99e Initial load
duke
parents:
diff changeset
1018 tty->print_cr("! %s:", code_section_name(n));
a61af66fc99e Initial load
duke
parents:
diff changeset
1019 if (cs != consts())
a61af66fc99e Initial load
duke
parents:
diff changeset
1020 cs->decode();
a61af66fc99e Initial load
duke
parents:
diff changeset
1021 else
a61af66fc99e Initial load
duke
parents:
diff changeset
1022 cs->dump();
a61af66fc99e Initial load
duke
parents:
diff changeset
1023 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1024 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1025
a61af66fc99e Initial load
duke
parents:
diff changeset
1026
a61af66fc99e Initial load
duke
parents:
diff changeset
1027 void CodeSection::print(const char* name) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1028 csize_t locs_size = locs_end() - locs_start();
a61af66fc99e Initial load
duke
parents:
diff changeset
1029 tty->print_cr(" %7s.code = " PTR_FORMAT " : " PTR_FORMAT " : " PTR_FORMAT " (%d of %d)%s",
a61af66fc99e Initial load
duke
parents:
diff changeset
1030 name, start(), end(), limit(), size(), capacity(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1031 is_frozen()? " [frozen]": "");
a61af66fc99e Initial load
duke
parents:
diff changeset
1032 tty->print_cr(" %7s.locs = " PTR_FORMAT " : " PTR_FORMAT " : " PTR_FORMAT " (%d of %d) point=%d",
a61af66fc99e Initial load
duke
parents:
diff changeset
1033 name, locs_start(), locs_end(), locs_limit(), locs_size, locs_capacity(), locs_point_off());
a61af66fc99e Initial load
duke
parents:
diff changeset
1034 if (PrintRelocations) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1035 RelocIterator iter(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
1036 iter.print();
a61af66fc99e Initial load
duke
parents:
diff changeset
1037 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1038 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1039
a61af66fc99e Initial load
duke
parents:
diff changeset
1040 void CodeBuffer::print() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1041 if (this == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1042 tty->print_cr("NULL CodeBuffer pointer");
a61af66fc99e Initial load
duke
parents:
diff changeset
1043 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1044 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1045
a61af66fc99e Initial load
duke
parents:
diff changeset
1046 tty->print_cr("CodeBuffer:");
a61af66fc99e Initial load
duke
parents:
diff changeset
1047 for (int n = 0; n < (int)SECT_LIMIT; n++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1048 // print each section
a61af66fc99e Initial load
duke
parents:
diff changeset
1049 CodeSection* cs = code_section(n);
a61af66fc99e Initial load
duke
parents:
diff changeset
1050 cs->print(code_section_name(n));
a61af66fc99e Initial load
duke
parents:
diff changeset
1051 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1052 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1053
a61af66fc99e Initial load
duke
parents:
diff changeset
1054 #endif // PRODUCT