annotate src/share/vm/runtime/signature.cpp @ 18096:ca6d25be853b jdk8u25-b13

8044269: Analysis of archive files. Summary: Add checksum verification. Reviewed-by: iklam, dholmes, mschoene
author jiangli
date Tue, 12 Aug 2014 17:46:16 -0400
parents 78bbf4d43a14
children 52b4284cb496
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
17937
78bbf4d43a14 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 17467
diff changeset
2 * Copyright (c) 1997, 2014, 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: 1513
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1513
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: 1513
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: 1552
diff changeset
25 #include "precompiled.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #include "classfile/symbolTable.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27 #include "classfile/systemDictionary.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #include "memory/oopFactory.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29 #include "oops/instanceKlass.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
30 #include "oops/oop.inline.hpp"
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
31 #include "oops/symbol.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
32 #include "oops/typeArrayKlass.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
33 #include "runtime/signature.hpp"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
34
17937
78bbf4d43a14 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 17467
diff changeset
35 PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
0
a61af66fc99e Initial load
duke
parents:
diff changeset
36
a61af66fc99e Initial load
duke
parents:
diff changeset
37 // Implementation of SignatureIterator
a61af66fc99e Initial load
duke
parents:
diff changeset
38
a61af66fc99e Initial load
duke
parents:
diff changeset
39 // Signature syntax:
a61af66fc99e Initial load
duke
parents:
diff changeset
40 //
a61af66fc99e Initial load
duke
parents:
diff changeset
41 // Signature = "(" {Parameter} ")" ReturnType.
a61af66fc99e Initial load
duke
parents:
diff changeset
42 // Parameter = FieldType.
a61af66fc99e Initial load
duke
parents:
diff changeset
43 // ReturnType = FieldType | "V".
a61af66fc99e Initial load
duke
parents:
diff changeset
44 // FieldType = "B" | "C" | "D" | "F" | "I" | "J" | "S" | "Z" | "L" ClassName ";" | "[" FieldType.
a61af66fc99e Initial load
duke
parents:
diff changeset
45 // ClassName = string.
a61af66fc99e Initial load
duke
parents:
diff changeset
46
a61af66fc99e Initial load
duke
parents:
diff changeset
47
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
48 SignatureIterator::SignatureIterator(Symbol* signature) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
49 _signature = signature;
a61af66fc99e Initial load
duke
parents:
diff changeset
50 _parameter_index = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
51 }
a61af66fc99e Initial load
duke
parents:
diff changeset
52
a61af66fc99e Initial load
duke
parents:
diff changeset
53 void SignatureIterator::expect(char c) {
1490
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 0
diff changeset
54 if (_signature->byte_at(_index) != c) fatal(err_msg("expecting %c", c));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
55 _index++;
a61af66fc99e Initial load
duke
parents:
diff changeset
56 }
a61af66fc99e Initial load
duke
parents:
diff changeset
57
a61af66fc99e Initial load
duke
parents:
diff changeset
58
a61af66fc99e Initial load
duke
parents:
diff changeset
59 void SignatureIterator::skip_optional_size() {
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
60 Symbol* sig = _signature;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
61 char c = sig->byte_at(_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
62 while ('0' <= c && c <= '9') c = sig->byte_at(++_index);
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 int SignatureIterator::parse_type() {
a61af66fc99e Initial load
duke
parents:
diff changeset
67 // Note: This function could be simplified by using "return T_XXX_size;"
a61af66fc99e Initial load
duke
parents:
diff changeset
68 // instead of the assignment and the break statements. However, it
a61af66fc99e Initial load
duke
parents:
diff changeset
69 // seems that the product build for win32_i486 with MS VC++ 6.0 doesn't
a61af66fc99e Initial load
duke
parents:
diff changeset
70 // work (stack underflow for some tests) - this seems to be a VC++ 6.0
a61af66fc99e Initial load
duke
parents:
diff changeset
71 // compiler bug (was problem - gri 4/27/2000).
a61af66fc99e Initial load
duke
parents:
diff changeset
72 int size = -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
73 switch(_signature->byte_at(_index)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
74 case 'B': do_byte (); if (_parameter_index < 0 ) _return_type = T_BYTE;
a61af66fc99e Initial load
duke
parents:
diff changeset
75 _index++; size = T_BYTE_size ; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
76 case 'C': do_char (); if (_parameter_index < 0 ) _return_type = T_CHAR;
a61af66fc99e Initial load
duke
parents:
diff changeset
77 _index++; size = T_CHAR_size ; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
78 case 'D': do_double(); if (_parameter_index < 0 ) _return_type = T_DOUBLE;
a61af66fc99e Initial load
duke
parents:
diff changeset
79 _index++; size = T_DOUBLE_size ; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
80 case 'F': do_float (); if (_parameter_index < 0 ) _return_type = T_FLOAT;
a61af66fc99e Initial load
duke
parents:
diff changeset
81 _index++; size = T_FLOAT_size ; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
82 case 'I': do_int (); if (_parameter_index < 0 ) _return_type = T_INT;
a61af66fc99e Initial load
duke
parents:
diff changeset
83 _index++; size = T_INT_size ; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
84 case 'J': do_long (); if (_parameter_index < 0 ) _return_type = T_LONG;
a61af66fc99e Initial load
duke
parents:
diff changeset
85 _index++; size = T_LONG_size ; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
86 case 'S': do_short (); if (_parameter_index < 0 ) _return_type = T_SHORT;
a61af66fc99e Initial load
duke
parents:
diff changeset
87 _index++; size = T_SHORT_size ; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
88 case 'Z': do_bool (); if (_parameter_index < 0 ) _return_type = T_BOOLEAN;
a61af66fc99e Initial load
duke
parents:
diff changeset
89 _index++; size = T_BOOLEAN_size; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
90 case 'V': do_void (); if (_parameter_index < 0 ) _return_type = T_VOID;
a61af66fc99e Initial load
duke
parents:
diff changeset
91 _index++; size = T_VOID_size; ; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
92 case 'L':
a61af66fc99e Initial load
duke
parents:
diff changeset
93 { int begin = ++_index;
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
94 Symbol* sig = _signature;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
95 while (sig->byte_at(_index++) != ';') ;
a61af66fc99e Initial load
duke
parents:
diff changeset
96 do_object(begin, _index);
a61af66fc99e Initial load
duke
parents:
diff changeset
97 }
a61af66fc99e Initial load
duke
parents:
diff changeset
98 if (_parameter_index < 0 ) _return_type = T_OBJECT;
a61af66fc99e Initial load
duke
parents:
diff changeset
99 size = T_OBJECT_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
100 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
101 case '[':
a61af66fc99e Initial load
duke
parents:
diff changeset
102 { int begin = ++_index;
a61af66fc99e Initial load
duke
parents:
diff changeset
103 skip_optional_size();
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
104 Symbol* sig = _signature;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
105 while (sig->byte_at(_index) == '[') {
a61af66fc99e Initial load
duke
parents:
diff changeset
106 _index++;
a61af66fc99e Initial load
duke
parents:
diff changeset
107 skip_optional_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
108 }
a61af66fc99e Initial load
duke
parents:
diff changeset
109 if (sig->byte_at(_index) == 'L') {
a61af66fc99e Initial load
duke
parents:
diff changeset
110 while (sig->byte_at(_index++) != ';') ;
a61af66fc99e Initial load
duke
parents:
diff changeset
111 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
112 _index++;
a61af66fc99e Initial load
duke
parents:
diff changeset
113 }
a61af66fc99e Initial load
duke
parents:
diff changeset
114 do_array(begin, _index);
a61af66fc99e Initial load
duke
parents:
diff changeset
115 if (_parameter_index < 0 ) _return_type = T_ARRAY;
a61af66fc99e Initial load
duke
parents:
diff changeset
116 }
a61af66fc99e Initial load
duke
parents:
diff changeset
117 size = T_ARRAY_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
118 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
119 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
120 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
121 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
122 }
a61af66fc99e Initial load
duke
parents:
diff changeset
123 assert(size >= 0, "size must be set");
a61af66fc99e Initial load
duke
parents:
diff changeset
124 return size;
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 SignatureIterator::check_signature_end() {
a61af66fc99e Initial load
duke
parents:
diff changeset
129 if (_index < _signature->utf8_length()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
130 tty->print_cr("too many chars in signature");
a61af66fc99e Initial load
duke
parents:
diff changeset
131 _signature->print_value_on(tty);
a61af66fc99e Initial load
duke
parents:
diff changeset
132 tty->print_cr(" @ %d", _index);
a61af66fc99e Initial load
duke
parents:
diff changeset
133 }
a61af66fc99e Initial load
duke
parents:
diff changeset
134 }
a61af66fc99e Initial load
duke
parents:
diff changeset
135
a61af66fc99e Initial load
duke
parents:
diff changeset
136
a61af66fc99e Initial load
duke
parents:
diff changeset
137 void SignatureIterator::dispatch_field() {
a61af66fc99e Initial load
duke
parents:
diff changeset
138 // no '(', just one (field) type
a61af66fc99e Initial load
duke
parents:
diff changeset
139 _index = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
140 _parameter_index = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
141 parse_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
142 check_signature_end();
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 void SignatureIterator::iterate_parameters() {
a61af66fc99e Initial load
duke
parents:
diff changeset
147 // Parse parameters
a61af66fc99e Initial load
duke
parents:
diff changeset
148 _index = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
149 _parameter_index = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
150 expect('(');
a61af66fc99e Initial load
duke
parents:
diff changeset
151 while (_signature->byte_at(_index) != ')') _parameter_index += parse_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
152 expect(')');
a61af66fc99e Initial load
duke
parents:
diff changeset
153 _parameter_index = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
154 }
a61af66fc99e Initial load
duke
parents:
diff changeset
155
a61af66fc99e Initial load
duke
parents:
diff changeset
156 // Optimized version of iterat_parameters when fingerprint is known
a61af66fc99e Initial load
duke
parents:
diff changeset
157 void SignatureIterator::iterate_parameters( uint64_t fingerprint ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
158 uint64_t saved_fingerprint = fingerprint;
a61af66fc99e Initial load
duke
parents:
diff changeset
159
a61af66fc99e Initial load
duke
parents:
diff changeset
160 // Check for too many arguments
a61af66fc99e Initial load
duke
parents:
diff changeset
161 if ( fingerprint == UCONST64(-1) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
162 SignatureIterator::iterate_parameters();
a61af66fc99e Initial load
duke
parents:
diff changeset
163 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
164 }
a61af66fc99e Initial load
duke
parents:
diff changeset
165
a61af66fc99e Initial load
duke
parents:
diff changeset
166 assert(fingerprint, "Fingerprint should not be 0");
a61af66fc99e Initial load
duke
parents:
diff changeset
167
a61af66fc99e Initial load
duke
parents:
diff changeset
168 _parameter_index = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
169 fingerprint = fingerprint >> (static_feature_size + result_feature_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
170 while ( 1 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
171 switch ( fingerprint & parameter_feature_mask ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
172 case bool_parm:
a61af66fc99e Initial load
duke
parents:
diff changeset
173 do_bool();
a61af66fc99e Initial load
duke
parents:
diff changeset
174 _parameter_index += T_BOOLEAN_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
175 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
176 case byte_parm:
a61af66fc99e Initial load
duke
parents:
diff changeset
177 do_byte();
a61af66fc99e Initial load
duke
parents:
diff changeset
178 _parameter_index += T_BYTE_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
179 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
180 case char_parm:
a61af66fc99e Initial load
duke
parents:
diff changeset
181 do_char();
a61af66fc99e Initial load
duke
parents:
diff changeset
182 _parameter_index += T_CHAR_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
183 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
184 case short_parm:
a61af66fc99e Initial load
duke
parents:
diff changeset
185 do_short();
a61af66fc99e Initial load
duke
parents:
diff changeset
186 _parameter_index += T_SHORT_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
187 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
188 case int_parm:
a61af66fc99e Initial load
duke
parents:
diff changeset
189 do_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
190 _parameter_index += T_INT_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
191 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
192 case obj_parm:
a61af66fc99e Initial load
duke
parents:
diff changeset
193 do_object(0, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
194 _parameter_index += T_OBJECT_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
195 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
196 case long_parm:
a61af66fc99e Initial load
duke
parents:
diff changeset
197 do_long();
a61af66fc99e Initial load
duke
parents:
diff changeset
198 _parameter_index += T_LONG_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
199 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
200 case float_parm:
a61af66fc99e Initial load
duke
parents:
diff changeset
201 do_float();
a61af66fc99e Initial load
duke
parents:
diff changeset
202 _parameter_index += T_FLOAT_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
203 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
204 case double_parm:
a61af66fc99e Initial load
duke
parents:
diff changeset
205 do_double();
a61af66fc99e Initial load
duke
parents:
diff changeset
206 _parameter_index += T_DOUBLE_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
207 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
208 case done_parm:
a61af66fc99e Initial load
duke
parents:
diff changeset
209 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
210 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
211 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
212 tty->print_cr("*** parameter is %d", fingerprint & parameter_feature_mask);
a61af66fc99e Initial load
duke
parents:
diff changeset
213 tty->print_cr("*** fingerprint is " PTR64_FORMAT, saved_fingerprint);
a61af66fc99e Initial load
duke
parents:
diff changeset
214 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
215 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
216 }
a61af66fc99e Initial load
duke
parents:
diff changeset
217 fingerprint >>= parameter_feature_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
218 }
a61af66fc99e Initial load
duke
parents:
diff changeset
219 _parameter_index = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
220 }
a61af66fc99e Initial load
duke
parents:
diff changeset
221
a61af66fc99e Initial load
duke
parents:
diff changeset
222
a61af66fc99e Initial load
duke
parents:
diff changeset
223 void SignatureIterator::iterate_returntype() {
a61af66fc99e Initial load
duke
parents:
diff changeset
224 // Ignore parameters
a61af66fc99e Initial load
duke
parents:
diff changeset
225 _index = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
226 expect('(');
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
227 Symbol* sig = _signature;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
228 while (sig->byte_at(_index) != ')') _index++;
a61af66fc99e Initial load
duke
parents:
diff changeset
229 expect(')');
a61af66fc99e Initial load
duke
parents:
diff changeset
230 // Parse return type
a61af66fc99e Initial load
duke
parents:
diff changeset
231 _parameter_index = -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
232 parse_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
233 check_signature_end();
a61af66fc99e Initial load
duke
parents:
diff changeset
234 _parameter_index = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
235 }
a61af66fc99e Initial load
duke
parents:
diff changeset
236
a61af66fc99e Initial load
duke
parents:
diff changeset
237
a61af66fc99e Initial load
duke
parents:
diff changeset
238 void SignatureIterator::iterate() {
a61af66fc99e Initial load
duke
parents:
diff changeset
239 // Parse parameters
a61af66fc99e Initial load
duke
parents:
diff changeset
240 _parameter_index = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
241 _index = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
242 expect('(');
a61af66fc99e Initial load
duke
parents:
diff changeset
243 while (_signature->byte_at(_index) != ')') _parameter_index += parse_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
244 expect(')');
a61af66fc99e Initial load
duke
parents:
diff changeset
245 // Parse return type
a61af66fc99e Initial load
duke
parents:
diff changeset
246 _parameter_index = -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
247 parse_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
248 check_signature_end();
a61af66fc99e Initial load
duke
parents:
diff changeset
249 _parameter_index = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
250 }
a61af66fc99e Initial load
duke
parents:
diff changeset
251
a61af66fc99e Initial load
duke
parents:
diff changeset
252
a61af66fc99e Initial load
duke
parents:
diff changeset
253 // Implementation of SignatureStream
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
254 SignatureStream::SignatureStream(Symbol* signature, bool is_method) :
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
255 _signature(signature), _at_return_type(false) {
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
256 _begin = _end = (is_method ? 1 : 0); // skip first '(' in method signatures
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
257 _names = new GrowableArray<Symbol*>(10);
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
258 next();
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
259 }
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
260
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
261 SignatureStream::~SignatureStream() {
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
262 // decrement refcount for names created during signature parsing
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
263 for (int i = 0; i < _names->length(); i++) {
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
264 _names->at(i)->decrement_refcount();
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
265 }
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
266 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
267
a61af66fc99e Initial load
duke
parents:
diff changeset
268 bool SignatureStream::is_done() const {
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
269 return _end > _signature->utf8_length();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
270 }
a61af66fc99e Initial load
duke
parents:
diff changeset
271
a61af66fc99e Initial load
duke
parents:
diff changeset
272
a61af66fc99e Initial load
duke
parents:
diff changeset
273 void SignatureStream::next_non_primitive(int t) {
a61af66fc99e Initial load
duke
parents:
diff changeset
274 switch (t) {
a61af66fc99e Initial load
duke
parents:
diff changeset
275 case 'L': {
a61af66fc99e Initial load
duke
parents:
diff changeset
276 _type = T_OBJECT;
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
277 Symbol* sig = _signature;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
278 while (sig->byte_at(_end++) != ';');
a61af66fc99e Initial load
duke
parents:
diff changeset
279 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
280 }
a61af66fc99e Initial load
duke
parents:
diff changeset
281 case '[': {
a61af66fc99e Initial load
duke
parents:
diff changeset
282 _type = T_ARRAY;
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
283 Symbol* sig = _signature;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
284 char c = sig->byte_at(_end);
a61af66fc99e Initial load
duke
parents:
diff changeset
285 while ('0' <= c && c <= '9') c = sig->byte_at(_end++);
a61af66fc99e Initial load
duke
parents:
diff changeset
286 while (sig->byte_at(_end) == '[') {
a61af66fc99e Initial load
duke
parents:
diff changeset
287 _end++;
a61af66fc99e Initial load
duke
parents:
diff changeset
288 c = sig->byte_at(_end);
a61af66fc99e Initial load
duke
parents:
diff changeset
289 while ('0' <= c && c <= '9') c = sig->byte_at(_end++);
a61af66fc99e Initial load
duke
parents:
diff changeset
290 }
a61af66fc99e Initial load
duke
parents:
diff changeset
291 switch(sig->byte_at(_end)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
292 case 'B':
a61af66fc99e Initial load
duke
parents:
diff changeset
293 case 'C':
a61af66fc99e Initial load
duke
parents:
diff changeset
294 case 'D':
a61af66fc99e Initial load
duke
parents:
diff changeset
295 case 'F':
a61af66fc99e Initial load
duke
parents:
diff changeset
296 case 'I':
a61af66fc99e Initial load
duke
parents:
diff changeset
297 case 'J':
a61af66fc99e Initial load
duke
parents:
diff changeset
298 case 'S':
a61af66fc99e Initial load
duke
parents:
diff changeset
299 case 'Z':_end++; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
300 default: {
a61af66fc99e Initial load
duke
parents:
diff changeset
301 while (sig->byte_at(_end++) != ';');
a61af66fc99e Initial load
duke
parents:
diff changeset
302 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
303 }
a61af66fc99e Initial load
duke
parents:
diff changeset
304 }
a61af66fc99e Initial load
duke
parents:
diff changeset
305 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
306 }
a61af66fc99e Initial load
duke
parents:
diff changeset
307 case ')': _end++; next(); _at_return_type = true; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
308 default : ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
309 }
a61af66fc99e Initial load
duke
parents:
diff changeset
310 }
a61af66fc99e Initial load
duke
parents:
diff changeset
311
a61af66fc99e Initial load
duke
parents:
diff changeset
312
a61af66fc99e Initial load
duke
parents:
diff changeset
313 bool SignatureStream::is_object() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
314 return _type == T_OBJECT
a61af66fc99e Initial load
duke
parents:
diff changeset
315 || _type == T_ARRAY;
a61af66fc99e Initial load
duke
parents:
diff changeset
316 }
a61af66fc99e Initial load
duke
parents:
diff changeset
317
a61af66fc99e Initial load
duke
parents:
diff changeset
318 bool SignatureStream::is_array() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
319 return _type == T_ARRAY;
a61af66fc99e Initial load
duke
parents:
diff changeset
320 }
a61af66fc99e Initial load
duke
parents:
diff changeset
321
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
322 Symbol* SignatureStream::as_symbol(TRAPS) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
323 // Create a symbol from for string _begin _end
a61af66fc99e Initial load
duke
parents:
diff changeset
324 int begin = _begin;
a61af66fc99e Initial load
duke
parents:
diff changeset
325 int end = _end;
a61af66fc99e Initial load
duke
parents:
diff changeset
326
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
327 if ( _signature->byte_at(_begin) == 'L'
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
328 && _signature->byte_at(_end-1) == ';') {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
329 begin++;
a61af66fc99e Initial load
duke
parents:
diff changeset
330 end--;
a61af66fc99e Initial load
duke
parents:
diff changeset
331 }
a61af66fc99e Initial load
duke
parents:
diff changeset
332
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
333 // Save names for cleaning up reference count at the end of
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
334 // SignatureStream scope.
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
335 Symbol* name = SymbolTable::new_symbol(_signature, begin, end, CHECK_NULL);
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
336 _names->push(name); // save new symbol for decrementing later
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
337 return name;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
338 }
a61af66fc99e Initial load
duke
parents:
diff changeset
339
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2426
diff changeset
340 Klass* SignatureStream::as_klass(Handle class_loader, Handle protection_domain,
1508
2ffde6cfe049 6939196: method handle signatures off the boot class path get linkage errors
jrose
parents: 0
diff changeset
341 FailureMode failure_mode, TRAPS) {
2ffde6cfe049 6939196: method handle signatures off the boot class path get linkage errors
jrose
parents: 0
diff changeset
342 if (!is_object()) return NULL;
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
343 Symbol* name = as_symbol(CHECK_NULL);
1508
2ffde6cfe049 6939196: method handle signatures off the boot class path get linkage errors
jrose
parents: 0
diff changeset
344 if (failure_mode == ReturnNull) {
2ffde6cfe049 6939196: method handle signatures off the boot class path get linkage errors
jrose
parents: 0
diff changeset
345 return SystemDictionary::resolve_or_null(name, class_loader, protection_domain, THREAD);
2ffde6cfe049 6939196: method handle signatures off the boot class path get linkage errors
jrose
parents: 0
diff changeset
346 } else {
2ffde6cfe049 6939196: method handle signatures off the boot class path get linkage errors
jrose
parents: 0
diff changeset
347 bool throw_error = (failure_mode == NCDFError);
2ffde6cfe049 6939196: method handle signatures off the boot class path get linkage errors
jrose
parents: 0
diff changeset
348 return SystemDictionary::resolve_or_fail(name, class_loader, protection_domain, throw_error, THREAD);
2ffde6cfe049 6939196: method handle signatures off the boot class path get linkage errors
jrose
parents: 0
diff changeset
349 }
2ffde6cfe049 6939196: method handle signatures off the boot class path get linkage errors
jrose
parents: 0
diff changeset
350 }
2ffde6cfe049 6939196: method handle signatures off the boot class path get linkage errors
jrose
parents: 0
diff changeset
351
2ffde6cfe049 6939196: method handle signatures off the boot class path get linkage errors
jrose
parents: 0
diff changeset
352 oop SignatureStream::as_java_mirror(Handle class_loader, Handle protection_domain,
2ffde6cfe049 6939196: method handle signatures off the boot class path get linkage errors
jrose
parents: 0
diff changeset
353 FailureMode failure_mode, TRAPS) {
2ffde6cfe049 6939196: method handle signatures off the boot class path get linkage errors
jrose
parents: 0
diff changeset
354 if (!is_object())
2ffde6cfe049 6939196: method handle signatures off the boot class path get linkage errors
jrose
parents: 0
diff changeset
355 return Universe::java_mirror(type());
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2426
diff changeset
356 Klass* klass = as_klass(class_loader, protection_domain, failure_mode, CHECK_NULL);
1508
2ffde6cfe049 6939196: method handle signatures off the boot class path get linkage errors
jrose
parents: 0
diff changeset
357 if (klass == NULL) return NULL;
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6725
diff changeset
358 return klass->java_mirror();
1508
2ffde6cfe049 6939196: method handle signatures off the boot class path get linkage errors
jrose
parents: 0
diff changeset
359 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
360
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
361 Symbol* SignatureStream::as_symbol_or_null() {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
362 // Create a symbol from for string _begin _end
a61af66fc99e Initial load
duke
parents:
diff changeset
363 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
364
a61af66fc99e Initial load
duke
parents:
diff changeset
365 int begin = _begin;
a61af66fc99e Initial load
duke
parents:
diff changeset
366 int end = _end;
a61af66fc99e Initial load
duke
parents:
diff changeset
367
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
368 if ( _signature->byte_at(_begin) == 'L'
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
369 && _signature->byte_at(_end-1) == ';') {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
370 begin++;
a61af66fc99e Initial load
duke
parents:
diff changeset
371 end--;
a61af66fc99e Initial load
duke
parents:
diff changeset
372 }
a61af66fc99e Initial load
duke
parents:
diff changeset
373
a61af66fc99e Initial load
duke
parents:
diff changeset
374 char* buffer = NEW_RESOURCE_ARRAY(char, end - begin);
a61af66fc99e Initial load
duke
parents:
diff changeset
375 for (int index = begin; index < end; index++) {
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
376 buffer[index - begin] = _signature->byte_at(index);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
377 }
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
378 Symbol* result = SymbolTable::probe(buffer, end - begin);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
379 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
380 }
a61af66fc99e Initial load
duke
parents:
diff changeset
381
12875
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 6983
diff changeset
382 int SignatureStream::reference_parameter_count() {
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 6983
diff changeset
383 int args_count = 0;
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 6983
diff changeset
384 for ( ; !at_return_type(); next()) {
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 6983
diff changeset
385 if (is_object()) {
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 6983
diff changeset
386 args_count++;
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 6983
diff changeset
387 }
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 6983
diff changeset
388 }
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 6983
diff changeset
389 return args_count;
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 6983
diff changeset
390 }
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 6983
diff changeset
391
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
392 bool SignatureVerifier::is_valid_signature(Symbol* sig) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
393 const char* signature = (const char*)sig->bytes();
a61af66fc99e Initial load
duke
parents:
diff changeset
394 ssize_t len = sig->utf8_length();
a61af66fc99e Initial load
duke
parents:
diff changeset
395 if (signature == NULL || signature[0] == '\0' || len < 1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
396 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
397 } else if (signature[0] == '(') {
a61af66fc99e Initial load
duke
parents:
diff changeset
398 return is_valid_method_signature(sig);
a61af66fc99e Initial load
duke
parents:
diff changeset
399 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
400 return is_valid_type_signature(sig);
a61af66fc99e Initial load
duke
parents:
diff changeset
401 }
a61af66fc99e Initial load
duke
parents:
diff changeset
402 }
a61af66fc99e Initial load
duke
parents:
diff changeset
403
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
404 bool SignatureVerifier::is_valid_method_signature(Symbol* sig) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
405 const char* method_sig = (const char*)sig->bytes();
a61af66fc99e Initial load
duke
parents:
diff changeset
406 ssize_t len = sig->utf8_length();
a61af66fc99e Initial load
duke
parents:
diff changeset
407 ssize_t index = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
408 if (method_sig != NULL && len > 1 && method_sig[index] == '(') {
a61af66fc99e Initial load
duke
parents:
diff changeset
409 ++index;
a61af66fc99e Initial load
duke
parents:
diff changeset
410 while (index < len && method_sig[index] != ')') {
a61af66fc99e Initial load
duke
parents:
diff changeset
411 ssize_t res = is_valid_type(&method_sig[index], len - index);
a61af66fc99e Initial load
duke
parents:
diff changeset
412 if (res == -1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
413 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
414 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
415 index += res;
a61af66fc99e Initial load
duke
parents:
diff changeset
416 }
a61af66fc99e Initial load
duke
parents:
diff changeset
417 }
a61af66fc99e Initial load
duke
parents:
diff changeset
418 if (index < len && method_sig[index] == ')') {
a61af66fc99e Initial load
duke
parents:
diff changeset
419 // check the return type
a61af66fc99e Initial load
duke
parents:
diff changeset
420 ++index;
a61af66fc99e Initial load
duke
parents:
diff changeset
421 return (is_valid_type(&method_sig[index], len - index) == (len - index));
a61af66fc99e Initial load
duke
parents:
diff changeset
422 }
a61af66fc99e Initial load
duke
parents:
diff changeset
423 }
a61af66fc99e Initial load
duke
parents:
diff changeset
424 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
425 }
a61af66fc99e Initial load
duke
parents:
diff changeset
426
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
427 bool SignatureVerifier::is_valid_type_signature(Symbol* sig) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
428 const char* type_sig = (const char*)sig->bytes();
a61af66fc99e Initial load
duke
parents:
diff changeset
429 ssize_t len = sig->utf8_length();
a61af66fc99e Initial load
duke
parents:
diff changeset
430 return (type_sig != NULL && len >= 1 &&
a61af66fc99e Initial load
duke
parents:
diff changeset
431 (is_valid_type(type_sig, len) == len));
a61af66fc99e Initial load
duke
parents:
diff changeset
432 }
a61af66fc99e Initial load
duke
parents:
diff changeset
433
a61af66fc99e Initial load
duke
parents:
diff changeset
434 // Checks to see if the type (not to go beyond 'limit') refers to a valid type.
a61af66fc99e Initial load
duke
parents:
diff changeset
435 // Returns -1 if it is not, or the index of the next character that is not part
a61af66fc99e Initial load
duke
parents:
diff changeset
436 // of the type. The type encoding may end before 'limit' and that's ok.
a61af66fc99e Initial load
duke
parents:
diff changeset
437 ssize_t SignatureVerifier::is_valid_type(const char* type, ssize_t limit) {
a61af66fc99e Initial load
duke
parents:
diff changeset
438 ssize_t index = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
439
a61af66fc99e Initial load
duke
parents:
diff changeset
440 // Iterate over any number of array dimensions
a61af66fc99e Initial load
duke
parents:
diff changeset
441 while (index < limit && type[index] == '[') ++index;
a61af66fc99e Initial load
duke
parents:
diff changeset
442 if (index >= limit) {
a61af66fc99e Initial load
duke
parents:
diff changeset
443 return -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
444 }
a61af66fc99e Initial load
duke
parents:
diff changeset
445 switch (type[index]) {
a61af66fc99e Initial load
duke
parents:
diff changeset
446 case 'B': case 'C': case 'D': case 'F': case 'I':
a61af66fc99e Initial load
duke
parents:
diff changeset
447 case 'J': case 'S': case 'Z': case 'V':
a61af66fc99e Initial load
duke
parents:
diff changeset
448 return index + 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
449 case 'L':
a61af66fc99e Initial load
duke
parents:
diff changeset
450 for (index = index + 1; index < limit; ++index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
451 char c = type[index];
a61af66fc99e Initial load
duke
parents:
diff changeset
452 if (c == ';') {
a61af66fc99e Initial load
duke
parents:
diff changeset
453 return index + 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
454 }
a61af66fc99e Initial load
duke
parents:
diff changeset
455 if (invalid_name_char(c)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
456 return -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
457 }
a61af66fc99e Initial load
duke
parents:
diff changeset
458 }
a61af66fc99e Initial load
duke
parents:
diff changeset
459 // fall through
a61af66fc99e Initial load
duke
parents:
diff changeset
460 default: ; // fall through
a61af66fc99e Initial load
duke
parents:
diff changeset
461 }
a61af66fc99e Initial load
duke
parents:
diff changeset
462 return -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
463 }
a61af66fc99e Initial load
duke
parents:
diff changeset
464
a61af66fc99e Initial load
duke
parents:
diff changeset
465 bool SignatureVerifier::invalid_name_char(char c) {
a61af66fc99e Initial load
duke
parents:
diff changeset
466 switch (c) {
a61af66fc99e Initial load
duke
parents:
diff changeset
467 case '\0': case '.': case ';': case '[':
a61af66fc99e Initial load
duke
parents:
diff changeset
468 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
469 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
470 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
471 }
a61af66fc99e Initial load
duke
parents:
diff changeset
472 }