annotate src/share/vm/code/exceptionHandlerTable.cpp @ 1490:f03d0a26bf83

6888954: argument formatting for assert() and friends Reviewed-by: kvn, twisti, apetrusenko, never, dcubed
author jcoomes
date Thu, 22 Apr 2010 13:23:15 -0700
parents a61af66fc99e
children c18cbe5936b8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
2 * Copyright 1998-2005 Sun Microsystems, Inc. All Rights Reserved.
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/_exceptionHandlerTable.cpp.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28 void ExceptionHandlerTable::add_entry(HandlerTableEntry entry) {
a61af66fc99e Initial load
duke
parents:
diff changeset
29 _nesting.check();
a61af66fc99e Initial load
duke
parents:
diff changeset
30 if (_length >= _size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
31 // not enough space => grow the table (amortized growth, double its size)
a61af66fc99e Initial load
duke
parents:
diff changeset
32 guarantee(_size > 0, "no space allocated => cannot grow the table since it is part of nmethod");
a61af66fc99e Initial load
duke
parents:
diff changeset
33 int new_size = _size * 2;
a61af66fc99e Initial load
duke
parents:
diff changeset
34 _table = REALLOC_RESOURCE_ARRAY(HandlerTableEntry, _table, _size, new_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
35 _size = new_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
36 }
a61af66fc99e Initial load
duke
parents:
diff changeset
37 assert(_length < _size, "sanity check");
a61af66fc99e Initial load
duke
parents:
diff changeset
38 _table[_length++] = entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
39 }
a61af66fc99e Initial load
duke
parents:
diff changeset
40
a61af66fc99e Initial load
duke
parents:
diff changeset
41
a61af66fc99e Initial load
duke
parents:
diff changeset
42 HandlerTableEntry* ExceptionHandlerTable::subtable_for(int catch_pco) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
43 int i = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
44 while (i < _length) {
a61af66fc99e Initial load
duke
parents:
diff changeset
45 HandlerTableEntry* t = _table + i;
a61af66fc99e Initial load
duke
parents:
diff changeset
46 if (t->pco() == catch_pco) {
a61af66fc99e Initial load
duke
parents:
diff changeset
47 // found subtable matching the catch_pco
a61af66fc99e Initial load
duke
parents:
diff changeset
48 return t;
a61af66fc99e Initial load
duke
parents:
diff changeset
49 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
50 // advance to next subtable
a61af66fc99e Initial load
duke
parents:
diff changeset
51 i += t->len() + 1; // +1 for header
a61af66fc99e Initial load
duke
parents:
diff changeset
52 }
a61af66fc99e Initial load
duke
parents:
diff changeset
53 }
a61af66fc99e Initial load
duke
parents:
diff changeset
54 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
55 }
a61af66fc99e Initial load
duke
parents:
diff changeset
56
a61af66fc99e Initial load
duke
parents:
diff changeset
57
a61af66fc99e Initial load
duke
parents:
diff changeset
58 ExceptionHandlerTable::ExceptionHandlerTable(int initial_size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
59 guarantee(initial_size > 0, "initial size must be > 0");
a61af66fc99e Initial load
duke
parents:
diff changeset
60 _table = NEW_RESOURCE_ARRAY(HandlerTableEntry, initial_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
61 _length = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
62 _size = initial_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
63 }
a61af66fc99e Initial load
duke
parents:
diff changeset
64
a61af66fc99e Initial load
duke
parents:
diff changeset
65
a61af66fc99e Initial load
duke
parents:
diff changeset
66 ExceptionHandlerTable::ExceptionHandlerTable(const nmethod* nm) {
a61af66fc99e Initial load
duke
parents:
diff changeset
67 _table = (HandlerTableEntry*)nm->handler_table_begin();
a61af66fc99e Initial load
duke
parents:
diff changeset
68 _length = nm->handler_table_size() / sizeof(HandlerTableEntry);
a61af66fc99e Initial load
duke
parents:
diff changeset
69 _size = 0; // no space allocated by ExeptionHandlerTable!
a61af66fc99e Initial load
duke
parents:
diff changeset
70 }
a61af66fc99e Initial load
duke
parents:
diff changeset
71
a61af66fc99e Initial load
duke
parents:
diff changeset
72
a61af66fc99e Initial load
duke
parents:
diff changeset
73 void ExceptionHandlerTable::add_subtable(
a61af66fc99e Initial load
duke
parents:
diff changeset
74 int catch_pco,
a61af66fc99e Initial load
duke
parents:
diff changeset
75 GrowableArray<intptr_t>* handler_bcis,
a61af66fc99e Initial load
duke
parents:
diff changeset
76 GrowableArray<intptr_t>* scope_depths_from_top_scope,
a61af66fc99e Initial load
duke
parents:
diff changeset
77 GrowableArray<intptr_t>* handler_pcos
a61af66fc99e Initial load
duke
parents:
diff changeset
78 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
79 assert(subtable_for(catch_pco) == NULL, "catch handlers for this catch_pco added twice");
a61af66fc99e Initial load
duke
parents:
diff changeset
80 assert(handler_bcis->length() == handler_pcos->length(), "bci & pc table have different length");
a61af66fc99e Initial load
duke
parents:
diff changeset
81 assert(scope_depths_from_top_scope == NULL || handler_bcis->length() == scope_depths_from_top_scope->length(), "bci & scope_depths table have different length");
a61af66fc99e Initial load
duke
parents:
diff changeset
82 if (handler_bcis->length() > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
83 // add subtable header
a61af66fc99e Initial load
duke
parents:
diff changeset
84 add_entry(HandlerTableEntry(handler_bcis->length(), catch_pco, 0));
a61af66fc99e Initial load
duke
parents:
diff changeset
85 // add individual entries
a61af66fc99e Initial load
duke
parents:
diff changeset
86 for (int i = 0; i < handler_bcis->length(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
87 intptr_t scope_depth = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
88 if (scope_depths_from_top_scope != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
89 scope_depth = scope_depths_from_top_scope->at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
90 }
a61af66fc99e Initial load
duke
parents:
diff changeset
91 add_entry(HandlerTableEntry(handler_bcis->at(i), handler_pcos->at(i), scope_depth));
a61af66fc99e Initial load
duke
parents:
diff changeset
92 assert(entry_for(catch_pco, handler_bcis->at(i), scope_depth)->pco() == handler_pcos->at(i), "entry not added correctly (1)");
a61af66fc99e Initial load
duke
parents:
diff changeset
93 assert(entry_for(catch_pco, handler_bcis->at(i), scope_depth)->scope_depth() == scope_depth, "entry not added correctly (2)");
a61af66fc99e Initial load
duke
parents:
diff changeset
94 }
a61af66fc99e Initial load
duke
parents:
diff changeset
95 }
a61af66fc99e Initial load
duke
parents:
diff changeset
96 }
a61af66fc99e Initial load
duke
parents:
diff changeset
97
a61af66fc99e Initial load
duke
parents:
diff changeset
98
a61af66fc99e Initial load
duke
parents:
diff changeset
99 void ExceptionHandlerTable::copy_to(nmethod* nm) {
a61af66fc99e Initial load
duke
parents:
diff changeset
100 assert(size_in_bytes() == nm->handler_table_size(), "size of space allocated in nmethod incorrect");
a61af66fc99e Initial load
duke
parents:
diff changeset
101 memmove(nm->handler_table_begin(), _table, size_in_bytes());
a61af66fc99e Initial load
duke
parents:
diff changeset
102 }
a61af66fc99e Initial load
duke
parents:
diff changeset
103
a61af66fc99e Initial load
duke
parents:
diff changeset
104
a61af66fc99e Initial load
duke
parents:
diff changeset
105 HandlerTableEntry* ExceptionHandlerTable::entry_for(int catch_pco, int handler_bci, int scope_depth) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
106 HandlerTableEntry* t = subtable_for(catch_pco);
a61af66fc99e Initial load
duke
parents:
diff changeset
107 if (t != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
108 int l = t->len();
a61af66fc99e Initial load
duke
parents:
diff changeset
109 while (l-- > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
110 t++;
a61af66fc99e Initial load
duke
parents:
diff changeset
111 if (t->bci() == handler_bci && t->scope_depth() == scope_depth) return t;
a61af66fc99e Initial load
duke
parents:
diff changeset
112 }
a61af66fc99e Initial load
duke
parents:
diff changeset
113 }
a61af66fc99e Initial load
duke
parents:
diff changeset
114 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
115 }
a61af66fc99e Initial load
duke
parents:
diff changeset
116
a61af66fc99e Initial load
duke
parents:
diff changeset
117
a61af66fc99e Initial load
duke
parents:
diff changeset
118 void ExceptionHandlerTable::print_subtable(HandlerTableEntry* t) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
119 int l = t->len();
a61af66fc99e Initial load
duke
parents:
diff changeset
120 tty->print_cr("catch_pco = %d (%d entries)", t->pco(), l);
a61af66fc99e Initial load
duke
parents:
diff changeset
121 while (l-- > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
122 t++;
a61af66fc99e Initial load
duke
parents:
diff changeset
123 tty->print_cr(" bci %d at scope depth %d -> pco %d", t->bci(), t->scope_depth(), t->pco());
a61af66fc99e Initial load
duke
parents:
diff changeset
124 }
a61af66fc99e Initial load
duke
parents:
diff changeset
125 }
a61af66fc99e Initial load
duke
parents:
diff changeset
126
a61af66fc99e Initial load
duke
parents:
diff changeset
127
a61af66fc99e Initial load
duke
parents:
diff changeset
128 void ExceptionHandlerTable::print() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
129 tty->print_cr("ExceptionHandlerTable (size = %d bytes)", size_in_bytes());
a61af66fc99e Initial load
duke
parents:
diff changeset
130 int i = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
131 while (i < _length) {
a61af66fc99e Initial load
duke
parents:
diff changeset
132 HandlerTableEntry* t = _table + i;
a61af66fc99e Initial load
duke
parents:
diff changeset
133 print_subtable(t);
a61af66fc99e Initial load
duke
parents:
diff changeset
134 // advance to next subtable
a61af66fc99e Initial load
duke
parents:
diff changeset
135 i += t->len() + 1; // +1 for header
a61af66fc99e Initial load
duke
parents:
diff changeset
136 }
a61af66fc99e Initial load
duke
parents:
diff changeset
137 }
a61af66fc99e Initial load
duke
parents:
diff changeset
138
a61af66fc99e Initial load
duke
parents:
diff changeset
139 void ExceptionHandlerTable::print_subtable_for(int catch_pco) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
140 HandlerTableEntry* subtable = subtable_for(catch_pco);
a61af66fc99e Initial load
duke
parents:
diff changeset
141
a61af66fc99e Initial load
duke
parents:
diff changeset
142 if( subtable != NULL ) { print_subtable( subtable ); }
a61af66fc99e Initial load
duke
parents:
diff changeset
143 }
a61af66fc99e Initial load
duke
parents:
diff changeset
144
a61af66fc99e Initial load
duke
parents:
diff changeset
145 // ----------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
146 // Implicit null exception tables. Maps an exception PC offset to a
a61af66fc99e Initial load
duke
parents:
diff changeset
147 // continuation PC offset. During construction it's a variable sized
a61af66fc99e Initial load
duke
parents:
diff changeset
148 // array with a max size and current length. When stored inside an
a61af66fc99e Initial load
duke
parents:
diff changeset
149 // nmethod a zero length table takes no space. This is detected by
a61af66fc99e Initial load
duke
parents:
diff changeset
150 // nul_chk_table_size() == 0. Otherwise the table has a length word
a61af66fc99e Initial load
duke
parents:
diff changeset
151 // followed by pairs of <excp-offset, const-offset>.
a61af66fc99e Initial load
duke
parents:
diff changeset
152 void ImplicitExceptionTable::set_size( uint size ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
153 _size = size;
a61af66fc99e Initial load
duke
parents:
diff changeset
154 _data = NEW_RESOURCE_ARRAY(implicit_null_entry, (size*2));
a61af66fc99e Initial load
duke
parents:
diff changeset
155 _len = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
156 }
a61af66fc99e Initial load
duke
parents:
diff changeset
157
a61af66fc99e Initial load
duke
parents:
diff changeset
158 void ImplicitExceptionTable::append( uint exec_off, uint cont_off ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
159 assert( (sizeof(implicit_null_entry) >= 4) || (exec_off < 65535), "" );
a61af66fc99e Initial load
duke
parents:
diff changeset
160 assert( (sizeof(implicit_null_entry) >= 4) || (cont_off < 65535), "" );
a61af66fc99e Initial load
duke
parents:
diff changeset
161 uint l = len();
a61af66fc99e Initial load
duke
parents:
diff changeset
162 if (l == _size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
163 uint old_size_in_elements = _size*2;
a61af66fc99e Initial load
duke
parents:
diff changeset
164 if (_size == 0) _size = 4;
a61af66fc99e Initial load
duke
parents:
diff changeset
165 _size *= 2;
a61af66fc99e Initial load
duke
parents:
diff changeset
166 uint new_size_in_elements = _size*2;
a61af66fc99e Initial load
duke
parents:
diff changeset
167 _data = REALLOC_RESOURCE_ARRAY(uint, _data, old_size_in_elements, new_size_in_elements);
a61af66fc99e Initial load
duke
parents:
diff changeset
168 }
a61af66fc99e Initial load
duke
parents:
diff changeset
169 *(adr(l) ) = exec_off;
a61af66fc99e Initial load
duke
parents:
diff changeset
170 *(adr(l)+1) = cont_off;
a61af66fc99e Initial load
duke
parents:
diff changeset
171 _len = l+1;
a61af66fc99e Initial load
duke
parents:
diff changeset
172 };
a61af66fc99e Initial load
duke
parents:
diff changeset
173
a61af66fc99e Initial load
duke
parents:
diff changeset
174 uint ImplicitExceptionTable::at( uint exec_off ) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
175 uint l = len();
a61af66fc99e Initial load
duke
parents:
diff changeset
176 for( uint i=0; i<l; i++ )
a61af66fc99e Initial load
duke
parents:
diff changeset
177 if( *adr(i) == exec_off )
a61af66fc99e Initial load
duke
parents:
diff changeset
178 return *(adr(i)+1);
a61af66fc99e Initial load
duke
parents:
diff changeset
179 return 0; // Failed to find any execption offset
a61af66fc99e Initial load
duke
parents:
diff changeset
180 }
a61af66fc99e Initial load
duke
parents:
diff changeset
181
a61af66fc99e Initial load
duke
parents:
diff changeset
182 void ImplicitExceptionTable::print(address base) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
183 tty->print("{");
a61af66fc99e Initial load
duke
parents:
diff changeset
184 for( uint i=0; i<len(); i++ )
a61af66fc99e Initial load
duke
parents:
diff changeset
185 tty->print("< "INTPTR_FORMAT", "INTPTR_FORMAT" > ",base + *adr(i), base + *(adr(i)+1));
a61af66fc99e Initial load
duke
parents:
diff changeset
186 tty->print_cr("}");
a61af66fc99e Initial load
duke
parents:
diff changeset
187 }
a61af66fc99e Initial load
duke
parents:
diff changeset
188
a61af66fc99e Initial load
duke
parents:
diff changeset
189 ImplicitExceptionTable::ImplicitExceptionTable(const nmethod* nm) {
a61af66fc99e Initial load
duke
parents:
diff changeset
190 if (nm->nul_chk_table_size() == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
191 _len = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
192 _data = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
193 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
194 // the first word is the length if non-zero, so read it out and
a61af66fc99e Initial load
duke
parents:
diff changeset
195 // skip to the next word to get the table.
a61af66fc99e Initial load
duke
parents:
diff changeset
196 _data = (implicit_null_entry*)nm->nul_chk_table_begin();
a61af66fc99e Initial load
duke
parents:
diff changeset
197 _len = _data[0];
a61af66fc99e Initial load
duke
parents:
diff changeset
198 _data++;
a61af66fc99e Initial load
duke
parents:
diff changeset
199 }
a61af66fc99e Initial load
duke
parents:
diff changeset
200 _size = len();
a61af66fc99e Initial load
duke
parents:
diff changeset
201 assert(size_in_bytes() <= nm->nul_chk_table_size(), "size of space allocated in nmethod incorrect");
a61af66fc99e Initial load
duke
parents:
diff changeset
202 }
a61af66fc99e Initial load
duke
parents:
diff changeset
203
a61af66fc99e Initial load
duke
parents:
diff changeset
204 void ImplicitExceptionTable::copy_to( nmethod* nm ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
205 assert(size_in_bytes() <= nm->nul_chk_table_size(), "size of space allocated in nmethod incorrect");
a61af66fc99e Initial load
duke
parents:
diff changeset
206 if (len() != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
207 implicit_null_entry* nmdata = (implicit_null_entry*)nm->nul_chk_table_begin();
a61af66fc99e Initial load
duke
parents:
diff changeset
208 // store the length in the first uint
a61af66fc99e Initial load
duke
parents:
diff changeset
209 nmdata[0] = _len;
a61af66fc99e Initial load
duke
parents:
diff changeset
210 nmdata++;
a61af66fc99e Initial load
duke
parents:
diff changeset
211 // copy the table after the length
a61af66fc99e Initial load
duke
parents:
diff changeset
212 memmove( nmdata, _data, 2 * len() * sizeof(implicit_null_entry));
a61af66fc99e Initial load
duke
parents:
diff changeset
213 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
214 // zero length table takes zero bytes
a61af66fc99e Initial load
duke
parents:
diff changeset
215 assert(size_in_bytes() == 0, "bad size");
a61af66fc99e Initial load
duke
parents:
diff changeset
216 assert(nm->nul_chk_table_size() == 0, "bad size");
a61af66fc99e Initial load
duke
parents:
diff changeset
217 }
a61af66fc99e Initial load
duke
parents:
diff changeset
218 }
a61af66fc99e Initial load
duke
parents:
diff changeset
219
a61af66fc99e Initial load
duke
parents:
diff changeset
220 void ImplicitExceptionTable::verify(nmethod *nm) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
221 for (uint i = 0; i < len(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
222 if ((*adr(i) > (unsigned int)nm->code_size()) ||
a61af66fc99e Initial load
duke
parents:
diff changeset
223 (*(adr(i)+1) > (unsigned int)nm->code_size()))
1490
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 0
diff changeset
224 fatal(err_msg("Invalid offset in ImplicitExceptionTable at " PTR_FORMAT, _data));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
225 }
a61af66fc99e Initial load
duke
parents:
diff changeset
226 }