annotate src/share/vm/asm/codeBuffer.hpp @ 196:d1605aabd0a1 jdk7-b30

6719955: Update copyright year Summary: Update copyright year for files that have been modified in 2008 Reviewed-by: ohair, tbell
author xdono
date Wed, 02 Jul 2008 12:55:16 -0700
parents 018d5b58dd4f
children ba263cfb7611
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
196
d1605aabd0a1 6719955: Update copyright year
xdono
parents: 116
diff changeset
2 * Copyright 1997-2008 Sun Microsystems, Inc. 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 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 class CodeComments;
a61af66fc99e Initial load
duke
parents:
diff changeset
26 class AbstractAssembler;
a61af66fc99e Initial load
duke
parents:
diff changeset
27 class MacroAssembler;
a61af66fc99e Initial load
duke
parents:
diff changeset
28 class PhaseCFG;
a61af66fc99e Initial load
duke
parents:
diff changeset
29 class Compile;
a61af66fc99e Initial load
duke
parents:
diff changeset
30 class BufferBlob;
a61af66fc99e Initial load
duke
parents:
diff changeset
31 class CodeBuffer;
a61af66fc99e Initial load
duke
parents:
diff changeset
32
a61af66fc99e Initial load
duke
parents:
diff changeset
33 class CodeOffsets: public StackObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
34 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
35 enum Entries { Entry,
a61af66fc99e Initial load
duke
parents:
diff changeset
36 Verified_Entry,
a61af66fc99e Initial load
duke
parents:
diff changeset
37 Frame_Complete, // Offset in the code where the frame setup is (for forte stackwalks) is complete
a61af66fc99e Initial load
duke
parents:
diff changeset
38 OSR_Entry,
116
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 0
diff changeset
39 Dtrace_trap = OSR_Entry, // dtrace probes can never have an OSR entry so reuse it
0
a61af66fc99e Initial load
duke
parents:
diff changeset
40 Exceptions, // Offset where exception handler lives
a61af66fc99e Initial load
duke
parents:
diff changeset
41 Deopt, // Offset where deopt handler lives
a61af66fc99e Initial load
duke
parents:
diff changeset
42 max_Entries };
a61af66fc99e Initial load
duke
parents:
diff changeset
43
a61af66fc99e Initial load
duke
parents:
diff changeset
44 // special value to note codeBlobs where profile (forte) stack walking is
a61af66fc99e Initial load
duke
parents:
diff changeset
45 // always dangerous and suspect.
a61af66fc99e Initial load
duke
parents:
diff changeset
46
a61af66fc99e Initial load
duke
parents:
diff changeset
47 enum { frame_never_safe = -1 };
a61af66fc99e Initial load
duke
parents:
diff changeset
48
a61af66fc99e Initial load
duke
parents:
diff changeset
49 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
50 int _values[max_Entries];
a61af66fc99e Initial load
duke
parents:
diff changeset
51
a61af66fc99e Initial load
duke
parents:
diff changeset
52 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
53 CodeOffsets() {
a61af66fc99e Initial load
duke
parents:
diff changeset
54 _values[Entry] = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
55 _values[Verified_Entry] = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
56 _values[Frame_Complete] = frame_never_safe;
a61af66fc99e Initial load
duke
parents:
diff changeset
57 _values[OSR_Entry] = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
58 _values[Exceptions] = -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
59 _values[Deopt] = -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
60 }
a61af66fc99e Initial load
duke
parents:
diff changeset
61
a61af66fc99e Initial load
duke
parents:
diff changeset
62 int value(Entries e) { return _values[e]; }
a61af66fc99e Initial load
duke
parents:
diff changeset
63 void set_value(Entries e, int val) { _values[e] = val; }
a61af66fc99e Initial load
duke
parents:
diff changeset
64 };
a61af66fc99e Initial load
duke
parents:
diff changeset
65
a61af66fc99e Initial load
duke
parents:
diff changeset
66 // This class represents a stream of code and associated relocations.
a61af66fc99e Initial load
duke
parents:
diff changeset
67 // There are a few in each CodeBuffer.
a61af66fc99e Initial load
duke
parents:
diff changeset
68 // They are filled concurrently, and concatenated at the end.
a61af66fc99e Initial load
duke
parents:
diff changeset
69 class CodeSection VALUE_OBJ_CLASS_SPEC {
a61af66fc99e Initial load
duke
parents:
diff changeset
70 friend class CodeBuffer;
a61af66fc99e Initial load
duke
parents:
diff changeset
71 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
72 typedef int csize_t; // code size type; would be size_t except for history
a61af66fc99e Initial load
duke
parents:
diff changeset
73
a61af66fc99e Initial load
duke
parents:
diff changeset
74 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
75 address _start; // first byte of contents (instructions)
a61af66fc99e Initial load
duke
parents:
diff changeset
76 address _mark; // user mark, usually an instruction beginning
a61af66fc99e Initial load
duke
parents:
diff changeset
77 address _end; // current end address
a61af66fc99e Initial load
duke
parents:
diff changeset
78 address _limit; // last possible (allocated) end address
a61af66fc99e Initial load
duke
parents:
diff changeset
79 relocInfo* _locs_start; // first byte of relocation information
a61af66fc99e Initial load
duke
parents:
diff changeset
80 relocInfo* _locs_end; // first byte after relocation information
a61af66fc99e Initial load
duke
parents:
diff changeset
81 relocInfo* _locs_limit; // first byte after relocation information buf
a61af66fc99e Initial load
duke
parents:
diff changeset
82 address _locs_point; // last relocated position (grows upward)
a61af66fc99e Initial load
duke
parents:
diff changeset
83 bool _locs_own; // did I allocate the locs myself?
a61af66fc99e Initial load
duke
parents:
diff changeset
84 bool _frozen; // no more expansion of this section
a61af66fc99e Initial load
duke
parents:
diff changeset
85 char _index; // my section number (SECT_INST, etc.)
a61af66fc99e Initial load
duke
parents:
diff changeset
86 CodeBuffer* _outer; // enclosing CodeBuffer
a61af66fc99e Initial load
duke
parents:
diff changeset
87
a61af66fc99e Initial load
duke
parents:
diff changeset
88 // (Note: _locs_point used to be called _last_reloc_offset.)
a61af66fc99e Initial load
duke
parents:
diff changeset
89
a61af66fc99e Initial load
duke
parents:
diff changeset
90 CodeSection() {
a61af66fc99e Initial load
duke
parents:
diff changeset
91 _start = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
92 _mark = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
93 _end = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
94 _limit = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
95 _locs_start = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
96 _locs_end = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
97 _locs_limit = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
98 _locs_point = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
99 _locs_own = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
100 _frozen = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
101 debug_only(_index = -1);
a61af66fc99e Initial load
duke
parents:
diff changeset
102 debug_only(_outer = (CodeBuffer*)badAddress);
a61af66fc99e Initial load
duke
parents:
diff changeset
103 }
a61af66fc99e Initial load
duke
parents:
diff changeset
104
a61af66fc99e Initial load
duke
parents:
diff changeset
105 void initialize_outer(CodeBuffer* outer, int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
106 _outer = outer;
a61af66fc99e Initial load
duke
parents:
diff changeset
107 _index = index;
a61af66fc99e Initial load
duke
parents:
diff changeset
108 }
a61af66fc99e Initial load
duke
parents:
diff changeset
109
a61af66fc99e Initial load
duke
parents:
diff changeset
110 void initialize(address start, csize_t size = 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
111 assert(_start == NULL, "only one init step, please");
a61af66fc99e Initial load
duke
parents:
diff changeset
112 _start = start;
a61af66fc99e Initial load
duke
parents:
diff changeset
113 _mark = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
114 _end = start;
a61af66fc99e Initial load
duke
parents:
diff changeset
115
a61af66fc99e Initial load
duke
parents:
diff changeset
116 _limit = start + size;
a61af66fc99e Initial load
duke
parents:
diff changeset
117 _locs_point = start;
a61af66fc99e Initial load
duke
parents:
diff changeset
118 }
a61af66fc99e Initial load
duke
parents:
diff changeset
119
a61af66fc99e Initial load
duke
parents:
diff changeset
120 void initialize_locs(int locs_capacity);
a61af66fc99e Initial load
duke
parents:
diff changeset
121 void expand_locs(int new_capacity);
a61af66fc99e Initial load
duke
parents:
diff changeset
122 void initialize_locs_from(const CodeSection* source_cs);
a61af66fc99e Initial load
duke
parents:
diff changeset
123
a61af66fc99e Initial load
duke
parents:
diff changeset
124 // helper for CodeBuffer::expand()
a61af66fc99e Initial load
duke
parents:
diff changeset
125 void take_over_code_from(CodeSection* cs) {
a61af66fc99e Initial load
duke
parents:
diff changeset
126 _start = cs->_start;
a61af66fc99e Initial load
duke
parents:
diff changeset
127 _mark = cs->_mark;
a61af66fc99e Initial load
duke
parents:
diff changeset
128 _end = cs->_end;
a61af66fc99e Initial load
duke
parents:
diff changeset
129 _limit = cs->_limit;
a61af66fc99e Initial load
duke
parents:
diff changeset
130 _locs_point = cs->_locs_point;
a61af66fc99e Initial load
duke
parents:
diff changeset
131 }
a61af66fc99e Initial load
duke
parents:
diff changeset
132
a61af66fc99e Initial load
duke
parents:
diff changeset
133 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
134 address start() const { return _start; }
a61af66fc99e Initial load
duke
parents:
diff changeset
135 address mark() const { return _mark; }
a61af66fc99e Initial load
duke
parents:
diff changeset
136 address end() const { return _end; }
a61af66fc99e Initial load
duke
parents:
diff changeset
137 address limit() const { return _limit; }
a61af66fc99e Initial load
duke
parents:
diff changeset
138 csize_t size() const { return (csize_t)(_end - _start); }
a61af66fc99e Initial load
duke
parents:
diff changeset
139 csize_t mark_off() const { assert(_mark != NULL, "not an offset");
a61af66fc99e Initial load
duke
parents:
diff changeset
140 return (csize_t)(_mark - _start); }
a61af66fc99e Initial load
duke
parents:
diff changeset
141 csize_t capacity() const { return (csize_t)(_limit - _start); }
a61af66fc99e Initial load
duke
parents:
diff changeset
142 csize_t remaining() const { return (csize_t)(_limit - _end); }
a61af66fc99e Initial load
duke
parents:
diff changeset
143
a61af66fc99e Initial load
duke
parents:
diff changeset
144 relocInfo* locs_start() const { return _locs_start; }
a61af66fc99e Initial load
duke
parents:
diff changeset
145 relocInfo* locs_end() const { return _locs_end; }
a61af66fc99e Initial load
duke
parents:
diff changeset
146 int locs_count() const { return (int)(_locs_end - _locs_start); }
a61af66fc99e Initial load
duke
parents:
diff changeset
147 relocInfo* locs_limit() const { return _locs_limit; }
a61af66fc99e Initial load
duke
parents:
diff changeset
148 address locs_point() const { return _locs_point; }
a61af66fc99e Initial load
duke
parents:
diff changeset
149 csize_t locs_point_off() const{ return (csize_t)(_locs_point - _start); }
a61af66fc99e Initial load
duke
parents:
diff changeset
150 csize_t locs_capacity() const { return (csize_t)(_locs_limit - _locs_start); }
a61af66fc99e Initial load
duke
parents:
diff changeset
151 csize_t locs_remaining()const { return (csize_t)(_locs_limit - _locs_end); }
a61af66fc99e Initial load
duke
parents:
diff changeset
152
a61af66fc99e Initial load
duke
parents:
diff changeset
153 int index() const { return _index; }
a61af66fc99e Initial load
duke
parents:
diff changeset
154 bool is_allocated() const { return _start != NULL; }
a61af66fc99e Initial load
duke
parents:
diff changeset
155 bool is_empty() const { return _start == _end; }
a61af66fc99e Initial load
duke
parents:
diff changeset
156 bool is_frozen() const { return _frozen; }
a61af66fc99e Initial load
duke
parents:
diff changeset
157 bool has_locs() const { return _locs_end != NULL; }
a61af66fc99e Initial load
duke
parents:
diff changeset
158
a61af66fc99e Initial load
duke
parents:
diff changeset
159 CodeBuffer* outer() const { return _outer; }
a61af66fc99e Initial load
duke
parents:
diff changeset
160
a61af66fc99e Initial load
duke
parents:
diff changeset
161 // is a given address in this section? (2nd version is end-inclusive)
a61af66fc99e Initial load
duke
parents:
diff changeset
162 bool contains(address pc) const { return pc >= _start && pc < _end; }
a61af66fc99e Initial load
duke
parents:
diff changeset
163 bool contains2(address pc) const { return pc >= _start && pc <= _end; }
a61af66fc99e Initial load
duke
parents:
diff changeset
164 bool allocates(address pc) const { return pc >= _start && pc < _limit; }
a61af66fc99e Initial load
duke
parents:
diff changeset
165 bool allocates2(address pc) const { return pc >= _start && pc <= _limit; }
a61af66fc99e Initial load
duke
parents:
diff changeset
166
a61af66fc99e Initial load
duke
parents:
diff changeset
167 void set_end(address pc) { assert(allocates2(pc),""); _end = pc; }
a61af66fc99e Initial load
duke
parents:
diff changeset
168 void set_mark(address pc) { assert(contains2(pc),"not in codeBuffer");
a61af66fc99e Initial load
duke
parents:
diff changeset
169 _mark = pc; }
a61af66fc99e Initial load
duke
parents:
diff changeset
170 void set_mark_off(int offset) { assert(contains2(offset+_start),"not in codeBuffer");
a61af66fc99e Initial load
duke
parents:
diff changeset
171 _mark = offset + _start; }
a61af66fc99e Initial load
duke
parents:
diff changeset
172 void set_mark() { _mark = _end; }
a61af66fc99e Initial load
duke
parents:
diff changeset
173 void clear_mark() { _mark = NULL; }
a61af66fc99e Initial load
duke
parents:
diff changeset
174
a61af66fc99e Initial load
duke
parents:
diff changeset
175 void set_locs_end(relocInfo* p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
176 assert(p <= locs_limit(), "locs data fits in allocated buffer");
a61af66fc99e Initial load
duke
parents:
diff changeset
177 _locs_end = p;
a61af66fc99e Initial load
duke
parents:
diff changeset
178 }
a61af66fc99e Initial load
duke
parents:
diff changeset
179 void set_locs_point(address pc) {
a61af66fc99e Initial load
duke
parents:
diff changeset
180 assert(pc >= locs_point(), "relocation addr may not decrease");
a61af66fc99e Initial load
duke
parents:
diff changeset
181 assert(allocates2(pc), "relocation addr must be in this section");
a61af66fc99e Initial load
duke
parents:
diff changeset
182 _locs_point = pc;
a61af66fc99e Initial load
duke
parents:
diff changeset
183 }
a61af66fc99e Initial load
duke
parents:
diff changeset
184
a61af66fc99e Initial load
duke
parents:
diff changeset
185 // Share a scratch buffer for relocinfo. (Hacky; saves a resource allocation.)
a61af66fc99e Initial load
duke
parents:
diff changeset
186 void initialize_shared_locs(relocInfo* buf, int length);
a61af66fc99e Initial load
duke
parents:
diff changeset
187
a61af66fc99e Initial load
duke
parents:
diff changeset
188 // Manage labels and their addresses.
a61af66fc99e Initial load
duke
parents:
diff changeset
189 address target(Label& L, address branch_pc);
a61af66fc99e Initial load
duke
parents:
diff changeset
190
a61af66fc99e Initial load
duke
parents:
diff changeset
191 // Emit a relocation.
a61af66fc99e Initial load
duke
parents:
diff changeset
192 void relocate(address at, RelocationHolder const& rspec, int format = 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
193 void relocate(address at, relocInfo::relocType rtype, int format = 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
194 if (rtype != relocInfo::none)
a61af66fc99e Initial load
duke
parents:
diff changeset
195 relocate(at, Relocation::spec_simple(rtype), format);
a61af66fc99e Initial load
duke
parents:
diff changeset
196 }
a61af66fc99e Initial load
duke
parents:
diff changeset
197
a61af66fc99e Initial load
duke
parents:
diff changeset
198 // alignment requirement for starting offset
a61af66fc99e Initial load
duke
parents:
diff changeset
199 // Requirements are that the instruction area and the
a61af66fc99e Initial load
duke
parents:
diff changeset
200 // stubs area must start on CodeEntryAlignment, and
a61af66fc99e Initial load
duke
parents:
diff changeset
201 // the ctable on sizeof(jdouble)
a61af66fc99e Initial load
duke
parents:
diff changeset
202 int alignment() const { return MAX2((int)sizeof(jdouble), (int)CodeEntryAlignment); }
a61af66fc99e Initial load
duke
parents:
diff changeset
203
a61af66fc99e Initial load
duke
parents:
diff changeset
204 // Slop between sections, used only when allocating temporary BufferBlob buffers.
a61af66fc99e Initial load
duke
parents:
diff changeset
205 static csize_t end_slop() { return MAX2((int)sizeof(jdouble), (int)CodeEntryAlignment); }
a61af66fc99e Initial load
duke
parents:
diff changeset
206
a61af66fc99e Initial load
duke
parents:
diff changeset
207 csize_t align_at_start(csize_t off) const { return (csize_t) align_size_up(off, alignment()); }
a61af66fc99e Initial load
duke
parents:
diff changeset
208
a61af66fc99e Initial load
duke
parents:
diff changeset
209 // Mark a section frozen. Assign its remaining space to
a61af66fc99e Initial load
duke
parents:
diff changeset
210 // the following section. It will never expand after this point.
a61af66fc99e Initial load
duke
parents:
diff changeset
211 inline void freeze(); // { _outer->freeze_section(this); }
a61af66fc99e Initial load
duke
parents:
diff changeset
212
a61af66fc99e Initial load
duke
parents:
diff changeset
213 // Ensure there's enough space left in the current section.
a61af66fc99e Initial load
duke
parents:
diff changeset
214 // Return true if there was an expansion.
a61af66fc99e Initial load
duke
parents:
diff changeset
215 bool maybe_expand_to_ensure_remaining(csize_t amount);
a61af66fc99e Initial load
duke
parents:
diff changeset
216
a61af66fc99e Initial load
duke
parents:
diff changeset
217 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
218 void decode();
a61af66fc99e Initial load
duke
parents:
diff changeset
219 void dump();
a61af66fc99e Initial load
duke
parents:
diff changeset
220 void print(const char* name);
a61af66fc99e Initial load
duke
parents:
diff changeset
221 #endif //PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
222 };
a61af66fc99e Initial load
duke
parents:
diff changeset
223
a61af66fc99e Initial load
duke
parents:
diff changeset
224 class CodeComment;
a61af66fc99e Initial load
duke
parents:
diff changeset
225 class CodeComments VALUE_OBJ_CLASS_SPEC {
a61af66fc99e Initial load
duke
parents:
diff changeset
226 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
227 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
228 CodeComment* _comments;
a61af66fc99e Initial load
duke
parents:
diff changeset
229 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
230
a61af66fc99e Initial load
duke
parents:
diff changeset
231 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
232 CodeComments() {
a61af66fc99e Initial load
duke
parents:
diff changeset
233 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
234 _comments = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
235 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
236 }
a61af66fc99e Initial load
duke
parents:
diff changeset
237
a61af66fc99e Initial load
duke
parents:
diff changeset
238 void add_comment(intptr_t offset, const char * comment) PRODUCT_RETURN;
a61af66fc99e Initial load
duke
parents:
diff changeset
239 void print_block_comment(outputStream* stream, intptr_t offset) PRODUCT_RETURN;
a61af66fc99e Initial load
duke
parents:
diff changeset
240 void assign(CodeComments& other) PRODUCT_RETURN;
a61af66fc99e Initial load
duke
parents:
diff changeset
241 void free() PRODUCT_RETURN;
a61af66fc99e Initial load
duke
parents:
diff changeset
242 };
a61af66fc99e Initial load
duke
parents:
diff changeset
243
a61af66fc99e Initial load
duke
parents:
diff changeset
244
a61af66fc99e Initial load
duke
parents:
diff changeset
245 // A CodeBuffer describes a memory space into which assembly
a61af66fc99e Initial load
duke
parents:
diff changeset
246 // code is generated. This memory space usually occupies the
a61af66fc99e Initial load
duke
parents:
diff changeset
247 // interior of a single BufferBlob, but in some cases it may be
a61af66fc99e Initial load
duke
parents:
diff changeset
248 // an arbitrary span of memory, even outside the code cache.
a61af66fc99e Initial load
duke
parents:
diff changeset
249 //
a61af66fc99e Initial load
duke
parents:
diff changeset
250 // A code buffer comes in two variants:
a61af66fc99e Initial load
duke
parents:
diff changeset
251 //
a61af66fc99e Initial load
duke
parents:
diff changeset
252 // (1) A CodeBuffer referring to an already allocated piece of memory:
a61af66fc99e Initial load
duke
parents:
diff changeset
253 // This is used to direct 'static' code generation (e.g. for interpreter
a61af66fc99e Initial load
duke
parents:
diff changeset
254 // or stubroutine generation, etc.). This code comes with NO relocation
a61af66fc99e Initial load
duke
parents:
diff changeset
255 // information.
a61af66fc99e Initial load
duke
parents:
diff changeset
256 //
a61af66fc99e Initial load
duke
parents:
diff changeset
257 // (2) A CodeBuffer referring to a piece of memory allocated when the
a61af66fc99e Initial load
duke
parents:
diff changeset
258 // CodeBuffer is allocated. This is used for nmethod generation.
a61af66fc99e Initial load
duke
parents:
diff changeset
259 //
a61af66fc99e Initial load
duke
parents:
diff changeset
260 // The memory can be divided up into several parts called sections.
a61af66fc99e Initial load
duke
parents:
diff changeset
261 // Each section independently accumulates code (or data) an relocations.
a61af66fc99e Initial load
duke
parents:
diff changeset
262 // Sections can grow (at the expense of a reallocation of the BufferBlob
a61af66fc99e Initial load
duke
parents:
diff changeset
263 // and recopying of all active sections). When the buffered code is finally
a61af66fc99e Initial load
duke
parents:
diff changeset
264 // written to an nmethod (or other CodeBlob), the contents (code, data,
a61af66fc99e Initial load
duke
parents:
diff changeset
265 // and relocations) of the sections are padded to an alignment and concatenated.
a61af66fc99e Initial load
duke
parents:
diff changeset
266 // Instructions and data in one section can contain relocatable references to
a61af66fc99e Initial load
duke
parents:
diff changeset
267 // addresses in a sibling section.
a61af66fc99e Initial load
duke
parents:
diff changeset
268
a61af66fc99e Initial load
duke
parents:
diff changeset
269 class CodeBuffer: public StackObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
270 friend class CodeSection;
a61af66fc99e Initial load
duke
parents:
diff changeset
271
a61af66fc99e Initial load
duke
parents:
diff changeset
272 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
273 // CodeBuffers must be allocated on the stack except for a single
a61af66fc99e Initial load
duke
parents:
diff changeset
274 // special case during expansion which is handled internally. This
a61af66fc99e Initial load
duke
parents:
diff changeset
275 // is done to guarantee proper cleanup of resources.
a61af66fc99e Initial load
duke
parents:
diff changeset
276 void* operator new(size_t size) { return ResourceObj::operator new(size); }
a61af66fc99e Initial load
duke
parents:
diff changeset
277 void operator delete(void* p) { ResourceObj::operator delete(p); }
a61af66fc99e Initial load
duke
parents:
diff changeset
278
a61af66fc99e Initial load
duke
parents:
diff changeset
279 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
280 typedef int csize_t; // code size type; would be size_t except for history
a61af66fc99e Initial load
duke
parents:
diff changeset
281 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
282 // Here is the list of all possible sections, in order of ascending address.
a61af66fc99e Initial load
duke
parents:
diff changeset
283 SECT_INSTS, // Executable instructions.
a61af66fc99e Initial load
duke
parents:
diff changeset
284 SECT_STUBS, // Outbound trampolines for supporting call sites.
a61af66fc99e Initial load
duke
parents:
diff changeset
285 SECT_CONSTS, // Non-instruction data: Floats, jump tables, etc.
a61af66fc99e Initial load
duke
parents:
diff changeset
286 SECT_LIMIT, SECT_NONE = -1
a61af66fc99e Initial load
duke
parents:
diff changeset
287 };
a61af66fc99e Initial load
duke
parents:
diff changeset
288
a61af66fc99e Initial load
duke
parents:
diff changeset
289 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
290 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
291 sect_bits = 2, // assert (SECT_LIMIT <= (1<<sect_bits))
a61af66fc99e Initial load
duke
parents:
diff changeset
292 sect_mask = (1<<sect_bits)-1
a61af66fc99e Initial load
duke
parents:
diff changeset
293 };
a61af66fc99e Initial load
duke
parents:
diff changeset
294
a61af66fc99e Initial load
duke
parents:
diff changeset
295 const char* _name;
a61af66fc99e Initial load
duke
parents:
diff changeset
296
a61af66fc99e Initial load
duke
parents:
diff changeset
297 CodeSection _insts; // instructions (the main section)
a61af66fc99e Initial load
duke
parents:
diff changeset
298 CodeSection _stubs; // stubs (call site support), deopt, exception handling
a61af66fc99e Initial load
duke
parents:
diff changeset
299 CodeSection _consts; // constants, jump tables
a61af66fc99e Initial load
duke
parents:
diff changeset
300
a61af66fc99e Initial load
duke
parents:
diff changeset
301 CodeBuffer* _before_expand; // dead buffer, from before the last expansion
a61af66fc99e Initial load
duke
parents:
diff changeset
302
a61af66fc99e Initial load
duke
parents:
diff changeset
303 BufferBlob* _blob; // optional buffer in CodeCache for generated code
a61af66fc99e Initial load
duke
parents:
diff changeset
304 address _total_start; // first address of combined memory buffer
a61af66fc99e Initial load
duke
parents:
diff changeset
305 csize_t _total_size; // size in bytes of combined memory buffer
a61af66fc99e Initial load
duke
parents:
diff changeset
306
a61af66fc99e Initial load
duke
parents:
diff changeset
307 OopRecorder* _oop_recorder;
a61af66fc99e Initial load
duke
parents:
diff changeset
308 CodeComments _comments;
a61af66fc99e Initial load
duke
parents:
diff changeset
309 OopRecorder _default_oop_recorder; // override with initialize_oop_recorder
a61af66fc99e Initial load
duke
parents:
diff changeset
310 Arena* _overflow_arena;
a61af66fc99e Initial load
duke
parents:
diff changeset
311
a61af66fc99e Initial load
duke
parents:
diff changeset
312 address _decode_begin; // start address for decode
a61af66fc99e Initial load
duke
parents:
diff changeset
313 address decode_begin();
a61af66fc99e Initial load
duke
parents:
diff changeset
314
a61af66fc99e Initial load
duke
parents:
diff changeset
315 void initialize_misc(const char * name) {
a61af66fc99e Initial load
duke
parents:
diff changeset
316 // all pointers other than code_start/end and those inside the sections
a61af66fc99e Initial load
duke
parents:
diff changeset
317 assert(name != NULL, "must have a name");
a61af66fc99e Initial load
duke
parents:
diff changeset
318 _name = name;
a61af66fc99e Initial load
duke
parents:
diff changeset
319 _before_expand = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
320 _blob = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
321 _oop_recorder = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
322 _decode_begin = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
323 _overflow_arena = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
324 }
a61af66fc99e Initial load
duke
parents:
diff changeset
325
a61af66fc99e Initial load
duke
parents:
diff changeset
326 void initialize(address code_start, csize_t code_size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
327 _insts.initialize_outer(this, SECT_INSTS);
a61af66fc99e Initial load
duke
parents:
diff changeset
328 _stubs.initialize_outer(this, SECT_STUBS);
a61af66fc99e Initial load
duke
parents:
diff changeset
329 _consts.initialize_outer(this, SECT_CONSTS);
a61af66fc99e Initial load
duke
parents:
diff changeset
330 _total_start = code_start;
a61af66fc99e Initial load
duke
parents:
diff changeset
331 _total_size = code_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
332 // Initialize the main section:
a61af66fc99e Initial load
duke
parents:
diff changeset
333 _insts.initialize(code_start, code_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
334 assert(!_stubs.is_allocated(), "no garbage here");
a61af66fc99e Initial load
duke
parents:
diff changeset
335 assert(!_consts.is_allocated(), "no garbage here");
a61af66fc99e Initial load
duke
parents:
diff changeset
336 _oop_recorder = &_default_oop_recorder;
a61af66fc99e Initial load
duke
parents:
diff changeset
337 }
a61af66fc99e Initial load
duke
parents:
diff changeset
338
a61af66fc99e Initial load
duke
parents:
diff changeset
339 void initialize_section_size(CodeSection* cs, csize_t size);
a61af66fc99e Initial load
duke
parents:
diff changeset
340
a61af66fc99e Initial load
duke
parents:
diff changeset
341 void freeze_section(CodeSection* cs);
a61af66fc99e Initial load
duke
parents:
diff changeset
342
a61af66fc99e Initial load
duke
parents:
diff changeset
343 // helper for CodeBuffer::expand()
a61af66fc99e Initial load
duke
parents:
diff changeset
344 void take_over_code_from(CodeBuffer* cs);
a61af66fc99e Initial load
duke
parents:
diff changeset
345
a61af66fc99e Initial load
duke
parents:
diff changeset
346 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
347 // ensure sections are disjoint, ordered, and contained in the blob
a61af66fc99e Initial load
duke
parents:
diff changeset
348 bool verify_section_allocation();
a61af66fc99e Initial load
duke
parents:
diff changeset
349 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
350
a61af66fc99e Initial load
duke
parents:
diff changeset
351 // copies combined relocations to the blob, returns bytes copied
a61af66fc99e Initial load
duke
parents:
diff changeset
352 // (if target is null, it is a dry run only, just for sizing)
a61af66fc99e Initial load
duke
parents:
diff changeset
353 csize_t copy_relocations_to(CodeBlob* blob) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
354
a61af66fc99e Initial load
duke
parents:
diff changeset
355 // copies combined code to the blob (assumes relocs are already in there)
a61af66fc99e Initial load
duke
parents:
diff changeset
356 void copy_code_to(CodeBlob* blob);
a61af66fc99e Initial load
duke
parents:
diff changeset
357
a61af66fc99e Initial load
duke
parents:
diff changeset
358 // moves code sections to new buffer (assumes relocs are already in there)
a61af66fc99e Initial load
duke
parents:
diff changeset
359 void relocate_code_to(CodeBuffer* cb) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
360
a61af66fc99e Initial load
duke
parents:
diff changeset
361 // set up a model of the final layout of my contents
a61af66fc99e Initial load
duke
parents:
diff changeset
362 void compute_final_layout(CodeBuffer* dest) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
363
a61af66fc99e Initial load
duke
parents:
diff changeset
364 // Expand the given section so at least 'amount' is remaining.
a61af66fc99e Initial load
duke
parents:
diff changeset
365 // Creates a new, larger BufferBlob, and rewrites the code & relocs.
a61af66fc99e Initial load
duke
parents:
diff changeset
366 void expand(CodeSection* which_cs, csize_t amount);
a61af66fc99e Initial load
duke
parents:
diff changeset
367
a61af66fc99e Initial load
duke
parents:
diff changeset
368 // Helper for expand.
a61af66fc99e Initial load
duke
parents:
diff changeset
369 csize_t figure_expanded_capacities(CodeSection* which_cs, csize_t amount, csize_t* new_capacity);
a61af66fc99e Initial load
duke
parents:
diff changeset
370
a61af66fc99e Initial load
duke
parents:
diff changeset
371 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
372 // (1) code buffer referring to pre-allocated instruction memory
a61af66fc99e Initial load
duke
parents:
diff changeset
373 CodeBuffer(address code_start, csize_t code_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
374
a61af66fc99e Initial load
duke
parents:
diff changeset
375 // (2) code buffer allocating codeBlob memory for code & relocation
a61af66fc99e Initial load
duke
parents:
diff changeset
376 // info but with lazy initialization. The name must be something
a61af66fc99e Initial load
duke
parents:
diff changeset
377 // informative.
a61af66fc99e Initial load
duke
parents:
diff changeset
378 CodeBuffer(const char* name) {
a61af66fc99e Initial load
duke
parents:
diff changeset
379 initialize_misc(name);
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 // (3) code buffer allocating codeBlob memory for code & relocation
a61af66fc99e Initial load
duke
parents:
diff changeset
384 // info. The name must be something informative and code_size must
a61af66fc99e Initial load
duke
parents:
diff changeset
385 // include both code and stubs sizes.
a61af66fc99e Initial load
duke
parents:
diff changeset
386 CodeBuffer(const char* name, csize_t code_size, csize_t locs_size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
387 initialize_misc(name);
a61af66fc99e Initial load
duke
parents:
diff changeset
388 initialize(code_size, locs_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
389 }
a61af66fc99e Initial load
duke
parents:
diff changeset
390
a61af66fc99e Initial load
duke
parents:
diff changeset
391 ~CodeBuffer();
a61af66fc99e Initial load
duke
parents:
diff changeset
392
a61af66fc99e Initial load
duke
parents:
diff changeset
393 // Initialize a CodeBuffer constructed using constructor 2. Using
a61af66fc99e Initial load
duke
parents:
diff changeset
394 // constructor 3 is equivalent to calling constructor 2 and then
a61af66fc99e Initial load
duke
parents:
diff changeset
395 // calling this method. It's been factored out for convenience of
a61af66fc99e Initial load
duke
parents:
diff changeset
396 // construction.
a61af66fc99e Initial load
duke
parents:
diff changeset
397 void initialize(csize_t code_size, csize_t locs_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
398
a61af66fc99e Initial load
duke
parents:
diff changeset
399 CodeSection* insts() { return &_insts; }
a61af66fc99e Initial load
duke
parents:
diff changeset
400 CodeSection* stubs() { return &_stubs; }
a61af66fc99e Initial load
duke
parents:
diff changeset
401 CodeSection* consts() { return &_consts; }
a61af66fc99e Initial load
duke
parents:
diff changeset
402
a61af66fc99e Initial load
duke
parents:
diff changeset
403 // present sections in order; return NULL at end; insts is #0, etc.
a61af66fc99e Initial load
duke
parents:
diff changeset
404 CodeSection* code_section(int n) {
a61af66fc99e Initial load
duke
parents:
diff changeset
405 // This makes the slightly questionable but portable assumption that
a61af66fc99e Initial load
duke
parents:
diff changeset
406 // the various members (_insts, _stubs, etc.) are adjacent in the
a61af66fc99e Initial load
duke
parents:
diff changeset
407 // layout of CodeBuffer.
a61af66fc99e Initial load
duke
parents:
diff changeset
408 CodeSection* cs = &_insts + n;
a61af66fc99e Initial load
duke
parents:
diff changeset
409 assert(cs->index() == n || !cs->is_allocated(), "sanity");
a61af66fc99e Initial load
duke
parents:
diff changeset
410 return cs;
a61af66fc99e Initial load
duke
parents:
diff changeset
411 }
a61af66fc99e Initial load
duke
parents:
diff changeset
412 const CodeSection* code_section(int n) const { // yucky const stuff
a61af66fc99e Initial load
duke
parents:
diff changeset
413 return ((CodeBuffer*)this)->code_section(n);
a61af66fc99e Initial load
duke
parents:
diff changeset
414 }
a61af66fc99e Initial load
duke
parents:
diff changeset
415 static const char* code_section_name(int n);
a61af66fc99e Initial load
duke
parents:
diff changeset
416 int section_index_of(address addr) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
417 bool contains(address addr) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
418 // handy for debugging
a61af66fc99e Initial load
duke
parents:
diff changeset
419 return section_index_of(addr) > SECT_NONE;
a61af66fc99e Initial load
duke
parents:
diff changeset
420 }
a61af66fc99e Initial load
duke
parents:
diff changeset
421
a61af66fc99e Initial load
duke
parents:
diff changeset
422 // A stable mapping between 'locators' (small ints) and addresses.
a61af66fc99e Initial load
duke
parents:
diff changeset
423 static int locator_pos(int locator) { return locator >> sect_bits; }
a61af66fc99e Initial load
duke
parents:
diff changeset
424 static int locator_sect(int locator) { return locator & sect_mask; }
a61af66fc99e Initial load
duke
parents:
diff changeset
425 static int locator(int pos, int sect) { return (pos << sect_bits) | sect; }
a61af66fc99e Initial load
duke
parents:
diff changeset
426 int locator(address addr) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
427 address locator_address(int locator) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
428
a61af66fc99e Initial load
duke
parents:
diff changeset
429 // Properties
a61af66fc99e Initial load
duke
parents:
diff changeset
430 const char* name() const { return _name; }
a61af66fc99e Initial load
duke
parents:
diff changeset
431 CodeBuffer* before_expand() const { return _before_expand; }
a61af66fc99e Initial load
duke
parents:
diff changeset
432 BufferBlob* blob() const { return _blob; }
a61af66fc99e Initial load
duke
parents:
diff changeset
433 void set_blob(BufferBlob* blob);
a61af66fc99e Initial load
duke
parents:
diff changeset
434 void free_blob(); // Free the blob, if we own one.
a61af66fc99e Initial load
duke
parents:
diff changeset
435
a61af66fc99e Initial load
duke
parents:
diff changeset
436 // Properties relative to the insts section:
a61af66fc99e Initial load
duke
parents:
diff changeset
437 address code_begin() const { return _insts.start(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
438 address code_end() const { return _insts.end(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
439 void set_code_end(address end) { _insts.set_end(end); }
a61af66fc99e Initial load
duke
parents:
diff changeset
440 address code_limit() const { return _insts.limit(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
441 address inst_mark() const { return _insts.mark(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
442 void set_inst_mark() { _insts.set_mark(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
443 void clear_inst_mark() { _insts.clear_mark(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
444
a61af66fc99e Initial load
duke
parents:
diff changeset
445 // is there anything in the buffer other than the current section?
a61af66fc99e Initial load
duke
parents:
diff changeset
446 bool is_pure() const { return code_size() == total_code_size(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
447
a61af66fc99e Initial load
duke
parents:
diff changeset
448 // size in bytes of output so far in the insts sections
a61af66fc99e Initial load
duke
parents:
diff changeset
449 csize_t code_size() const { return _insts.size(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
450
a61af66fc99e Initial load
duke
parents:
diff changeset
451 // same as code_size(), except that it asserts there is no non-code here
a61af66fc99e Initial load
duke
parents:
diff changeset
452 csize_t pure_code_size() const { assert(is_pure(), "no non-code");
a61af66fc99e Initial load
duke
parents:
diff changeset
453 return code_size(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
454 // capacity in bytes of the insts sections
a61af66fc99e Initial load
duke
parents:
diff changeset
455 csize_t code_capacity() const { return _insts.capacity(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
456
a61af66fc99e Initial load
duke
parents:
diff changeset
457 // number of bytes remaining in the insts section
a61af66fc99e Initial load
duke
parents:
diff changeset
458 csize_t code_remaining() const { return _insts.remaining(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
459
a61af66fc99e Initial load
duke
parents:
diff changeset
460 // is a given address in the insts section? (2nd version is end-inclusive)
a61af66fc99e Initial load
duke
parents:
diff changeset
461 bool code_contains(address pc) const { return _insts.contains(pc); }
a61af66fc99e Initial load
duke
parents:
diff changeset
462 bool code_contains2(address pc) const { return _insts.contains2(pc); }
a61af66fc99e Initial load
duke
parents:
diff changeset
463
a61af66fc99e Initial load
duke
parents:
diff changeset
464 // allocated size of code in all sections, when aligned and concatenated
a61af66fc99e Initial load
duke
parents:
diff changeset
465 // (this is the eventual state of the code in its final CodeBlob)
a61af66fc99e Initial load
duke
parents:
diff changeset
466 csize_t total_code_size() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
467
a61af66fc99e Initial load
duke
parents:
diff changeset
468 // combined offset (relative to start of insts) of given address,
a61af66fc99e Initial load
duke
parents:
diff changeset
469 // as eventually found in the final CodeBlob
a61af66fc99e Initial load
duke
parents:
diff changeset
470 csize_t total_offset_of(address addr) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
471
a61af66fc99e Initial load
duke
parents:
diff changeset
472 // allocated size of all relocation data, including index, rounded up
a61af66fc99e Initial load
duke
parents:
diff changeset
473 csize_t total_relocation_size() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
474
a61af66fc99e Initial load
duke
parents:
diff changeset
475 // allocated size of any and all recorded oops
a61af66fc99e Initial load
duke
parents:
diff changeset
476 csize_t total_oop_size() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
477 OopRecorder* recorder = oop_recorder();
a61af66fc99e Initial load
duke
parents:
diff changeset
478 return (recorder == NULL)? 0: recorder->oop_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
479 }
a61af66fc99e Initial load
duke
parents:
diff changeset
480
a61af66fc99e Initial load
duke
parents:
diff changeset
481 // Configuration functions, called immediately after the CB is constructed.
a61af66fc99e Initial load
duke
parents:
diff changeset
482 // The section sizes are subtracted from the original insts section.
a61af66fc99e Initial load
duke
parents:
diff changeset
483 // Note: Call them in reverse section order, because each steals from insts.
a61af66fc99e Initial load
duke
parents:
diff changeset
484 void initialize_consts_size(csize_t size) { initialize_section_size(&_consts, size); }
a61af66fc99e Initial load
duke
parents:
diff changeset
485 void initialize_stubs_size(csize_t size) { initialize_section_size(&_stubs, size); }
a61af66fc99e Initial load
duke
parents:
diff changeset
486 // Override default oop recorder.
a61af66fc99e Initial load
duke
parents:
diff changeset
487 void initialize_oop_recorder(OopRecorder* r);
a61af66fc99e Initial load
duke
parents:
diff changeset
488
a61af66fc99e Initial load
duke
parents:
diff changeset
489 OopRecorder* oop_recorder() const { return _oop_recorder; }
a61af66fc99e Initial load
duke
parents:
diff changeset
490 CodeComments& comments() { return _comments; }
a61af66fc99e Initial load
duke
parents:
diff changeset
491
a61af66fc99e Initial load
duke
parents:
diff changeset
492 // Code generation
a61af66fc99e Initial load
duke
parents:
diff changeset
493 void relocate(address at, RelocationHolder const& rspec, int format = 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
494 _insts.relocate(at, rspec, format);
a61af66fc99e Initial load
duke
parents:
diff changeset
495 }
a61af66fc99e Initial load
duke
parents:
diff changeset
496 void relocate(address at, relocInfo::relocType rtype, int format = 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
497 _insts.relocate(at, rtype, format);
a61af66fc99e Initial load
duke
parents:
diff changeset
498 }
a61af66fc99e Initial load
duke
parents:
diff changeset
499
a61af66fc99e Initial load
duke
parents:
diff changeset
500 // Management of overflow storage for binding of Labels.
a61af66fc99e Initial load
duke
parents:
diff changeset
501 GrowableArray<int>* create_patch_overflow();
a61af66fc99e Initial load
duke
parents:
diff changeset
502
a61af66fc99e Initial load
duke
parents:
diff changeset
503 // NMethod generation
a61af66fc99e Initial load
duke
parents:
diff changeset
504 void copy_code_and_locs_to(CodeBlob* blob) {
a61af66fc99e Initial load
duke
parents:
diff changeset
505 assert(blob != NULL, "sane");
a61af66fc99e Initial load
duke
parents:
diff changeset
506 copy_relocations_to(blob);
a61af66fc99e Initial load
duke
parents:
diff changeset
507 copy_code_to(blob);
a61af66fc99e Initial load
duke
parents:
diff changeset
508 }
a61af66fc99e Initial load
duke
parents:
diff changeset
509 void copy_oops_to(CodeBlob* blob) {
a61af66fc99e Initial load
duke
parents:
diff changeset
510 if (!oop_recorder()->is_unused()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
511 oop_recorder()->copy_to(blob);
a61af66fc99e Initial load
duke
parents:
diff changeset
512 }
a61af66fc99e Initial load
duke
parents:
diff changeset
513 }
a61af66fc99e Initial load
duke
parents:
diff changeset
514
a61af66fc99e Initial load
duke
parents:
diff changeset
515 // Transform an address from the code in this code buffer to a specified code buffer
a61af66fc99e Initial load
duke
parents:
diff changeset
516 address transform_address(const CodeBuffer &cb, address addr) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
517
a61af66fc99e Initial load
duke
parents:
diff changeset
518 void block_comment(intptr_t offset, const char * comment) PRODUCT_RETURN;
a61af66fc99e Initial load
duke
parents:
diff changeset
519
a61af66fc99e Initial load
duke
parents:
diff changeset
520 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
521 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
522 // Printing / Decoding
a61af66fc99e Initial load
duke
parents:
diff changeset
523 // decodes from decode_begin() to code_end() and sets decode_begin to end
a61af66fc99e Initial load
duke
parents:
diff changeset
524 void decode();
a61af66fc99e Initial load
duke
parents:
diff changeset
525 void decode_all(); // decodes all the code
a61af66fc99e Initial load
duke
parents:
diff changeset
526 void skip_decode(); // sets decode_begin to code_end();
a61af66fc99e Initial load
duke
parents:
diff changeset
527 void print();
a61af66fc99e Initial load
duke
parents:
diff changeset
528 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
529
a61af66fc99e Initial load
duke
parents:
diff changeset
530
a61af66fc99e Initial load
duke
parents:
diff changeset
531 // The following header contains architecture-specific implementations
a61af66fc99e Initial load
duke
parents:
diff changeset
532 #include "incls/_codeBuffer_pd.hpp.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
533 };
a61af66fc99e Initial load
duke
parents:
diff changeset
534
a61af66fc99e Initial load
duke
parents:
diff changeset
535
a61af66fc99e Initial load
duke
parents:
diff changeset
536 inline void CodeSection::freeze() {
a61af66fc99e Initial load
duke
parents:
diff changeset
537 _outer->freeze_section(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
538 }
a61af66fc99e Initial load
duke
parents:
diff changeset
539
a61af66fc99e Initial load
duke
parents:
diff changeset
540 inline bool CodeSection::maybe_expand_to_ensure_remaining(csize_t amount) {
a61af66fc99e Initial load
duke
parents:
diff changeset
541 if (remaining() < amount) { _outer->expand(this, amount); return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
542 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
543 }