annotate src/share/vm/runtime/relocator.cpp @ 6213:8150fa46d2ed

7178145: Change constMethodOop::_exception_table to optionally inlined u2 table. Summary: Change constMethodOop::_exception_table to optionally inlined u2 table. Reviewed-by: bdelsart, coleenp, kamg
author jiangli
date Tue, 26 Jun 2012 19:08:44 -0400
parents f95d63e2154a
children 4ee06e614636
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
6213
8150fa46d2ed 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 1972
diff changeset
2 * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1877
diff changeset
25 #include "precompiled.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1877
diff changeset
26 #include "classfile/stackMapTableFormat.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1877
diff changeset
27 #include "interpreter/bytecodes.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1877
diff changeset
28 #include "memory/oopFactory.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1877
diff changeset
29 #include "memory/universe.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1877
diff changeset
30 #include "oops/oop.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1877
diff changeset
31 #include "runtime/handles.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1877
diff changeset
32 #include "runtime/relocator.hpp"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
33
a61af66fc99e Initial load
duke
parents:
diff changeset
34 #define MAX_METHOD_LENGTH 65535
a61af66fc99e Initial load
duke
parents:
diff changeset
35
a61af66fc99e Initial load
duke
parents:
diff changeset
36 #define MAX_SHORT ((1 << 15) - 1)
a61af66fc99e Initial load
duke
parents:
diff changeset
37 #define MIN_SHORT (- (1 << 15))
a61af66fc99e Initial load
duke
parents:
diff changeset
38
a61af66fc99e Initial load
duke
parents:
diff changeset
39 // Encapsulates a code change request. There are 3 types.
a61af66fc99e Initial load
duke
parents:
diff changeset
40 // General instruction, jump instruction, and table/lookup switches
a61af66fc99e Initial load
duke
parents:
diff changeset
41 //
a61af66fc99e Initial load
duke
parents:
diff changeset
42 class ChangeItem : public ResourceObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
43 int _bci;
a61af66fc99e Initial load
duke
parents:
diff changeset
44 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
45 ChangeItem(int bci) { _bci = bci; }
a61af66fc99e Initial load
duke
parents:
diff changeset
46 virtual bool handle_code_change(Relocator *r) = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
47
a61af66fc99e Initial load
duke
parents:
diff changeset
48 // type info
a61af66fc99e Initial load
duke
parents:
diff changeset
49 virtual bool is_widen() { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
50 virtual bool is_jump_widen() { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
51 virtual bool is_switch_pad() { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
52
a61af66fc99e Initial load
duke
parents:
diff changeset
53 // accessors
a61af66fc99e Initial load
duke
parents:
diff changeset
54 int bci() { return _bci; }
a61af66fc99e Initial load
duke
parents:
diff changeset
55 void relocate(int break_bci, int delta) { if (_bci > break_bci) { _bci += delta; } }
a61af66fc99e Initial load
duke
parents:
diff changeset
56
a61af66fc99e Initial load
duke
parents:
diff changeset
57 virtual bool adjust(int bci, int delta) { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
58
a61af66fc99e Initial load
duke
parents:
diff changeset
59 // debug
a61af66fc99e Initial load
duke
parents:
diff changeset
60 virtual void print() = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
61 };
a61af66fc99e Initial load
duke
parents:
diff changeset
62
a61af66fc99e Initial load
duke
parents:
diff changeset
63 class ChangeWiden : public ChangeItem {
a61af66fc99e Initial load
duke
parents:
diff changeset
64 int _new_ilen; // New length of instruction at bci
a61af66fc99e Initial load
duke
parents:
diff changeset
65 u_char* _inst_buffer; // New bytecodes
a61af66fc99e Initial load
duke
parents:
diff changeset
66 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
67 ChangeWiden(int bci, int new_ilen, u_char* inst_buffer) : ChangeItem(bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
68 _new_ilen = new_ilen;
a61af66fc99e Initial load
duke
parents:
diff changeset
69 _inst_buffer = inst_buffer;
a61af66fc99e Initial load
duke
parents:
diff changeset
70 }
a61af66fc99e Initial load
duke
parents:
diff changeset
71
a61af66fc99e Initial load
duke
parents:
diff changeset
72 // Callback to do instruction
a61af66fc99e Initial load
duke
parents:
diff changeset
73 bool handle_code_change(Relocator *r) { return r->handle_widen(bci(), _new_ilen, _inst_buffer); };
a61af66fc99e Initial load
duke
parents:
diff changeset
74
a61af66fc99e Initial load
duke
parents:
diff changeset
75 bool is_widen() { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
76
a61af66fc99e Initial load
duke
parents:
diff changeset
77 void print() { tty->print_cr("ChangeWiden. bci: %d New_ilen: %d", bci(), _new_ilen); }
a61af66fc99e Initial load
duke
parents:
diff changeset
78 };
a61af66fc99e Initial load
duke
parents:
diff changeset
79
a61af66fc99e Initial load
duke
parents:
diff changeset
80 class ChangeJumpWiden : public ChangeItem {
a61af66fc99e Initial load
duke
parents:
diff changeset
81 int _delta; // New length of instruction at bci
a61af66fc99e Initial load
duke
parents:
diff changeset
82 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
83 ChangeJumpWiden(int bci, int delta) : ChangeItem(bci) { _delta = delta; }
a61af66fc99e Initial load
duke
parents:
diff changeset
84
a61af66fc99e Initial load
duke
parents:
diff changeset
85 // Callback to do instruction
a61af66fc99e Initial load
duke
parents:
diff changeset
86 bool handle_code_change(Relocator *r) { return r->handle_jump_widen(bci(), _delta); };
a61af66fc99e Initial load
duke
parents:
diff changeset
87
a61af66fc99e Initial load
duke
parents:
diff changeset
88 bool is_jump_widen() { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
89
a61af66fc99e Initial load
duke
parents:
diff changeset
90 // If the bci matches, adjust the delta in the change jump request.
a61af66fc99e Initial load
duke
parents:
diff changeset
91 bool adjust(int jump_bci, int delta) {
a61af66fc99e Initial load
duke
parents:
diff changeset
92 if (bci() == jump_bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
93 if (_delta > 0)
a61af66fc99e Initial load
duke
parents:
diff changeset
94 _delta += delta;
a61af66fc99e Initial load
duke
parents:
diff changeset
95 else
a61af66fc99e Initial load
duke
parents:
diff changeset
96 _delta -= delta;
a61af66fc99e Initial load
duke
parents:
diff changeset
97 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
98 }
a61af66fc99e Initial load
duke
parents:
diff changeset
99 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
100 }
a61af66fc99e Initial load
duke
parents:
diff changeset
101
a61af66fc99e Initial load
duke
parents:
diff changeset
102 void print() { tty->print_cr("ChangeJumpWiden. bci: %d Delta: %d", bci(), _delta); }
a61af66fc99e Initial load
duke
parents:
diff changeset
103 };
a61af66fc99e Initial load
duke
parents:
diff changeset
104
a61af66fc99e Initial load
duke
parents:
diff changeset
105 class ChangeSwitchPad : public ChangeItem {
a61af66fc99e Initial load
duke
parents:
diff changeset
106 int _padding;
a61af66fc99e Initial load
duke
parents:
diff changeset
107 bool _is_lookup_switch;
a61af66fc99e Initial load
duke
parents:
diff changeset
108 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
109 ChangeSwitchPad(int bci, int padding, bool is_lookup_switch) : ChangeItem(bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
110 _padding = padding;
a61af66fc99e Initial load
duke
parents:
diff changeset
111 _is_lookup_switch = is_lookup_switch;
a61af66fc99e Initial load
duke
parents:
diff changeset
112 }
a61af66fc99e Initial load
duke
parents:
diff changeset
113
a61af66fc99e Initial load
duke
parents:
diff changeset
114 // Callback to do instruction
a61af66fc99e Initial load
duke
parents:
diff changeset
115 bool handle_code_change(Relocator *r) { return r->handle_switch_pad(bci(), _padding, _is_lookup_switch); };
a61af66fc99e Initial load
duke
parents:
diff changeset
116
a61af66fc99e Initial load
duke
parents:
diff changeset
117 bool is_switch_pad() { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
118 int padding() { return _padding; }
a61af66fc99e Initial load
duke
parents:
diff changeset
119 bool is_lookup_switch() { return _is_lookup_switch; }
a61af66fc99e Initial load
duke
parents:
diff changeset
120
a61af66fc99e Initial load
duke
parents:
diff changeset
121 void print() { tty->print_cr("ChangeSwitchPad. bci: %d Padding: %d IsLookupSwitch: %d", bci(), _padding, _is_lookup_switch); }
a61af66fc99e Initial load
duke
parents:
diff changeset
122 };
a61af66fc99e Initial load
duke
parents:
diff changeset
123
a61af66fc99e Initial load
duke
parents:
diff changeset
124 //-----------------------------------------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
125 // Relocator code
a61af66fc99e Initial load
duke
parents:
diff changeset
126
a61af66fc99e Initial load
duke
parents:
diff changeset
127 Relocator::Relocator(methodHandle m, RelocatorListener* listener) {
a61af66fc99e Initial load
duke
parents:
diff changeset
128 set_method(m);
a61af66fc99e Initial load
duke
parents:
diff changeset
129 set_code_length(method()->code_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
130 set_code_array(NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
131 // Allocate code array and copy bytecodes
a61af66fc99e Initial load
duke
parents:
diff changeset
132 if (!expand_code_array(0)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
133 // Should have at least MAX_METHOD_LENGTH available or the verifier
a61af66fc99e Initial load
duke
parents:
diff changeset
134 // would have failed.
a61af66fc99e Initial load
duke
parents:
diff changeset
135 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
136 }
a61af66fc99e Initial load
duke
parents:
diff changeset
137 set_compressed_line_number_table(NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
138 set_compressed_line_number_table_size(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
139 _listener = listener;
a61af66fc99e Initial load
duke
parents:
diff changeset
140 }
a61af66fc99e Initial load
duke
parents:
diff changeset
141
a61af66fc99e Initial load
duke
parents:
diff changeset
142 // size is the new size of the instruction at bci. Hence, if size is less than the current
a61af66fc99e Initial load
duke
parents:
diff changeset
143 // instruction sice, we will shrink the code.
a61af66fc99e Initial load
duke
parents:
diff changeset
144 methodHandle Relocator::insert_space_at(int bci, int size, u_char inst_buffer[], TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
145 _changes = new GrowableArray<ChangeItem*> (10);
a61af66fc99e Initial load
duke
parents:
diff changeset
146 _changes->push(new ChangeWiden(bci, size, inst_buffer));
a61af66fc99e Initial load
duke
parents:
diff changeset
147
a61af66fc99e Initial load
duke
parents:
diff changeset
148 if (TraceRelocator) {
a61af66fc99e Initial load
duke
parents:
diff changeset
149 tty->print_cr("Space at: %d Size: %d", bci, size);
a61af66fc99e Initial load
duke
parents:
diff changeset
150 _method->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
151 _method->print_codes();
a61af66fc99e Initial load
duke
parents:
diff changeset
152 tty->print_cr("-------------------------------------------------");
a61af66fc99e Initial load
duke
parents:
diff changeset
153 }
a61af66fc99e Initial load
duke
parents:
diff changeset
154
a61af66fc99e Initial load
duke
parents:
diff changeset
155 if (!handle_code_changes()) return methodHandle();
a61af66fc99e Initial load
duke
parents:
diff changeset
156
a61af66fc99e Initial load
duke
parents:
diff changeset
157 // Construct the new method
a61af66fc99e Initial load
duke
parents:
diff changeset
158 methodHandle new_method = methodOopDesc::clone_with_new_data(method(),
a61af66fc99e Initial load
duke
parents:
diff changeset
159 code_array(), code_length(),
a61af66fc99e Initial load
duke
parents:
diff changeset
160 compressed_line_number_table(),
a61af66fc99e Initial load
duke
parents:
diff changeset
161 compressed_line_number_table_size(),
a61af66fc99e Initial load
duke
parents:
diff changeset
162 CHECK_(methodHandle()));
a61af66fc99e Initial load
duke
parents:
diff changeset
163 set_method(new_method);
a61af66fc99e Initial load
duke
parents:
diff changeset
164
a61af66fc99e Initial load
duke
parents:
diff changeset
165 if (TraceRelocator) {
a61af66fc99e Initial load
duke
parents:
diff changeset
166 tty->print_cr("-------------------------------------------------");
a61af66fc99e Initial load
duke
parents:
diff changeset
167 tty->print_cr("new method");
a61af66fc99e Initial load
duke
parents:
diff changeset
168 _method->print_codes();
a61af66fc99e Initial load
duke
parents:
diff changeset
169 }
a61af66fc99e Initial load
duke
parents:
diff changeset
170
a61af66fc99e Initial load
duke
parents:
diff changeset
171 return new_method;
a61af66fc99e Initial load
duke
parents:
diff changeset
172 }
a61af66fc99e Initial load
duke
parents:
diff changeset
173
a61af66fc99e Initial load
duke
parents:
diff changeset
174
a61af66fc99e Initial load
duke
parents:
diff changeset
175 bool Relocator::handle_code_changes() {
a61af66fc99e Initial load
duke
parents:
diff changeset
176 assert(_changes != NULL, "changes vector must be initialized");
a61af66fc99e Initial load
duke
parents:
diff changeset
177
a61af66fc99e Initial load
duke
parents:
diff changeset
178 while (!_changes->is_empty()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
179 // Inv: everything is aligned.
a61af66fc99e Initial load
duke
parents:
diff changeset
180 ChangeItem* ci = _changes->first();
a61af66fc99e Initial load
duke
parents:
diff changeset
181
a61af66fc99e Initial load
duke
parents:
diff changeset
182 if (TraceRelocator) {
a61af66fc99e Initial load
duke
parents:
diff changeset
183 ci->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
184 }
a61af66fc99e Initial load
duke
parents:
diff changeset
185
a61af66fc99e Initial load
duke
parents:
diff changeset
186 // Execute operation
a61af66fc99e Initial load
duke
parents:
diff changeset
187 if (!ci->handle_code_change(this)) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
188
a61af66fc99e Initial load
duke
parents:
diff changeset
189 // Shuffel items up
a61af66fc99e Initial load
duke
parents:
diff changeset
190 for (int index = 1; index < _changes->length(); index++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
191 _changes->at_put(index-1, _changes->at(index));
a61af66fc99e Initial load
duke
parents:
diff changeset
192 }
a61af66fc99e Initial load
duke
parents:
diff changeset
193 _changes->pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
194 }
a61af66fc99e Initial load
duke
parents:
diff changeset
195 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
196 }
a61af66fc99e Initial load
duke
parents:
diff changeset
197
a61af66fc99e Initial load
duke
parents:
diff changeset
198
a61af66fc99e Initial load
duke
parents:
diff changeset
199 bool Relocator::is_opcode_lookupswitch(Bytecodes::Code bc) {
a61af66fc99e Initial load
duke
parents:
diff changeset
200 switch (bc) {
a61af66fc99e Initial load
duke
parents:
diff changeset
201 case Bytecodes::_tableswitch: return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
202 case Bytecodes::_lookupswitch: // not rewritten on ia64
a61af66fc99e Initial load
duke
parents:
diff changeset
203 case Bytecodes::_fast_linearswitch: // rewritten _lookupswitch
a61af66fc99e Initial load
duke
parents:
diff changeset
204 case Bytecodes::_fast_binaryswitch: return true; // rewritten _lookupswitch
a61af66fc99e Initial load
duke
parents:
diff changeset
205 default: ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
206 }
a61af66fc99e Initial load
duke
parents:
diff changeset
207 return true; // dummy
a61af66fc99e Initial load
duke
parents:
diff changeset
208 }
a61af66fc99e Initial load
duke
parents:
diff changeset
209
a61af66fc99e Initial load
duke
parents:
diff changeset
210 // We need a special instruction size method, since lookupswitches and tableswitches might not be
a61af66fc99e Initial load
duke
parents:
diff changeset
211 // properly alligned during relocation
a61af66fc99e Initial load
duke
parents:
diff changeset
212 int Relocator::rc_instr_len(int bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
213 Bytecodes::Code bc= code_at(bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
214 switch (bc) {
a61af66fc99e Initial load
duke
parents:
diff changeset
215 // In the case of switch instructions, see if we have the original
a61af66fc99e Initial load
duke
parents:
diff changeset
216 // padding recorded.
a61af66fc99e Initial load
duke
parents:
diff changeset
217 case Bytecodes::_tableswitch:
a61af66fc99e Initial load
duke
parents:
diff changeset
218 case Bytecodes::_lookupswitch:
a61af66fc99e Initial load
duke
parents:
diff changeset
219 case Bytecodes::_fast_linearswitch:
a61af66fc99e Initial load
duke
parents:
diff changeset
220 case Bytecodes::_fast_binaryswitch:
a61af66fc99e Initial load
duke
parents:
diff changeset
221 {
a61af66fc99e Initial load
duke
parents:
diff changeset
222 int pad = get_orig_switch_pad(bci, is_opcode_lookupswitch(bc));
a61af66fc99e Initial load
duke
parents:
diff changeset
223 if (pad == -1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
224 return instruction_length_at(bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
225 }
a61af66fc99e Initial load
duke
parents:
diff changeset
226 // Otherwise, depends on the switch type.
a61af66fc99e Initial load
duke
parents:
diff changeset
227 switch (bc) {
a61af66fc99e Initial load
duke
parents:
diff changeset
228 case Bytecodes::_tableswitch: {
a61af66fc99e Initial load
duke
parents:
diff changeset
229 int lo = int_at(bci + 1 + pad + 4 * 1);
a61af66fc99e Initial load
duke
parents:
diff changeset
230 int hi = int_at(bci + 1 + pad + 4 * 2);
a61af66fc99e Initial load
duke
parents:
diff changeset
231 int n = hi - lo + 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
232 return 1 + pad + 4*(3 + n);
a61af66fc99e Initial load
duke
parents:
diff changeset
233 }
a61af66fc99e Initial load
duke
parents:
diff changeset
234 case Bytecodes::_lookupswitch:
a61af66fc99e Initial load
duke
parents:
diff changeset
235 case Bytecodes::_fast_linearswitch:
a61af66fc99e Initial load
duke
parents:
diff changeset
236 case Bytecodes::_fast_binaryswitch: {
a61af66fc99e Initial load
duke
parents:
diff changeset
237 int npairs = int_at(bci + 1 + pad + 4 * 1);
a61af66fc99e Initial load
duke
parents:
diff changeset
238 return 1 + pad + 4*(2 + 2*npairs);
a61af66fc99e Initial load
duke
parents:
diff changeset
239 }
a61af66fc99e Initial load
duke
parents:
diff changeset
240 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
241 ShouldNotReachHere();
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 return instruction_length_at(bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
246 }
a61af66fc99e Initial load
duke
parents:
diff changeset
247
a61af66fc99e Initial load
duke
parents:
diff changeset
248 // If a change item is recorded for "pc", with type "ct", returns the
a61af66fc99e Initial load
duke
parents:
diff changeset
249 // associated padding, else -1.
a61af66fc99e Initial load
duke
parents:
diff changeset
250 int Relocator::get_orig_switch_pad(int bci, bool is_lookup_switch) {
a61af66fc99e Initial load
duke
parents:
diff changeset
251 for (int k = 0; k < _changes->length(); k++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
252 ChangeItem* ci = _changes->at(k);
a61af66fc99e Initial load
duke
parents:
diff changeset
253 if (ci->is_switch_pad()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
254 ChangeSwitchPad* csp = (ChangeSwitchPad*)ci;
a61af66fc99e Initial load
duke
parents:
diff changeset
255 if (csp->is_lookup_switch() == is_lookup_switch && csp->bci() == bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
256 return csp->padding();
a61af66fc99e Initial load
duke
parents:
diff changeset
257 }
a61af66fc99e Initial load
duke
parents:
diff changeset
258 }
a61af66fc99e Initial load
duke
parents:
diff changeset
259 }
a61af66fc99e Initial load
duke
parents:
diff changeset
260 return -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
261 }
a61af66fc99e Initial load
duke
parents:
diff changeset
262
a61af66fc99e Initial load
duke
parents:
diff changeset
263
a61af66fc99e Initial load
duke
parents:
diff changeset
264 // Push a ChangeJumpWiden if it doesn't already exist on the work queue,
a61af66fc99e Initial load
duke
parents:
diff changeset
265 // otherwise adjust the item already there by delta. The calculation for
a61af66fc99e Initial load
duke
parents:
diff changeset
266 // new_delta is wrong for this because it uses the offset stored in the
a61af66fc99e Initial load
duke
parents:
diff changeset
267 // code stream itself which wasn't fixed when item was pushed on the work queue.
a61af66fc99e Initial load
duke
parents:
diff changeset
268 void Relocator::push_jump_widen(int bci, int delta, int new_delta) {
a61af66fc99e Initial load
duke
parents:
diff changeset
269 for (int j = 0; j < _changes->length(); j++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
270 ChangeItem* ci = _changes->at(j);
a61af66fc99e Initial load
duke
parents:
diff changeset
271 if (ci->adjust(bci, delta)) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
272 }
a61af66fc99e Initial load
duke
parents:
diff changeset
273 _changes->push(new ChangeJumpWiden(bci, new_delta));
a61af66fc99e Initial load
duke
parents:
diff changeset
274 }
a61af66fc99e Initial load
duke
parents:
diff changeset
275
a61af66fc99e Initial load
duke
parents:
diff changeset
276
a61af66fc99e Initial load
duke
parents:
diff changeset
277 // The current instruction of "c" is a jump; one of its offset starts
a61af66fc99e Initial load
duke
parents:
diff changeset
278 // at "offset" and is a short if "isShort" is "TRUE",
a61af66fc99e Initial load
duke
parents:
diff changeset
279 // and an integer otherwise. If the jump crosses "breakPC", change
a61af66fc99e Initial load
duke
parents:
diff changeset
280 // the span of the jump by "delta".
a61af66fc99e Initial load
duke
parents:
diff changeset
281 void Relocator::change_jump(int bci, int offset, bool is_short, int break_bci, int delta) {
a61af66fc99e Initial load
duke
parents:
diff changeset
282 int bci_delta = (is_short) ? short_at(offset) : int_at(offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
283 int targ = bci + bci_delta;
a61af66fc99e Initial load
duke
parents:
diff changeset
284
a61af66fc99e Initial load
duke
parents:
diff changeset
285 if ((bci <= break_bci && targ > break_bci) ||
a61af66fc99e Initial load
duke
parents:
diff changeset
286 (bci > break_bci && targ <= break_bci)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
287 int new_delta;
a61af66fc99e Initial load
duke
parents:
diff changeset
288 if (bci_delta > 0)
a61af66fc99e Initial load
duke
parents:
diff changeset
289 new_delta = bci_delta + delta;
a61af66fc99e Initial load
duke
parents:
diff changeset
290 else
a61af66fc99e Initial load
duke
parents:
diff changeset
291 new_delta = bci_delta - delta;
a61af66fc99e Initial load
duke
parents:
diff changeset
292
a61af66fc99e Initial load
duke
parents:
diff changeset
293 if (is_short && ((new_delta > MAX_SHORT) || new_delta < MIN_SHORT)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
294 push_jump_widen(bci, delta, new_delta);
a61af66fc99e Initial load
duke
parents:
diff changeset
295 } else if (is_short) {
a61af66fc99e Initial load
duke
parents:
diff changeset
296 short_at_put(offset, new_delta);
a61af66fc99e Initial load
duke
parents:
diff changeset
297 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
298 int_at_put(offset, new_delta);
a61af66fc99e Initial load
duke
parents:
diff changeset
299 }
a61af66fc99e Initial load
duke
parents:
diff changeset
300 }
a61af66fc99e Initial load
duke
parents:
diff changeset
301 }
a61af66fc99e Initial load
duke
parents:
diff changeset
302
a61af66fc99e Initial load
duke
parents:
diff changeset
303
a61af66fc99e Initial load
duke
parents:
diff changeset
304 // Changes all jumps crossing "break_bci" by "delta". May enqueue things
a61af66fc99e Initial load
duke
parents:
diff changeset
305 // on "rc->changes"
a61af66fc99e Initial load
duke
parents:
diff changeset
306 void Relocator::change_jumps(int break_bci, int delta) {
a61af66fc99e Initial load
duke
parents:
diff changeset
307 int bci = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
308 Bytecodes::Code bc;
a61af66fc99e Initial load
duke
parents:
diff changeset
309 // Now, adjust any affected instructions.
a61af66fc99e Initial load
duke
parents:
diff changeset
310 while (bci < code_length()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
311 switch (bc= code_at(bci)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
312 case Bytecodes::_ifeq:
a61af66fc99e Initial load
duke
parents:
diff changeset
313 case Bytecodes::_ifne:
a61af66fc99e Initial load
duke
parents:
diff changeset
314 case Bytecodes::_iflt:
a61af66fc99e Initial load
duke
parents:
diff changeset
315 case Bytecodes::_ifge:
a61af66fc99e Initial load
duke
parents:
diff changeset
316 case Bytecodes::_ifgt:
a61af66fc99e Initial load
duke
parents:
diff changeset
317 case Bytecodes::_ifle:
a61af66fc99e Initial load
duke
parents:
diff changeset
318 case Bytecodes::_if_icmpeq:
a61af66fc99e Initial load
duke
parents:
diff changeset
319 case Bytecodes::_if_icmpne:
a61af66fc99e Initial load
duke
parents:
diff changeset
320 case Bytecodes::_if_icmplt:
a61af66fc99e Initial load
duke
parents:
diff changeset
321 case Bytecodes::_if_icmpge:
a61af66fc99e Initial load
duke
parents:
diff changeset
322 case Bytecodes::_if_icmpgt:
a61af66fc99e Initial load
duke
parents:
diff changeset
323 case Bytecodes::_if_icmple:
a61af66fc99e Initial load
duke
parents:
diff changeset
324 case Bytecodes::_if_acmpeq:
a61af66fc99e Initial load
duke
parents:
diff changeset
325 case Bytecodes::_if_acmpne:
a61af66fc99e Initial load
duke
parents:
diff changeset
326 case Bytecodes::_ifnull:
a61af66fc99e Initial load
duke
parents:
diff changeset
327 case Bytecodes::_ifnonnull:
a61af66fc99e Initial load
duke
parents:
diff changeset
328 case Bytecodes::_goto:
a61af66fc99e Initial load
duke
parents:
diff changeset
329 case Bytecodes::_jsr:
a61af66fc99e Initial load
duke
parents:
diff changeset
330 change_jump(bci, bci+1, true, break_bci, delta);
a61af66fc99e Initial load
duke
parents:
diff changeset
331 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
332 case Bytecodes::_goto_w:
a61af66fc99e Initial load
duke
parents:
diff changeset
333 case Bytecodes::_jsr_w:
a61af66fc99e Initial load
duke
parents:
diff changeset
334 change_jump(bci, bci+1, false, break_bci, delta);
a61af66fc99e Initial load
duke
parents:
diff changeset
335 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
336 case Bytecodes::_tableswitch:
a61af66fc99e Initial load
duke
parents:
diff changeset
337 case Bytecodes::_lookupswitch:
a61af66fc99e Initial load
duke
parents:
diff changeset
338 case Bytecodes::_fast_linearswitch:
a61af66fc99e Initial load
duke
parents:
diff changeset
339 case Bytecodes::_fast_binaryswitch: {
a61af66fc99e Initial load
duke
parents:
diff changeset
340 int recPad = get_orig_switch_pad(bci, (bc != Bytecodes::_tableswitch));
a61af66fc99e Initial load
duke
parents:
diff changeset
341 int oldPad = (recPad != -1) ? recPad : align(bci+1) - (bci+1);
a61af66fc99e Initial load
duke
parents:
diff changeset
342 if (bci > break_bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
343 int new_bci = bci + delta;
a61af66fc99e Initial load
duke
parents:
diff changeset
344 int newPad = align(new_bci+1) - (new_bci+1);
a61af66fc99e Initial load
duke
parents:
diff changeset
345 // Do we need to check the padding?
a61af66fc99e Initial load
duke
parents:
diff changeset
346 if (newPad != oldPad) {
a61af66fc99e Initial load
duke
parents:
diff changeset
347 if (recPad == -1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
348 _changes->push(new ChangeSwitchPad(bci, oldPad, (bc != Bytecodes::_tableswitch)));
a61af66fc99e Initial load
duke
parents:
diff changeset
349 }
a61af66fc99e Initial load
duke
parents:
diff changeset
350 }
a61af66fc99e Initial load
duke
parents:
diff changeset
351 }
a61af66fc99e Initial load
duke
parents:
diff changeset
352
a61af66fc99e Initial load
duke
parents:
diff changeset
353 // Then the rest, which depend on the kind of switch.
a61af66fc99e Initial load
duke
parents:
diff changeset
354 switch (bc) {
a61af66fc99e Initial load
duke
parents:
diff changeset
355 case Bytecodes::_tableswitch: {
a61af66fc99e Initial load
duke
parents:
diff changeset
356 change_jump(bci, bci +1 + oldPad, false, break_bci, delta);
a61af66fc99e Initial load
duke
parents:
diff changeset
357 // We cannot use the Bytecode_tableswitch abstraction, since the padding might not be correct.
a61af66fc99e Initial load
duke
parents:
diff changeset
358 int lo = int_at(bci + 1 + oldPad + 4 * 1);
a61af66fc99e Initial load
duke
parents:
diff changeset
359 int hi = int_at(bci + 1 + oldPad + 4 * 2);
a61af66fc99e Initial load
duke
parents:
diff changeset
360 int n = hi - lo + 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
361 for (int k = 0; k < n; k++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
362 change_jump(bci, bci +1 + oldPad + 4*(k+3), false, break_bci, delta);
a61af66fc99e Initial load
duke
parents:
diff changeset
363 }
a61af66fc99e Initial load
duke
parents:
diff changeset
364 // Special next-bci calculation here...
a61af66fc99e Initial load
duke
parents:
diff changeset
365 bci += 1 + oldPad + (n+3)*4;
a61af66fc99e Initial load
duke
parents:
diff changeset
366 continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
367 }
a61af66fc99e Initial load
duke
parents:
diff changeset
368 case Bytecodes::_lookupswitch:
a61af66fc99e Initial load
duke
parents:
diff changeset
369 case Bytecodes::_fast_linearswitch:
a61af66fc99e Initial load
duke
parents:
diff changeset
370 case Bytecodes::_fast_binaryswitch: {
a61af66fc99e Initial load
duke
parents:
diff changeset
371 change_jump(bci, bci +1 + oldPad, false, break_bci, delta);
a61af66fc99e Initial load
duke
parents:
diff changeset
372 // We cannot use the Bytecode_lookupswitch abstraction, since the padding might not be correct.
a61af66fc99e Initial load
duke
parents:
diff changeset
373 int npairs = int_at(bci + 1 + oldPad + 4 * 1);
a61af66fc99e Initial load
duke
parents:
diff changeset
374 for (int k = 0; k < npairs; k++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
375 change_jump(bci, bci + 1 + oldPad + 4*(2 + 2*k + 1), false, break_bci, delta);
a61af66fc99e Initial load
duke
parents:
diff changeset
376 }
a61af66fc99e Initial load
duke
parents:
diff changeset
377 /* Special next-bci calculation here... */
a61af66fc99e Initial load
duke
parents:
diff changeset
378 bci += 1 + oldPad + (2 + (npairs*2))*4;
a61af66fc99e Initial load
duke
parents:
diff changeset
379 continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
380 }
a61af66fc99e Initial load
duke
parents:
diff changeset
381 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
382 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
383 }
a61af66fc99e Initial load
duke
parents:
diff changeset
384 }
a61af66fc99e Initial load
duke
parents:
diff changeset
385 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
386 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
387 }
a61af66fc99e Initial load
duke
parents:
diff changeset
388 bci += rc_instr_len(bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
389 }
a61af66fc99e Initial load
duke
parents:
diff changeset
390 }
a61af66fc99e Initial load
duke
parents:
diff changeset
391
a61af66fc99e Initial load
duke
parents:
diff changeset
392 // The width of instruction at "pc" is changing by "delta". Adjust the
a61af66fc99e Initial load
duke
parents:
diff changeset
393 // exception table, if any, of "rc->mb".
a61af66fc99e Initial load
duke
parents:
diff changeset
394 void Relocator::adjust_exception_table(int bci, int delta) {
6213
8150fa46d2ed 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 1972
diff changeset
395 ExceptionTable table(_method());
8150fa46d2ed 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 1972
diff changeset
396 for (int index = 0; index < table.length(); index ++) {
8150fa46d2ed 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 1972
diff changeset
397 if (table.start_pc(index) > bci) {
8150fa46d2ed 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 1972
diff changeset
398 table.set_start_pc(index, table.start_pc(index) + delta);
8150fa46d2ed 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 1972
diff changeset
399 table.set_end_pc(index, table.end_pc(index) + delta);
8150fa46d2ed 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 1972
diff changeset
400 } else if (bci < table.end_pc(index)) {
8150fa46d2ed 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 1972
diff changeset
401 table.set_end_pc(index, table.end_pc(index) + delta);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
402 }
6213
8150fa46d2ed 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 1972
diff changeset
403 if (table.handler_pc(index) > bci)
8150fa46d2ed 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 1972
diff changeset
404 table.set_handler_pc(index, table.handler_pc(index) + delta);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
405 }
a61af66fc99e Initial load
duke
parents:
diff changeset
406 }
a61af66fc99e Initial load
duke
parents:
diff changeset
407
a61af66fc99e Initial load
duke
parents:
diff changeset
408
a61af66fc99e Initial load
duke
parents:
diff changeset
409 // The width of instruction at "bci" is changing by "delta". Adjust the line number table.
a61af66fc99e Initial load
duke
parents:
diff changeset
410 void Relocator::adjust_line_no_table(int bci, int delta) {
a61af66fc99e Initial load
duke
parents:
diff changeset
411 if (method()->has_linenumber_table()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
412 CompressedLineNumberReadStream reader(method()->compressed_linenumber_table());
a61af66fc99e Initial load
duke
parents:
diff changeset
413 CompressedLineNumberWriteStream writer(64); // plenty big for most line number tables
a61af66fc99e Initial load
duke
parents:
diff changeset
414 while (reader.read_pair()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
415 int adjustment = (reader.bci() > bci) ? delta : 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
416 writer.write_pair(reader.bci() + adjustment, reader.line());
a61af66fc99e Initial load
duke
parents:
diff changeset
417 }
a61af66fc99e Initial load
duke
parents:
diff changeset
418 writer.write_terminator();
a61af66fc99e Initial load
duke
parents:
diff changeset
419 set_compressed_line_number_table(writer.buffer());
a61af66fc99e Initial load
duke
parents:
diff changeset
420 set_compressed_line_number_table_size(writer.position());
a61af66fc99e Initial load
duke
parents:
diff changeset
421 }
a61af66fc99e Initial load
duke
parents:
diff changeset
422 }
a61af66fc99e Initial load
duke
parents:
diff changeset
423
a61af66fc99e Initial load
duke
parents:
diff changeset
424
a61af66fc99e Initial load
duke
parents:
diff changeset
425 // The width of instruction at "bci" is changing by "delta". Adjust the local variable table.
a61af66fc99e Initial load
duke
parents:
diff changeset
426 void Relocator::adjust_local_var_table(int bci, int delta) {
a61af66fc99e Initial load
duke
parents:
diff changeset
427 int localvariable_table_length = method()->localvariable_table_length();
a61af66fc99e Initial load
duke
parents:
diff changeset
428 if (localvariable_table_length > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
429 LocalVariableTableElement* table = method()->localvariable_table_start();
a61af66fc99e Initial load
duke
parents:
diff changeset
430 for (int i = 0; i < localvariable_table_length; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
431 u2 current_bci = table[i].start_bci;
a61af66fc99e Initial load
duke
parents:
diff changeset
432 if (current_bci > bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
433 table[i].start_bci = current_bci + delta;
a61af66fc99e Initial load
duke
parents:
diff changeset
434 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
435 u2 current_length = table[i].length;
a61af66fc99e Initial load
duke
parents:
diff changeset
436 if (current_bci + current_length > bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
437 table[i].length = current_length + delta;
a61af66fc99e Initial load
duke
parents:
diff changeset
438 }
a61af66fc99e Initial load
duke
parents:
diff changeset
439 }
a61af66fc99e Initial load
duke
parents:
diff changeset
440 }
a61af66fc99e Initial load
duke
parents:
diff changeset
441 }
a61af66fc99e Initial load
duke
parents:
diff changeset
442 }
a61af66fc99e Initial load
duke
parents:
diff changeset
443
1877
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
444 // Create a new array, copying the src array but adding a hole at
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
445 // the specified location
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
446 static typeArrayOop insert_hole_at(
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
447 size_t where, int hole_sz, typeArrayOop src) {
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
448 Thread* THREAD = Thread::current();
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
449 Handle src_hnd(THREAD, src);
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
450 typeArrayOop dst =
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
451 oopFactory::new_permanent_byteArray(src->length() + hole_sz, CHECK_NULL);
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
452 src = (typeArrayOop)src_hnd();
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
453
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
454 address src_addr = (address)src->byte_at_addr(0);
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
455 address dst_addr = (address)dst->byte_at_addr(0);
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
456
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
457 memcpy(dst_addr, src_addr, where);
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
458 memcpy(dst_addr + where + hole_sz,
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
459 src_addr + where, src->length() - where);
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
460 return dst;
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
461 }
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
462
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
463 // The width of instruction at "bci" is changing by "delta". Adjust the stack
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
464 // map frames.
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
465 void Relocator::adjust_stack_map_table(int bci, int delta) {
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
466 if (method()->has_stackmap_table()) {
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
467 typeArrayOop data = method()->stackmap_data();
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
468 // The data in the array is a classfile representation of the stackmap
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
469 // table attribute, less the initial u2 tag and u4 attribute_length fields.
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
470 stack_map_table_attribute* attr = stack_map_table_attribute::at(
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
471 (address)data->byte_at_addr(0) - (sizeof(u2) + sizeof(u4)));
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
472
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
473 int count = attr->number_of_entries();
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
474 stack_map_frame* frame = attr->entries();
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
475 int bci_iter = -1;
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
476 bool offset_adjusted = false; // only need to adjust one offset
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
477
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
478 for (int i = 0; i < count; ++i) {
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
479 int offset_delta = frame->offset_delta();
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
480 bci_iter += offset_delta;
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
481
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
482 if (!offset_adjusted && bci_iter > bci) {
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
483 int new_offset_delta = offset_delta + delta;
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
484
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
485 if (frame->is_valid_offset(new_offset_delta)) {
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
486 frame->set_offset_delta(new_offset_delta);
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
487 } else {
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
488 assert(frame->is_same_frame() ||
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
489 frame->is_same_frame_1_stack_item_frame(),
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
490 "Frame must be one of the compressed forms");
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
491 // The new delta exceeds the capacity of the 'same_frame' or
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
492 // 'same_frame_1_stack_item_frame' frame types. We need to
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
493 // convert these frames to the extended versions, but the extended
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
494 // version is bigger and requires more room. So we allocate a
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
495 // new array and copy the data, being sure to leave u2-sized hole
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
496 // right after the 'frame_type' for the new offset field.
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
497 //
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
498 // We can safely ignore the reverse situation as a small delta
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
499 // can still be used in an extended version of the frame.
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
500
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
501 size_t frame_offset = (address)frame - (address)data->byte_at_addr(0);
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
502
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
503 data = insert_hole_at(frame_offset + 1, 2, data);
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
504 if (data == NULL) {
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
505 return; // out-of-memory?
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
506 }
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
507
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
508 address frame_addr = (address)(data->byte_at_addr(0) + frame_offset);
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
509 frame = stack_map_frame::at(frame_addr);
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
510
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
511
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
512 // Now convert the frames in place
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
513 if (frame->is_same_frame()) {
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
514 same_frame_extended::create_at(frame_addr, new_offset_delta);
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
515 } else {
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
516 same_frame_1_stack_item_extended::create_at(
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
517 frame_addr, new_offset_delta, NULL);
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
518 // the verification_info_type should already be at the right spot
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
519 }
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
520 }
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
521 offset_adjusted = true; // needs to be done only once, since subsequent
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
522 // values are offsets from the current
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
523 }
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
524
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
525 // The stack map frame may contain verification types, if so we need to
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
526 // check and update any Uninitialized type's bci (no matter where it is).
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
527 int number_of_types = frame->number_of_types();
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
528 verification_type_info* types = frame->types();
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
529
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
530 for (int i = 0; i < number_of_types; ++i) {
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
531 if (types->is_uninitialized() && types->bci() > bci) {
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
532 types->set_bci(types->bci() + delta);
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
533 }
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
534 types = types->next();
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
535 }
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
536
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
537 // Full frame has stack values too
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
538 full_frame* ff = frame->as_full_frame();
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
539 if (ff != NULL) {
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
540 address eol = (address)types;
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
541 number_of_types = ff->stack_slots(eol);
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
542 types = ff->stack(eol);
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
543 for (int i = 0; i < number_of_types; ++i) {
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
544 if (types->is_uninitialized() && types->bci() > bci) {
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
545 types->set_bci(types->bci() + delta);
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
546 }
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
547 types = types->next();
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
548 }
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
549 }
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
550
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
551 frame = frame->next();
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
552 }
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
553
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
554 method()->set_stackmap_data(data); // in case it has changed
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
555 }
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
556 }
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
557
0
a61af66fc99e Initial load
duke
parents:
diff changeset
558
a61af66fc99e Initial load
duke
parents:
diff changeset
559 bool Relocator::expand_code_array(int delta) {
a61af66fc99e Initial load
duke
parents:
diff changeset
560 int length = MAX2(code_length() + delta, code_length() * (100+code_slop_pct()) / 100);
a61af66fc99e Initial load
duke
parents:
diff changeset
561
a61af66fc99e Initial load
duke
parents:
diff changeset
562 if (length > MAX_METHOD_LENGTH) {
a61af66fc99e Initial load
duke
parents:
diff changeset
563 if (delta == 0 && code_length() <= MAX_METHOD_LENGTH) {
a61af66fc99e Initial load
duke
parents:
diff changeset
564 length = MAX_METHOD_LENGTH;
a61af66fc99e Initial load
duke
parents:
diff changeset
565 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
566 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
567 }
a61af66fc99e Initial load
duke
parents:
diff changeset
568 }
a61af66fc99e Initial load
duke
parents:
diff changeset
569
a61af66fc99e Initial load
duke
parents:
diff changeset
570 unsigned char* new_code_array = NEW_RESOURCE_ARRAY(unsigned char, length);
a61af66fc99e Initial load
duke
parents:
diff changeset
571 if (!new_code_array) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
572
a61af66fc99e Initial load
duke
parents:
diff changeset
573 // Expanding current array
a61af66fc99e Initial load
duke
parents:
diff changeset
574 if (code_array() != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
575 memcpy(new_code_array, code_array(), code_length());
a61af66fc99e Initial load
duke
parents:
diff changeset
576 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
577 // Initial copy. Copy directly from methodOop
a61af66fc99e Initial load
duke
parents:
diff changeset
578 memcpy(new_code_array, method()->code_base(), code_length());
a61af66fc99e Initial load
duke
parents:
diff changeset
579 }
a61af66fc99e Initial load
duke
parents:
diff changeset
580
a61af66fc99e Initial load
duke
parents:
diff changeset
581 set_code_array(new_code_array);
a61af66fc99e Initial load
duke
parents:
diff changeset
582 set_code_array_length(length);
a61af66fc99e Initial load
duke
parents:
diff changeset
583
a61af66fc99e Initial load
duke
parents:
diff changeset
584 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
585 }
a61af66fc99e Initial load
duke
parents:
diff changeset
586
a61af66fc99e Initial load
duke
parents:
diff changeset
587
a61af66fc99e Initial load
duke
parents:
diff changeset
588 // The instruction at "bci", whose size is "ilen", is changing size by
a61af66fc99e Initial load
duke
parents:
diff changeset
589 // "delta". Reallocate, move code, recalculate jumps, and enqueue
a61af66fc99e Initial load
duke
parents:
diff changeset
590 // change items as necessary.
a61af66fc99e Initial load
duke
parents:
diff changeset
591 bool Relocator::relocate_code(int bci, int ilen, int delta) {
a61af66fc99e Initial load
duke
parents:
diff changeset
592 int next_bci = bci + ilen;
a61af66fc99e Initial load
duke
parents:
diff changeset
593 if (delta > 0 && code_length() + delta > code_array_length()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
594 // Expand allocated code space, if necessary.
a61af66fc99e Initial load
duke
parents:
diff changeset
595 if (!expand_code_array(delta)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
596 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
597 }
a61af66fc99e Initial load
duke
parents:
diff changeset
598 }
a61af66fc99e Initial load
duke
parents:
diff changeset
599
a61af66fc99e Initial load
duke
parents:
diff changeset
600 // We require 4-byte alignment of code arrays.
a61af66fc99e Initial load
duke
parents:
diff changeset
601 assert(((intptr_t)code_array() & 3) == 0, "check code alignment");
a61af66fc99e Initial load
duke
parents:
diff changeset
602 // Change jumps before doing the copying; this routine requires aligned switches.
a61af66fc99e Initial load
duke
parents:
diff changeset
603 change_jumps(bci, delta);
a61af66fc99e Initial load
duke
parents:
diff changeset
604
a61af66fc99e Initial load
duke
parents:
diff changeset
605 // In case we have shrunken a tableswitch/lookupswitch statement, we store the last
a61af66fc99e Initial load
duke
parents:
diff changeset
606 // bytes that get overwritten. We have to copy the bytes after the change_jumps method
a61af66fc99e Initial load
duke
parents:
diff changeset
607 // has been called, since it is likly to update last offset in a tableswitch/lookupswitch
a61af66fc99e Initial load
duke
parents:
diff changeset
608 if (delta < 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
609 assert(delta>=-3, "we cannot overwrite more than 3 bytes");
a61af66fc99e Initial load
duke
parents:
diff changeset
610 memcpy(_overwrite, addr_at(bci + ilen + delta), -delta);
a61af66fc99e Initial load
duke
parents:
diff changeset
611 }
a61af66fc99e Initial load
duke
parents:
diff changeset
612
a61af66fc99e Initial load
duke
parents:
diff changeset
613 memmove(addr_at(next_bci + delta), addr_at(next_bci), code_length() - next_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
614 set_code_length(code_length() + delta);
a61af66fc99e Initial load
duke
parents:
diff changeset
615 // Also adjust exception tables...
a61af66fc99e Initial load
duke
parents:
diff changeset
616 adjust_exception_table(bci, delta);
a61af66fc99e Initial load
duke
parents:
diff changeset
617 // Line number tables...
a61af66fc99e Initial load
duke
parents:
diff changeset
618 adjust_line_no_table(bci, delta);
a61af66fc99e Initial load
duke
parents:
diff changeset
619 // And local variable table...
a61af66fc99e Initial load
duke
parents:
diff changeset
620 adjust_local_var_table(bci, delta);
a61af66fc99e Initial load
duke
parents:
diff changeset
621
1877
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
622 // Adjust stack maps
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
623 adjust_stack_map_table(bci, delta);
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
624
0
a61af66fc99e Initial load
duke
parents:
diff changeset
625 // Relocate the pending change stack...
a61af66fc99e Initial load
duke
parents:
diff changeset
626 for (int j = 0; j < _changes->length(); j++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
627 ChangeItem* ci = _changes->at(j);
a61af66fc99e Initial load
duke
parents:
diff changeset
628 ci->relocate(bci, delta);
a61af66fc99e Initial load
duke
parents:
diff changeset
629 }
a61af66fc99e Initial load
duke
parents:
diff changeset
630
a61af66fc99e Initial load
duke
parents:
diff changeset
631 // Notify any listeners about code relocation
a61af66fc99e Initial load
duke
parents:
diff changeset
632 notify(bci, delta, code_length());
a61af66fc99e Initial load
duke
parents:
diff changeset
633
a61af66fc99e Initial load
duke
parents:
diff changeset
634 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
635 }
a61af66fc99e Initial load
duke
parents:
diff changeset
636
a61af66fc99e Initial load
duke
parents:
diff changeset
637 // relocate a general instruction. Called by ChangeWiden class
a61af66fc99e Initial load
duke
parents:
diff changeset
638 bool Relocator::handle_widen(int bci, int new_ilen, u_char inst_buffer[]) {
a61af66fc99e Initial load
duke
parents:
diff changeset
639 int ilen = rc_instr_len(bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
640 if (!relocate_code(bci, ilen, new_ilen - ilen))
a61af66fc99e Initial load
duke
parents:
diff changeset
641 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
642
a61af66fc99e Initial load
duke
parents:
diff changeset
643 // Insert new bytecode(s)
a61af66fc99e Initial load
duke
parents:
diff changeset
644 for(int k = 0; k < new_ilen; k++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
645 code_at_put(bci + k, (Bytecodes::Code)inst_buffer[k]);
a61af66fc99e Initial load
duke
parents:
diff changeset
646 }
a61af66fc99e Initial load
duke
parents:
diff changeset
647
a61af66fc99e Initial load
duke
parents:
diff changeset
648 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
649 }
a61af66fc99e Initial load
duke
parents:
diff changeset
650
a61af66fc99e Initial load
duke
parents:
diff changeset
651 // handle jump_widen instruction. Called be ChangeJumpWiden class
a61af66fc99e Initial load
duke
parents:
diff changeset
652 bool Relocator::handle_jump_widen(int bci, int delta) {
a61af66fc99e Initial load
duke
parents:
diff changeset
653 int ilen = rc_instr_len(bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
654
a61af66fc99e Initial load
duke
parents:
diff changeset
655 Bytecodes::Code bc = code_at(bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
656 switch (bc) {
a61af66fc99e Initial load
duke
parents:
diff changeset
657 case Bytecodes::_ifeq:
a61af66fc99e Initial load
duke
parents:
diff changeset
658 case Bytecodes::_ifne:
a61af66fc99e Initial load
duke
parents:
diff changeset
659 case Bytecodes::_iflt:
a61af66fc99e Initial load
duke
parents:
diff changeset
660 case Bytecodes::_ifge:
a61af66fc99e Initial load
duke
parents:
diff changeset
661 case Bytecodes::_ifgt:
a61af66fc99e Initial load
duke
parents:
diff changeset
662 case Bytecodes::_ifle:
a61af66fc99e Initial load
duke
parents:
diff changeset
663 case Bytecodes::_if_icmpeq:
a61af66fc99e Initial load
duke
parents:
diff changeset
664 case Bytecodes::_if_icmpne:
a61af66fc99e Initial load
duke
parents:
diff changeset
665 case Bytecodes::_if_icmplt:
a61af66fc99e Initial load
duke
parents:
diff changeset
666 case Bytecodes::_if_icmpge:
a61af66fc99e Initial load
duke
parents:
diff changeset
667 case Bytecodes::_if_icmpgt:
a61af66fc99e Initial load
duke
parents:
diff changeset
668 case Bytecodes::_if_icmple:
a61af66fc99e Initial load
duke
parents:
diff changeset
669 case Bytecodes::_if_acmpeq:
a61af66fc99e Initial load
duke
parents:
diff changeset
670 case Bytecodes::_if_acmpne:
a61af66fc99e Initial load
duke
parents:
diff changeset
671 case Bytecodes::_ifnull:
a61af66fc99e Initial load
duke
parents:
diff changeset
672 case Bytecodes::_ifnonnull: {
a61af66fc99e Initial load
duke
parents:
diff changeset
673 const int goto_length = Bytecodes::length_for(Bytecodes::_goto);
a61af66fc99e Initial load
duke
parents:
diff changeset
674
a61af66fc99e Initial load
duke
parents:
diff changeset
675 // If 'if' points to the next bytecode after goto, it's already handled.
a61af66fc99e Initial load
duke
parents:
diff changeset
676 // it shouldn't be.
a61af66fc99e Initial load
duke
parents:
diff changeset
677 assert (short_at(bci+1) != ilen+goto_length, "if relocation already handled");
a61af66fc99e Initial load
duke
parents:
diff changeset
678 assert(ilen == 3, "check length");
a61af66fc99e Initial load
duke
parents:
diff changeset
679
a61af66fc99e Initial load
duke
parents:
diff changeset
680 // Convert to 0 if <cond> goto 6
a61af66fc99e Initial load
duke
parents:
diff changeset
681 // 3 _goto 11
a61af66fc99e Initial load
duke
parents:
diff changeset
682 // 6 _goto_w <wide delta offset>
a61af66fc99e Initial load
duke
parents:
diff changeset
683 // 11 <else code>
a61af66fc99e Initial load
duke
parents:
diff changeset
684 const int goto_w_length = Bytecodes::length_for(Bytecodes::_goto_w);
a61af66fc99e Initial load
duke
parents:
diff changeset
685 const int add_bci = goto_length + goto_w_length;
a61af66fc99e Initial load
duke
parents:
diff changeset
686
a61af66fc99e Initial load
duke
parents:
diff changeset
687 if (!relocate_code(bci, 3, /*delta*/add_bci)) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
688
a61af66fc99e Initial load
duke
parents:
diff changeset
689 // if bytecode points to goto_w instruction
a61af66fc99e Initial load
duke
parents:
diff changeset
690 short_at_put(bci + 1, ilen + goto_length);
a61af66fc99e Initial load
duke
parents:
diff changeset
691
a61af66fc99e Initial load
duke
parents:
diff changeset
692 int cbci = bci + ilen;
a61af66fc99e Initial load
duke
parents:
diff changeset
693 // goto around
a61af66fc99e Initial load
duke
parents:
diff changeset
694 code_at_put(cbci, Bytecodes::_goto);
a61af66fc99e Initial load
duke
parents:
diff changeset
695 short_at_put(cbci + 1, add_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
696 // goto_w <wide delta>
a61af66fc99e Initial load
duke
parents:
diff changeset
697 cbci = cbci + goto_length;
a61af66fc99e Initial load
duke
parents:
diff changeset
698 code_at_put(cbci, Bytecodes::_goto_w);
a61af66fc99e Initial load
duke
parents:
diff changeset
699 if (delta > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
700 delta += 2; // goto_w is 2 bytes more than "if" code
a61af66fc99e Initial load
duke
parents:
diff changeset
701 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
702 delta -= ilen+goto_length; // branch starts at goto_w offset
a61af66fc99e Initial load
duke
parents:
diff changeset
703 }
a61af66fc99e Initial load
duke
parents:
diff changeset
704 int_at_put(cbci + 1, delta);
a61af66fc99e Initial load
duke
parents:
diff changeset
705 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
706
a61af66fc99e Initial load
duke
parents:
diff changeset
707 }
a61af66fc99e Initial load
duke
parents:
diff changeset
708 case Bytecodes::_goto:
a61af66fc99e Initial load
duke
parents:
diff changeset
709 case Bytecodes::_jsr:
a61af66fc99e Initial load
duke
parents:
diff changeset
710 assert(ilen == 3, "check length");
a61af66fc99e Initial load
duke
parents:
diff changeset
711
a61af66fc99e Initial load
duke
parents:
diff changeset
712 if (!relocate_code(bci, 3, 2)) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
713 if (bc == Bytecodes::_goto)
a61af66fc99e Initial load
duke
parents:
diff changeset
714 code_at_put(bci, Bytecodes::_goto_w);
a61af66fc99e Initial load
duke
parents:
diff changeset
715 else
a61af66fc99e Initial load
duke
parents:
diff changeset
716 code_at_put(bci, Bytecodes::_jsr_w);
a61af66fc99e Initial load
duke
parents:
diff changeset
717
a61af66fc99e Initial load
duke
parents:
diff changeset
718 // If it's a forward jump, add 2 for the widening.
a61af66fc99e Initial load
duke
parents:
diff changeset
719 if (delta > 0) delta += 2;
a61af66fc99e Initial load
duke
parents:
diff changeset
720 int_at_put(bci + 1, delta);
a61af66fc99e Initial load
duke
parents:
diff changeset
721 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
722
a61af66fc99e Initial load
duke
parents:
diff changeset
723 default: ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
724 }
a61af66fc99e Initial load
duke
parents:
diff changeset
725
a61af66fc99e Initial load
duke
parents:
diff changeset
726 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
727 }
a61af66fc99e Initial load
duke
parents:
diff changeset
728
a61af66fc99e Initial load
duke
parents:
diff changeset
729 // handle lookup/table switch instructions. Called be ChangeSwitchPad class
a61af66fc99e Initial load
duke
parents:
diff changeset
730 bool Relocator::handle_switch_pad(int bci, int old_pad, bool is_lookup_switch) {
a61af66fc99e Initial load
duke
parents:
diff changeset
731 int ilen = rc_instr_len(bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
732 int new_pad = align(bci+1) - (bci+1);
a61af66fc99e Initial load
duke
parents:
diff changeset
733 int pad_delta = new_pad - old_pad;
a61af66fc99e Initial load
duke
parents:
diff changeset
734 if (pad_delta != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
735 int len;
a61af66fc99e Initial load
duke
parents:
diff changeset
736 if (!is_lookup_switch) {
a61af66fc99e Initial load
duke
parents:
diff changeset
737 int low = int_at(bci+1+old_pad+4);
a61af66fc99e Initial load
duke
parents:
diff changeset
738 int high = int_at(bci+1+old_pad+8);
a61af66fc99e Initial load
duke
parents:
diff changeset
739 len = high-low+1 + 3; // 3 for default, hi, lo.
a61af66fc99e Initial load
duke
parents:
diff changeset
740 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
741 int npairs = int_at(bci+1+old_pad+4);
a61af66fc99e Initial load
duke
parents:
diff changeset
742 len = npairs*2 + 2; // 2 for default, npairs.
a61af66fc99e Initial load
duke
parents:
diff changeset
743 }
a61af66fc99e Initial load
duke
parents:
diff changeset
744 // Because "relocateCode" does a "changeJumps" loop,
a61af66fc99e Initial load
duke
parents:
diff changeset
745 // which parses instructions to determine their length,
a61af66fc99e Initial load
duke
parents:
diff changeset
746 // we need to call that before messing with the current
a61af66fc99e Initial load
duke
parents:
diff changeset
747 // instruction. Since it may also overwrite the current
a61af66fc99e Initial load
duke
parents:
diff changeset
748 // instruction when moving down, remember the possibly
a61af66fc99e Initial load
duke
parents:
diff changeset
749 // overwritten part.
a61af66fc99e Initial load
duke
parents:
diff changeset
750
a61af66fc99e Initial load
duke
parents:
diff changeset
751 // Move the code following the instruction...
a61af66fc99e Initial load
duke
parents:
diff changeset
752 if (!relocate_code(bci, ilen, pad_delta)) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
753
a61af66fc99e Initial load
duke
parents:
diff changeset
754 if (pad_delta < 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
755 // Move the shrunken instruction down.
a61af66fc99e Initial load
duke
parents:
diff changeset
756 memmove(addr_at(bci + 1 + new_pad),
a61af66fc99e Initial load
duke
parents:
diff changeset
757 addr_at(bci + 1 + old_pad),
a61af66fc99e Initial load
duke
parents:
diff changeset
758 len * 4 + pad_delta);
a61af66fc99e Initial load
duke
parents:
diff changeset
759 memmove(addr_at(bci + 1 + new_pad + len*4 + pad_delta),
a61af66fc99e Initial load
duke
parents:
diff changeset
760 _overwrite, -pad_delta);
a61af66fc99e Initial load
duke
parents:
diff changeset
761 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
762 assert(pad_delta > 0, "check");
a61af66fc99e Initial load
duke
parents:
diff changeset
763 // Move the expanded instruction up.
a61af66fc99e Initial load
duke
parents:
diff changeset
764 memmove(addr_at(bci +1 + new_pad),
a61af66fc99e Initial load
duke
parents:
diff changeset
765 addr_at(bci +1 + old_pad),
a61af66fc99e Initial load
duke
parents:
diff changeset
766 len * 4);
1877
a4c7fe54bf3f 6991315: RedefineClasses fails with java.lang.VerifyError
kamg
parents: 1552
diff changeset
767 memset(addr_at(bci + 1), 0, new_pad); // pad must be 0
0
a61af66fc99e Initial load
duke
parents:
diff changeset
768 }
a61af66fc99e Initial load
duke
parents:
diff changeset
769 }
a61af66fc99e Initial load
duke
parents:
diff changeset
770 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
771 }