annotate src/share/vm/ci/ciMethodBlocks.cpp @ 250:6ca61c728c2d

6712835: Server compiler fails with assertion (loop_count < K,"infinite loop in PhaseIterGVN::transform") Reviewed-by: kvn
author never
date Fri, 25 Jul 2008 11:32:56 -0700
parents d1605aabd0a1
children 194b8e3a2fc4
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: 26
diff changeset
2 * Copyright 2006-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 #include "incls/_precompiled.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
26 #include "incls/_ciMethodBlocks.cpp.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28 // ciMethodBlocks
a61af66fc99e Initial load
duke
parents:
diff changeset
29
a61af66fc99e Initial load
duke
parents:
diff changeset
30
a61af66fc99e Initial load
duke
parents:
diff changeset
31
a61af66fc99e Initial load
duke
parents:
diff changeset
32 ciBlock *ciMethodBlocks::block_containing(int bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
33 ciBlock *blk = _bci_to_block[bci];
a61af66fc99e Initial load
duke
parents:
diff changeset
34 return blk;
a61af66fc99e Initial load
duke
parents:
diff changeset
35 }
a61af66fc99e Initial load
duke
parents:
diff changeset
36
a61af66fc99e Initial load
duke
parents:
diff changeset
37 bool ciMethodBlocks::is_block_start(int bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
38 assert(bci >=0 && bci < _code_size, "valid bytecode range");
a61af66fc99e Initial load
duke
parents:
diff changeset
39 ciBlock *b = _bci_to_block[bci];
a61af66fc99e Initial load
duke
parents:
diff changeset
40 assert(b != NULL, "must have block for bytecode");
a61af66fc99e Initial load
duke
parents:
diff changeset
41 return b->start_bci() == bci;
a61af66fc99e Initial load
duke
parents:
diff changeset
42 }
a61af66fc99e Initial load
duke
parents:
diff changeset
43
a61af66fc99e Initial load
duke
parents:
diff changeset
44 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
45 // ciMethodBlocks::split_block_at
a61af66fc99e Initial load
duke
parents:
diff changeset
46 //
a61af66fc99e Initial load
duke
parents:
diff changeset
47 // Split the block spanning bci into two separate ranges. The former
a61af66fc99e Initial load
duke
parents:
diff changeset
48 // block becomes the second half and a new range is created for the
a61af66fc99e Initial load
duke
parents:
diff changeset
49 // first half. Returns the range beginning at bci.
a61af66fc99e Initial load
duke
parents:
diff changeset
50 ciBlock *ciMethodBlocks::split_block_at(int bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
51 ciBlock *former_block = block_containing(bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
52 ciBlock *new_block = new(_arena) ciBlock(_method, _num_blocks++, this, former_block->start_bci());
a61af66fc99e Initial load
duke
parents:
diff changeset
53 _blocks->append(new_block);
a61af66fc99e Initial load
duke
parents:
diff changeset
54 assert(former_block != NULL, "must not be NULL");
a61af66fc99e Initial load
duke
parents:
diff changeset
55 new_block->set_limit_bci(bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
56 former_block->set_start_bci(bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
57 for (int pos=bci-1; pos >= 0; pos--) {
a61af66fc99e Initial load
duke
parents:
diff changeset
58 ciBlock *current_block = block_containing(pos);
a61af66fc99e Initial load
duke
parents:
diff changeset
59 if (current_block == former_block) {
a61af66fc99e Initial load
duke
parents:
diff changeset
60 // Replace it.
a61af66fc99e Initial load
duke
parents:
diff changeset
61 _bci_to_block[pos] = new_block;
a61af66fc99e Initial load
duke
parents:
diff changeset
62 } else if (current_block == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
63 // Non-bytecode start. Skip.
a61af66fc99e Initial load
duke
parents:
diff changeset
64 continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
65 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
66 // We are done with our backwards walk
a61af66fc99e Initial load
duke
parents:
diff changeset
67 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
68 }
a61af66fc99e Initial load
duke
parents:
diff changeset
69 }
26
0871d5cd64cd 6621084: ciMethodBlocks::split_block_at() is broken for methods with exception handler
kvn
parents: 0
diff changeset
70 // Move an exception handler information if needed.
0871d5cd64cd 6621084: ciMethodBlocks::split_block_at() is broken for methods with exception handler
kvn
parents: 0
diff changeset
71 if (former_block->is_handler()) {
0871d5cd64cd 6621084: ciMethodBlocks::split_block_at() is broken for methods with exception handler
kvn
parents: 0
diff changeset
72 int ex_start = former_block->ex_start_bci();
0871d5cd64cd 6621084: ciMethodBlocks::split_block_at() is broken for methods with exception handler
kvn
parents: 0
diff changeset
73 int ex_end = former_block->ex_limit_bci();
0871d5cd64cd 6621084: ciMethodBlocks::split_block_at() is broken for methods with exception handler
kvn
parents: 0
diff changeset
74 new_block->set_exception_range(ex_start, ex_end);
0871d5cd64cd 6621084: ciMethodBlocks::split_block_at() is broken for methods with exception handler
kvn
parents: 0
diff changeset
75 // Clear information in former_block.
0871d5cd64cd 6621084: ciMethodBlocks::split_block_at() is broken for methods with exception handler
kvn
parents: 0
diff changeset
76 former_block->clear_exception_handler();
0871d5cd64cd 6621084: ciMethodBlocks::split_block_at() is broken for methods with exception handler
kvn
parents: 0
diff changeset
77 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
78 return former_block;
a61af66fc99e Initial load
duke
parents:
diff changeset
79 }
a61af66fc99e Initial load
duke
parents:
diff changeset
80
a61af66fc99e Initial load
duke
parents:
diff changeset
81 ciBlock *ciMethodBlocks::make_block_at(int bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
82 ciBlock *cb = block_containing(bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
83 if (cb == NULL ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
84 // This is our first time visiting this bytecode. Create
a61af66fc99e Initial load
duke
parents:
diff changeset
85 // a fresh block and assign it this starting point.
a61af66fc99e Initial load
duke
parents:
diff changeset
86 ciBlock *nb = new(_arena) ciBlock(_method, _num_blocks++, this, bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
87 _blocks->append(nb);
a61af66fc99e Initial load
duke
parents:
diff changeset
88 _bci_to_block[bci] = nb;
a61af66fc99e Initial load
duke
parents:
diff changeset
89 return nb;
a61af66fc99e Initial load
duke
parents:
diff changeset
90 } else if (cb->start_bci() == bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
91 // The block begins at bci. Simply return it.
a61af66fc99e Initial load
duke
parents:
diff changeset
92 return cb;
a61af66fc99e Initial load
duke
parents:
diff changeset
93 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
94 // We have already created a block containing bci but
a61af66fc99e Initial load
duke
parents:
diff changeset
95 // not starting at bci. This existing block needs to
a61af66fc99e Initial load
duke
parents:
diff changeset
96 // be split into two.
a61af66fc99e Initial load
duke
parents:
diff changeset
97 return split_block_at(bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
98 }
a61af66fc99e Initial load
duke
parents:
diff changeset
99 }
a61af66fc99e Initial load
duke
parents:
diff changeset
100
a61af66fc99e Initial load
duke
parents:
diff changeset
101 void ciMethodBlocks::do_analysis() {
a61af66fc99e Initial load
duke
parents:
diff changeset
102 ciBytecodeStream s(_method);
a61af66fc99e Initial load
duke
parents:
diff changeset
103 ciBlock *cur_block = block_containing(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
104 int limit_bci = _method->code_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
105
a61af66fc99e Initial load
duke
parents:
diff changeset
106 while (s.next() != ciBytecodeStream::EOBC()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
107 int bci = s.cur_bci();
a61af66fc99e Initial load
duke
parents:
diff changeset
108 // Determine if a new block has been made at the current bci. If
a61af66fc99e Initial load
duke
parents:
diff changeset
109 // this block differs from our current range, switch to the new
a61af66fc99e Initial load
duke
parents:
diff changeset
110 // one and end the old one.
a61af66fc99e Initial load
duke
parents:
diff changeset
111 assert(cur_block != NULL, "must always have a current block");
a61af66fc99e Initial load
duke
parents:
diff changeset
112 ciBlock *new_block = block_containing(bci);
26
0871d5cd64cd 6621084: ciMethodBlocks::split_block_at() is broken for methods with exception handler
kvn
parents: 0
diff changeset
113 if (new_block == NULL || new_block == cur_block) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
114 // We have not marked this bci as the start of a new block.
a61af66fc99e Initial load
duke
parents:
diff changeset
115 // Keep interpreting the current_range.
a61af66fc99e Initial load
duke
parents:
diff changeset
116 _bci_to_block[bci] = cur_block;
a61af66fc99e Initial load
duke
parents:
diff changeset
117 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
118 cur_block->set_limit_bci(bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
119 cur_block = new_block;
a61af66fc99e Initial load
duke
parents:
diff changeset
120 }
a61af66fc99e Initial load
duke
parents:
diff changeset
121
a61af66fc99e Initial load
duke
parents:
diff changeset
122 switch (s.cur_bc()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
123 case Bytecodes::_ifeq :
a61af66fc99e Initial load
duke
parents:
diff changeset
124 case Bytecodes::_ifne :
a61af66fc99e Initial load
duke
parents:
diff changeset
125 case Bytecodes::_iflt :
a61af66fc99e Initial load
duke
parents:
diff changeset
126 case Bytecodes::_ifge :
a61af66fc99e Initial load
duke
parents:
diff changeset
127 case Bytecodes::_ifgt :
a61af66fc99e Initial load
duke
parents:
diff changeset
128 case Bytecodes::_ifle :
a61af66fc99e Initial load
duke
parents:
diff changeset
129 case Bytecodes::_if_icmpeq :
a61af66fc99e Initial load
duke
parents:
diff changeset
130 case Bytecodes::_if_icmpne :
a61af66fc99e Initial load
duke
parents:
diff changeset
131 case Bytecodes::_if_icmplt :
a61af66fc99e Initial load
duke
parents:
diff changeset
132 case Bytecodes::_if_icmpge :
a61af66fc99e Initial load
duke
parents:
diff changeset
133 case Bytecodes::_if_icmpgt :
a61af66fc99e Initial load
duke
parents:
diff changeset
134 case Bytecodes::_if_icmple :
a61af66fc99e Initial load
duke
parents:
diff changeset
135 case Bytecodes::_if_acmpeq :
a61af66fc99e Initial load
duke
parents:
diff changeset
136 case Bytecodes::_if_acmpne :
a61af66fc99e Initial load
duke
parents:
diff changeset
137 case Bytecodes::_ifnull :
a61af66fc99e Initial load
duke
parents:
diff changeset
138 case Bytecodes::_ifnonnull :
a61af66fc99e Initial load
duke
parents:
diff changeset
139 {
a61af66fc99e Initial load
duke
parents:
diff changeset
140 cur_block->set_control_bci(bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
141 ciBlock *fall_through = make_block_at(s.next_bci());
a61af66fc99e Initial load
duke
parents:
diff changeset
142 int dest_bci = s.get_dest();
a61af66fc99e Initial load
duke
parents:
diff changeset
143 ciBlock *dest = make_block_at(dest_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
144 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
145 }
a61af66fc99e Initial load
duke
parents:
diff changeset
146
a61af66fc99e Initial load
duke
parents:
diff changeset
147 case Bytecodes::_goto :
a61af66fc99e Initial load
duke
parents:
diff changeset
148 {
a61af66fc99e Initial load
duke
parents:
diff changeset
149 cur_block->set_control_bci(bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
150 if (s.next_bci() < limit_bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
151 (void) make_block_at(s.next_bci());
a61af66fc99e Initial load
duke
parents:
diff changeset
152 }
a61af66fc99e Initial load
duke
parents:
diff changeset
153 int dest_bci = s.get_dest();
a61af66fc99e Initial load
duke
parents:
diff changeset
154 ciBlock *dest = make_block_at(dest_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
155 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
156 }
a61af66fc99e Initial load
duke
parents:
diff changeset
157
a61af66fc99e Initial load
duke
parents:
diff changeset
158 case Bytecodes::_jsr :
a61af66fc99e Initial load
duke
parents:
diff changeset
159 {
a61af66fc99e Initial load
duke
parents:
diff changeset
160 cur_block->set_control_bci(bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
161 ciBlock *ret = make_block_at(s.next_bci());
a61af66fc99e Initial load
duke
parents:
diff changeset
162 int dest_bci = s.get_dest();
a61af66fc99e Initial load
duke
parents:
diff changeset
163 ciBlock *dest = make_block_at(dest_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
164 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
165 }
a61af66fc99e Initial load
duke
parents:
diff changeset
166
a61af66fc99e Initial load
duke
parents:
diff changeset
167 case Bytecodes::_tableswitch :
a61af66fc99e Initial load
duke
parents:
diff changeset
168 {
a61af66fc99e Initial load
duke
parents:
diff changeset
169 cur_block->set_control_bci(bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
170 Bytecode_tableswitch* switch_ = Bytecode_tableswitch_at(s.cur_bcp());
a61af66fc99e Initial load
duke
parents:
diff changeset
171 int len = switch_->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
172 ciBlock *dest;
a61af66fc99e Initial load
duke
parents:
diff changeset
173 int dest_bci;
a61af66fc99e Initial load
duke
parents:
diff changeset
174 for (int i = 0; i < len; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
175 dest_bci = s.cur_bci() + switch_->dest_offset_at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
176 dest = make_block_at(dest_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
177 }
a61af66fc99e Initial load
duke
parents:
diff changeset
178 dest_bci = s.cur_bci() + switch_->default_offset();
a61af66fc99e Initial load
duke
parents:
diff changeset
179 make_block_at(dest_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
180 if (s.next_bci() < limit_bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
181 dest = make_block_at(s.next_bci());
a61af66fc99e Initial load
duke
parents:
diff changeset
182 }
a61af66fc99e Initial load
duke
parents:
diff changeset
183 }
a61af66fc99e Initial load
duke
parents:
diff changeset
184 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
185
a61af66fc99e Initial load
duke
parents:
diff changeset
186 case Bytecodes::_lookupswitch:
a61af66fc99e Initial load
duke
parents:
diff changeset
187 {
a61af66fc99e Initial load
duke
parents:
diff changeset
188 cur_block->set_control_bci(bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
189 Bytecode_lookupswitch* switch_ = Bytecode_lookupswitch_at(s.cur_bcp());
a61af66fc99e Initial load
duke
parents:
diff changeset
190 int len = switch_->number_of_pairs();
a61af66fc99e Initial load
duke
parents:
diff changeset
191 ciBlock *dest;
a61af66fc99e Initial load
duke
parents:
diff changeset
192 int dest_bci;
a61af66fc99e Initial load
duke
parents:
diff changeset
193 for (int i = 0; i < len; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
194 dest_bci = s.cur_bci() + switch_->pair_at(i)->offset();
a61af66fc99e Initial load
duke
parents:
diff changeset
195 dest = make_block_at(dest_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
196 }
a61af66fc99e Initial load
duke
parents:
diff changeset
197 dest_bci = s.cur_bci() + switch_->default_offset();
a61af66fc99e Initial load
duke
parents:
diff changeset
198 dest = make_block_at(dest_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
199 if (s.next_bci() < limit_bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
200 dest = make_block_at(s.next_bci());
a61af66fc99e Initial load
duke
parents:
diff changeset
201 }
a61af66fc99e Initial load
duke
parents:
diff changeset
202 }
a61af66fc99e Initial load
duke
parents:
diff changeset
203 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
204
a61af66fc99e Initial load
duke
parents:
diff changeset
205 case Bytecodes::_goto_w :
a61af66fc99e Initial load
duke
parents:
diff changeset
206 {
a61af66fc99e Initial load
duke
parents:
diff changeset
207 cur_block->set_control_bci(bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
208 if (s.next_bci() < limit_bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
209 (void) make_block_at(s.next_bci());
a61af66fc99e Initial load
duke
parents:
diff changeset
210 }
a61af66fc99e Initial load
duke
parents:
diff changeset
211 int dest_bci = s.get_far_dest();
a61af66fc99e Initial load
duke
parents:
diff changeset
212 ciBlock *dest = make_block_at(dest_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
213 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
214 }
a61af66fc99e Initial load
duke
parents:
diff changeset
215
a61af66fc99e Initial load
duke
parents:
diff changeset
216 case Bytecodes::_jsr_w :
a61af66fc99e Initial load
duke
parents:
diff changeset
217 {
a61af66fc99e Initial load
duke
parents:
diff changeset
218 cur_block->set_control_bci(bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
219 ciBlock *ret = make_block_at(s.next_bci());
a61af66fc99e Initial load
duke
parents:
diff changeset
220 int dest_bci = s.get_far_dest();
a61af66fc99e Initial load
duke
parents:
diff changeset
221 ciBlock *dest = make_block_at(dest_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
222 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
223 }
a61af66fc99e Initial load
duke
parents:
diff changeset
224
a61af66fc99e Initial load
duke
parents:
diff changeset
225 case Bytecodes::_athrow :
a61af66fc99e Initial load
duke
parents:
diff changeset
226 cur_block->set_may_throw();
a61af66fc99e Initial load
duke
parents:
diff changeset
227 // fall-through
a61af66fc99e Initial load
duke
parents:
diff changeset
228 case Bytecodes::_ret :
a61af66fc99e Initial load
duke
parents:
diff changeset
229 case Bytecodes::_ireturn :
a61af66fc99e Initial load
duke
parents:
diff changeset
230 case Bytecodes::_lreturn :
a61af66fc99e Initial load
duke
parents:
diff changeset
231 case Bytecodes::_freturn :
a61af66fc99e Initial load
duke
parents:
diff changeset
232 case Bytecodes::_dreturn :
a61af66fc99e Initial load
duke
parents:
diff changeset
233 case Bytecodes::_areturn :
a61af66fc99e Initial load
duke
parents:
diff changeset
234 case Bytecodes::_return :
a61af66fc99e Initial load
duke
parents:
diff changeset
235 cur_block->set_control_bci(bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
236 if (s.next_bci() < limit_bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
237 (void) make_block_at(s.next_bci());
a61af66fc99e Initial load
duke
parents:
diff changeset
238 }
a61af66fc99e Initial load
duke
parents:
diff changeset
239 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
240 }
a61af66fc99e Initial load
duke
parents:
diff changeset
241 }
a61af66fc99e Initial load
duke
parents:
diff changeset
242 // End the last block
a61af66fc99e Initial load
duke
parents:
diff changeset
243 cur_block->set_limit_bci(limit_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
244 }
a61af66fc99e Initial load
duke
parents:
diff changeset
245
a61af66fc99e Initial load
duke
parents:
diff changeset
246 ciMethodBlocks::ciMethodBlocks(Arena *arena, ciMethod *meth): _method(meth),
a61af66fc99e Initial load
duke
parents:
diff changeset
247 _arena(arena), _num_blocks(0), _code_size(meth->code_size()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
248 int block_estimate = _code_size / 8;
a61af66fc99e Initial load
duke
parents:
diff changeset
249
a61af66fc99e Initial load
duke
parents:
diff changeset
250 _blocks = new(_arena) GrowableArray<ciBlock *>(block_estimate);
a61af66fc99e Initial load
duke
parents:
diff changeset
251 int b2bsize = _code_size * sizeof(ciBlock **);
a61af66fc99e Initial load
duke
parents:
diff changeset
252 _bci_to_block = (ciBlock **) arena->Amalloc(b2bsize);
a61af66fc99e Initial load
duke
parents:
diff changeset
253 Copy::zero_to_words((HeapWord*) _bci_to_block, b2bsize / sizeof(HeapWord));
a61af66fc99e Initial load
duke
parents:
diff changeset
254
a61af66fc99e Initial load
duke
parents:
diff changeset
255 // create initial block covering the entire method
a61af66fc99e Initial load
duke
parents:
diff changeset
256 ciBlock *b = new(arena) ciBlock(_method, _num_blocks++, this, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
257 _blocks->append(b);
a61af66fc99e Initial load
duke
parents:
diff changeset
258 _bci_to_block[0] = b;
a61af66fc99e Initial load
duke
parents:
diff changeset
259
a61af66fc99e Initial load
duke
parents:
diff changeset
260 // create blocks for exception handlers
a61af66fc99e Initial load
duke
parents:
diff changeset
261 if (meth->has_exception_handlers()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
262 for(ciExceptionHandlerStream str(meth); !str.is_done(); str.next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
263 ciExceptionHandler* handler = str.handler();
a61af66fc99e Initial load
duke
parents:
diff changeset
264 ciBlock *eb = make_block_at(handler->handler_bci());
26
0871d5cd64cd 6621084: ciMethodBlocks::split_block_at() is broken for methods with exception handler
kvn
parents: 0
diff changeset
265 //
0871d5cd64cd 6621084: ciMethodBlocks::split_block_at() is broken for methods with exception handler
kvn
parents: 0
diff changeset
266 // Several exception handlers can have the same handler_bci:
0871d5cd64cd 6621084: ciMethodBlocks::split_block_at() is broken for methods with exception handler
kvn
parents: 0
diff changeset
267 //
0871d5cd64cd 6621084: ciMethodBlocks::split_block_at() is broken for methods with exception handler
kvn
parents: 0
diff changeset
268 // try {
0871d5cd64cd 6621084: ciMethodBlocks::split_block_at() is broken for methods with exception handler
kvn
parents: 0
diff changeset
269 // if (a.foo(b) < 0) {
0871d5cd64cd 6621084: ciMethodBlocks::split_block_at() is broken for methods with exception handler
kvn
parents: 0
diff changeset
270 // return a.error();
0871d5cd64cd 6621084: ciMethodBlocks::split_block_at() is broken for methods with exception handler
kvn
parents: 0
diff changeset
271 // }
0871d5cd64cd 6621084: ciMethodBlocks::split_block_at() is broken for methods with exception handler
kvn
parents: 0
diff changeset
272 // return CoderResult.UNDERFLOW;
0871d5cd64cd 6621084: ciMethodBlocks::split_block_at() is broken for methods with exception handler
kvn
parents: 0
diff changeset
273 // } finally {
0871d5cd64cd 6621084: ciMethodBlocks::split_block_at() is broken for methods with exception handler
kvn
parents: 0
diff changeset
274 // a.position(b);
0871d5cd64cd 6621084: ciMethodBlocks::split_block_at() is broken for methods with exception handler
kvn
parents: 0
diff changeset
275 // }
0871d5cd64cd 6621084: ciMethodBlocks::split_block_at() is broken for methods with exception handler
kvn
parents: 0
diff changeset
276 //
0871d5cd64cd 6621084: ciMethodBlocks::split_block_at() is broken for methods with exception handler
kvn
parents: 0
diff changeset
277 // The try block above is divided into 2 exception blocks
0871d5cd64cd 6621084: ciMethodBlocks::split_block_at() is broken for methods with exception handler
kvn
parents: 0
diff changeset
278 // separated by 'areturn' bci.
0871d5cd64cd 6621084: ciMethodBlocks::split_block_at() is broken for methods with exception handler
kvn
parents: 0
diff changeset
279 //
0
a61af66fc99e Initial load
duke
parents:
diff changeset
280 int ex_start = handler->start();
a61af66fc99e Initial load
duke
parents:
diff changeset
281 int ex_end = handler->limit();
26
0871d5cd64cd 6621084: ciMethodBlocks::split_block_at() is broken for methods with exception handler
kvn
parents: 0
diff changeset
282 if (eb->is_handler()) {
0871d5cd64cd 6621084: ciMethodBlocks::split_block_at() is broken for methods with exception handler
kvn
parents: 0
diff changeset
283 // Extend old handler exception range to cover additional range.
0871d5cd64cd 6621084: ciMethodBlocks::split_block_at() is broken for methods with exception handler
kvn
parents: 0
diff changeset
284 int old_ex_start = eb->ex_start_bci();
0871d5cd64cd 6621084: ciMethodBlocks::split_block_at() is broken for methods with exception handler
kvn
parents: 0
diff changeset
285 int old_ex_end = eb->ex_limit_bci();
0871d5cd64cd 6621084: ciMethodBlocks::split_block_at() is broken for methods with exception handler
kvn
parents: 0
diff changeset
286 if (ex_start > old_ex_start)
0871d5cd64cd 6621084: ciMethodBlocks::split_block_at() is broken for methods with exception handler
kvn
parents: 0
diff changeset
287 ex_start = old_ex_start;
0871d5cd64cd 6621084: ciMethodBlocks::split_block_at() is broken for methods with exception handler
kvn
parents: 0
diff changeset
288 if (ex_end < old_ex_end)
0871d5cd64cd 6621084: ciMethodBlocks::split_block_at() is broken for methods with exception handler
kvn
parents: 0
diff changeset
289 ex_end = old_ex_end;
0871d5cd64cd 6621084: ciMethodBlocks::split_block_at() is broken for methods with exception handler
kvn
parents: 0
diff changeset
290 eb->clear_exception_handler(); // Reset exception information
0871d5cd64cd 6621084: ciMethodBlocks::split_block_at() is broken for methods with exception handler
kvn
parents: 0
diff changeset
291 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
292 eb->set_exception_range(ex_start, ex_end);
a61af66fc99e Initial load
duke
parents:
diff changeset
293 // ensure a block at the start of exception range and start of following code
a61af66fc99e Initial load
duke
parents:
diff changeset
294 (void) make_block_at(ex_start);
a61af66fc99e Initial load
duke
parents:
diff changeset
295 if (ex_end < _code_size)
a61af66fc99e Initial load
duke
parents:
diff changeset
296 (void) make_block_at(ex_end);
a61af66fc99e Initial load
duke
parents:
diff changeset
297 }
a61af66fc99e Initial load
duke
parents:
diff changeset
298 }
a61af66fc99e Initial load
duke
parents:
diff changeset
299
a61af66fc99e Initial load
duke
parents:
diff changeset
300 // scan the bytecodes and identify blocks
a61af66fc99e Initial load
duke
parents:
diff changeset
301 do_analysis();
a61af66fc99e Initial load
duke
parents:
diff changeset
302
a61af66fc99e Initial load
duke
parents:
diff changeset
303 // mark blocks that have exception handlers
a61af66fc99e Initial load
duke
parents:
diff changeset
304 if (meth->has_exception_handlers()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
305 for(ciExceptionHandlerStream str(meth); !str.is_done(); str.next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
306 ciExceptionHandler* handler = str.handler();
a61af66fc99e Initial load
duke
parents:
diff changeset
307 int ex_start = handler->start();
a61af66fc99e Initial load
duke
parents:
diff changeset
308 int ex_end = handler->limit();
a61af66fc99e Initial load
duke
parents:
diff changeset
309
a61af66fc99e Initial load
duke
parents:
diff changeset
310 int bci = ex_start;
a61af66fc99e Initial load
duke
parents:
diff changeset
311 while (bci < ex_end) {
a61af66fc99e Initial load
duke
parents:
diff changeset
312 ciBlock *b = block_containing(bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
313 b->set_has_handler();
a61af66fc99e Initial load
duke
parents:
diff changeset
314 bci = b->limit_bci();
a61af66fc99e Initial load
duke
parents:
diff changeset
315 }
a61af66fc99e Initial load
duke
parents:
diff changeset
316 }
a61af66fc99e Initial load
duke
parents:
diff changeset
317 }
a61af66fc99e Initial load
duke
parents:
diff changeset
318 }
a61af66fc99e Initial load
duke
parents:
diff changeset
319
a61af66fc99e Initial load
duke
parents:
diff changeset
320 void ciMethodBlocks::clear_processed() {
a61af66fc99e Initial load
duke
parents:
diff changeset
321 for (int i = 0; i < _blocks->length(); i++)
a61af66fc99e Initial load
duke
parents:
diff changeset
322 _blocks->at(i)->clear_processed();
a61af66fc99e Initial load
duke
parents:
diff changeset
323 }
a61af66fc99e Initial load
duke
parents:
diff changeset
324
a61af66fc99e Initial load
duke
parents:
diff changeset
325 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
326 void ciMethodBlocks::dump() {
a61af66fc99e Initial load
duke
parents:
diff changeset
327 tty->print("---- blocks for method: ");
a61af66fc99e Initial load
duke
parents:
diff changeset
328 _method->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
329 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
330 for (int i = 0; i < _blocks->length(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
331 tty->print(" B%d: ", i); _blocks->at(i)->dump();
a61af66fc99e Initial load
duke
parents:
diff changeset
332 }
a61af66fc99e Initial load
duke
parents:
diff changeset
333 }
a61af66fc99e Initial load
duke
parents:
diff changeset
334 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
335
a61af66fc99e Initial load
duke
parents:
diff changeset
336
a61af66fc99e Initial load
duke
parents:
diff changeset
337 ciBlock::ciBlock(ciMethod *method, int index, ciMethodBlocks *mb, int start_bci) :
a61af66fc99e Initial load
duke
parents:
diff changeset
338 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
339 _method(method),
a61af66fc99e Initial load
duke
parents:
diff changeset
340 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
341 _idx(index), _flags(0), _start_bci(start_bci), _limit_bci(-1), _control_bci(fall_through_bci),
a61af66fc99e Initial load
duke
parents:
diff changeset
342 _ex_start_bci(-1), _ex_limit_bci(-1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
343 }
a61af66fc99e Initial load
duke
parents:
diff changeset
344
a61af66fc99e Initial load
duke
parents:
diff changeset
345 void ciBlock::set_exception_range(int start_bci, int limit_bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
346 assert(limit_bci >= start_bci, "valid range");
26
0871d5cd64cd 6621084: ciMethodBlocks::split_block_at() is broken for methods with exception handler
kvn
parents: 0
diff changeset
347 assert(!is_handler() && _ex_start_bci == -1 && _ex_limit_bci == -1, "must not be handler");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
348 _ex_start_bci = start_bci;
a61af66fc99e Initial load
duke
parents:
diff changeset
349 _ex_limit_bci = limit_bci;
26
0871d5cd64cd 6621084: ciMethodBlocks::split_block_at() is broken for methods with exception handler
kvn
parents: 0
diff changeset
350 set_handler();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
351 }
a61af66fc99e Initial load
duke
parents:
diff changeset
352
a61af66fc99e Initial load
duke
parents:
diff changeset
353 #ifndef PRODUCT
250
6ca61c728c2d 6712835: Server compiler fails with assertion (loop_count < K,"infinite loop in PhaseIterGVN::transform")
never
parents: 196
diff changeset
354 static const char *flagnames[] = {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
355 "Processed",
a61af66fc99e Initial load
duke
parents:
diff changeset
356 "Handler",
a61af66fc99e Initial load
duke
parents:
diff changeset
357 "MayThrow",
a61af66fc99e Initial load
duke
parents:
diff changeset
358 "Jsr",
a61af66fc99e Initial load
duke
parents:
diff changeset
359 "Ret",
a61af66fc99e Initial load
duke
parents:
diff changeset
360 "RetTarget",
a61af66fc99e Initial load
duke
parents:
diff changeset
361 "HasHandler",
a61af66fc99e Initial load
duke
parents:
diff changeset
362 };
a61af66fc99e Initial load
duke
parents:
diff changeset
363
a61af66fc99e Initial load
duke
parents:
diff changeset
364 void ciBlock::dump() {
a61af66fc99e Initial load
duke
parents:
diff changeset
365 tty->print(" [%d .. %d), {", _start_bci, _limit_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
366 for (int i = 0; i < 8; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
367 if ((_flags & (1 << i)) != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
368 tty->print(" %s", flagnames[i]);
a61af66fc99e Initial load
duke
parents:
diff changeset
369 }
a61af66fc99e Initial load
duke
parents:
diff changeset
370 }
a61af66fc99e Initial load
duke
parents:
diff changeset
371 tty->print(" ]");
a61af66fc99e Initial load
duke
parents:
diff changeset
372 if (is_handler())
a61af66fc99e Initial load
duke
parents:
diff changeset
373 tty->print(" handles(%d..%d)", _ex_start_bci, _ex_limit_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
374 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
375 }
a61af66fc99e Initial load
duke
parents:
diff changeset
376
a61af66fc99e Initial load
duke
parents:
diff changeset
377 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
378 // ciBlock::print_on
a61af66fc99e Initial load
duke
parents:
diff changeset
379 void ciBlock::print_on(outputStream* st) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
380 st->print_cr("--------------------------------------------------------");
a61af66fc99e Initial load
duke
parents:
diff changeset
381 st->print ("ciBlock [%d - %d) control : ", start_bci(), limit_bci());
a61af66fc99e Initial load
duke
parents:
diff changeset
382 if (control_bci() == fall_through_bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
383 st->print_cr("%d:fall through", limit_bci());
a61af66fc99e Initial load
duke
parents:
diff changeset
384 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
385 st->print_cr("%d:%s", control_bci(),
a61af66fc99e Initial load
duke
parents:
diff changeset
386 Bytecodes::name(method()->java_code_at_bci(control_bci())));
a61af66fc99e Initial load
duke
parents:
diff changeset
387 }
a61af66fc99e Initial load
duke
parents:
diff changeset
388
a61af66fc99e Initial load
duke
parents:
diff changeset
389 if (Verbose || WizardMode) {
a61af66fc99e Initial load
duke
parents:
diff changeset
390 method()->print_codes_on(start_bci(), limit_bci(), st);
a61af66fc99e Initial load
duke
parents:
diff changeset
391 }
a61af66fc99e Initial load
duke
parents:
diff changeset
392 }
a61af66fc99e Initial load
duke
parents:
diff changeset
393 #endif