src/share/vm/classfile/classFileParser.cpp

Wed, 10 Apr 2013 13:27:35 +0200

author
mgerdin
date
Wed, 10 Apr 2013 13:27:35 +0200
changeset 4903
ba42fd5e00e6
parent 4870
cd9ad42dfde0
child 4911
9befe2fce567
permissions
-rw-r--r--

8010196: NPG: Internal Error: Metaspace allocation lock -- possible deadlock
Summary: Refactor the CLD dependency list into a separate class. Use an ObjectLocker to synchronize additions to the CLD dependency list.
Reviewed-by: stefank, coleenp

duke@435 1 /*
acorn@4422 2 * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
duke@435 22 *
duke@435 23 */
duke@435 24
stefank@2314 25 #include "precompiled.hpp"
stefank@2314 26 #include "classfile/classFileParser.hpp"
stefank@2314 27 #include "classfile/classLoader.hpp"
coleenp@4037 28 #include "classfile/classLoaderData.hpp"
coleenp@4037 29 #include "classfile/classLoaderData.inline.hpp"
kamg@4245 30 #include "classfile/defaultMethods.hpp"
kamg@4245 31 #include "classfile/genericSignatures.hpp"
stefank@2314 32 #include "classfile/javaClasses.hpp"
stefank@2314 33 #include "classfile/symbolTable.hpp"
stefank@2314 34 #include "classfile/systemDictionary.hpp"
stefank@2314 35 #include "classfile/verificationType.hpp"
stefank@2314 36 #include "classfile/verifier.hpp"
stefank@2314 37 #include "classfile/vmSymbols.hpp"
stefank@2314 38 #include "memory/allocation.hpp"
stefank@2314 39 #include "memory/gcLocker.hpp"
coleenp@4037 40 #include "memory/metadataFactory.hpp"
stefank@2314 41 #include "memory/oopFactory.hpp"
stefank@2314 42 #include "memory/universe.inline.hpp"
coleenp@4037 43 #include "oops/constantPool.hpp"
never@3137 44 #include "oops/fieldStreams.hpp"
stefank@2314 45 #include "oops/instanceKlass.hpp"
never@2658 46 #include "oops/instanceMirrorKlass.hpp"
stefank@2314 47 #include "oops/klass.inline.hpp"
stefank@2314 48 #include "oops/klassVtable.hpp"
coleenp@4037 49 #include "oops/method.hpp"
coleenp@2497 50 #include "oops/symbol.hpp"
coleenp@4037 51 #include "prims/jvm.h"
stefank@2314 52 #include "prims/jvmtiExport.hpp"
dcubed@3360 53 #include "prims/jvmtiThreadState.hpp"
stefank@2314 54 #include "runtime/javaCalls.hpp"
stefank@2314 55 #include "runtime/perfData.hpp"
stefank@2314 56 #include "runtime/reflection.hpp"
stefank@2314 57 #include "runtime/signature.hpp"
stefank@2314 58 #include "runtime/timer.hpp"
stefank@2314 59 #include "services/classLoadingService.hpp"
stefank@2314 60 #include "services/threadService.hpp"
coleenp@4037 61 #include "utilities/array.hpp"
coleenp@4431 62 #include "utilities/globalDefinitions.hpp"
duke@435 63
kamg@1941 64 // We generally try to create the oops directly when parsing, rather than
kamg@1941 65 // allocating temporary data structures and copying the bytes twice. A
kamg@1941 66 // temporary area is only needed when parsing utf8 entries in the constant
kamg@1941 67 // pool and when parsing line number tables.
duke@435 68
duke@435 69 // We add assert in debug mode when class format is not checked.
duke@435 70
duke@435 71 #define JAVA_CLASSFILE_MAGIC 0xCAFEBABE
duke@435 72 #define JAVA_MIN_SUPPORTED_VERSION 45
kamg@4179 73 #define JAVA_MAX_SUPPORTED_VERSION 52
duke@435 74 #define JAVA_MAX_SUPPORTED_MINOR_VERSION 0
duke@435 75
duke@435 76 // Used for two backward compatibility reasons:
duke@435 77 // - to check for new additions to the class file format in JDK1.5
duke@435 78 // - to check for bug fixes in the format checker in JDK1.5
duke@435 79 #define JAVA_1_5_VERSION 49
duke@435 80
duke@435 81 // Used for backward compatibility reasons:
duke@435 82 // - to check for javac bug fixes that happened after 1.5
kamg@611 83 // - also used as the max version when running in jdk6
duke@435 84 #define JAVA_6_VERSION 50
duke@435 85
kamg@1941 86 // Used for backward compatibility reasons:
kamg@1941 87 // - to check NameAndType_info signatures more aggressively
kamg@1941 88 #define JAVA_7_VERSION 51
kamg@1941 89
kamg@4245 90 // Extension method support.
kamg@4245 91 #define JAVA_8_VERSION 52
kamg@4245 92
coleenp@4719 93 void ClassFileParser::parse_constant_pool_entries(int length, TRAPS) {
duke@435 94 // Use a local copy of ClassFileStream. It helps the C++ compiler to optimize
duke@435 95 // this function (_current can be allocated in a register, with scalar
duke@435 96 // replacement of aggregates). The _current pointer is copied back to
duke@435 97 // stream() when this function returns. DON'T call another method within
duke@435 98 // this method that uses stream().
duke@435 99 ClassFileStream* cfs0 = stream();
duke@435 100 ClassFileStream cfs1 = *cfs0;
duke@435 101 ClassFileStream* cfs = &cfs1;
duke@435 102 #ifdef ASSERT
kvn@2040 103 assert(cfs->allocated_on_stack(),"should be local");
duke@435 104 u1* old_current = cfs0->current();
duke@435 105 #endif
coleenp@4719 106 Handle class_loader(THREAD, _loader_data->class_loader());
duke@435 107
duke@435 108 // Used for batching symbol allocations.
duke@435 109 const char* names[SymbolTable::symbol_alloc_batch_size];
duke@435 110 int lengths[SymbolTable::symbol_alloc_batch_size];
duke@435 111 int indices[SymbolTable::symbol_alloc_batch_size];
duke@435 112 unsigned int hashValues[SymbolTable::symbol_alloc_batch_size];
duke@435 113 int names_count = 0;
duke@435 114
duke@435 115 // parsing Index 0 is unused
duke@435 116 for (int index = 1; index < length; index++) {
duke@435 117 // Each of the following case guarantees one more byte in the stream
duke@435 118 // for the following tag or the access_flags following constant pool,
duke@435 119 // so we don't need bounds-check for reading tag.
duke@435 120 u1 tag = cfs->get_u1_fast();
duke@435 121 switch (tag) {
duke@435 122 case JVM_CONSTANT_Class :
duke@435 123 {
duke@435 124 cfs->guarantee_more(3, CHECK); // name_index, tag/access_flags
duke@435 125 u2 name_index = cfs->get_u2_fast();
coleenp@4719 126 _cp->klass_index_at_put(index, name_index);
duke@435 127 }
duke@435 128 break;
duke@435 129 case JVM_CONSTANT_Fieldref :
duke@435 130 {
duke@435 131 cfs->guarantee_more(5, CHECK); // class_index, name_and_type_index, tag/access_flags
duke@435 132 u2 class_index = cfs->get_u2_fast();
duke@435 133 u2 name_and_type_index = cfs->get_u2_fast();
coleenp@4719 134 _cp->field_at_put(index, class_index, name_and_type_index);
duke@435 135 }
duke@435 136 break;
duke@435 137 case JVM_CONSTANT_Methodref :
duke@435 138 {
duke@435 139 cfs->guarantee_more(5, CHECK); // class_index, name_and_type_index, tag/access_flags
duke@435 140 u2 class_index = cfs->get_u2_fast();
duke@435 141 u2 name_and_type_index = cfs->get_u2_fast();
coleenp@4719 142 _cp->method_at_put(index, class_index, name_and_type_index);
duke@435 143 }
duke@435 144 break;
duke@435 145 case JVM_CONSTANT_InterfaceMethodref :
duke@435 146 {
duke@435 147 cfs->guarantee_more(5, CHECK); // class_index, name_and_type_index, tag/access_flags
duke@435 148 u2 class_index = cfs->get_u2_fast();
duke@435 149 u2 name_and_type_index = cfs->get_u2_fast();
coleenp@4719 150 _cp->interface_method_at_put(index, class_index, name_and_type_index);
duke@435 151 }
duke@435 152 break;
duke@435 153 case JVM_CONSTANT_String :
duke@435 154 {
duke@435 155 cfs->guarantee_more(3, CHECK); // string_index, tag/access_flags
duke@435 156 u2 string_index = cfs->get_u2_fast();
coleenp@4719 157 _cp->string_index_at_put(index, string_index);
duke@435 158 }
duke@435 159 break;
jrose@1957 160 case JVM_CONSTANT_MethodHandle :
jrose@1957 161 case JVM_CONSTANT_MethodType :
jrose@2638 162 if (_major_version < Verifier::INVOKEDYNAMIC_MAJOR_VERSION) {
jrose@1957 163 classfile_parse_error(
jrose@2638 164 "Class file version does not support constant tag %u in class file %s",
jrose@2638 165 tag, CHECK);
jrose@2638 166 }
twisti@2698 167 if (!EnableInvokeDynamic) {
jrose@2638 168 classfile_parse_error(
jrose@2638 169 "This JVM does not support constant tag %u in class file %s",
jrose@1957 170 tag, CHECK);
jrose@1957 171 }
jrose@1957 172 if (tag == JVM_CONSTANT_MethodHandle) {
jrose@1957 173 cfs->guarantee_more(4, CHECK); // ref_kind, method_index, tag/access_flags
jrose@1957 174 u1 ref_kind = cfs->get_u1_fast();
jrose@1957 175 u2 method_index = cfs->get_u2_fast();
coleenp@4719 176 _cp->method_handle_index_at_put(index, ref_kind, method_index);
jrose@1957 177 } else if (tag == JVM_CONSTANT_MethodType) {
jrose@1957 178 cfs->guarantee_more(3, CHECK); // signature_index, tag/access_flags
jrose@1957 179 u2 signature_index = cfs->get_u2_fast();
coleenp@4719 180 _cp->method_type_index_at_put(index, signature_index);
jrose@1957 181 } else {
jrose@1957 182 ShouldNotReachHere();
jrose@1957 183 }
jrose@1957 184 break;
jrose@2015 185 case JVM_CONSTANT_InvokeDynamic :
jrose@2015 186 {
jrose@2638 187 if (_major_version < Verifier::INVOKEDYNAMIC_MAJOR_VERSION) {
jrose@2015 188 classfile_parse_error(
jrose@2638 189 "Class file version does not support constant tag %u in class file %s",
jrose@2638 190 tag, CHECK);
jrose@2638 191 }
jrose@2638 192 if (!EnableInvokeDynamic) {
jrose@2638 193 classfile_parse_error(
jrose@2638 194 "This JVM does not support constant tag %u in class file %s",
jrose@2015 195 tag, CHECK);
jrose@2015 196 }
jrose@2353 197 cfs->guarantee_more(5, CHECK); // bsm_index, nt, tag/access_flags
jrose@2353 198 u2 bootstrap_specifier_index = cfs->get_u2_fast();
jrose@2353 199 u2 name_and_type_index = cfs->get_u2_fast();
jrose@2353 200 if (_max_bootstrap_specifier_index < (int) bootstrap_specifier_index)
jrose@2353 201 _max_bootstrap_specifier_index = (int) bootstrap_specifier_index; // collect for later
coleenp@4719 202 _cp->invoke_dynamic_at_put(index, bootstrap_specifier_index, name_and_type_index);
jrose@2015 203 }
jrose@2015 204 break;
duke@435 205 case JVM_CONSTANT_Integer :
duke@435 206 {
duke@435 207 cfs->guarantee_more(5, CHECK); // bytes, tag/access_flags
duke@435 208 u4 bytes = cfs->get_u4_fast();
coleenp@4719 209 _cp->int_at_put(index, (jint) bytes);
duke@435 210 }
duke@435 211 break;
duke@435 212 case JVM_CONSTANT_Float :
duke@435 213 {
duke@435 214 cfs->guarantee_more(5, CHECK); // bytes, tag/access_flags
duke@435 215 u4 bytes = cfs->get_u4_fast();
coleenp@4719 216 _cp->float_at_put(index, *(jfloat*)&bytes);
duke@435 217 }
duke@435 218 break;
duke@435 219 case JVM_CONSTANT_Long :
duke@435 220 // A mangled type might cause you to overrun allocated memory
duke@435 221 guarantee_property(index+1 < length,
duke@435 222 "Invalid constant pool entry %u in class file %s",
duke@435 223 index, CHECK);
duke@435 224 {
duke@435 225 cfs->guarantee_more(9, CHECK); // bytes, tag/access_flags
duke@435 226 u8 bytes = cfs->get_u8_fast();
coleenp@4719 227 _cp->long_at_put(index, bytes);
duke@435 228 }
duke@435 229 index++; // Skip entry following eigth-byte constant, see JVM book p. 98
duke@435 230 break;
duke@435 231 case JVM_CONSTANT_Double :
duke@435 232 // A mangled type might cause you to overrun allocated memory
duke@435 233 guarantee_property(index+1 < length,
duke@435 234 "Invalid constant pool entry %u in class file %s",
duke@435 235 index, CHECK);
duke@435 236 {
duke@435 237 cfs->guarantee_more(9, CHECK); // bytes, tag/access_flags
duke@435 238 u8 bytes = cfs->get_u8_fast();
coleenp@4719 239 _cp->double_at_put(index, *(jdouble*)&bytes);
duke@435 240 }
duke@435 241 index++; // Skip entry following eigth-byte constant, see JVM book p. 98
duke@435 242 break;
duke@435 243 case JVM_CONSTANT_NameAndType :
duke@435 244 {
duke@435 245 cfs->guarantee_more(5, CHECK); // name_index, signature_index, tag/access_flags
duke@435 246 u2 name_index = cfs->get_u2_fast();
duke@435 247 u2 signature_index = cfs->get_u2_fast();
coleenp@4719 248 _cp->name_and_type_at_put(index, name_index, signature_index);
duke@435 249 }
duke@435 250 break;
duke@435 251 case JVM_CONSTANT_Utf8 :
duke@435 252 {
duke@435 253 cfs->guarantee_more(2, CHECK); // utf8_length
duke@435 254 u2 utf8_length = cfs->get_u2_fast();
duke@435 255 u1* utf8_buffer = cfs->get_u1_buffer();
duke@435 256 assert(utf8_buffer != NULL, "null utf8 buffer");
duke@435 257 // Got utf8 string, guarantee utf8_length+1 bytes, set stream position forward.
duke@435 258 cfs->guarantee_more(utf8_length+1, CHECK); // utf8 string, tag/access_flags
duke@435 259 cfs->skip_u1_fast(utf8_length);
jrose@866 260
duke@435 261 // Before storing the symbol, make sure it's legal
duke@435 262 if (_need_verify) {
duke@435 263 verify_legal_utf8((unsigned char*)utf8_buffer, utf8_length, CHECK);
duke@435 264 }
duke@435 265
twisti@2698 266 if (EnableInvokeDynamic && has_cp_patch_at(index)) {
jrose@866 267 Handle patch = clear_cp_patch_at(index);
jrose@866 268 guarantee_property(java_lang_String::is_instance(patch()),
jrose@866 269 "Illegal utf8 patch at %d in class file %s",
jrose@866 270 index, CHECK);
jrose@866 271 char* str = java_lang_String::as_utf8_string(patch());
jrose@866 272 // (could use java_lang_String::as_symbol instead, but might as well batch them)
jrose@866 273 utf8_buffer = (u1*) str;
jrose@866 274 utf8_length = (int) strlen(str);
jrose@866 275 }
jrose@866 276
duke@435 277 unsigned int hash;
coleenp@2497 278 Symbol* result = SymbolTable::lookup_only((char*)utf8_buffer, utf8_length, hash);
duke@435 279 if (result == NULL) {
duke@435 280 names[names_count] = (char*)utf8_buffer;
duke@435 281 lengths[names_count] = utf8_length;
duke@435 282 indices[names_count] = index;
duke@435 283 hashValues[names_count++] = hash;
duke@435 284 if (names_count == SymbolTable::symbol_alloc_batch_size) {
coleenp@4719 285 SymbolTable::new_symbols(_loader_data, _cp, names_count, names, lengths, indices, hashValues, CHECK);
duke@435 286 names_count = 0;
duke@435 287 }
duke@435 288 } else {
coleenp@4719 289 _cp->symbol_at_put(index, result);
duke@435 290 }
duke@435 291 }
duke@435 292 break;
duke@435 293 default:
duke@435 294 classfile_parse_error(
duke@435 295 "Unknown constant tag %u in class file %s", tag, CHECK);
duke@435 296 break;
duke@435 297 }
duke@435 298 }
duke@435 299
duke@435 300 // Allocate the remaining symbols
duke@435 301 if (names_count > 0) {
coleenp@4719 302 SymbolTable::new_symbols(_loader_data, _cp, names_count, names, lengths, indices, hashValues, CHECK);
duke@435 303 }
duke@435 304
duke@435 305 // Copy _current pointer of local copy back to stream().
duke@435 306 #ifdef ASSERT
duke@435 307 assert(cfs0->current() == old_current, "non-exclusive use of stream()");
duke@435 308 #endif
duke@435 309 cfs0->set_current(cfs1.current());
duke@435 310 }
duke@435 311
duke@435 312 bool inline valid_cp_range(int index, int length) { return (index > 0 && index < length); }
duke@435 313
jrose@3926 314 inline Symbol* check_symbol_at(constantPoolHandle cp, int index) {
jrose@3926 315 if (valid_cp_range(index, cp->length()) && cp->tag_at(index).is_utf8())
jrose@3926 316 return cp->symbol_at(index);
jrose@3926 317 else
jrose@3926 318 return NULL;
jrose@3926 319 }
jrose@3926 320
coleenp@4719 321 constantPoolHandle ClassFileParser::parse_constant_pool(TRAPS) {
duke@435 322 ClassFileStream* cfs = stream();
duke@435 323 constantPoolHandle nullHandle;
duke@435 324
duke@435 325 cfs->guarantee_more(3, CHECK_(nullHandle)); // length, first cp tag
duke@435 326 u2 length = cfs->get_u2_fast();
duke@435 327 guarantee_property(
duke@435 328 length >= 1, "Illegal constant pool size %u in class file %s",
duke@435 329 length, CHECK_(nullHandle));
coleenp@4719 330 ConstantPool* constant_pool = ConstantPool::allocate(_loader_data, length,
coleenp@4719 331 CHECK_(nullHandle));
coleenp@4719 332 _cp = constant_pool; // save in case of errors
duke@435 333 constantPoolHandle cp (THREAD, constant_pool);
duke@435 334
duke@435 335 // parsing constant pool entries
coleenp@4719 336 parse_constant_pool_entries(length, CHECK_(nullHandle));
duke@435 337
duke@435 338 int index = 1; // declared outside of loops for portability
duke@435 339
duke@435 340 // first verification pass - validate cross references and fixup class and string constants
duke@435 341 for (index = 1; index < length; index++) { // Index 0 is unused
jrose@2353 342 jbyte tag = cp->tag_at(index).value();
jrose@2353 343 switch (tag) {
duke@435 344 case JVM_CONSTANT_Class :
duke@435 345 ShouldNotReachHere(); // Only JVM_CONSTANT_ClassIndex should be present
duke@435 346 break;
duke@435 347 case JVM_CONSTANT_Fieldref :
duke@435 348 // fall through
duke@435 349 case JVM_CONSTANT_Methodref :
duke@435 350 // fall through
duke@435 351 case JVM_CONSTANT_InterfaceMethodref : {
duke@435 352 if (!_need_verify) break;
duke@435 353 int klass_ref_index = cp->klass_ref_index_at(index);
duke@435 354 int name_and_type_ref_index = cp->name_and_type_ref_index_at(index);
coleenp@4719 355 check_property(valid_klass_reference_at(klass_ref_index),
duke@435 356 "Invalid constant pool index %u in class file %s",
duke@435 357 klass_ref_index,
duke@435 358 CHECK_(nullHandle));
duke@435 359 check_property(valid_cp_range(name_and_type_ref_index, length) &&
duke@435 360 cp->tag_at(name_and_type_ref_index).is_name_and_type(),
duke@435 361 "Invalid constant pool index %u in class file %s",
duke@435 362 name_and_type_ref_index,
duke@435 363 CHECK_(nullHandle));
duke@435 364 break;
duke@435 365 }
duke@435 366 case JVM_CONSTANT_String :
duke@435 367 ShouldNotReachHere(); // Only JVM_CONSTANT_StringIndex should be present
duke@435 368 break;
duke@435 369 case JVM_CONSTANT_Integer :
duke@435 370 break;
duke@435 371 case JVM_CONSTANT_Float :
duke@435 372 break;
duke@435 373 case JVM_CONSTANT_Long :
duke@435 374 case JVM_CONSTANT_Double :
duke@435 375 index++;
duke@435 376 check_property(
duke@435 377 (index < length && cp->tag_at(index).is_invalid()),
duke@435 378 "Improper constant pool long/double index %u in class file %s",
duke@435 379 index, CHECK_(nullHandle));
duke@435 380 break;
duke@435 381 case JVM_CONSTANT_NameAndType : {
duke@435 382 if (!_need_verify) break;
duke@435 383 int name_ref_index = cp->name_ref_index_at(index);
duke@435 384 int signature_ref_index = cp->signature_ref_index_at(index);
coleenp@4719 385 check_property(valid_symbol_at(name_ref_index),
coleenp@4719 386 "Invalid constant pool index %u in class file %s",
coleenp@4719 387 name_ref_index, CHECK_(nullHandle));
coleenp@4719 388 check_property(valid_symbol_at(signature_ref_index),
coleenp@4719 389 "Invalid constant pool index %u in class file %s",
coleenp@4719 390 signature_ref_index, CHECK_(nullHandle));
duke@435 391 break;
duke@435 392 }
duke@435 393 case JVM_CONSTANT_Utf8 :
duke@435 394 break;
duke@435 395 case JVM_CONSTANT_UnresolvedClass : // fall-through
duke@435 396 case JVM_CONSTANT_UnresolvedClassInError:
duke@435 397 ShouldNotReachHere(); // Only JVM_CONSTANT_ClassIndex should be present
duke@435 398 break;
duke@435 399 case JVM_CONSTANT_ClassIndex :
duke@435 400 {
duke@435 401 int class_index = cp->klass_index_at(index);
coleenp@4719 402 check_property(valid_symbol_at(class_index),
coleenp@4719 403 "Invalid constant pool index %u in class file %s",
coleenp@4719 404 class_index, CHECK_(nullHandle));
duke@435 405 cp->unresolved_klass_at_put(index, cp->symbol_at(class_index));
duke@435 406 }
duke@435 407 break;
duke@435 408 case JVM_CONSTANT_StringIndex :
duke@435 409 {
duke@435 410 int string_index = cp->string_index_at(index);
coleenp@4719 411 check_property(valid_symbol_at(string_index),
coleenp@4719 412 "Invalid constant pool index %u in class file %s",
coleenp@4719 413 string_index, CHECK_(nullHandle));
coleenp@2497 414 Symbol* sym = cp->symbol_at(string_index);
duke@435 415 cp->unresolved_string_at_put(index, sym);
duke@435 416 }
duke@435 417 break;
jrose@1957 418 case JVM_CONSTANT_MethodHandle :
jrose@1957 419 {
jrose@1957 420 int ref_index = cp->method_handle_index_at(index);
jrose@1957 421 check_property(
jrose@1957 422 valid_cp_range(ref_index, length) &&
twisti@2698 423 EnableInvokeDynamic,
jrose@1957 424 "Invalid constant pool index %u in class file %s",
jrose@1957 425 ref_index, CHECK_(nullHandle));
jrose@1957 426 constantTag tag = cp->tag_at(ref_index);
jrose@1957 427 int ref_kind = cp->method_handle_ref_kind_at(index);
jrose@1957 428 switch (ref_kind) {
jrose@1957 429 case JVM_REF_getField:
jrose@1957 430 case JVM_REF_getStatic:
jrose@1957 431 case JVM_REF_putField:
jrose@1957 432 case JVM_REF_putStatic:
jrose@1957 433 check_property(
jrose@1957 434 tag.is_field(),
jrose@1957 435 "Invalid constant pool index %u in class file %s (not a field)",
jrose@1957 436 ref_index, CHECK_(nullHandle));
jrose@1957 437 break;
jrose@1957 438 case JVM_REF_invokeVirtual:
jrose@1957 439 case JVM_REF_invokeStatic:
jrose@1957 440 case JVM_REF_invokeSpecial:
jrose@1957 441 case JVM_REF_newInvokeSpecial:
jrose@1957 442 check_property(
jrose@1957 443 tag.is_method(),
jrose@1957 444 "Invalid constant pool index %u in class file %s (not a method)",
jrose@1957 445 ref_index, CHECK_(nullHandle));
jrose@1957 446 break;
jrose@1957 447 case JVM_REF_invokeInterface:
jrose@1957 448 check_property(
jrose@1957 449 tag.is_interface_method(),
jrose@1957 450 "Invalid constant pool index %u in class file %s (not an interface method)",
jrose@1957 451 ref_index, CHECK_(nullHandle));
jrose@1957 452 break;
jrose@1957 453 default:
jrose@1957 454 classfile_parse_error(
jrose@1957 455 "Bad method handle kind at constant pool index %u in class file %s",
jrose@1957 456 index, CHECK_(nullHandle));
jrose@1957 457 }
jrose@1957 458 // Keep the ref_index unchanged. It will be indirected at link-time.
jrose@1957 459 }
jrose@1957 460 break;
jrose@1957 461 case JVM_CONSTANT_MethodType :
jrose@1957 462 {
jrose@1957 463 int ref_index = cp->method_type_index_at(index);
coleenp@4719 464 check_property(valid_symbol_at(ref_index) && EnableInvokeDynamic,
coleenp@4719 465 "Invalid constant pool index %u in class file %s",
coleenp@4719 466 ref_index, CHECK_(nullHandle));
jrose@1957 467 }
jrose@1957 468 break;
jrose@2015 469 case JVM_CONSTANT_InvokeDynamic :
jrose@2015 470 {
jrose@2015 471 int name_and_type_ref_index = cp->invoke_dynamic_name_and_type_ref_index_at(index);
jrose@2015 472 check_property(valid_cp_range(name_and_type_ref_index, length) &&
jrose@2015 473 cp->tag_at(name_and_type_ref_index).is_name_and_type(),
jrose@2015 474 "Invalid constant pool index %u in class file %s",
jrose@2015 475 name_and_type_ref_index,
jrose@2015 476 CHECK_(nullHandle));
jrose@2353 477 // bootstrap specifier index must be checked later, when BootstrapMethods attr is available
jrose@2015 478 break;
jrose@2015 479 }
duke@435 480 default:
jcoomes@1845 481 fatal(err_msg("bad constant pool tag value %u",
jcoomes@1845 482 cp->tag_at(index).value()));
duke@435 483 ShouldNotReachHere();
duke@435 484 break;
duke@435 485 } // end of switch
duke@435 486 } // end of for
duke@435 487
jrose@866 488 if (_cp_patches != NULL) {
jrose@866 489 // need to treat this_class specially...
twisti@2698 490 assert(EnableInvokeDynamic, "");
jrose@866 491 int this_class_index;
jrose@866 492 {
jrose@866 493 cfs->guarantee_more(8, CHECK_(nullHandle)); // flags, this_class, super_class, infs_len
jrose@866 494 u1* mark = cfs->current();
jrose@866 495 u2 flags = cfs->get_u2_fast();
jrose@866 496 this_class_index = cfs->get_u2_fast();
jrose@866 497 cfs->set_current(mark); // revert to mark
jrose@866 498 }
jrose@866 499
jrose@866 500 for (index = 1; index < length; index++) { // Index 0 is unused
jrose@866 501 if (has_cp_patch_at(index)) {
jrose@866 502 guarantee_property(index != this_class_index,
jrose@866 503 "Illegal constant pool patch to self at %d in class file %s",
jrose@866 504 index, CHECK_(nullHandle));
jrose@866 505 patch_constant_pool(cp, index, cp_patch_at(index), CHECK_(nullHandle));
jrose@866 506 }
jrose@866 507 }
jrose@866 508 }
jrose@866 509
duke@435 510 if (!_need_verify) {
duke@435 511 return cp;
duke@435 512 }
duke@435 513
duke@435 514 // second verification pass - checks the strings are of the right format.
jrose@866 515 // but not yet to the other entries
duke@435 516 for (index = 1; index < length; index++) {
duke@435 517 jbyte tag = cp->tag_at(index).value();
duke@435 518 switch (tag) {
duke@435 519 case JVM_CONSTANT_UnresolvedClass: {
coleenp@2497 520 Symbol* class_name = cp->unresolved_klass_at(index);
jrose@866 521 // check the name, even if _cp_patches will overwrite it
duke@435 522 verify_legal_class_name(class_name, CHECK_(nullHandle));
duke@435 523 break;
duke@435 524 }
kamg@1941 525 case JVM_CONSTANT_NameAndType: {
kamg@1941 526 if (_need_verify && _major_version >= JAVA_7_VERSION) {
kamg@1941 527 int sig_index = cp->signature_ref_index_at(index);
kamg@1941 528 int name_index = cp->name_ref_index_at(index);
coleenp@2497 529 Symbol* name = cp->symbol_at(name_index);
coleenp@2497 530 Symbol* sig = cp->symbol_at(sig_index);
kamg@1941 531 if (sig->byte_at(0) == JVM_SIGNATURE_FUNC) {
kamg@1941 532 verify_legal_method_signature(name, sig, CHECK_(nullHandle));
kamg@1941 533 } else {
kamg@1941 534 verify_legal_field_signature(name, sig, CHECK_(nullHandle));
kamg@1941 535 }
kamg@1941 536 }
kamg@1941 537 break;
kamg@1941 538 }
jrose@2743 539 case JVM_CONSTANT_InvokeDynamic:
duke@435 540 case JVM_CONSTANT_Fieldref:
duke@435 541 case JVM_CONSTANT_Methodref:
duke@435 542 case JVM_CONSTANT_InterfaceMethodref: {
duke@435 543 int name_and_type_ref_index = cp->name_and_type_ref_index_at(index);
duke@435 544 // already verified to be utf8
duke@435 545 int name_ref_index = cp->name_ref_index_at(name_and_type_ref_index);
duke@435 546 // already verified to be utf8
duke@435 547 int signature_ref_index = cp->signature_ref_index_at(name_and_type_ref_index);
coleenp@2497 548 Symbol* name = cp->symbol_at(name_ref_index);
coleenp@2497 549 Symbol* signature = cp->symbol_at(signature_ref_index);
duke@435 550 if (tag == JVM_CONSTANT_Fieldref) {
duke@435 551 verify_legal_field_name(name, CHECK_(nullHandle));
kamg@1941 552 if (_need_verify && _major_version >= JAVA_7_VERSION) {
kamg@1941 553 // Signature is verified above, when iterating NameAndType_info.
kamg@1941 554 // Need only to be sure it's the right type.
kamg@1941 555 if (signature->byte_at(0) == JVM_SIGNATURE_FUNC) {
kamg@1941 556 throwIllegalSignature(
kamg@1941 557 "Field", name, signature, CHECK_(nullHandle));
kamg@1941 558 }
kamg@1941 559 } else {
kamg@1941 560 verify_legal_field_signature(name, signature, CHECK_(nullHandle));
kamg@1941 561 }
duke@435 562 } else {
duke@435 563 verify_legal_method_name(name, CHECK_(nullHandle));
kamg@1941 564 if (_need_verify && _major_version >= JAVA_7_VERSION) {
kamg@1941 565 // Signature is verified above, when iterating NameAndType_info.
kamg@1941 566 // Need only to be sure it's the right type.
kamg@1941 567 if (signature->byte_at(0) != JVM_SIGNATURE_FUNC) {
kamg@1941 568 throwIllegalSignature(
kamg@1941 569 "Method", name, signature, CHECK_(nullHandle));
kamg@1941 570 }
kamg@1941 571 } else {
kamg@1941 572 verify_legal_method_signature(name, signature, CHECK_(nullHandle));
kamg@1941 573 }
duke@435 574 if (tag == JVM_CONSTANT_Methodref) {
duke@435 575 // 4509014: If a class method name begins with '<', it must be "<init>".
coleenp@2497 576 assert(name != NULL, "method name in constant pool is null");
duke@435 577 unsigned int name_len = name->utf8_length();
duke@435 578 assert(name_len > 0, "bad method name"); // already verified as legal name
duke@435 579 if (name->byte_at(0) == '<') {
coleenp@2497 580 if (name != vmSymbols::object_initializer_name()) {
duke@435 581 classfile_parse_error(
duke@435 582 "Bad method name at constant pool index %u in class file %s",
duke@435 583 name_ref_index, CHECK_(nullHandle));
duke@435 584 }
duke@435 585 }
duke@435 586 }
duke@435 587 }
duke@435 588 break;
duke@435 589 }
jrose@1957 590 case JVM_CONSTANT_MethodHandle: {
jrose@1957 591 int ref_index = cp->method_handle_index_at(index);
jrose@1957 592 int ref_kind = cp->method_handle_ref_kind_at(index);
jrose@1957 593 switch (ref_kind) {
jrose@1957 594 case JVM_REF_invokeVirtual:
jrose@1957 595 case JVM_REF_invokeStatic:
jrose@1957 596 case JVM_REF_invokeSpecial:
jrose@1957 597 case JVM_REF_newInvokeSpecial:
jrose@1957 598 {
jrose@1957 599 int name_and_type_ref_index = cp->name_and_type_ref_index_at(ref_index);
jrose@1957 600 int name_ref_index = cp->name_ref_index_at(name_and_type_ref_index);
coleenp@2497 601 Symbol* name = cp->symbol_at(name_ref_index);
jrose@1957 602 if (ref_kind == JVM_REF_newInvokeSpecial) {
coleenp@2497 603 if (name != vmSymbols::object_initializer_name()) {
jrose@1957 604 classfile_parse_error(
jrose@1957 605 "Bad constructor name at constant pool index %u in class file %s",
jrose@1957 606 name_ref_index, CHECK_(nullHandle));
jrose@1957 607 }
jrose@1957 608 } else {
coleenp@2497 609 if (name == vmSymbols::object_initializer_name()) {
jrose@1957 610 classfile_parse_error(
jrose@1957 611 "Bad method name at constant pool index %u in class file %s",
jrose@1957 612 name_ref_index, CHECK_(nullHandle));
jrose@1957 613 }
jrose@1957 614 }
jrose@1957 615 }
jrose@1957 616 break;
jrose@1957 617 // Other ref_kinds are already fully checked in previous pass.
jrose@1957 618 }
jrose@1957 619 break;
jrose@1957 620 }
jrose@1957 621 case JVM_CONSTANT_MethodType: {
coleenp@2497 622 Symbol* no_name = vmSymbols::type_name(); // place holder
coleenp@2497 623 Symbol* signature = cp->method_type_signature_at(index);
jrose@1957 624 verify_legal_method_signature(no_name, signature, CHECK_(nullHandle));
jrose@1957 625 break;
jrose@1957 626 }
coleenp@2497 627 case JVM_CONSTANT_Utf8: {
coleenp@2497 628 assert(cp->symbol_at(index)->refcount() != 0, "count corrupted");
coleenp@2497 629 }
duke@435 630 } // end of switch
duke@435 631 } // end of for
duke@435 632
duke@435 633 return cp;
duke@435 634 }
duke@435 635
duke@435 636
jrose@866 637 void ClassFileParser::patch_constant_pool(constantPoolHandle cp, int index, Handle patch, TRAPS) {
twisti@2698 638 assert(EnableInvokeDynamic, "");
jrose@866 639 BasicType patch_type = T_VOID;
coleenp@4037 640
jrose@866 641 switch (cp->tag_at(index).value()) {
jrose@866 642
jrose@866 643 case JVM_CONSTANT_UnresolvedClass :
jrose@866 644 // Patching a class means pre-resolving it.
jrose@866 645 // The name in the constant pool is ignored.
jrose@1957 646 if (java_lang_Class::is_instance(patch())) {
jrose@866 647 guarantee_property(!java_lang_Class::is_primitive(patch()),
jrose@866 648 "Illegal class patch at %d in class file %s",
jrose@866 649 index, CHECK);
coleenp@4037 650 cp->klass_at_put(index, java_lang_Class::as_Klass(patch()));
jrose@866 651 } else {
jrose@866 652 guarantee_property(java_lang_String::is_instance(patch()),
jrose@866 653 "Illegal class patch at %d in class file %s",
jrose@866 654 index, CHECK);
coleenp@2497 655 Symbol* name = java_lang_String::as_symbol(patch(), CHECK);
coleenp@2497 656 cp->unresolved_klass_at_put(index, name);
jrose@866 657 }
jrose@866 658 break;
jrose@866 659
coleenp@4037 660 case JVM_CONSTANT_String :
coleenp@4037 661 // skip this patch and don't clear it. Needs the oop array for resolved
coleenp@4037 662 // references to be created first.
coleenp@4037 663 return;
jrose@866 664
jrose@866 665 case JVM_CONSTANT_Integer : patch_type = T_INT; goto patch_prim;
jrose@866 666 case JVM_CONSTANT_Float : patch_type = T_FLOAT; goto patch_prim;
jrose@866 667 case JVM_CONSTANT_Long : patch_type = T_LONG; goto patch_prim;
jrose@866 668 case JVM_CONSTANT_Double : patch_type = T_DOUBLE; goto patch_prim;
jrose@866 669 patch_prim:
jrose@866 670 {
jrose@866 671 jvalue value;
jrose@866 672 BasicType value_type = java_lang_boxing_object::get_value(patch(), &value);
jrose@866 673 guarantee_property(value_type == patch_type,
jrose@866 674 "Illegal primitive patch at %d in class file %s",
jrose@866 675 index, CHECK);
jrose@866 676 switch (value_type) {
jrose@866 677 case T_INT: cp->int_at_put(index, value.i); break;
jrose@866 678 case T_FLOAT: cp->float_at_put(index, value.f); break;
jrose@866 679 case T_LONG: cp->long_at_put(index, value.j); break;
jrose@866 680 case T_DOUBLE: cp->double_at_put(index, value.d); break;
jrose@866 681 default: assert(false, "");
jrose@866 682 }
jrose@866 683 }
jrose@866 684 break;
jrose@866 685
jrose@866 686 default:
jrose@866 687 // %%% TODO: put method handles into CONSTANT_InterfaceMethodref, etc.
jrose@866 688 guarantee_property(!has_cp_patch_at(index),
jrose@866 689 "Illegal unexpected patch at %d in class file %s",
jrose@866 690 index, CHECK);
jrose@866 691 return;
jrose@866 692 }
jrose@866 693
jrose@866 694 // On fall-through, mark the patch as used.
jrose@866 695 clear_cp_patch_at(index);
jrose@866 696 }
jrose@866 697
jrose@866 698
jrose@866 699
duke@435 700 class NameSigHash: public ResourceObj {
duke@435 701 public:
coleenp@2497 702 Symbol* _name; // name
coleenp@2497 703 Symbol* _sig; // signature
duke@435 704 NameSigHash* _next; // Next entry in hash table
duke@435 705 };
duke@435 706
duke@435 707
duke@435 708 #define HASH_ROW_SIZE 256
duke@435 709
coleenp@2497 710 unsigned int hash(Symbol* name, Symbol* sig) {
duke@435 711 unsigned int raw_hash = 0;
duke@435 712 raw_hash += ((unsigned int)(uintptr_t)name) >> (LogHeapWordSize + 2);
duke@435 713 raw_hash += ((unsigned int)(uintptr_t)sig) >> LogHeapWordSize;
duke@435 714
duke@435 715 return (raw_hash + (unsigned int)(uintptr_t)name) % HASH_ROW_SIZE;
duke@435 716 }
duke@435 717
duke@435 718
duke@435 719 void initialize_hashtable(NameSigHash** table) {
duke@435 720 memset((void*)table, 0, sizeof(NameSigHash*) * HASH_ROW_SIZE);
duke@435 721 }
duke@435 722
duke@435 723 // Return false if the name/sig combination is found in table.
duke@435 724 // Return true if no duplicate is found. And name/sig is added as a new entry in table.
duke@435 725 // The old format checker uses heap sort to find duplicates.
duke@435 726 // NOTE: caller should guarantee that GC doesn't happen during the life cycle
coleenp@2497 727 // of table since we don't expect Symbol*'s to move.
coleenp@2497 728 bool put_after_lookup(Symbol* name, Symbol* sig, NameSigHash** table) {
duke@435 729 assert(name != NULL, "name in constant pool is NULL");
duke@435 730
duke@435 731 // First lookup for duplicates
duke@435 732 int index = hash(name, sig);
duke@435 733 NameSigHash* entry = table[index];
duke@435 734 while (entry != NULL) {
duke@435 735 if (entry->_name == name && entry->_sig == sig) {
duke@435 736 return false;
duke@435 737 }
duke@435 738 entry = entry->_next;
duke@435 739 }
duke@435 740
duke@435 741 // No duplicate is found, allocate a new entry and fill it.
duke@435 742 entry = new NameSigHash();
duke@435 743 entry->_name = name;
duke@435 744 entry->_sig = sig;
duke@435 745
duke@435 746 // Insert into hash table
duke@435 747 entry->_next = table[index];
duke@435 748 table[index] = entry;
duke@435 749
duke@435 750 return true;
duke@435 751 }
duke@435 752
duke@435 753
coleenp@4719 754 Array<Klass*>* ClassFileParser::parse_interfaces(int length,
duke@435 755 Handle protection_domain,
coleenp@2497 756 Symbol* class_name,
kamg@4245 757 bool* has_default_methods,
duke@435 758 TRAPS) {
coleenp@4719 759 if (length == 0) {
coleenp@4719 760 _local_interfaces = Universe::the_empty_klass_array();
coleenp@4719 761 } else {
coleenp@4719 762 ClassFileStream* cfs = stream();
coleenp@4719 763 assert(length > 0, "only called for length>0");
coleenp@4719 764 _local_interfaces = MetadataFactory::new_array<Klass*>(_loader_data, length, NULL, CHECK_NULL);
coleenp@4719 765
coleenp@4719 766 int index;
coleenp@4719 767 for (index = 0; index < length; index++) {
coleenp@4719 768 u2 interface_index = cfs->get_u2(CHECK_NULL);
coleenp@4719 769 KlassHandle interf;
coleenp@4719 770 check_property(
coleenp@4719 771 valid_klass_reference_at(interface_index),
coleenp@4719 772 "Interface name has bad constant pool index %u in class file %s",
coleenp@4719 773 interface_index, CHECK_NULL);
coleenp@4719 774 if (_cp->tag_at(interface_index).is_klass()) {
coleenp@4719 775 interf = KlassHandle(THREAD, _cp->resolved_klass_at(interface_index));
coleenp@4719 776 } else {
coleenp@4719 777 Symbol* unresolved_klass = _cp->klass_name_at(interface_index);
coleenp@4719 778
coleenp@4719 779 // Don't need to check legal name because it's checked when parsing constant pool.
coleenp@4719 780 // But need to make sure it's not an array type.
coleenp@4719 781 guarantee_property(unresolved_klass->byte_at(0) != JVM_SIGNATURE_ARRAY,
coleenp@4719 782 "Bad interface name in class file %s", CHECK_NULL);
coleenp@4719 783 Handle class_loader(THREAD, _loader_data->class_loader());
coleenp@4719 784
coleenp@4719 785 // Call resolve_super so classcircularity is checked
coleenp@4719 786 Klass* k = SystemDictionary::resolve_super_or_fail(class_name,
coleenp@4719 787 unresolved_klass, class_loader, protection_domain,
coleenp@4719 788 false, CHECK_NULL);
coleenp@4719 789 interf = KlassHandle(THREAD, k);
coleenp@4719 790 }
coleenp@4719 791
coleenp@4719 792 if (!interf()->is_interface()) {
coleenp@4719 793 THROW_MSG_(vmSymbols::java_lang_IncompatibleClassChangeError(), "Implementing class", NULL);
coleenp@4719 794 }
coleenp@4719 795 if (InstanceKlass::cast(interf())->has_default_methods()) {
coleenp@4719 796 *has_default_methods = true;
coleenp@4719 797 }
coleenp@4719 798 _local_interfaces->at_put(index, interf());
jrose@866 799 }
duke@435 800
coleenp@4719 801 if (!_need_verify || length <= 1) {
coleenp@4719 802 return _local_interfaces;
duke@435 803 }
coleenp@4719 804
coleenp@4719 805 // Check if there's any duplicates in interfaces
coleenp@4719 806 ResourceMark rm(THREAD);
coleenp@4719 807 NameSigHash** interface_names = NEW_RESOURCE_ARRAY_IN_THREAD(
coleenp@4719 808 THREAD, NameSigHash*, HASH_ROW_SIZE);
coleenp@4719 809 initialize_hashtable(interface_names);
coleenp@4719 810 bool dup = false;
coleenp@4719 811 {
coleenp@4719 812 debug_only(No_Safepoint_Verifier nsv;)
coleenp@4719 813 for (index = 0; index < length; index++) {
coleenp@4719 814 Klass* k = _local_interfaces->at(index);
coleenp@4719 815 Symbol* name = InstanceKlass::cast(k)->name();
coleenp@4719 816 // If no duplicates, add (name, NULL) in hashtable interface_names.
coleenp@4719 817 if (!put_after_lookup(name, NULL, interface_names)) {
coleenp@4719 818 dup = true;
coleenp@4719 819 break;
coleenp@4719 820 }
duke@435 821 }
duke@435 822 }
coleenp@4719 823 if (dup) {
coleenp@4719 824 classfile_parse_error("Duplicate interface name in class file %s", CHECK_NULL);
coleenp@4719 825 }
duke@435 826 }
coleenp@4719 827 return _local_interfaces;
duke@435 828 }
duke@435 829
duke@435 830
coleenp@4719 831 void ClassFileParser::verify_constantvalue(int constantvalue_index, int signature_index, TRAPS) {
duke@435 832 // Make sure the constant pool entry is of a type appropriate to this field
duke@435 833 guarantee_property(
duke@435 834 (constantvalue_index > 0 &&
coleenp@4719 835 constantvalue_index < _cp->length()),
duke@435 836 "Bad initial value index %u in ConstantValue attribute in class file %s",
duke@435 837 constantvalue_index, CHECK);
coleenp@4719 838 constantTag value_type = _cp->tag_at(constantvalue_index);
coleenp@4719 839 switch ( _cp->basic_type_for_signature_at(signature_index) ) {
duke@435 840 case T_LONG:
duke@435 841 guarantee_property(value_type.is_long(), "Inconsistent constant value type in class file %s", CHECK);
duke@435 842 break;
duke@435 843 case T_FLOAT:
duke@435 844 guarantee_property(value_type.is_float(), "Inconsistent constant value type in class file %s", CHECK);
duke@435 845 break;
duke@435 846 case T_DOUBLE:
duke@435 847 guarantee_property(value_type.is_double(), "Inconsistent constant value type in class file %s", CHECK);
duke@435 848 break;
duke@435 849 case T_BYTE: case T_CHAR: case T_SHORT: case T_BOOLEAN: case T_INT:
duke@435 850 guarantee_property(value_type.is_int(), "Inconsistent constant value type in class file %s", CHECK);
duke@435 851 break;
duke@435 852 case T_OBJECT:
coleenp@4719 853 guarantee_property((_cp->symbol_at(signature_index)->equals("Ljava/lang/String;")
coleenp@4037 854 && value_type.is_string()),
duke@435 855 "Bad string initial value in class file %s", CHECK);
duke@435 856 break;
duke@435 857 default:
duke@435 858 classfile_parse_error(
duke@435 859 "Unable to set initial value %u in class file %s",
duke@435 860 constantvalue_index, CHECK);
duke@435 861 }
duke@435 862 }
duke@435 863
duke@435 864
duke@435 865 // Parse attributes for a field.
coleenp@4719 866 void ClassFileParser::parse_field_attributes(u2 attributes_count,
duke@435 867 bool is_static, u2 signature_index,
duke@435 868 u2* constantvalue_index_addr,
duke@435 869 bool* is_synthetic_addr,
duke@435 870 u2* generic_signature_index_addr,
jrose@3926 871 ClassFileParser::FieldAnnotationCollector* parsed_annotations,
duke@435 872 TRAPS) {
duke@435 873 ClassFileStream* cfs = stream();
duke@435 874 assert(attributes_count > 0, "length should be greater than 0");
duke@435 875 u2 constantvalue_index = 0;
duke@435 876 u2 generic_signature_index = 0;
duke@435 877 bool is_synthetic = false;
duke@435 878 u1* runtime_visible_annotations = NULL;
duke@435 879 int runtime_visible_annotations_length = 0;
duke@435 880 u1* runtime_invisible_annotations = NULL;
duke@435 881 int runtime_invisible_annotations_length = 0;
stefank@4393 882 u1* runtime_visible_type_annotations = NULL;
stefank@4393 883 int runtime_visible_type_annotations_length = 0;
stefank@4393 884 u1* runtime_invisible_type_annotations = NULL;
stefank@4393 885 int runtime_invisible_type_annotations_length = 0;
duke@435 886 while (attributes_count--) {
duke@435 887 cfs->guarantee_more(6, CHECK); // attribute_name_index, attribute_length
duke@435 888 u2 attribute_name_index = cfs->get_u2_fast();
duke@435 889 u4 attribute_length = cfs->get_u4_fast();
coleenp@4719 890 check_property(valid_symbol_at(attribute_name_index),
duke@435 891 "Invalid field attribute index %u in class file %s",
duke@435 892 attribute_name_index,
duke@435 893 CHECK);
coleenp@4719 894 Symbol* attribute_name = _cp->symbol_at(attribute_name_index);
duke@435 895 if (is_static && attribute_name == vmSymbols::tag_constant_value()) {
duke@435 896 // ignore if non-static
duke@435 897 if (constantvalue_index != 0) {
duke@435 898 classfile_parse_error("Duplicate ConstantValue attribute in class file %s", CHECK);
duke@435 899 }
duke@435 900 check_property(
duke@435 901 attribute_length == 2,
duke@435 902 "Invalid ConstantValue field attribute length %u in class file %s",
duke@435 903 attribute_length, CHECK);
duke@435 904 constantvalue_index = cfs->get_u2(CHECK);
duke@435 905 if (_need_verify) {
coleenp@4719 906 verify_constantvalue(constantvalue_index, signature_index, CHECK);
duke@435 907 }
duke@435 908 } else if (attribute_name == vmSymbols::tag_synthetic()) {
duke@435 909 if (attribute_length != 0) {
duke@435 910 classfile_parse_error(
duke@435 911 "Invalid Synthetic field attribute length %u in class file %s",
duke@435 912 attribute_length, CHECK);
duke@435 913 }
duke@435 914 is_synthetic = true;
duke@435 915 } else if (attribute_name == vmSymbols::tag_deprecated()) { // 4276120
duke@435 916 if (attribute_length != 0) {
duke@435 917 classfile_parse_error(
duke@435 918 "Invalid Deprecated field attribute length %u in class file %s",
duke@435 919 attribute_length, CHECK);
duke@435 920 }
duke@435 921 } else if (_major_version >= JAVA_1_5_VERSION) {
duke@435 922 if (attribute_name == vmSymbols::tag_signature()) {
duke@435 923 if (attribute_length != 2) {
duke@435 924 classfile_parse_error(
duke@435 925 "Wrong size %u for field's Signature attribute in class file %s",
duke@435 926 attribute_length, CHECK);
duke@435 927 }
duke@435 928 generic_signature_index = cfs->get_u2(CHECK);
duke@435 929 } else if (attribute_name == vmSymbols::tag_runtime_visible_annotations()) {
duke@435 930 runtime_visible_annotations_length = attribute_length;
duke@435 931 runtime_visible_annotations = cfs->get_u1_buffer();
duke@435 932 assert(runtime_visible_annotations != NULL, "null visible annotations");
coleenp@4719 933 parse_annotations(runtime_visible_annotations,
jwilhelm@4430 934 runtime_visible_annotations_length,
jwilhelm@4430 935 parsed_annotations,
jwilhelm@4430 936 CHECK);
duke@435 937 cfs->skip_u1(runtime_visible_annotations_length, CHECK);
duke@435 938 } else if (PreserveAllAnnotations && attribute_name == vmSymbols::tag_runtime_invisible_annotations()) {
duke@435 939 runtime_invisible_annotations_length = attribute_length;
duke@435 940 runtime_invisible_annotations = cfs->get_u1_buffer();
duke@435 941 assert(runtime_invisible_annotations != NULL, "null invisible annotations");
duke@435 942 cfs->skip_u1(runtime_invisible_annotations_length, CHECK);
stefank@4393 943 } else if (attribute_name == vmSymbols::tag_runtime_visible_type_annotations()) {
stefank@4393 944 runtime_visible_type_annotations_length = attribute_length;
stefank@4393 945 runtime_visible_type_annotations = cfs->get_u1_buffer();
stefank@4393 946 assert(runtime_visible_type_annotations != NULL, "null visible type annotations");
stefank@4393 947 cfs->skip_u1(runtime_visible_type_annotations_length, CHECK);
stefank@4393 948 } else if (PreserveAllAnnotations && attribute_name == vmSymbols::tag_runtime_invisible_type_annotations()) {
stefank@4393 949 runtime_invisible_type_annotations_length = attribute_length;
stefank@4393 950 runtime_invisible_type_annotations = cfs->get_u1_buffer();
stefank@4393 951 assert(runtime_invisible_type_annotations != NULL, "null invisible type annotations");
stefank@4393 952 cfs->skip_u1(runtime_invisible_type_annotations_length, CHECK);
duke@435 953 } else {
duke@435 954 cfs->skip_u1(attribute_length, CHECK); // Skip unknown attributes
duke@435 955 }
duke@435 956 } else {
duke@435 957 cfs->skip_u1(attribute_length, CHECK); // Skip unknown attributes
duke@435 958 }
duke@435 959 }
duke@435 960
duke@435 961 *constantvalue_index_addr = constantvalue_index;
duke@435 962 *is_synthetic_addr = is_synthetic;
duke@435 963 *generic_signature_index_addr = generic_signature_index;
coleenp@4719 964 AnnotationArray* a = assemble_annotations(runtime_visible_annotations,
duke@435 965 runtime_visible_annotations_length,
duke@435 966 runtime_invisible_annotations,
duke@435 967 runtime_invisible_annotations_length,
duke@435 968 CHECK);
coleenp@4719 969 parsed_annotations->set_field_annotations(a);
coleenp@4719 970 a = assemble_annotations(runtime_visible_type_annotations,
coleenp@4719 971 runtime_visible_type_annotations_length,
coleenp@4719 972 runtime_invisible_type_annotations,
coleenp@4719 973 runtime_invisible_type_annotations_length,
coleenp@4719 974 CHECK);
coleenp@4719 975 parsed_annotations->set_field_type_annotations(a);
duke@435 976 return;
duke@435 977 }
duke@435 978
duke@435 979
duke@435 980 // Field allocation types. Used for computing field offsets.
duke@435 981
duke@435 982 enum FieldAllocationType {
duke@435 983 STATIC_OOP, // Oops
duke@435 984 STATIC_BYTE, // Boolean, Byte, char
duke@435 985 STATIC_SHORT, // shorts
duke@435 986 STATIC_WORD, // ints
never@3137 987 STATIC_DOUBLE, // aligned long or double
duke@435 988 NONSTATIC_OOP,
duke@435 989 NONSTATIC_BYTE,
duke@435 990 NONSTATIC_SHORT,
duke@435 991 NONSTATIC_WORD,
duke@435 992 NONSTATIC_DOUBLE,
never@3137 993 MAX_FIELD_ALLOCATION_TYPE,
never@3137 994 BAD_ALLOCATION_TYPE = -1
duke@435 995 };
duke@435 996
never@3137 997 static FieldAllocationType _basic_type_to_atype[2 * (T_CONFLICT + 1)] = {
never@3137 998 BAD_ALLOCATION_TYPE, // 0
never@3137 999 BAD_ALLOCATION_TYPE, // 1
never@3137 1000 BAD_ALLOCATION_TYPE, // 2
never@3137 1001 BAD_ALLOCATION_TYPE, // 3
roland@4159 1002 NONSTATIC_BYTE , // T_BOOLEAN = 4,
roland@4159 1003 NONSTATIC_SHORT, // T_CHAR = 5,
roland@4159 1004 NONSTATIC_WORD, // T_FLOAT = 6,
roland@4159 1005 NONSTATIC_DOUBLE, // T_DOUBLE = 7,
roland@4159 1006 NONSTATIC_BYTE, // T_BYTE = 8,
roland@4159 1007 NONSTATIC_SHORT, // T_SHORT = 9,
roland@4159 1008 NONSTATIC_WORD, // T_INT = 10,
roland@4159 1009 NONSTATIC_DOUBLE, // T_LONG = 11,
roland@4159 1010 NONSTATIC_OOP, // T_OBJECT = 12,
roland@4159 1011 NONSTATIC_OOP, // T_ARRAY = 13,
roland@4159 1012 BAD_ALLOCATION_TYPE, // T_VOID = 14,
roland@4159 1013 BAD_ALLOCATION_TYPE, // T_ADDRESS = 15,
roland@4159 1014 BAD_ALLOCATION_TYPE, // T_NARROWOOP = 16,
roland@4159 1015 BAD_ALLOCATION_TYPE, // T_METADATA = 17,
roland@4159 1016 BAD_ALLOCATION_TYPE, // T_NARROWKLASS = 18,
roland@4159 1017 BAD_ALLOCATION_TYPE, // T_CONFLICT = 19,
never@3137 1018 BAD_ALLOCATION_TYPE, // 0
never@3137 1019 BAD_ALLOCATION_TYPE, // 1
never@3137 1020 BAD_ALLOCATION_TYPE, // 2
never@3137 1021 BAD_ALLOCATION_TYPE, // 3
roland@4159 1022 STATIC_BYTE , // T_BOOLEAN = 4,
roland@4159 1023 STATIC_SHORT, // T_CHAR = 5,
roland@4159 1024 STATIC_WORD, // T_FLOAT = 6,
roland@4159 1025 STATIC_DOUBLE, // T_DOUBLE = 7,
roland@4159 1026 STATIC_BYTE, // T_BYTE = 8,
roland@4159 1027 STATIC_SHORT, // T_SHORT = 9,
roland@4159 1028 STATIC_WORD, // T_INT = 10,
roland@4159 1029 STATIC_DOUBLE, // T_LONG = 11,
roland@4159 1030 STATIC_OOP, // T_OBJECT = 12,
roland@4159 1031 STATIC_OOP, // T_ARRAY = 13,
roland@4159 1032 BAD_ALLOCATION_TYPE, // T_VOID = 14,
roland@4159 1033 BAD_ALLOCATION_TYPE, // T_ADDRESS = 15,
roland@4159 1034 BAD_ALLOCATION_TYPE, // T_NARROWOOP = 16,
roland@4159 1035 BAD_ALLOCATION_TYPE, // T_METADATA = 17,
roland@4159 1036 BAD_ALLOCATION_TYPE, // T_NARROWKLASS = 18,
roland@4159 1037 BAD_ALLOCATION_TYPE, // T_CONFLICT = 19,
duke@435 1038 };
duke@435 1039
never@3137 1040 static FieldAllocationType basic_type_to_atype(bool is_static, BasicType type) {
never@3137 1041 assert(type >= T_BOOLEAN && type < T_VOID, "only allowable values");
never@3137 1042 FieldAllocationType result = _basic_type_to_atype[type + (is_static ? (T_CONFLICT + 1) : 0)];
never@3137 1043 assert(result != BAD_ALLOCATION_TYPE, "bad type");
never@3137 1044 return result;
never@3137 1045 }
never@3137 1046
never@3137 1047 class FieldAllocationCount: public ResourceObj {
never@3137 1048 public:
jiangli@3373 1049 u2 count[MAX_FIELD_ALLOCATION_TYPE];
never@3137 1050
never@3137 1051 FieldAllocationCount() {
never@3137 1052 for (int i = 0; i < MAX_FIELD_ALLOCATION_TYPE; i++) {
never@3137 1053 count[i] = 0;
never@3137 1054 }
never@3137 1055 }
never@3137 1056
never@3137 1057 FieldAllocationType update(bool is_static, BasicType type) {
never@3137 1058 FieldAllocationType atype = basic_type_to_atype(is_static, type);
jiangli@3373 1059 // Make sure there is no overflow with injected fields.
jiangli@3373 1060 assert(count[atype] < 0xFFFF, "More than 65535 fields");
never@3137 1061 count[atype]++;
never@3137 1062 return atype;
never@3137 1063 }
never@3137 1064 };
never@3137 1065
coleenp@4719 1066 Array<u2>* ClassFileParser::parse_fields(Symbol* class_name,
coleenp@4142 1067 bool is_interface,
coleenp@4142 1068 FieldAllocationCount *fac,
coleenp@4142 1069 u2* java_fields_count_ptr, TRAPS) {
duke@435 1070 ClassFileStream* cfs = stream();
coleenp@4037 1071 cfs->guarantee_more(2, CHECK_NULL); // length
duke@435 1072 u2 length = cfs->get_u2_fast();
never@3137 1073 *java_fields_count_ptr = length;
never@3137 1074
never@3137 1075 int num_injected = 0;
never@3137 1076 InjectedField* injected = JavaClasses::get_injected(class_name, &num_injected);
jiangli@3803 1077 int total_fields = length + num_injected;
jiangli@3803 1078
jiangli@3803 1079 // The field array starts with tuples of shorts
jiangli@3803 1080 // [access, name index, sig index, initial value index, byte offset].
jiangli@3803 1081 // A generic signature slot only exists for field with generic
jiangli@3803 1082 // signature attribute. And the access flag is set with
jiangli@3803 1083 // JVM_ACC_FIELD_HAS_GENERIC_SIGNATURE for that field. The generic
jiangli@3803 1084 // signature slots are at the end of the field array and after all
jiangli@3803 1085 // other fields data.
jiangli@3803 1086 //
jiangli@3803 1087 // f1: [access, name index, sig index, initial value index, low_offset, high_offset]
jiangli@3803 1088 // f2: [access, name index, sig index, initial value index, low_offset, high_offset]
jiangli@3803 1089 // ...
jiangli@3803 1090 // fn: [access, name index, sig index, initial value index, low_offset, high_offset]
jiangli@3803 1091 // [generic signature index]
jiangli@3803 1092 // [generic signature index]
jiangli@3803 1093 // ...
jiangli@3803 1094 //
jiangli@3803 1095 // Allocate a temporary resource array for field data. For each field,
jiangli@3803 1096 // a slot is reserved in the temporary array for the generic signature
jiangli@3803 1097 // index. After parsing all fields, the data are copied to a permanent
jiangli@3803 1098 // array and any unused slots will be discarded.
jiangli@3803 1099 ResourceMark rm(THREAD);
jiangli@3803 1100 u2* fa = NEW_RESOURCE_ARRAY_IN_THREAD(
jiangli@3803 1101 THREAD, u2, total_fields * (FieldInfo::field_slots + 1));
duke@435 1102
jiangli@3803 1103 // The generic signature slots start after all other fields' data.
jiangli@3803 1104 int generic_signature_slot = total_fields * FieldInfo::field_slots;
jiangli@3803 1105 int num_generic_signature = 0;
duke@435 1106 for (int n = 0; n < length; n++) {
coleenp@4037 1107 cfs->guarantee_more(8, CHECK_NULL); // access_flags, name_index, descriptor_index, attributes_count
duke@435 1108
duke@435 1109 AccessFlags access_flags;
duke@435 1110 jint flags = cfs->get_u2_fast() & JVM_RECOGNIZED_FIELD_MODIFIERS;
coleenp@4037 1111 verify_legal_field_modifiers(flags, is_interface, CHECK_NULL);
duke@435 1112 access_flags.set_flags(flags);
duke@435 1113
duke@435 1114 u2 name_index = cfs->get_u2_fast();
coleenp@4719 1115 int cp_size = _cp->length();
coleenp@4719 1116 check_property(valid_symbol_at(name_index),
duke@435 1117 "Invalid constant pool index %u for field name in class file %s",
coleenp@4719 1118 name_index,
coleenp@4719 1119 CHECK_NULL);
coleenp@4719 1120 Symbol* name = _cp->symbol_at(name_index);
coleenp@4037 1121 verify_legal_field_name(name, CHECK_NULL);
duke@435 1122
duke@435 1123 u2 signature_index = cfs->get_u2_fast();
coleenp@4719 1124 check_property(valid_symbol_at(signature_index),
duke@435 1125 "Invalid constant pool index %u for field signature in class file %s",
coleenp@4037 1126 signature_index, CHECK_NULL);
coleenp@4719 1127 Symbol* sig = _cp->symbol_at(signature_index);
coleenp@4037 1128 verify_legal_field_signature(name, sig, CHECK_NULL);
duke@435 1129
duke@435 1130 u2 constantvalue_index = 0;
duke@435 1131 bool is_synthetic = false;
duke@435 1132 u2 generic_signature_index = 0;
duke@435 1133 bool is_static = access_flags.is_static();
coleenp@4719 1134 FieldAnnotationCollector parsed_annotations(_loader_data);
duke@435 1135
duke@435 1136 u2 attributes_count = cfs->get_u2_fast();
duke@435 1137 if (attributes_count > 0) {
coleenp@4719 1138 parse_field_attributes(attributes_count, is_static, signature_index,
duke@435 1139 &constantvalue_index, &is_synthetic,
coleenp@4719 1140 &generic_signature_index, &parsed_annotations,
coleenp@4037 1141 CHECK_NULL);
coleenp@4719 1142 if (parsed_annotations.field_annotations() != NULL) {
coleenp@4719 1143 if (_fields_annotations == NULL) {
coleenp@4719 1144 _fields_annotations = MetadataFactory::new_array<AnnotationArray*>(
coleenp@4719 1145 _loader_data, length, NULL,
coleenp@4037 1146 CHECK_NULL);
duke@435 1147 }
coleenp@4719 1148 _fields_annotations->at_put(n, parsed_annotations.field_annotations());
coleenp@4719 1149 parsed_annotations.set_field_annotations(NULL);
duke@435 1150 }
coleenp@4719 1151 if (parsed_annotations.field_type_annotations() != NULL) {
coleenp@4719 1152 if (_fields_type_annotations == NULL) {
coleenp@4719 1153 _fields_type_annotations = MetadataFactory::new_array<AnnotationArray*>(
coleenp@4719 1154 _loader_data, length, NULL,
stefank@4393 1155 CHECK_NULL);
stefank@4393 1156 }
coleenp@4719 1157 _fields_type_annotations->at_put(n, parsed_annotations.field_type_annotations());
coleenp@4719 1158 parsed_annotations.set_field_type_annotations(NULL);
stefank@4393 1159 }
coleenp@4719 1160
duke@435 1161 if (is_synthetic) {
duke@435 1162 access_flags.set_is_synthetic();
duke@435 1163 }
jiangli@3803 1164 if (generic_signature_index != 0) {
jiangli@3803 1165 access_flags.set_field_has_generic_signature();
jiangli@3803 1166 fa[generic_signature_slot] = generic_signature_index;
jiangli@3803 1167 generic_signature_slot ++;
jiangli@3803 1168 num_generic_signature ++;
jiangli@3803 1169 }
duke@435 1170 }
duke@435 1171
jiangli@3803 1172 FieldInfo* field = FieldInfo::from_field_array(fa, n);
never@3137 1173 field->initialize(access_flags.as_short(),
never@3137 1174 name_index,
never@3137 1175 signature_index,
jwilhelm@4430 1176 constantvalue_index);
coleenp@4719 1177 BasicType type = _cp->basic_type_for_signature_at(signature_index);
jwilhelm@4430 1178
jwilhelm@4430 1179 // Remember how many oops we encountered and compute allocation type
jwilhelm@4430 1180 FieldAllocationType atype = fac->update(is_static, type);
jwilhelm@4430 1181 field->set_allocation_type(atype);
jwilhelm@4430 1182
jwilhelm@4430 1183 // After field is initialized with type, we can augment it with aux info
jrose@3926 1184 if (parsed_annotations.has_any_annotations())
jrose@3926 1185 parsed_annotations.apply_to(field);
never@3137 1186 }
never@3137 1187
jiangli@3803 1188 int index = length;
never@3137 1189 if (num_injected != 0) {
never@3137 1190 for (int n = 0; n < num_injected; n++) {
never@3137 1191 // Check for duplicates
never@3137 1192 if (injected[n].may_be_java) {
never@3137 1193 Symbol* name = injected[n].name();
never@3137 1194 Symbol* signature = injected[n].signature();
never@3137 1195 bool duplicate = false;
never@3137 1196 for (int i = 0; i < length; i++) {
jiangli@3803 1197 FieldInfo* f = FieldInfo::from_field_array(fa, i);
coleenp@4719 1198 if (name == _cp->symbol_at(f->name_index()) &&
coleenp@4719 1199 signature == _cp->symbol_at(f->signature_index())) {
never@3137 1200 // Symbol is desclared in Java so skip this one
never@3137 1201 duplicate = true;
never@3137 1202 break;
never@3137 1203 }
never@3137 1204 }
never@3137 1205 if (duplicate) {
never@3137 1206 // These will be removed from the field array at the end
never@3137 1207 continue;
never@3137 1208 }
never@3137 1209 }
never@3137 1210
never@3137 1211 // Injected field
jiangli@3803 1212 FieldInfo* field = FieldInfo::from_field_array(fa, index);
never@3137 1213 field->initialize(JVM_ACC_FIELD_INTERNAL,
never@3137 1214 injected[n].name_index,
never@3137 1215 injected[n].signature_index,
never@3137 1216 0);
never@3137 1217
never@3137 1218 BasicType type = FieldType::basic_type(injected[n].signature());
never@3137 1219
never@3137 1220 // Remember how many oops we encountered and compute allocation type
never@3137 1221 FieldAllocationType atype = fac->update(false, type);
jwilhelm@4430 1222 field->set_allocation_type(atype);
never@3137 1223 index++;
never@3137 1224 }
jiangli@3803 1225 }
jiangli@3803 1226
jiangli@3803 1227 // Now copy the fields' data from the temporary resource array.
jiangli@3803 1228 // Sometimes injected fields already exist in the Java source so
jiangli@3803 1229 // the fields array could be too long. In that case the
jiangli@3803 1230 // fields array is trimed. Also unused slots that were reserved
jiangli@3803 1231 // for generic signature indexes are discarded.
coleenp@4037 1232 Array<u2>* fields = MetadataFactory::new_array<u2>(
coleenp@4719 1233 _loader_data, index * FieldInfo::field_slots + num_generic_signature,
coleenp@4037 1234 CHECK_NULL);
coleenp@4719 1235 _fields = fields; // save in case of error
jiangli@3803 1236 {
jiangli@3803 1237 int i = 0;
jiangli@3803 1238 for (; i < index * FieldInfo::field_slots; i++) {
coleenp@4037 1239 fields->at_put(i, fa[i]);
never@3137 1240 }
jiangli@3803 1241 for (int j = total_fields * FieldInfo::field_slots;
jiangli@3803 1242 j < generic_signature_slot; j++) {
coleenp@4037 1243 fields->at_put(i++, fa[j]);
jiangli@3803 1244 }
coleenp@4037 1245 assert(i == fields->length(), "");
duke@435 1246 }
duke@435 1247
duke@435 1248 if (_need_verify && length > 1) {
duke@435 1249 // Check duplicated fields
duke@435 1250 ResourceMark rm(THREAD);
duke@435 1251 NameSigHash** names_and_sigs = NEW_RESOURCE_ARRAY_IN_THREAD(
duke@435 1252 THREAD, NameSigHash*, HASH_ROW_SIZE);
duke@435 1253 initialize_hashtable(names_and_sigs);
duke@435 1254 bool dup = false;
duke@435 1255 {
duke@435 1256 debug_only(No_Safepoint_Verifier nsv;)
coleenp@4719 1257 for (AllFieldStream fs(fields, _cp); !fs.done(); fs.next()) {
never@3137 1258 Symbol* name = fs.name();
never@3137 1259 Symbol* sig = fs.signature();
duke@435 1260 // If no duplicates, add name/signature in hashtable names_and_sigs.
duke@435 1261 if (!put_after_lookup(name, sig, names_and_sigs)) {
duke@435 1262 dup = true;
duke@435 1263 break;
duke@435 1264 }
duke@435 1265 }
duke@435 1266 }
duke@435 1267 if (dup) {
duke@435 1268 classfile_parse_error("Duplicate field name&signature in class file %s",
coleenp@4037 1269 CHECK_NULL);
duke@435 1270 }
duke@435 1271 }
duke@435 1272
duke@435 1273 return fields;
duke@435 1274 }
duke@435 1275
duke@435 1276
duke@435 1277 static void copy_u2_with_conversion(u2* dest, u2* src, int length) {
duke@435 1278 while (length-- > 0) {
duke@435 1279 *dest++ = Bytes::get_Java_u2((u1*) (src++));
duke@435 1280 }
duke@435 1281 }
duke@435 1282
duke@435 1283
coleenp@4719 1284 u2* ClassFileParser::parse_exception_table(u4 code_length,
jiangli@3917 1285 u4 exception_table_length,
jiangli@3917 1286 TRAPS) {
duke@435 1287 ClassFileStream* cfs = stream();
jiangli@3917 1288
jiangli@3917 1289 u2* exception_table_start = cfs->get_u2_buffer();
jiangli@3917 1290 assert(exception_table_start != NULL, "null exception table");
jiangli@3917 1291 cfs->guarantee_more(8 * exception_table_length, CHECK_NULL); // start_pc, end_pc, handler_pc, catch_type_index
jiangli@3917 1292 // Will check legal target after parsing code array in verifier.
jiangli@3917 1293 if (_need_verify) {
jiangli@3917 1294 for (unsigned int i = 0; i < exception_table_length; i++) {
jiangli@3917 1295 u2 start_pc = cfs->get_u2_fast();
jiangli@3917 1296 u2 end_pc = cfs->get_u2_fast();
jiangli@3917 1297 u2 handler_pc = cfs->get_u2_fast();
jiangli@3917 1298 u2 catch_type_index = cfs->get_u2_fast();
duke@435 1299 guarantee_property((start_pc < end_pc) && (end_pc <= code_length),
jiangli@3917 1300 "Illegal exception table range in class file %s",
jiangli@3917 1301 CHECK_NULL);
duke@435 1302 guarantee_property(handler_pc < code_length,
jiangli@3917 1303 "Illegal exception table handler in class file %s",
jiangli@3917 1304 CHECK_NULL);
duke@435 1305 if (catch_type_index != 0) {
coleenp@4719 1306 guarantee_property(valid_klass_reference_at(catch_type_index),
jiangli@3917 1307 "Catch type in exception table has bad constant type in class file %s", CHECK_NULL);
duke@435 1308 }
duke@435 1309 }
jiangli@3917 1310 } else {
jiangli@3917 1311 cfs->skip_u2_fast(exception_table_length * 4);
duke@435 1312 }
jiangli@3917 1313 return exception_table_start;
duke@435 1314 }
duke@435 1315
duke@435 1316 void ClassFileParser::parse_linenumber_table(
duke@435 1317 u4 code_attribute_length, u4 code_length,
duke@435 1318 CompressedLineNumberWriteStream** write_stream, TRAPS) {
duke@435 1319 ClassFileStream* cfs = stream();
duke@435 1320 unsigned int num_entries = cfs->get_u2(CHECK);
duke@435 1321
duke@435 1322 // Each entry is a u2 start_pc, and a u2 line_number
duke@435 1323 unsigned int length_in_bytes = num_entries * (sizeof(u2) + sizeof(u2));
duke@435 1324
duke@435 1325 // Verify line number attribute and table length
duke@435 1326 check_property(
duke@435 1327 code_attribute_length == sizeof(u2) + length_in_bytes,
duke@435 1328 "LineNumberTable attribute has wrong length in class file %s", CHECK);
duke@435 1329
duke@435 1330 cfs->guarantee_more(length_in_bytes, CHECK);
duke@435 1331
duke@435 1332 if ((*write_stream) == NULL) {
duke@435 1333 if (length_in_bytes > fixed_buffer_size) {
duke@435 1334 (*write_stream) = new CompressedLineNumberWriteStream(length_in_bytes);
duke@435 1335 } else {
duke@435 1336 (*write_stream) = new CompressedLineNumberWriteStream(
duke@435 1337 linenumbertable_buffer, fixed_buffer_size);
duke@435 1338 }
duke@435 1339 }
duke@435 1340
duke@435 1341 while (num_entries-- > 0) {
duke@435 1342 u2 bci = cfs->get_u2_fast(); // start_pc
duke@435 1343 u2 line = cfs->get_u2_fast(); // line_number
duke@435 1344 guarantee_property(bci < code_length,
duke@435 1345 "Invalid pc in LineNumberTable in class file %s", CHECK);
duke@435 1346 (*write_stream)->write_pair(bci, line);
duke@435 1347 }
duke@435 1348 }
duke@435 1349
duke@435 1350
duke@435 1351 // Class file LocalVariableTable elements.
duke@435 1352 class Classfile_LVT_Element VALUE_OBJ_CLASS_SPEC {
duke@435 1353 public:
duke@435 1354 u2 start_bci;
duke@435 1355 u2 length;
duke@435 1356 u2 name_cp_index;
duke@435 1357 u2 descriptor_cp_index;
duke@435 1358 u2 slot;
duke@435 1359 };
duke@435 1360
duke@435 1361
zgu@3900 1362 class LVT_Hash: public CHeapObj<mtClass> {
duke@435 1363 public:
duke@435 1364 LocalVariableTableElement *_elem; // element
duke@435 1365 LVT_Hash* _next; // Next entry in hash table
duke@435 1366 };
duke@435 1367
duke@435 1368 unsigned int hash(LocalVariableTableElement *elem) {
duke@435 1369 unsigned int raw_hash = elem->start_bci;
duke@435 1370
duke@435 1371 raw_hash = elem->length + raw_hash * 37;
duke@435 1372 raw_hash = elem->name_cp_index + raw_hash * 37;
duke@435 1373 raw_hash = elem->slot + raw_hash * 37;
duke@435 1374
duke@435 1375 return raw_hash % HASH_ROW_SIZE;
duke@435 1376 }
duke@435 1377
duke@435 1378 void initialize_hashtable(LVT_Hash** table) {
duke@435 1379 for (int i = 0; i < HASH_ROW_SIZE; i++) {
duke@435 1380 table[i] = NULL;
duke@435 1381 }
duke@435 1382 }
duke@435 1383
duke@435 1384 void clear_hashtable(LVT_Hash** table) {
duke@435 1385 for (int i = 0; i < HASH_ROW_SIZE; i++) {
duke@435 1386 LVT_Hash* current = table[i];
duke@435 1387 LVT_Hash* next;
duke@435 1388 while (current != NULL) {
duke@435 1389 next = current->_next;
duke@435 1390 current->_next = NULL;
duke@435 1391 delete(current);
duke@435 1392 current = next;
duke@435 1393 }
duke@435 1394 table[i] = NULL;
duke@435 1395 }
duke@435 1396 }
duke@435 1397
duke@435 1398 LVT_Hash* LVT_lookup(LocalVariableTableElement *elem, int index, LVT_Hash** table) {
duke@435 1399 LVT_Hash* entry = table[index];
duke@435 1400
duke@435 1401 /*
duke@435 1402 * 3-tuple start_bci/length/slot has to be unique key,
duke@435 1403 * so the following comparison seems to be redundant:
duke@435 1404 * && elem->name_cp_index == entry->_elem->name_cp_index
duke@435 1405 */
duke@435 1406 while (entry != NULL) {
duke@435 1407 if (elem->start_bci == entry->_elem->start_bci
duke@435 1408 && elem->length == entry->_elem->length
duke@435 1409 && elem->name_cp_index == entry->_elem->name_cp_index
duke@435 1410 && elem->slot == entry->_elem->slot
duke@435 1411 ) {
duke@435 1412 return entry;
duke@435 1413 }
duke@435 1414 entry = entry->_next;
duke@435 1415 }
duke@435 1416 return NULL;
duke@435 1417 }
duke@435 1418
duke@435 1419 // Return false if the local variable is found in table.
duke@435 1420 // Return true if no duplicate is found.
duke@435 1421 // And local variable is added as a new entry in table.
duke@435 1422 bool LVT_put_after_lookup(LocalVariableTableElement *elem, LVT_Hash** table) {
duke@435 1423 // First lookup for duplicates
duke@435 1424 int index = hash(elem);
duke@435 1425 LVT_Hash* entry = LVT_lookup(elem, index, table);
duke@435 1426
duke@435 1427 if (entry != NULL) {
duke@435 1428 return false;
duke@435 1429 }
duke@435 1430 // No duplicate is found, allocate a new entry and fill it.
duke@435 1431 if ((entry = new LVT_Hash()) == NULL) {
duke@435 1432 return false;
duke@435 1433 }
duke@435 1434 entry->_elem = elem;
duke@435 1435
duke@435 1436 // Insert into hash table
duke@435 1437 entry->_next = table[index];
duke@435 1438 table[index] = entry;
duke@435 1439
duke@435 1440 return true;
duke@435 1441 }
duke@435 1442
duke@435 1443 void copy_lvt_element(Classfile_LVT_Element *src, LocalVariableTableElement *lvt) {
duke@435 1444 lvt->start_bci = Bytes::get_Java_u2((u1*) &src->start_bci);
duke@435 1445 lvt->length = Bytes::get_Java_u2((u1*) &src->length);
duke@435 1446 lvt->name_cp_index = Bytes::get_Java_u2((u1*) &src->name_cp_index);
duke@435 1447 lvt->descriptor_cp_index = Bytes::get_Java_u2((u1*) &src->descriptor_cp_index);
duke@435 1448 lvt->signature_cp_index = 0;
duke@435 1449 lvt->slot = Bytes::get_Java_u2((u1*) &src->slot);
duke@435 1450 }
duke@435 1451
duke@435 1452 // Function is used to parse both attributes:
duke@435 1453 // LocalVariableTable (LVT) and LocalVariableTypeTable (LVTT)
duke@435 1454 u2* ClassFileParser::parse_localvariable_table(u4 code_length,
duke@435 1455 u2 max_locals,
duke@435 1456 u4 code_attribute_length,
duke@435 1457 u2* localvariable_table_length,
duke@435 1458 bool isLVTT,
duke@435 1459 TRAPS) {
duke@435 1460 ClassFileStream* cfs = stream();
duke@435 1461 const char * tbl_name = (isLVTT) ? "LocalVariableTypeTable" : "LocalVariableTable";
duke@435 1462 *localvariable_table_length = cfs->get_u2(CHECK_NULL);
duke@435 1463 unsigned int size = (*localvariable_table_length) * sizeof(Classfile_LVT_Element) / sizeof(u2);
duke@435 1464 // Verify local variable table attribute has right length
duke@435 1465 if (_need_verify) {
duke@435 1466 guarantee_property(code_attribute_length == (sizeof(*localvariable_table_length) + size * sizeof(u2)),
duke@435 1467 "%s has wrong length in class file %s", tbl_name, CHECK_NULL);
duke@435 1468 }
duke@435 1469 u2* localvariable_table_start = cfs->get_u2_buffer();
duke@435 1470 assert(localvariable_table_start != NULL, "null local variable table");
duke@435 1471 if (!_need_verify) {
duke@435 1472 cfs->skip_u2_fast(size);
duke@435 1473 } else {
duke@435 1474 cfs->guarantee_more(size * 2, CHECK_NULL);
duke@435 1475 for(int i = 0; i < (*localvariable_table_length); i++) {
duke@435 1476 u2 start_pc = cfs->get_u2_fast();
duke@435 1477 u2 length = cfs->get_u2_fast();
duke@435 1478 u2 name_index = cfs->get_u2_fast();
duke@435 1479 u2 descriptor_index = cfs->get_u2_fast();
duke@435 1480 u2 index = cfs->get_u2_fast();
duke@435 1481 // Assign to a u4 to avoid overflow
duke@435 1482 u4 end_pc = (u4)start_pc + (u4)length;
duke@435 1483
duke@435 1484 if (start_pc >= code_length) {
duke@435 1485 classfile_parse_error(
duke@435 1486 "Invalid start_pc %u in %s in class file %s",
duke@435 1487 start_pc, tbl_name, CHECK_NULL);
duke@435 1488 }
duke@435 1489 if (end_pc > code_length) {
duke@435 1490 classfile_parse_error(
duke@435 1491 "Invalid length %u in %s in class file %s",
duke@435 1492 length, tbl_name, CHECK_NULL);
duke@435 1493 }
coleenp@4719 1494 int cp_size = _cp->length();
coleenp@4719 1495 guarantee_property(valid_symbol_at(name_index),
duke@435 1496 "Name index %u in %s has bad constant type in class file %s",
duke@435 1497 name_index, tbl_name, CHECK_NULL);
coleenp@4719 1498 guarantee_property(valid_symbol_at(descriptor_index),
duke@435 1499 "Signature index %u in %s has bad constant type in class file %s",
duke@435 1500 descriptor_index, tbl_name, CHECK_NULL);
duke@435 1501
coleenp@4719 1502 Symbol* name = _cp->symbol_at(name_index);
coleenp@4719 1503 Symbol* sig = _cp->symbol_at(descriptor_index);
duke@435 1504 verify_legal_field_name(name, CHECK_NULL);
duke@435 1505 u2 extra_slot = 0;
duke@435 1506 if (!isLVTT) {
duke@435 1507 verify_legal_field_signature(name, sig, CHECK_NULL);
duke@435 1508
duke@435 1509 // 4894874: check special cases for double and long local variables
coleenp@2497 1510 if (sig == vmSymbols::type_signature(T_DOUBLE) ||
coleenp@2497 1511 sig == vmSymbols::type_signature(T_LONG)) {
duke@435 1512 extra_slot = 1;
duke@435 1513 }
duke@435 1514 }
duke@435 1515 guarantee_property((index + extra_slot) < max_locals,
duke@435 1516 "Invalid index %u in %s in class file %s",
duke@435 1517 index, tbl_name, CHECK_NULL);
duke@435 1518 }
duke@435 1519 }
duke@435 1520 return localvariable_table_start;
duke@435 1521 }
duke@435 1522
duke@435 1523
duke@435 1524 void ClassFileParser::parse_type_array(u2 array_length, u4 code_length, u4* u1_index, u4* u2_index,
coleenp@4719 1525 u1* u1_array, u2* u2_array, TRAPS) {
duke@435 1526 ClassFileStream* cfs = stream();
duke@435 1527 u2 index = 0; // index in the array with long/double occupying two slots
duke@435 1528 u4 i1 = *u1_index;
duke@435 1529 u4 i2 = *u2_index + 1;
duke@435 1530 for(int i = 0; i < array_length; i++) {
duke@435 1531 u1 tag = u1_array[i1++] = cfs->get_u1(CHECK);
duke@435 1532 index++;
duke@435 1533 if (tag == ITEM_Long || tag == ITEM_Double) {
duke@435 1534 index++;
duke@435 1535 } else if (tag == ITEM_Object) {
duke@435 1536 u2 class_index = u2_array[i2++] = cfs->get_u2(CHECK);
coleenp@4719 1537 guarantee_property(valid_klass_reference_at(class_index),
duke@435 1538 "Bad class index %u in StackMap in class file %s",
duke@435 1539 class_index, CHECK);
duke@435 1540 } else if (tag == ITEM_Uninitialized) {
duke@435 1541 u2 offset = u2_array[i2++] = cfs->get_u2(CHECK);
duke@435 1542 guarantee_property(
duke@435 1543 offset < code_length,
duke@435 1544 "Bad uninitialized type offset %u in StackMap in class file %s",
duke@435 1545 offset, CHECK);
duke@435 1546 } else {
duke@435 1547 guarantee_property(
duke@435 1548 tag <= (u1)ITEM_Uninitialized,
duke@435 1549 "Unknown variable type %u in StackMap in class file %s",
duke@435 1550 tag, CHECK);
duke@435 1551 }
duke@435 1552 }
duke@435 1553 u2_array[*u2_index] = index;
duke@435 1554 *u1_index = i1;
duke@435 1555 *u2_index = i2;
duke@435 1556 }
duke@435 1557
coleenp@4719 1558 u1* ClassFileParser::parse_stackmap_table(
duke@435 1559 u4 code_attribute_length, TRAPS) {
duke@435 1560 if (code_attribute_length == 0)
duke@435 1561 return NULL;
duke@435 1562
duke@435 1563 ClassFileStream* cfs = stream();
duke@435 1564 u1* stackmap_table_start = cfs->get_u1_buffer();
duke@435 1565 assert(stackmap_table_start != NULL, "null stackmap table");
duke@435 1566
duke@435 1567 // check code_attribute_length first
duke@435 1568 stream()->skip_u1(code_attribute_length, CHECK_NULL);
duke@435 1569
duke@435 1570 if (!_need_verify && !DumpSharedSpaces) {
duke@435 1571 return NULL;
duke@435 1572 }
coleenp@4719 1573 return stackmap_table_start;
duke@435 1574 }
duke@435 1575
duke@435 1576 u2* ClassFileParser::parse_checked_exceptions(u2* checked_exceptions_length,
duke@435 1577 u4 method_attribute_length,
coleenp@4719 1578 TRAPS) {
duke@435 1579 ClassFileStream* cfs = stream();
duke@435 1580 cfs->guarantee_more(2, CHECK_NULL); // checked_exceptions_length
duke@435 1581 *checked_exceptions_length = cfs->get_u2_fast();
duke@435 1582 unsigned int size = (*checked_exceptions_length) * sizeof(CheckedExceptionElement) / sizeof(u2);
duke@435 1583 u2* checked_exceptions_start = cfs->get_u2_buffer();
duke@435 1584 assert(checked_exceptions_start != NULL, "null checked exceptions");
duke@435 1585 if (!_need_verify) {
duke@435 1586 cfs->skip_u2_fast(size);
duke@435 1587 } else {
duke@435 1588 // Verify each value in the checked exception table
duke@435 1589 u2 checked_exception;
duke@435 1590 u2 len = *checked_exceptions_length;
duke@435 1591 cfs->guarantee_more(2 * len, CHECK_NULL);
duke@435 1592 for (int i = 0; i < len; i++) {
duke@435 1593 checked_exception = cfs->get_u2_fast();
duke@435 1594 check_property(
coleenp@4719 1595 valid_klass_reference_at(checked_exception),
duke@435 1596 "Exception name has bad type at constant pool %u in class file %s",
duke@435 1597 checked_exception, CHECK_NULL);
duke@435 1598 }
duke@435 1599 }
duke@435 1600 // check exceptions attribute length
duke@435 1601 if (_need_verify) {
duke@435 1602 guarantee_property(method_attribute_length == (sizeof(*checked_exceptions_length) +
duke@435 1603 sizeof(u2) * size),
duke@435 1604 "Exceptions attribute has wrong length in class file %s", CHECK_NULL);
duke@435 1605 }
duke@435 1606 return checked_exceptions_start;
duke@435 1607 }
duke@435 1608
kamg@1941 1609 void ClassFileParser::throwIllegalSignature(
coleenp@2497 1610 const char* type, Symbol* name, Symbol* sig, TRAPS) {
kamg@1941 1611 ResourceMark rm(THREAD);
kamg@1941 1612 Exceptions::fthrow(THREAD_AND_LOCATION,
kamg@1941 1613 vmSymbols::java_lang_ClassFormatError(),
kamg@1941 1614 "%s \"%s\" in class %s has illegal signature \"%s\"", type,
kamg@1941 1615 name->as_C_string(), _class_name->as_C_string(), sig->as_C_string());
kamg@1941 1616 }
duke@435 1617
jrose@3926 1618 // Skip an annotation. Return >=limit if there is any problem.
jrose@3926 1619 int ClassFileParser::skip_annotation(u1* buffer, int limit, int index) {
jrose@3926 1620 // annotation := atype:u2 do(nmem:u2) {member:u2 value}
jrose@3926 1621 // value := switch (tag:u1) { ... }
jrose@3926 1622 index += 2; // skip atype
jrose@3926 1623 if ((index += 2) >= limit) return limit; // read nmem
jrose@3926 1624 int nmem = Bytes::get_Java_u2(buffer+index-2);
jrose@3926 1625 while (--nmem >= 0 && index < limit) {
jrose@3926 1626 index += 2; // skip member
jrose@3926 1627 index = skip_annotation_value(buffer, limit, index);
jrose@3926 1628 }
jrose@3926 1629 return index;
jrose@3926 1630 }
jrose@3926 1631
jrose@3926 1632 // Skip an annotation value. Return >=limit if there is any problem.
jrose@3926 1633 int ClassFileParser::skip_annotation_value(u1* buffer, int limit, int index) {
jrose@3926 1634 // value := switch (tag:u1) {
jrose@3926 1635 // case B, C, I, S, Z, D, F, J, c: con:u2;
jrose@3926 1636 // case e: e_class:u2 e_name:u2;
jrose@3926 1637 // case s: s_con:u2;
jrose@3926 1638 // case [: do(nval:u2) {value};
jrose@3926 1639 // case @: annotation;
jrose@3926 1640 // case s: s_con:u2;
jrose@3926 1641 // }
jrose@3926 1642 if ((index += 1) >= limit) return limit; // read tag
jrose@3926 1643 u1 tag = buffer[index-1];
jrose@3926 1644 switch (tag) {
jrose@3926 1645 case 'B': case 'C': case 'I': case 'S': case 'Z':
jrose@3926 1646 case 'D': case 'F': case 'J': case 'c': case 's':
jrose@3926 1647 index += 2; // skip con or s_con
jrose@3926 1648 break;
jrose@3926 1649 case 'e':
jrose@3926 1650 index += 4; // skip e_class, e_name
jrose@3926 1651 break;
jrose@3926 1652 case '[':
jrose@3926 1653 {
jrose@3926 1654 if ((index += 2) >= limit) return limit; // read nval
jrose@3926 1655 int nval = Bytes::get_Java_u2(buffer+index-2);
jrose@3926 1656 while (--nval >= 0 && index < limit) {
jrose@3926 1657 index = skip_annotation_value(buffer, limit, index);
jrose@3926 1658 }
jrose@3926 1659 }
jrose@3926 1660 break;
jrose@3926 1661 case '@':
jrose@3926 1662 index = skip_annotation(buffer, limit, index);
jrose@3926 1663 break;
jrose@3926 1664 default:
jrose@3926 1665 assert(false, "annotation tag");
jrose@3926 1666 return limit; // bad tag byte
jrose@3926 1667 }
jrose@3926 1668 return index;
jrose@3926 1669 }
jrose@3926 1670
jrose@3926 1671 // Sift through annotations, looking for those significant to the VM:
coleenp@4719 1672 void ClassFileParser::parse_annotations(u1* buffer, int limit,
jrose@3926 1673 ClassFileParser::AnnotationCollector* coll,
jrose@3926 1674 TRAPS) {
jrose@3926 1675 // annotations := do(nann:u2) {annotation}
jrose@3926 1676 int index = 0;
jrose@3926 1677 if ((index += 2) >= limit) return; // read nann
jrose@3926 1678 int nann = Bytes::get_Java_u2(buffer+index-2);
jrose@3926 1679 enum { // initial annotation layout
jrose@3926 1680 atype_off = 0, // utf8 such as 'Ljava/lang/annotation/Retention;'
jrose@3926 1681 count_off = 2, // u2 such as 1 (one value)
jrose@3926 1682 member_off = 4, // utf8 such as 'value'
jrose@3926 1683 tag_off = 6, // u1 such as 'c' (type) or 'e' (enum)
jrose@3926 1684 e_tag_val = 'e',
jrose@3926 1685 e_type_off = 7, // utf8 such as 'Ljava/lang/annotation/RetentionPolicy;'
jrose@3926 1686 e_con_off = 9, // utf8 payload, such as 'SOURCE', 'CLASS', 'RUNTIME'
jrose@3926 1687 e_size = 11, // end of 'e' annotation
jwilhelm@4430 1688 c_tag_val = 'c', // payload is type
jwilhelm@4430 1689 c_con_off = 7, // utf8 payload, such as 'I'
jrose@3926 1690 c_size = 9, // end of 'c' annotation
jwilhelm@4430 1691 s_tag_val = 's', // payload is String
jwilhelm@4430 1692 s_con_off = 7, // utf8 payload, such as 'Ljava/lang/String;'
jwilhelm@4430 1693 s_size = 9,
jrose@3926 1694 min_size = 6 // smallest possible size (zero members)
jrose@3926 1695 };
jrose@3926 1696 while ((--nann) >= 0 && (index-2 + min_size <= limit)) {
jrose@3926 1697 int index0 = index;
jrose@3926 1698 index = skip_annotation(buffer, limit, index);
jrose@3926 1699 u1* abase = buffer + index0;
jrose@3926 1700 int atype = Bytes::get_Java_u2(abase + atype_off);
jrose@3926 1701 int count = Bytes::get_Java_u2(abase + count_off);
coleenp@4719 1702 Symbol* aname = check_symbol_at(_cp, atype);
jrose@3926 1703 if (aname == NULL) break; // invalid annotation name
jrose@3926 1704 Symbol* member = NULL;
jrose@3926 1705 if (count >= 1) {
jrose@3926 1706 int member_index = Bytes::get_Java_u2(abase + member_off);
coleenp@4719 1707 member = check_symbol_at(_cp, member_index);
jrose@3926 1708 if (member == NULL) break; // invalid member name
jrose@3926 1709 }
jrose@3926 1710
jrose@3926 1711 // Here is where parsing particular annotations will take place.
coleenp@4719 1712 AnnotationCollector::ID id = coll->annotation_index(_loader_data, aname);
jrose@3926 1713 if (id == AnnotationCollector::_unknown) continue;
jrose@3926 1714 coll->set_annotation(id);
jwilhelm@4430 1715
jwilhelm@4430 1716 if (id == AnnotationCollector::_sun_misc_Contended) {
jwilhelm@4430 1717 if (count == 1
jwilhelm@4430 1718 && s_size == (index - index0) // match size
jwilhelm@4430 1719 && s_tag_val == *(abase + tag_off)
jwilhelm@4430 1720 && member == vmSymbols::value_name()) {
jwilhelm@4430 1721 u2 group_index = Bytes::get_Java_u2(abase + s_con_off);
jwilhelm@4430 1722 coll->set_contended_group(group_index);
jwilhelm@4430 1723 } else {
jwilhelm@4430 1724 coll->set_contended_group(0); // default contended group
jwilhelm@4430 1725 }
jwilhelm@4430 1726 coll->set_contended(true);
jwilhelm@4430 1727 } else {
jwilhelm@4430 1728 coll->set_contended(false);
jwilhelm@4430 1729 }
jrose@3926 1730 }
jrose@3926 1731 }
jrose@3926 1732
jwilhelm@4430 1733 ClassFileParser::AnnotationCollector::ID
jwilhelm@4430 1734 ClassFileParser::AnnotationCollector::annotation_index(ClassLoaderData* loader_data,
jwilhelm@4430 1735 Symbol* name) {
jrose@3926 1736 vmSymbols::SID sid = vmSymbols::find_sid(name);
kmo@4481 1737 // Privileged code can use all annotations. Other code silently drops some.
twisti@4866 1738 const bool privileged = loader_data->is_the_null_class_loader_data() ||
twisti@4866 1739 loader_data->is_ext_class_loader_data() ||
twisti@4866 1740 loader_data->is_anonymous();
jrose@3926 1741 switch (sid) {
twisti@4866 1742 case vmSymbols::VM_SYMBOL_ENUM_NAME(sun_reflect_CallerSensitive_signature):
twisti@4866 1743 if (_location != _in_method) break; // only allow for methods
twisti@4866 1744 if (!privileged) break; // only allow in privileged code
twisti@4866 1745 return _method_CallerSensitive;
jrose@3926 1746 case vmSymbols::VM_SYMBOL_ENUM_NAME(java_lang_invoke_ForceInline_signature):
jrose@3926 1747 if (_location != _in_method) break; // only allow for methods
jwilhelm@4430 1748 if (!privileged) break; // only allow in privileged code
jrose@3926 1749 return _method_ForceInline;
twisti@3969 1750 case vmSymbols::VM_SYMBOL_ENUM_NAME(java_lang_invoke_DontInline_signature):
twisti@3969 1751 if (_location != _in_method) break; // only allow for methods
jwilhelm@4430 1752 if (!privileged) break; // only allow in privileged code
twisti@3969 1753 return _method_DontInline;
twisti@3969 1754 case vmSymbols::VM_SYMBOL_ENUM_NAME(java_lang_invoke_LambdaForm_Compiled_signature):
twisti@3969 1755 if (_location != _in_method) break; // only allow for methods
jwilhelm@4430 1756 if (!privileged) break; // only allow in privileged code
twisti@3969 1757 return _method_LambdaForm_Compiled;
twisti@3969 1758 case vmSymbols::VM_SYMBOL_ENUM_NAME(java_lang_invoke_LambdaForm_Hidden_signature):
twisti@3969 1759 if (_location != _in_method) break; // only allow for methods
jwilhelm@4430 1760 if (!privileged) break; // only allow in privileged code
twisti@3969 1761 return _method_LambdaForm_Hidden;
jwilhelm@4430 1762 case vmSymbols::VM_SYMBOL_ENUM_NAME(sun_misc_Contended_signature):
jwilhelm@4430 1763 if (_location != _in_field && _location != _in_class) break; // only allow for fields and classes
jwilhelm@4430 1764 if (!EnableContended || (RestrictContended && !privileged)) break; // honor privileges
jwilhelm@4430 1765 return _sun_misc_Contended;
jrose@3926 1766 default: break;
jrose@3926 1767 }
jrose@3926 1768 return AnnotationCollector::_unknown;
jrose@3926 1769 }
jrose@3926 1770
jrose@3926 1771 void ClassFileParser::FieldAnnotationCollector::apply_to(FieldInfo* f) {
jwilhelm@4430 1772 if (is_contended())
jwilhelm@4430 1773 f->set_contended_group(contended_group());
jrose@3926 1774 }
jrose@3926 1775
coleenp@4719 1776 ClassFileParser::FieldAnnotationCollector::~FieldAnnotationCollector() {
coleenp@4719 1777 // If there's an error deallocate metadata for field annotations
coleenp@4719 1778 MetadataFactory::free_array<u1>(_loader_data, _field_annotations);
coleenp@4719 1779 MetadataFactory::free_array<u1>(_loader_data, _field_type_annotations);
coleenp@4719 1780 }
coleenp@4719 1781
jrose@3926 1782 void ClassFileParser::MethodAnnotationCollector::apply_to(methodHandle m) {
twisti@4866 1783 if (has_annotation(_method_CallerSensitive))
twisti@4866 1784 m->set_caller_sensitive(true);
jrose@3926 1785 if (has_annotation(_method_ForceInline))
jrose@3926 1786 m->set_force_inline(true);
twisti@3969 1787 if (has_annotation(_method_DontInline))
twisti@3969 1788 m->set_dont_inline(true);
twisti@3969 1789 if (has_annotation(_method_LambdaForm_Compiled) && m->intrinsic_id() == vmIntrinsics::_none)
twisti@3969 1790 m->set_intrinsic_id(vmIntrinsics::_compiledLambdaForm);
twisti@3969 1791 if (has_annotation(_method_LambdaForm_Hidden))
twisti@3969 1792 m->set_hidden(true);
jrose@3926 1793 }
jrose@3926 1794
jrose@3926 1795 void ClassFileParser::ClassAnnotationCollector::apply_to(instanceKlassHandle k) {
jwilhelm@4430 1796 k->set_is_contended(is_contended());
jrose@3926 1797 }
jrose@3926 1798
jrose@3926 1799
duke@435 1800 #define MAX_ARGS_SIZE 255
duke@435 1801 #define MAX_CODE_SIZE 65535
duke@435 1802 #define INITIAL_MAX_LVT_NUMBER 256
duke@435 1803
coleenp@4572 1804 /* Copy class file LVT's/LVTT's into the HotSpot internal LVT.
coleenp@4572 1805 *
coleenp@4572 1806 * Rules for LVT's and LVTT's are:
coleenp@4572 1807 * - There can be any number of LVT's and LVTT's.
coleenp@4572 1808 * - If there are n LVT's, it is the same as if there was just
coleenp@4572 1809 * one LVT containing all the entries from the n LVT's.
coleenp@4572 1810 * - There may be no more than one LVT entry per local variable.
coleenp@4572 1811 * Two LVT entries are 'equal' if these fields are the same:
coleenp@4572 1812 * start_pc, length, name, slot
coleenp@4572 1813 * - There may be no more than one LVTT entry per each LVT entry.
coleenp@4572 1814 * Each LVTT entry has to match some LVT entry.
coleenp@4572 1815 * - HotSpot internal LVT keeps natural ordering of class file LVT entries.
coleenp@4572 1816 */
coleenp@4572 1817 void ClassFileParser::copy_localvariable_table(ConstMethod* cm,
coleenp@4572 1818 int lvt_cnt,
coleenp@4572 1819 u2* localvariable_table_length,
coleenp@4572 1820 u2** localvariable_table_start,
coleenp@4572 1821 int lvtt_cnt,
coleenp@4572 1822 u2* localvariable_type_table_length,
coleenp@4572 1823 u2** localvariable_type_table_start,
coleenp@4572 1824 TRAPS) {
coleenp@4572 1825
coleenp@4572 1826 LVT_Hash** lvt_Hash = NEW_RESOURCE_ARRAY(LVT_Hash*, HASH_ROW_SIZE);
coleenp@4572 1827 initialize_hashtable(lvt_Hash);
coleenp@4572 1828
coleenp@4572 1829 // To fill LocalVariableTable in
coleenp@4572 1830 Classfile_LVT_Element* cf_lvt;
coleenp@4572 1831 LocalVariableTableElement* lvt = cm->localvariable_table_start();
coleenp@4572 1832
coleenp@4572 1833 for (int tbl_no = 0; tbl_no < lvt_cnt; tbl_no++) {
coleenp@4572 1834 cf_lvt = (Classfile_LVT_Element *) localvariable_table_start[tbl_no];
coleenp@4572 1835 for (int idx = 0; idx < localvariable_table_length[tbl_no]; idx++, lvt++) {
coleenp@4572 1836 copy_lvt_element(&cf_lvt[idx], lvt);
coleenp@4572 1837 // If no duplicates, add LVT elem in hashtable lvt_Hash.
coleenp@4572 1838 if (LVT_put_after_lookup(lvt, lvt_Hash) == false
coleenp@4572 1839 && _need_verify
coleenp@4572 1840 && _major_version >= JAVA_1_5_VERSION) {
coleenp@4572 1841 clear_hashtable(lvt_Hash);
coleenp@4572 1842 classfile_parse_error("Duplicated LocalVariableTable attribute "
coleenp@4572 1843 "entry for '%s' in class file %s",
coleenp@4719 1844 _cp->symbol_at(lvt->name_cp_index)->as_utf8(),
coleenp@4572 1845 CHECK);
coleenp@4572 1846 }
coleenp@4572 1847 }
coleenp@4572 1848 }
coleenp@4572 1849
coleenp@4572 1850 // To merge LocalVariableTable and LocalVariableTypeTable
coleenp@4572 1851 Classfile_LVT_Element* cf_lvtt;
coleenp@4572 1852 LocalVariableTableElement lvtt_elem;
coleenp@4572 1853
coleenp@4572 1854 for (int tbl_no = 0; tbl_no < lvtt_cnt; tbl_no++) {
coleenp@4572 1855 cf_lvtt = (Classfile_LVT_Element *) localvariable_type_table_start[tbl_no];
coleenp@4572 1856 for (int idx = 0; idx < localvariable_type_table_length[tbl_no]; idx++) {
coleenp@4572 1857 copy_lvt_element(&cf_lvtt[idx], &lvtt_elem);
coleenp@4572 1858 int index = hash(&lvtt_elem);
coleenp@4572 1859 LVT_Hash* entry = LVT_lookup(&lvtt_elem, index, lvt_Hash);
coleenp@4572 1860 if (entry == NULL) {
coleenp@4572 1861 if (_need_verify) {
coleenp@4572 1862 clear_hashtable(lvt_Hash);
coleenp@4572 1863 classfile_parse_error("LVTT entry for '%s' in class file %s "
coleenp@4572 1864 "does not match any LVT entry",
coleenp@4719 1865 _cp->symbol_at(lvtt_elem.name_cp_index)->as_utf8(),
coleenp@4572 1866 CHECK);
coleenp@4572 1867 }
coleenp@4572 1868 } else if (entry->_elem->signature_cp_index != 0 && _need_verify) {
coleenp@4572 1869 clear_hashtable(lvt_Hash);
coleenp@4572 1870 classfile_parse_error("Duplicated LocalVariableTypeTable attribute "
coleenp@4572 1871 "entry for '%s' in class file %s",
coleenp@4719 1872 _cp->symbol_at(lvtt_elem.name_cp_index)->as_utf8(),
coleenp@4572 1873 CHECK);
coleenp@4572 1874 } else {
coleenp@4572 1875 // to add generic signatures into LocalVariableTable
coleenp@4572 1876 entry->_elem->signature_cp_index = lvtt_elem.descriptor_cp_index;
coleenp@4572 1877 }
coleenp@4572 1878 }
coleenp@4572 1879 }
coleenp@4572 1880 clear_hashtable(lvt_Hash);
coleenp@4572 1881 }
coleenp@4572 1882
coleenp@4572 1883
coleenp@4719 1884 void ClassFileParser::copy_method_annotations(ConstMethod* cm,
coleenp@4572 1885 u1* runtime_visible_annotations,
coleenp@4572 1886 int runtime_visible_annotations_length,
coleenp@4572 1887 u1* runtime_invisible_annotations,
coleenp@4572 1888 int runtime_invisible_annotations_length,
coleenp@4572 1889 u1* runtime_visible_parameter_annotations,
coleenp@4572 1890 int runtime_visible_parameter_annotations_length,
coleenp@4572 1891 u1* runtime_invisible_parameter_annotations,
coleenp@4572 1892 int runtime_invisible_parameter_annotations_length,
coleenp@4572 1893 u1* runtime_visible_type_annotations,
coleenp@4572 1894 int runtime_visible_type_annotations_length,
coleenp@4572 1895 u1* runtime_invisible_type_annotations,
coleenp@4572 1896 int runtime_invisible_type_annotations_length,
coleenp@4572 1897 u1* annotation_default,
coleenp@4572 1898 int annotation_default_length,
coleenp@4572 1899 TRAPS) {
coleenp@4572 1900
coleenp@4572 1901 AnnotationArray* a;
coleenp@4572 1902
coleenp@4572 1903 if (runtime_visible_annotations_length +
coleenp@4572 1904 runtime_invisible_annotations_length > 0) {
coleenp@4719 1905 a = assemble_annotations(runtime_visible_annotations,
coleenp@4572 1906 runtime_visible_annotations_length,
coleenp@4572 1907 runtime_invisible_annotations,
coleenp@4572 1908 runtime_invisible_annotations_length,
coleenp@4572 1909 CHECK);
coleenp@4572 1910 cm->set_method_annotations(a);
coleenp@4572 1911 }
coleenp@4572 1912
coleenp@4572 1913 if (runtime_visible_parameter_annotations_length +
coleenp@4572 1914 runtime_invisible_parameter_annotations_length > 0) {
coleenp@4719 1915 a = assemble_annotations(runtime_visible_parameter_annotations,
coleenp@4572 1916 runtime_visible_parameter_annotations_length,
coleenp@4572 1917 runtime_invisible_parameter_annotations,
coleenp@4572 1918 runtime_invisible_parameter_annotations_length,
coleenp@4572 1919 CHECK);
coleenp@4572 1920 cm->set_parameter_annotations(a);
coleenp@4572 1921 }
coleenp@4572 1922
coleenp@4572 1923 if (annotation_default_length > 0) {
coleenp@4719 1924 a = assemble_annotations(annotation_default,
coleenp@4572 1925 annotation_default_length,
coleenp@4572 1926 NULL,
coleenp@4572 1927 0,
coleenp@4572 1928 CHECK);
coleenp@4572 1929 cm->set_default_annotations(a);
coleenp@4572 1930 }
coleenp@4572 1931
coleenp@4572 1932 if (runtime_visible_type_annotations_length +
coleenp@4572 1933 runtime_invisible_type_annotations_length > 0) {
coleenp@4719 1934 a = assemble_annotations(runtime_visible_type_annotations,
coleenp@4572 1935 runtime_visible_type_annotations_length,
coleenp@4572 1936 runtime_invisible_type_annotations,
coleenp@4572 1937 runtime_invisible_type_annotations_length,
coleenp@4572 1938 CHECK);
coleenp@4572 1939 cm->set_type_annotations(a);
coleenp@4572 1940 }
coleenp@4572 1941 }
coleenp@4572 1942
coleenp@4572 1943
duke@435 1944 // Note: the parse_method below is big and clunky because all parsing of the code and exceptions
jrose@3926 1945 // attribute is inlined. This is cumbersome to avoid since we inline most of the parts in the
coleenp@4037 1946 // Method* to save footprint, so we only know the size of the resulting Method* when the
duke@435 1947 // entire method attribute is parsed.
duke@435 1948 //
duke@435 1949 // The promoted_flags parameter is used to pass relevant access_flags
duke@435 1950 // from the method back up to the containing klass. These flag values
duke@435 1951 // are added to klass's access_flags.
duke@435 1952
coleenp@4719 1953 methodHandle ClassFileParser::parse_method(bool is_interface,
duke@435 1954 AccessFlags *promoted_flags,
duke@435 1955 TRAPS) {
duke@435 1956 ClassFileStream* cfs = stream();
duke@435 1957 methodHandle nullHandle;
duke@435 1958 ResourceMark rm(THREAD);
duke@435 1959 // Parse fixed parts
duke@435 1960 cfs->guarantee_more(8, CHECK_(nullHandle)); // access_flags, name_index, descriptor_index, attributes_count
duke@435 1961
duke@435 1962 int flags = cfs->get_u2_fast();
duke@435 1963 u2 name_index = cfs->get_u2_fast();
coleenp@4719 1964 int cp_size = _cp->length();
duke@435 1965 check_property(
coleenp@4719 1966 valid_symbol_at(name_index),
duke@435 1967 "Illegal constant pool index %u for method name in class file %s",
duke@435 1968 name_index, CHECK_(nullHandle));
coleenp@4719 1969 Symbol* name = _cp->symbol_at(name_index);
duke@435 1970 verify_legal_method_name(name, CHECK_(nullHandle));
duke@435 1971
duke@435 1972 u2 signature_index = cfs->get_u2_fast();
duke@435 1973 guarantee_property(
coleenp@4719 1974 valid_symbol_at(signature_index),
duke@435 1975 "Illegal constant pool index %u for method signature in class file %s",
duke@435 1976 signature_index, CHECK_(nullHandle));
coleenp@4719 1977 Symbol* signature = _cp->symbol_at(signature_index);
duke@435 1978
duke@435 1979 AccessFlags access_flags;
duke@435 1980 if (name == vmSymbols::class_initializer_name()) {
kamg@2616 1981 // We ignore the other access flags for a valid class initializer.
kamg@2616 1982 // (JVM Spec 2nd ed., chapter 4.6)
kamg@2616 1983 if (_major_version < 51) { // backward compatibility
kamg@2616 1984 flags = JVM_ACC_STATIC;
kamg@2616 1985 } else if ((flags & JVM_ACC_STATIC) == JVM_ACC_STATIC) {
kamg@2616 1986 flags &= JVM_ACC_STATIC | JVM_ACC_STRICT;
kamg@2616 1987 }
duke@435 1988 } else {
duke@435 1989 verify_legal_method_modifiers(flags, is_interface, name, CHECK_(nullHandle));
duke@435 1990 }
duke@435 1991
duke@435 1992 int args_size = -1; // only used when _need_verify is true
duke@435 1993 if (_need_verify) {
duke@435 1994 args_size = ((flags & JVM_ACC_STATIC) ? 0 : 1) +
duke@435 1995 verify_legal_method_signature(name, signature, CHECK_(nullHandle));
duke@435 1996 if (args_size > MAX_ARGS_SIZE) {
duke@435 1997 classfile_parse_error("Too many arguments in method signature in class file %s", CHECK_(nullHandle));
duke@435 1998 }
duke@435 1999 }
duke@435 2000
duke@435 2001 access_flags.set_flags(flags & JVM_RECOGNIZED_METHOD_MODIFIERS);
duke@435 2002
duke@435 2003 // Default values for code and exceptions attribute elements
duke@435 2004 u2 max_stack = 0;
duke@435 2005 u2 max_locals = 0;
duke@435 2006 u4 code_length = 0;
duke@435 2007 u1* code_start = 0;
duke@435 2008 u2 exception_table_length = 0;
jiangli@3917 2009 u2* exception_table_start = NULL;
coleenp@4037 2010 Array<int>* exception_handlers = Universe::the_empty_int_array();
duke@435 2011 u2 checked_exceptions_length = 0;
duke@435 2012 u2* checked_exceptions_start = NULL;
duke@435 2013 CompressedLineNumberWriteStream* linenumber_table = NULL;
duke@435 2014 int linenumber_table_length = 0;
duke@435 2015 int total_lvt_length = 0;
duke@435 2016 u2 lvt_cnt = 0;
duke@435 2017 u2 lvtt_cnt = 0;
duke@435 2018 bool lvt_allocated = false;
duke@435 2019 u2 max_lvt_cnt = INITIAL_MAX_LVT_NUMBER;
duke@435 2020 u2 max_lvtt_cnt = INITIAL_MAX_LVT_NUMBER;
duke@435 2021 u2* localvariable_table_length;
duke@435 2022 u2** localvariable_table_start;
duke@435 2023 u2* localvariable_type_table_length;
duke@435 2024 u2** localvariable_type_table_start;
coleenp@4398 2025 u2 method_parameters_length = 0;
coleenp@4398 2026 u1* method_parameters_data = NULL;
emc@4524 2027 bool method_parameters_seen = false;
emc@4524 2028 bool method_parameters_four_byte_flags;
duke@435 2029 bool parsed_code_attribute = false;
duke@435 2030 bool parsed_checked_exceptions_attribute = false;
duke@435 2031 bool parsed_stackmap_attribute = false;
duke@435 2032 // stackmap attribute - JDK1.5
coleenp@4719 2033 u1* stackmap_data = NULL;
coleenp@4719 2034 int stackmap_data_length = 0;
duke@435 2035 u2 generic_signature_index = 0;
jrose@3926 2036 MethodAnnotationCollector parsed_annotations;
duke@435 2037 u1* runtime_visible_annotations = NULL;
duke@435 2038 int runtime_visible_annotations_length = 0;
duke@435 2039 u1* runtime_invisible_annotations = NULL;
duke@435 2040 int runtime_invisible_annotations_length = 0;
duke@435 2041 u1* runtime_visible_parameter_annotations = NULL;
duke@435 2042 int runtime_visible_parameter_annotations_length = 0;
duke@435 2043 u1* runtime_invisible_parameter_annotations = NULL;
duke@435 2044 int runtime_invisible_parameter_annotations_length = 0;
stefank@4393 2045 u1* runtime_visible_type_annotations = NULL;
stefank@4393 2046 int runtime_visible_type_annotations_length = 0;
stefank@4393 2047 u1* runtime_invisible_type_annotations = NULL;
stefank@4393 2048 int runtime_invisible_type_annotations_length = 0;
duke@435 2049 u1* annotation_default = NULL;
duke@435 2050 int annotation_default_length = 0;
duke@435 2051
duke@435 2052 // Parse code and exceptions attribute
duke@435 2053 u2 method_attributes_count = cfs->get_u2_fast();
duke@435 2054 while (method_attributes_count--) {
duke@435 2055 cfs->guarantee_more(6, CHECK_(nullHandle)); // method_attribute_name_index, method_attribute_length
duke@435 2056 u2 method_attribute_name_index = cfs->get_u2_fast();
duke@435 2057 u4 method_attribute_length = cfs->get_u4_fast();
duke@435 2058 check_property(
coleenp@4719 2059 valid_symbol_at(method_attribute_name_index),
duke@435 2060 "Invalid method attribute name index %u in class file %s",
duke@435 2061 method_attribute_name_index, CHECK_(nullHandle));
duke@435 2062
coleenp@4719 2063 Symbol* method_attribute_name = _cp->symbol_at(method_attribute_name_index);
duke@435 2064 if (method_attribute_name == vmSymbols::tag_code()) {
duke@435 2065 // Parse Code attribute
duke@435 2066 if (_need_verify) {
kamg@4245 2067 guarantee_property(
kamg@4245 2068 !access_flags.is_native() && !access_flags.is_abstract(),
duke@435 2069 "Code attribute in native or abstract methods in class file %s",
duke@435 2070 CHECK_(nullHandle));
duke@435 2071 }
duke@435 2072 if (parsed_code_attribute) {
duke@435 2073 classfile_parse_error("Multiple Code attributes in class file %s", CHECK_(nullHandle));
duke@435 2074 }
duke@435 2075 parsed_code_attribute = true;
duke@435 2076
duke@435 2077 // Stack size, locals size, and code size
duke@435 2078 if (_major_version == 45 && _minor_version <= 2) {
duke@435 2079 cfs->guarantee_more(4, CHECK_(nullHandle));
duke@435 2080 max_stack = cfs->get_u1_fast();
duke@435 2081 max_locals = cfs->get_u1_fast();
duke@435 2082 code_length = cfs->get_u2_fast();
duke@435 2083 } else {
duke@435 2084 cfs->guarantee_more(8, CHECK_(nullHandle));
duke@435 2085 max_stack = cfs->get_u2_fast();
duke@435 2086 max_locals = cfs->get_u2_fast();
duke@435 2087 code_length = cfs->get_u4_fast();
duke@435 2088 }
duke@435 2089 if (_need_verify) {
duke@435 2090 guarantee_property(args_size <= max_locals,
duke@435 2091 "Arguments can't fit into locals in class file %s", CHECK_(nullHandle));
duke@435 2092 guarantee_property(code_length > 0 && code_length <= MAX_CODE_SIZE,
duke@435 2093 "Invalid method Code length %u in class file %s",
duke@435 2094 code_length, CHECK_(nullHandle));
duke@435 2095 }
duke@435 2096 // Code pointer
duke@435 2097 code_start = cfs->get_u1_buffer();
duke@435 2098 assert(code_start != NULL, "null code start");
duke@435 2099 cfs->guarantee_more(code_length, CHECK_(nullHandle));
duke@435 2100 cfs->skip_u1_fast(code_length);
duke@435 2101
duke@435 2102 // Exception handler table
duke@435 2103 cfs->guarantee_more(2, CHECK_(nullHandle)); // exception_table_length
duke@435 2104 exception_table_length = cfs->get_u2_fast();
duke@435 2105 if (exception_table_length > 0) {
jiangli@3917 2106 exception_table_start =
coleenp@4719 2107 parse_exception_table(code_length, exception_table_length, CHECK_(nullHandle));
duke@435 2108 }
duke@435 2109
duke@435 2110 // Parse additional attributes in code attribute
duke@435 2111 cfs->guarantee_more(2, CHECK_(nullHandle)); // code_attributes_count
duke@435 2112 u2 code_attributes_count = cfs->get_u2_fast();
kamg@527 2113
kamg@527 2114 unsigned int calculated_attribute_length = 0;
kamg@527 2115
kamg@527 2116 if (_major_version > 45 || (_major_version == 45 && _minor_version > 2)) {
kamg@527 2117 calculated_attribute_length =
kamg@527 2118 sizeof(max_stack) + sizeof(max_locals) + sizeof(code_length);
kamg@527 2119 } else {
kamg@527 2120 // max_stack, locals and length are smaller in pre-version 45.2 classes
kamg@527 2121 calculated_attribute_length = sizeof(u1) + sizeof(u1) + sizeof(u2);
kamg@527 2122 }
kamg@527 2123 calculated_attribute_length +=
kamg@527 2124 code_length +
kamg@527 2125 sizeof(exception_table_length) +
kamg@527 2126 sizeof(code_attributes_count) +
kamg@527 2127 exception_table_length *
kamg@527 2128 ( sizeof(u2) + // start_pc
kamg@527 2129 sizeof(u2) + // end_pc
kamg@527 2130 sizeof(u2) + // handler_pc
kamg@527 2131 sizeof(u2) ); // catch_type_index
duke@435 2132
duke@435 2133 while (code_attributes_count--) {
duke@435 2134 cfs->guarantee_more(6, CHECK_(nullHandle)); // code_attribute_name_index, code_attribute_length
duke@435 2135 u2 code_attribute_name_index = cfs->get_u2_fast();
duke@435 2136 u4 code_attribute_length = cfs->get_u4_fast();
duke@435 2137 calculated_attribute_length += code_attribute_length +
duke@435 2138 sizeof(code_attribute_name_index) +
duke@435 2139 sizeof(code_attribute_length);
coleenp@4719 2140 check_property(valid_symbol_at(code_attribute_name_index),
duke@435 2141 "Invalid code attribute name index %u in class file %s",
duke@435 2142 code_attribute_name_index,
duke@435 2143 CHECK_(nullHandle));
duke@435 2144 if (LoadLineNumberTables &&
coleenp@4719 2145 _cp->symbol_at(code_attribute_name_index) == vmSymbols::tag_line_number_table()) {
duke@435 2146 // Parse and compress line number table
duke@435 2147 parse_linenumber_table(code_attribute_length, code_length,
duke@435 2148 &linenumber_table, CHECK_(nullHandle));
duke@435 2149
duke@435 2150 } else if (LoadLocalVariableTables &&
coleenp@4719 2151 _cp->symbol_at(code_attribute_name_index) == vmSymbols::tag_local_variable_table()) {
duke@435 2152 // Parse local variable table
duke@435 2153 if (!lvt_allocated) {
duke@435 2154 localvariable_table_length = NEW_RESOURCE_ARRAY_IN_THREAD(
duke@435 2155 THREAD, u2, INITIAL_MAX_LVT_NUMBER);
duke@435 2156 localvariable_table_start = NEW_RESOURCE_ARRAY_IN_THREAD(
duke@435 2157 THREAD, u2*, INITIAL_MAX_LVT_NUMBER);
duke@435 2158 localvariable_type_table_length = NEW_RESOURCE_ARRAY_IN_THREAD(
duke@435 2159 THREAD, u2, INITIAL_MAX_LVT_NUMBER);
duke@435 2160 localvariable_type_table_start = NEW_RESOURCE_ARRAY_IN_THREAD(
duke@435 2161 THREAD, u2*, INITIAL_MAX_LVT_NUMBER);
duke@435 2162 lvt_allocated = true;
duke@435 2163 }
duke@435 2164 if (lvt_cnt == max_lvt_cnt) {
duke@435 2165 max_lvt_cnt <<= 1;
duke@435 2166 REALLOC_RESOURCE_ARRAY(u2, localvariable_table_length, lvt_cnt, max_lvt_cnt);
duke@435 2167 REALLOC_RESOURCE_ARRAY(u2*, localvariable_table_start, lvt_cnt, max_lvt_cnt);
duke@435 2168 }
duke@435 2169 localvariable_table_start[lvt_cnt] =
duke@435 2170 parse_localvariable_table(code_length,
duke@435 2171 max_locals,
duke@435 2172 code_attribute_length,
duke@435 2173 &localvariable_table_length[lvt_cnt],
duke@435 2174 false, // is not LVTT
duke@435 2175 CHECK_(nullHandle));
duke@435 2176 total_lvt_length += localvariable_table_length[lvt_cnt];
duke@435 2177 lvt_cnt++;
duke@435 2178 } else if (LoadLocalVariableTypeTables &&
duke@435 2179 _major_version >= JAVA_1_5_VERSION &&
coleenp@4719 2180 _cp->symbol_at(code_attribute_name_index) == vmSymbols::tag_local_variable_type_table()) {
duke@435 2181 if (!lvt_allocated) {
duke@435 2182 localvariable_table_length = NEW_RESOURCE_ARRAY_IN_THREAD(
duke@435 2183 THREAD, u2, INITIAL_MAX_LVT_NUMBER);
duke@435 2184 localvariable_table_start = NEW_RESOURCE_ARRAY_IN_THREAD(
duke@435 2185 THREAD, u2*, INITIAL_MAX_LVT_NUMBER);
duke@435 2186 localvariable_type_table_length = NEW_RESOURCE_ARRAY_IN_THREAD(
duke@435 2187 THREAD, u2, INITIAL_MAX_LVT_NUMBER);
duke@435 2188 localvariable_type_table_start = NEW_RESOURCE_ARRAY_IN_THREAD(
duke@435 2189 THREAD, u2*, INITIAL_MAX_LVT_NUMBER);
duke@435 2190 lvt_allocated = true;
duke@435 2191 }
duke@435 2192 // Parse local variable type table
duke@435 2193 if (lvtt_cnt == max_lvtt_cnt) {
duke@435 2194 max_lvtt_cnt <<= 1;
duke@435 2195 REALLOC_RESOURCE_ARRAY(u2, localvariable_type_table_length, lvtt_cnt, max_lvtt_cnt);
duke@435 2196 REALLOC_RESOURCE_ARRAY(u2*, localvariable_type_table_start, lvtt_cnt, max_lvtt_cnt);
duke@435 2197 }
duke@435 2198 localvariable_type_table_start[lvtt_cnt] =
duke@435 2199 parse_localvariable_table(code_length,
duke@435 2200 max_locals,
duke@435 2201 code_attribute_length,
duke@435 2202 &localvariable_type_table_length[lvtt_cnt],
duke@435 2203 true, // is LVTT
duke@435 2204 CHECK_(nullHandle));
duke@435 2205 lvtt_cnt++;
hseigel@4819 2206 } else if (_major_version >= Verifier::STACKMAP_ATTRIBUTE_MAJOR_VERSION &&
coleenp@4719 2207 _cp->symbol_at(code_attribute_name_index) == vmSymbols::tag_stack_map_table()) {
duke@435 2208 // Stack map is only needed by the new verifier in JDK1.5.
duke@435 2209 if (parsed_stackmap_attribute) {
duke@435 2210 classfile_parse_error("Multiple StackMapTable attributes in class file %s", CHECK_(nullHandle));
duke@435 2211 }
coleenp@4719 2212 stackmap_data = parse_stackmap_table(code_attribute_length, CHECK_(nullHandle));
coleenp@4719 2213 stackmap_data_length = code_attribute_length;
duke@435 2214 parsed_stackmap_attribute = true;
duke@435 2215 } else {
duke@435 2216 // Skip unknown attributes
duke@435 2217 cfs->skip_u1(code_attribute_length, CHECK_(nullHandle));
duke@435 2218 }
duke@435 2219 }
duke@435 2220 // check method attribute length
duke@435 2221 if (_need_verify) {
duke@435 2222 guarantee_property(method_attribute_length == calculated_attribute_length,
duke@435 2223 "Code segment has wrong length in class file %s", CHECK_(nullHandle));
duke@435 2224 }
duke@435 2225 } else if (method_attribute_name == vmSymbols::tag_exceptions()) {
duke@435 2226 // Parse Exceptions attribute
duke@435 2227 if (parsed_checked_exceptions_attribute) {
duke@435 2228 classfile_parse_error("Multiple Exceptions attributes in class file %s", CHECK_(nullHandle));
duke@435 2229 }
duke@435 2230 parsed_checked_exceptions_attribute = true;
duke@435 2231 checked_exceptions_start =
duke@435 2232 parse_checked_exceptions(&checked_exceptions_length,
duke@435 2233 method_attribute_length,
coleenp@4719 2234 CHECK_(nullHandle));
coleenp@4398 2235 } else if (method_attribute_name == vmSymbols::tag_method_parameters()) {
emc@4524 2236 // reject multiple method parameters
emc@4524 2237 if (method_parameters_seen) {
emc@4524 2238 classfile_parse_error("Multiple MethodParameters attributes in class file %s", CHECK_(nullHandle));
emc@4524 2239 }
emc@4524 2240 method_parameters_seen = true;
coleenp@4398 2241 method_parameters_length = cfs->get_u1_fast();
coleenp@4431 2242 // Track the actual size (note: this is written for clarity; a
coleenp@4431 2243 // decent compiler will CSE and constant-fold this into a single
coleenp@4431 2244 // expression)
emc@4524 2245 // Use the attribute length to figure out the size of flags
emc@4524 2246 if (method_attribute_length == (method_parameters_length * 6u) + 1u) {
emc@4524 2247 method_parameters_four_byte_flags = true;
emc@4524 2248 } else if (method_attribute_length == (method_parameters_length * 4u) + 1u) {
emc@4524 2249 method_parameters_four_byte_flags = false;
emc@4524 2250 } else {
emc@4524 2251 classfile_parse_error(
emc@4524 2252 "Invalid MethodParameters method attribute length %u in class file",
emc@4524 2253 method_attribute_length, CHECK_(nullHandle));
emc@4524 2254 }
coleenp@4398 2255 method_parameters_data = cfs->get_u1_buffer();
coleenp@4398 2256 cfs->skip_u2_fast(method_parameters_length);
emc@4524 2257 if (method_parameters_four_byte_flags) {
emc@4524 2258 cfs->skip_u4_fast(method_parameters_length);
emc@4524 2259 } else {
emc@4524 2260 cfs->skip_u2_fast(method_parameters_length);
coleenp@4431 2261 }
coleenp@4398 2262 // ignore this attribute if it cannot be reflected
coleenp@4398 2263 if (!SystemDictionary::Parameter_klass_loaded())
coleenp@4398 2264 method_parameters_length = 0;
duke@435 2265 } else if (method_attribute_name == vmSymbols::tag_synthetic()) {
duke@435 2266 if (method_attribute_length != 0) {
duke@435 2267 classfile_parse_error(
duke@435 2268 "Invalid Synthetic method attribute length %u in class file %s",
duke@435 2269 method_attribute_length, CHECK_(nullHandle));
duke@435 2270 }
duke@435 2271 // Should we check that there hasn't already been a synthetic attribute?
duke@435 2272 access_flags.set_is_synthetic();
duke@435 2273 } else if (method_attribute_name == vmSymbols::tag_deprecated()) { // 4276120
duke@435 2274 if (method_attribute_length != 0) {
duke@435 2275 classfile_parse_error(
duke@435 2276 "Invalid Deprecated method attribute length %u in class file %s",
duke@435 2277 method_attribute_length, CHECK_(nullHandle));
duke@435 2278 }
duke@435 2279 } else if (_major_version >= JAVA_1_5_VERSION) {
duke@435 2280 if (method_attribute_name == vmSymbols::tag_signature()) {
duke@435 2281 if (method_attribute_length != 2) {
duke@435 2282 classfile_parse_error(
duke@435 2283 "Invalid Signature attribute length %u in class file %s",
duke@435 2284 method_attribute_length, CHECK_(nullHandle));
duke@435 2285 }
duke@435 2286 cfs->guarantee_more(2, CHECK_(nullHandle)); // generic_signature_index
duke@435 2287 generic_signature_index = cfs->get_u2_fast();
duke@435 2288 } else if (method_attribute_name == vmSymbols::tag_runtime_visible_annotations()) {
duke@435 2289 runtime_visible_annotations_length = method_attribute_length;
duke@435 2290 runtime_visible_annotations = cfs->get_u1_buffer();
duke@435 2291 assert(runtime_visible_annotations != NULL, "null visible annotations");
coleenp@4719 2292 parse_annotations(runtime_visible_annotations,
coleenp@4719 2293 runtime_visible_annotations_length, &parsed_annotations,
kamg@4245 2294 CHECK_(nullHandle));
duke@435 2295 cfs->skip_u1(runtime_visible_annotations_length, CHECK_(nullHandle));
duke@435 2296 } else if (PreserveAllAnnotations && method_attribute_name == vmSymbols::tag_runtime_invisible_annotations()) {
duke@435 2297 runtime_invisible_annotations_length = method_attribute_length;
duke@435 2298 runtime_invisible_annotations = cfs->get_u1_buffer();
duke@435 2299 assert(runtime_invisible_annotations != NULL, "null invisible annotations");
duke@435 2300 cfs->skip_u1(runtime_invisible_annotations_length, CHECK_(nullHandle));
duke@435 2301 } else if (method_attribute_name == vmSymbols::tag_runtime_visible_parameter_annotations()) {
duke@435 2302 runtime_visible_parameter_annotations_length = method_attribute_length;
duke@435 2303 runtime_visible_parameter_annotations = cfs->get_u1_buffer();
duke@435 2304 assert(runtime_visible_parameter_annotations != NULL, "null visible parameter annotations");
duke@435 2305 cfs->skip_u1(runtime_visible_parameter_annotations_length, CHECK_(nullHandle));
duke@435 2306 } else if (PreserveAllAnnotations && method_attribute_name == vmSymbols::tag_runtime_invisible_parameter_annotations()) {
duke@435 2307 runtime_invisible_parameter_annotations_length = method_attribute_length;
duke@435 2308 runtime_invisible_parameter_annotations = cfs->get_u1_buffer();
duke@435 2309 assert(runtime_invisible_parameter_annotations != NULL, "null invisible parameter annotations");
duke@435 2310 cfs->skip_u1(runtime_invisible_parameter_annotations_length, CHECK_(nullHandle));
duke@435 2311 } else if (method_attribute_name == vmSymbols::tag_annotation_default()) {
duke@435 2312 annotation_default_length = method_attribute_length;
duke@435 2313 annotation_default = cfs->get_u1_buffer();
duke@435 2314 assert(annotation_default != NULL, "null annotation default");
duke@435 2315 cfs->skip_u1(annotation_default_length, CHECK_(nullHandle));
stefank@4393 2316 } else if (method_attribute_name == vmSymbols::tag_runtime_visible_type_annotations()) {
stefank@4393 2317 runtime_visible_type_annotations_length = method_attribute_length;
stefank@4393 2318 runtime_visible_type_annotations = cfs->get_u1_buffer();
stefank@4393 2319 assert(runtime_visible_type_annotations != NULL, "null visible type annotations");
stefank@4393 2320 // No need for the VM to parse Type annotations
stefank@4393 2321 cfs->skip_u1(runtime_visible_type_annotations_length, CHECK_(nullHandle));
stefank@4393 2322 } else if (PreserveAllAnnotations && method_attribute_name == vmSymbols::tag_runtime_invisible_type_annotations()) {
stefank@4393 2323 runtime_invisible_type_annotations_length = method_attribute_length;
stefank@4393 2324 runtime_invisible_type_annotations = cfs->get_u1_buffer();
stefank@4393 2325 assert(runtime_invisible_type_annotations != NULL, "null invisible type annotations");
stefank@4393 2326 cfs->skip_u1(runtime_invisible_type_annotations_length, CHECK_(nullHandle));
duke@435 2327 } else {
duke@435 2328 // Skip unknown attributes
duke@435 2329 cfs->skip_u1(method_attribute_length, CHECK_(nullHandle));
duke@435 2330 }
duke@435 2331 } else {
duke@435 2332 // Skip unknown attributes
duke@435 2333 cfs->skip_u1(method_attribute_length, CHECK_(nullHandle));
duke@435 2334 }
duke@435 2335 }
duke@435 2336
duke@435 2337 if (linenumber_table != NULL) {
duke@435 2338 linenumber_table->write_terminator();
duke@435 2339 linenumber_table_length = linenumber_table->position();
duke@435 2340 }
duke@435 2341
duke@435 2342 // Make sure there's at least one Code attribute in non-native/non-abstract method
duke@435 2343 if (_need_verify) {
duke@435 2344 guarantee_property(access_flags.is_native() || access_flags.is_abstract() || parsed_code_attribute,
duke@435 2345 "Absent Code attribute in method that is not native or abstract in class file %s", CHECK_(nullHandle));
duke@435 2346 }
duke@435 2347
coleenp@4037 2348 // All sizing information for a Method* is finally available, now create it
coleenp@4572 2349 InlineTableSizes sizes(
coleenp@4572 2350 total_lvt_length,
coleenp@4572 2351 linenumber_table_length,
coleenp@4572 2352 exception_table_length,
coleenp@4572 2353 checked_exceptions_length,
coleenp@4572 2354 method_parameters_length,
coleenp@4572 2355 generic_signature_index,
coleenp@4572 2356 runtime_visible_annotations_length +
coleenp@4572 2357 runtime_invisible_annotations_length,
coleenp@4572 2358 runtime_visible_parameter_annotations_length +
coleenp@4572 2359 runtime_invisible_parameter_annotations_length,
coleenp@4572 2360 runtime_visible_type_annotations_length +
coleenp@4572 2361 runtime_invisible_type_annotations_length,
coleenp@4572 2362 annotation_default_length,
coleenp@4572 2363 0);
coleenp@4572 2364
kamg@4245 2365 Method* m = Method::allocate(
coleenp@4719 2366 _loader_data, code_length, access_flags, &sizes,
coleenp@4398 2367 ConstMethod::NORMAL, CHECK_(nullHandle));
coleenp@4037 2368
coleenp@4037 2369 ClassLoadingService::add_class_method_size(m->size()*HeapWordSize);
duke@435 2370
duke@435 2371 // Fill in information from fixed part (access_flags already set)
coleenp@4719 2372 m->set_constants(_cp);
duke@435 2373 m->set_name_index(name_index);
duke@435 2374 m->set_signature_index(signature_index);
duke@435 2375 #ifdef CC_INTERP
duke@435 2376 // hmm is there a gc issue here??
coleenp@4719 2377 ResultTypeFinder rtf(_cp->symbol_at(signature_index));
duke@435 2378 m->set_result_index(rtf.type());
duke@435 2379 #endif
duke@435 2380
duke@435 2381 if (args_size >= 0) {
duke@435 2382 m->set_size_of_parameters(args_size);
duke@435 2383 } else {
duke@435 2384 m->compute_size_of_parameters(THREAD);
duke@435 2385 }
duke@435 2386 #ifdef ASSERT
duke@435 2387 if (args_size >= 0) {
duke@435 2388 m->compute_size_of_parameters(THREAD);
duke@435 2389 assert(args_size == m->size_of_parameters(), "");
duke@435 2390 }
duke@435 2391 #endif
duke@435 2392
duke@435 2393 // Fill in code attribute information
duke@435 2394 m->set_max_stack(max_stack);
duke@435 2395 m->set_max_locals(max_locals);
coleenp@4719 2396 if (stackmap_data != NULL) {
coleenp@4719 2397 m->constMethod()->copy_stackmap_data(_loader_data, stackmap_data,
coleenp@4719 2398 stackmap_data_length, CHECK_NULL);
coleenp@4719 2399 }
duke@435 2400
duke@435 2401 // Copy byte codes
twisti@1573 2402 m->set_code(code_start);
duke@435 2403
duke@435 2404 // Copy line number table
duke@435 2405 if (linenumber_table != NULL) {
duke@435 2406 memcpy(m->compressed_linenumber_table(),
duke@435 2407 linenumber_table->buffer(), linenumber_table_length);
duke@435 2408 }
duke@435 2409
jiangli@3917 2410 // Copy exception table
jiangli@3917 2411 if (exception_table_length > 0) {
jiangli@3917 2412 int size =
jiangli@3917 2413 exception_table_length * sizeof(ExceptionTableElement) / sizeof(u2);
jiangli@3917 2414 copy_u2_with_conversion((u2*) m->exception_table_start(),
jiangli@3917 2415 exception_table_start, size);
jiangli@3917 2416 }
jiangli@3917 2417
coleenp@4398 2418 // Copy method parameters
coleenp@4398 2419 if (method_parameters_length > 0) {
coleenp@4398 2420 MethodParametersElement* elem = m->constMethod()->method_parameters_start();
emc@4524 2421 for (int i = 0; i < method_parameters_length; i++) {
emc@4524 2422 elem[i].name_cp_index = Bytes::get_Java_u2(method_parameters_data);
coleenp@4398 2423 method_parameters_data += 2;
emc@4524 2424 if (method_parameters_four_byte_flags) {
emc@4524 2425 elem[i].flags = Bytes::get_Java_u4(method_parameters_data);
emc@4524 2426 method_parameters_data += 4;
emc@4524 2427 } else {
emc@4524 2428 elem[i].flags = Bytes::get_Java_u2(method_parameters_data);
emc@4524 2429 method_parameters_data += 2;
emc@4524 2430 }
coleenp@4398 2431 }
coleenp@4398 2432 }
coleenp@4398 2433
duke@435 2434 // Copy checked exceptions
duke@435 2435 if (checked_exceptions_length > 0) {
duke@435 2436 int size = checked_exceptions_length * sizeof(CheckedExceptionElement) / sizeof(u2);
duke@435 2437 copy_u2_with_conversion((u2*) m->checked_exceptions_start(), checked_exceptions_start, size);
duke@435 2438 }
duke@435 2439
coleenp@4572 2440 // Copy class file LVT's/LVTT's into the HotSpot internal LVT.
duke@435 2441 if (total_lvt_length > 0) {
duke@435 2442 promoted_flags->set_has_localvariable_table();
coleenp@4572 2443 copy_localvariable_table(m->constMethod(), lvt_cnt,
coleenp@4572 2444 localvariable_table_length,
coleenp@4572 2445 localvariable_table_start,
coleenp@4572 2446 lvtt_cnt,
coleenp@4572 2447 localvariable_type_table_length,
coleenp@4572 2448 localvariable_type_table_start, CHECK_NULL);
duke@435 2449 }
duke@435 2450
jrose@3926 2451 if (parsed_annotations.has_any_annotations())
jrose@3926 2452 parsed_annotations.apply_to(m);
coleenp@4572 2453
coleenp@4572 2454 // Copy annotations
coleenp@4719 2455 copy_method_annotations(m->constMethod(),
coleenp@4572 2456 runtime_visible_annotations,
coleenp@4572 2457 runtime_visible_annotations_length,
coleenp@4572 2458 runtime_invisible_annotations,
coleenp@4572 2459 runtime_invisible_annotations_length,
coleenp@4572 2460 runtime_visible_parameter_annotations,
coleenp@4572 2461 runtime_visible_parameter_annotations_length,
coleenp@4572 2462 runtime_invisible_parameter_annotations,
coleenp@4572 2463 runtime_invisible_parameter_annotations_length,
coleenp@4572 2464 runtime_visible_type_annotations,
coleenp@4572 2465 runtime_visible_type_annotations_length,
coleenp@4572 2466 runtime_invisible_type_annotations,
coleenp@4572 2467 runtime_invisible_type_annotations_length,
coleenp@4572 2468 annotation_default,
coleenp@4572 2469 annotation_default_length,
coleenp@4572 2470 CHECK_NULL);
duke@435 2471
coleenp@2497 2472 if (name == vmSymbols::finalize_method_name() &&
coleenp@2497 2473 signature == vmSymbols::void_method_signature()) {
duke@435 2474 if (m->is_empty_method()) {
duke@435 2475 _has_empty_finalizer = true;
duke@435 2476 } else {
duke@435 2477 _has_finalizer = true;
duke@435 2478 }
duke@435 2479 }
coleenp@2497 2480 if (name == vmSymbols::object_initializer_name() &&
coleenp@2497 2481 signature == vmSymbols::void_method_signature() &&
duke@435 2482 m->is_vanilla_constructor()) {
duke@435 2483 _has_vanilla_constructor = true;
duke@435 2484 }
duke@435 2485
coleenp@4572 2486 NOT_PRODUCT(m->verify());
duke@435 2487 return m;
duke@435 2488 }
duke@435 2489
duke@435 2490
duke@435 2491 // The promoted_flags parameter is used to pass relevant access_flags
duke@435 2492 // from the methods back up to the containing klass. These flag values
duke@435 2493 // are added to klass's access_flags.
duke@435 2494
coleenp@4719 2495 Array<Method*>* ClassFileParser::parse_methods(bool is_interface,
coleenp@4142 2496 AccessFlags* promoted_flags,
coleenp@4142 2497 bool* has_final_method,
kamg@4245 2498 bool* has_default_methods,
coleenp@4142 2499 TRAPS) {
duke@435 2500 ClassFileStream* cfs = stream();
coleenp@4037 2501 cfs->guarantee_more(2, CHECK_NULL); // length
duke@435 2502 u2 length = cfs->get_u2_fast();
duke@435 2503 if (length == 0) {
coleenp@4719 2504 _methods = Universe::the_empty_method_array();
duke@435 2505 } else {
coleenp@4719 2506 _methods = MetadataFactory::new_array<Method*>(_loader_data, length, NULL, CHECK_NULL);
coleenp@4037 2507
duke@435 2508 HandleMark hm(THREAD);
duke@435 2509 for (int index = 0; index < length; index++) {
coleenp@4719 2510 methodHandle method = parse_method(is_interface,
duke@435 2511 promoted_flags,
coleenp@4037 2512 CHECK_NULL);
coleenp@4037 2513
duke@435 2514 if (method->is_final()) {
duke@435 2515 *has_final_method = true;
duke@435 2516 }
kamg@4245 2517 if (is_interface && !method->is_abstract() && !method->is_static()) {
kamg@4245 2518 // default method
kamg@4245 2519 *has_default_methods = true;
kamg@4245 2520 }
coleenp@4719 2521 _methods->at_put(index, method());
duke@435 2522 }
stefank@4393 2523
duke@435 2524 if (_need_verify && length > 1) {
duke@435 2525 // Check duplicated methods
duke@435 2526 ResourceMark rm(THREAD);
duke@435 2527 NameSigHash** names_and_sigs = NEW_RESOURCE_ARRAY_IN_THREAD(
duke@435 2528 THREAD, NameSigHash*, HASH_ROW_SIZE);
duke@435 2529 initialize_hashtable(names_and_sigs);
duke@435 2530 bool dup = false;
duke@435 2531 {
duke@435 2532 debug_only(No_Safepoint_Verifier nsv;)
duke@435 2533 for (int i = 0; i < length; i++) {
coleenp@4719 2534 Method* m = _methods->at(i);
duke@435 2535 // If no duplicates, add name/signature in hashtable names_and_sigs.
duke@435 2536 if (!put_after_lookup(m->name(), m->signature(), names_and_sigs)) {
duke@435 2537 dup = true;
duke@435 2538 break;
duke@435 2539 }
duke@435 2540 }
duke@435 2541 }
duke@435 2542 if (dup) {
duke@435 2543 classfile_parse_error("Duplicate method name&signature in class file %s",
coleenp@4037 2544 CHECK_NULL);
duke@435 2545 }
duke@435 2546 }
duke@435 2547 }
coleenp@4719 2548 return _methods;
duke@435 2549 }
duke@435 2550
duke@435 2551
coleenp@4719 2552 intArray* ClassFileParser::sort_methods(Array<Method*>* methods) {
coleenp@4037 2553 int length = methods->length();
coleenp@2777 2554 // If JVMTI original method ordering or sharing is enabled we have to
duke@435 2555 // remember the original class file ordering.
coleenp@4037 2556 // We temporarily use the vtable_index field in the Method* to store the
duke@435 2557 // class file index, so we can read in after calling qsort.
coleenp@2777 2558 // Put the method ordering in the shared archive.
coleenp@2777 2559 if (JvmtiExport::can_maintain_original_method_order() || DumpSharedSpaces) {
duke@435 2560 for (int index = 0; index < length; index++) {
coleenp@4037 2561 Method* m = methods->at(index);
duke@435 2562 assert(!m->valid_vtable_index(), "vtable index should not be set");
duke@435 2563 m->set_vtable_index(index);
duke@435 2564 }
duke@435 2565 }
duke@435 2566 // Sort method array by ascending method name (for faster lookups & vtable construction)
coleenp@2497 2567 // Note that the ordering is not alphabetical, see Symbol::fast_compare
coleenp@4572 2568 Method::sort_methods(methods);
duke@435 2569
coleenp@4719 2570 intArray* method_ordering = NULL;
coleenp@2777 2571 // If JVMTI original method ordering or sharing is enabled construct int
coleenp@2777 2572 // array remembering the original ordering
coleenp@2777 2573 if (JvmtiExport::can_maintain_original_method_order() || DumpSharedSpaces) {
coleenp@4719 2574 method_ordering = new intArray(length);
duke@435 2575 for (int index = 0; index < length; index++) {
coleenp@4037 2576 Method* m = methods->at(index);
duke@435 2577 int old_index = m->vtable_index();
duke@435 2578 assert(old_index >= 0 && old_index < length, "invalid method index");
coleenp@4037 2579 method_ordering->at_put(index, old_index);
coleenp@4037 2580 m->set_vtable_index(Method::invalid_vtable_index);
duke@435 2581 }
duke@435 2582 }
coleenp@4719 2583 return method_ordering;
duke@435 2584 }
duke@435 2585
duke@435 2586
coleenp@4719 2587 void ClassFileParser::parse_classfile_sourcefile_attribute(TRAPS) {
duke@435 2588 ClassFileStream* cfs = stream();
duke@435 2589 cfs->guarantee_more(2, CHECK); // sourcefile_index
duke@435 2590 u2 sourcefile_index = cfs->get_u2_fast();
duke@435 2591 check_property(
coleenp@4719 2592 valid_symbol_at(sourcefile_index),
duke@435 2593 "Invalid SourceFile attribute at constant pool index %u in class file %s",
duke@435 2594 sourcefile_index, CHECK);
coleenp@4719 2595 set_class_sourcefile(_cp->symbol_at(sourcefile_index));
duke@435 2596 }
duke@435 2597
duke@435 2598
duke@435 2599
coleenp@4719 2600 void ClassFileParser::parse_classfile_source_debug_extension_attribute(int length, TRAPS) {
duke@435 2601 ClassFileStream* cfs = stream();
duke@435 2602 u1* sde_buffer = cfs->get_u1_buffer();
duke@435 2603 assert(sde_buffer != NULL, "null sde buffer");
duke@435 2604
duke@435 2605 // Don't bother storing it if there is no way to retrieve it
duke@435 2606 if (JvmtiExport::can_get_source_debug_extension()) {
kvn@3930 2607 assert((length+1) > length, "Overflow checking");
kvn@3930 2608 u1* sde = NEW_RESOURCE_ARRAY_IN_THREAD(THREAD, u1, length+1);
kvn@3930 2609 for (int i = 0; i < length; i++) {
kvn@3930 2610 sde[i] = sde_buffer[i];
kvn@3930 2611 }
kvn@3930 2612 sde[length] = '\0';
kvn@3930 2613 set_class_sde_buffer((char*)sde, length);
duke@435 2614 }
duke@435 2615 // Got utf8 string, set stream position forward
duke@435 2616 cfs->skip_u1(length, CHECK);
duke@435 2617 }
duke@435 2618
duke@435 2619
duke@435 2620 // Inner classes can be static, private or protected (classic VM does this)
duke@435 2621 #define RECOGNIZED_INNER_CLASS_MODIFIERS (JVM_RECOGNIZED_CLASS_MODIFIERS | JVM_ACC_PRIVATE | JVM_ACC_PROTECTED | JVM_ACC_STATIC)
duke@435 2622
duke@435 2623 // Return number of classes in the inner classes attribute table
coleenp@4719 2624 u2 ClassFileParser::parse_classfile_inner_classes_attribute(u1* inner_classes_attribute_start,
jiangli@3670 2625 bool parsed_enclosingmethod_attribute,
jiangli@3670 2626 u2 enclosing_method_class_index,
jiangli@3670 2627 u2 enclosing_method_method_index,
jrose@3926 2628 TRAPS) {
duke@435 2629 ClassFileStream* cfs = stream();
jiangli@3670 2630 u1* current_mark = cfs->current();
jiangli@3670 2631 u2 length = 0;
jiangli@3670 2632 if (inner_classes_attribute_start != NULL) {
jiangli@3670 2633 cfs->set_current(inner_classes_attribute_start);
jiangli@3670 2634 cfs->guarantee_more(2, CHECK_0); // length
jiangli@3670 2635 length = cfs->get_u2_fast();
jiangli@3670 2636 }
jiangli@3670 2637
jiangli@3670 2638 // 4-tuples of shorts of inner classes data and 2 shorts of enclosing
jiangli@3670 2639 // method data:
jiangli@3670 2640 // [inner_class_info_index,
jiangli@3670 2641 // outer_class_info_index,
jiangli@3670 2642 // inner_name_index,
jiangli@3670 2643 // inner_class_access_flags,
jiangli@3670 2644 // ...
jiangli@3670 2645 // enclosing_method_class_index,
jiangli@3670 2646 // enclosing_method_method_index]
jiangli@3670 2647 int size = length * 4 + (parsed_enclosingmethod_attribute ? 2 : 0);
coleenp@4719 2648 Array<u2>* inner_classes = MetadataFactory::new_array<u2>(_loader_data, size, CHECK_0);
coleenp@4719 2649 _inner_classes = inner_classes;
coleenp@4719 2650
duke@435 2651 int index = 0;
coleenp@4719 2652 int cp_size = _cp->length();
duke@435 2653 cfs->guarantee_more(8 * length, CHECK_0); // 4-tuples of u2
duke@435 2654 for (int n = 0; n < length; n++) {
duke@435 2655 // Inner class index
duke@435 2656 u2 inner_class_info_index = cfs->get_u2_fast();
duke@435 2657 check_property(
duke@435 2658 inner_class_info_index == 0 ||
coleenp@4719 2659 valid_klass_reference_at(inner_class_info_index),
duke@435 2660 "inner_class_info_index %u has bad constant type in class file %s",
duke@435 2661 inner_class_info_index, CHECK_0);
duke@435 2662 // Outer class index
duke@435 2663 u2 outer_class_info_index = cfs->get_u2_fast();
duke@435 2664 check_property(
duke@435 2665 outer_class_info_index == 0 ||
coleenp@4719 2666 valid_klass_reference_at(outer_class_info_index),
duke@435 2667 "outer_class_info_index %u has bad constant type in class file %s",
duke@435 2668 outer_class_info_index, CHECK_0);
duke@435 2669 // Inner class name
duke@435 2670 u2 inner_name_index = cfs->get_u2_fast();
duke@435 2671 check_property(
coleenp@4719 2672 inner_name_index == 0 || valid_symbol_at(inner_name_index),
duke@435 2673 "inner_name_index %u has bad constant type in class file %s",
duke@435 2674 inner_name_index, CHECK_0);
duke@435 2675 if (_need_verify) {
duke@435 2676 guarantee_property(inner_class_info_index != outer_class_info_index,
duke@435 2677 "Class is both outer and inner class in class file %s", CHECK_0);
duke@435 2678 }
duke@435 2679 // Access flags
duke@435 2680 AccessFlags inner_access_flags;
duke@435 2681 jint flags = cfs->get_u2_fast() & RECOGNIZED_INNER_CLASS_MODIFIERS;
duke@435 2682 if ((flags & JVM_ACC_INTERFACE) && _major_version < JAVA_6_VERSION) {
duke@435 2683 // Set abstract bit for old class files for backward compatibility
duke@435 2684 flags |= JVM_ACC_ABSTRACT;
duke@435 2685 }
duke@435 2686 verify_legal_class_modifiers(flags, CHECK_0);
duke@435 2687 inner_access_flags.set_flags(flags);
duke@435 2688
coleenp@4037 2689 inner_classes->at_put(index++, inner_class_info_index);
coleenp@4037 2690 inner_classes->at_put(index++, outer_class_info_index);
coleenp@4037 2691 inner_classes->at_put(index++, inner_name_index);
coleenp@4037 2692 inner_classes->at_put(index++, inner_access_flags.as_short());
duke@435 2693 }
duke@435 2694
duke@435 2695 // 4347400: make sure there's no duplicate entry in the classes array
duke@435 2696 if (_need_verify && _major_version >= JAVA_1_5_VERSION) {
jiangli@3670 2697 for(int i = 0; i < length * 4; i += 4) {
jiangli@3670 2698 for(int j = i + 4; j < length * 4; j += 4) {
coleenp@4037 2699 guarantee_property((inner_classes->at(i) != inner_classes->at(j) ||
coleenp@4037 2700 inner_classes->at(i+1) != inner_classes->at(j+1) ||
coleenp@4037 2701 inner_classes->at(i+2) != inner_classes->at(j+2) ||
coleenp@4037 2702 inner_classes->at(i+3) != inner_classes->at(j+3)),
duke@435 2703 "Duplicate entry in InnerClasses in class file %s",
duke@435 2704 CHECK_0);
duke@435 2705 }
duke@435 2706 }
duke@435 2707 }
duke@435 2708
jiangli@3670 2709 // Set EnclosingMethod class and method indexes.
jiangli@3670 2710 if (parsed_enclosingmethod_attribute) {
coleenp@4037 2711 inner_classes->at_put(index++, enclosing_method_class_index);
coleenp@4037 2712 inner_classes->at_put(index++, enclosing_method_method_index);
jiangli@3670 2713 }
jiangli@3670 2714 assert(index == size, "wrong size");
jiangli@3670 2715
jiangli@3670 2716 // Restore buffer's current position.
jiangli@3670 2717 cfs->set_current(current_mark);
jiangli@3670 2718
duke@435 2719 return length;
duke@435 2720 }
duke@435 2721
coleenp@4719 2722 void ClassFileParser::parse_classfile_synthetic_attribute(TRAPS) {
jrose@3926 2723 set_class_synthetic_flag(true);
duke@435 2724 }
duke@435 2725
coleenp@4719 2726 void ClassFileParser::parse_classfile_signature_attribute(TRAPS) {
duke@435 2727 ClassFileStream* cfs = stream();
duke@435 2728 u2 signature_index = cfs->get_u2(CHECK);
duke@435 2729 check_property(
coleenp@4719 2730 valid_symbol_at(signature_index),
duke@435 2731 "Invalid constant pool index %u in Signature attribute in class file %s",
duke@435 2732 signature_index, CHECK);
coleenp@4719 2733 set_class_generic_signature(_cp->symbol_at(signature_index));
duke@435 2734 }
duke@435 2735
coleenp@4719 2736 void ClassFileParser::parse_classfile_bootstrap_methods_attribute(u4 attribute_byte_length, TRAPS) {
jrose@2353 2737 ClassFileStream* cfs = stream();
jrose@2353 2738 u1* current_start = cfs->current();
jrose@2353 2739
jrose@2353 2740 cfs->guarantee_more(2, CHECK); // length
jrose@2353 2741 int attribute_array_length = cfs->get_u2_fast();
jrose@2353 2742
jrose@2353 2743 guarantee_property(_max_bootstrap_specifier_index < attribute_array_length,
jrose@2353 2744 "Short length on BootstrapMethods in class file %s",
jrose@2353 2745 CHECK);
jrose@2353 2746
jrose@2353 2747 // The attribute contains a counted array of counted tuples of shorts,
jrose@2353 2748 // represending bootstrap specifiers:
jrose@2353 2749 // length*{bootstrap_method_index, argument_count*{argument_index}}
jrose@2353 2750 int operand_count = (attribute_byte_length - sizeof(u2)) / sizeof(u2);
jrose@2353 2751 // operand_count = number of shorts in attr, except for leading length
jrose@2353 2752
jrose@2353 2753 // The attribute is copied into a short[] array.
jrose@2353 2754 // The array begins with a series of short[2] pairs, one for each tuple.
jrose@2353 2755 int index_size = (attribute_array_length * 2);
jrose@2353 2756
coleenp@4719 2757 Array<u2>* operands = MetadataFactory::new_array<u2>(_loader_data, index_size + operand_count, CHECK);
coleenp@4719 2758
coleenp@4719 2759 // Eagerly assign operands so they will be deallocated with the constant
coleenp@4719 2760 // pool if there is an error.
coleenp@4719 2761 _cp->set_operands(operands);
jrose@2353 2762
jrose@2353 2763 int operand_fill_index = index_size;
coleenp@4719 2764 int cp_size = _cp->length();
jrose@2353 2765
jrose@2353 2766 for (int n = 0; n < attribute_array_length; n++) {
jrose@2353 2767 // Store a 32-bit offset into the header of the operand array.
coleenp@4037 2768 ConstantPool::operand_offset_at_put(operands, n, operand_fill_index);
jrose@2353 2769
jrose@2353 2770 // Read a bootstrap specifier.
jrose@2353 2771 cfs->guarantee_more(sizeof(u2) * 2, CHECK); // bsm, argc
jrose@2353 2772 u2 bootstrap_method_index = cfs->get_u2_fast();
jrose@2353 2773 u2 argument_count = cfs->get_u2_fast();
jrose@2353 2774 check_property(
jrose@2353 2775 valid_cp_range(bootstrap_method_index, cp_size) &&
coleenp@4719 2776 _cp->tag_at(bootstrap_method_index).is_method_handle(),
jrose@2353 2777 "bootstrap_method_index %u has bad constant type in class file %s",
twisti@2408 2778 bootstrap_method_index,
jrose@2353 2779 CHECK);
coleenp@4037 2780 operands->at_put(operand_fill_index++, bootstrap_method_index);
coleenp@4037 2781 operands->at_put(operand_fill_index++, argument_count);
jrose@2353 2782
jrose@2353 2783 cfs->guarantee_more(sizeof(u2) * argument_count, CHECK); // argv[argc]
jrose@2353 2784 for (int j = 0; j < argument_count; j++) {
twisti@2408 2785 u2 argument_index = cfs->get_u2_fast();
jrose@2353 2786 check_property(
twisti@2408 2787 valid_cp_range(argument_index, cp_size) &&
coleenp@4719 2788 _cp->tag_at(argument_index).is_loadable_constant(),
jrose@2353 2789 "argument_index %u has bad constant type in class file %s",
twisti@2408 2790 argument_index,
jrose@2353 2791 CHECK);
coleenp@4037 2792 operands->at_put(operand_fill_index++, argument_index);
jrose@2353 2793 }
jrose@2353 2794 }
jrose@2353 2795
coleenp@4037 2796 assert(operand_fill_index == operands->length(), "exact fill");
coleenp@4037 2797 assert(ConstantPool::operand_array_length(operands) == attribute_array_length, "correct decode");
jrose@2353 2798
jrose@2353 2799 u1* current_end = cfs->current();
jrose@2353 2800 guarantee_property(current_end == current_start + attribute_byte_length,
jrose@2353 2801 "Bad length on BootstrapMethods in class file %s",
jrose@2353 2802 CHECK);
jrose@2353 2803 }
jrose@2353 2804
coleenp@4719 2805 void ClassFileParser::parse_classfile_attributes(ClassFileParser::ClassAnnotationCollector* parsed_annotations,
jrose@3926 2806 TRAPS) {
duke@435 2807 ClassFileStream* cfs = stream();
duke@435 2808 // Set inner classes attribute to default sentinel
coleenp@4719 2809 _inner_classes = Universe::the_empty_short_array();
duke@435 2810 cfs->guarantee_more(2, CHECK); // attributes_count
duke@435 2811 u2 attributes_count = cfs->get_u2_fast();
duke@435 2812 bool parsed_sourcefile_attribute = false;
duke@435 2813 bool parsed_innerclasses_attribute = false;
duke@435 2814 bool parsed_enclosingmethod_attribute = false;
jrose@2353 2815 bool parsed_bootstrap_methods_attribute = false;
duke@435 2816 u1* runtime_visible_annotations = NULL;
duke@435 2817 int runtime_visible_annotations_length = 0;
duke@435 2818 u1* runtime_invisible_annotations = NULL;
duke@435 2819 int runtime_invisible_annotations_length = 0;
stefank@4393 2820 u1* runtime_visible_type_annotations = NULL;
stefank@4393 2821 int runtime_visible_type_annotations_length = 0;
stefank@4393 2822 u1* runtime_invisible_type_annotations = NULL;
stefank@4393 2823 int runtime_invisible_type_annotations_length = 0;
jiangli@3670 2824 u1* inner_classes_attribute_start = NULL;
jiangli@3670 2825 u4 inner_classes_attribute_length = 0;
jiangli@3670 2826 u2 enclosing_method_class_index = 0;
jiangli@3670 2827 u2 enclosing_method_method_index = 0;
duke@435 2828 // Iterate over attributes
duke@435 2829 while (attributes_count--) {
duke@435 2830 cfs->guarantee_more(6, CHECK); // attribute_name_index, attribute_length
duke@435 2831 u2 attribute_name_index = cfs->get_u2_fast();
duke@435 2832 u4 attribute_length = cfs->get_u4_fast();
duke@435 2833 check_property(
coleenp@4719 2834 valid_symbol_at(attribute_name_index),
duke@435 2835 "Attribute name has bad constant pool index %u in class file %s",
duke@435 2836 attribute_name_index, CHECK);
coleenp@4719 2837 Symbol* tag = _cp->symbol_at(attribute_name_index);
duke@435 2838 if (tag == vmSymbols::tag_source_file()) {
duke@435 2839 // Check for SourceFile tag
duke@435 2840 if (_need_verify) {
duke@435 2841 guarantee_property(attribute_length == 2, "Wrong SourceFile attribute length in class file %s", CHECK);
duke@435 2842 }
duke@435 2843 if (parsed_sourcefile_attribute) {
duke@435 2844 classfile_parse_error("Multiple SourceFile attributes in class file %s", CHECK);
duke@435 2845 } else {
duke@435 2846 parsed_sourcefile_attribute = true;
duke@435 2847 }
coleenp@4719 2848 parse_classfile_sourcefile_attribute(CHECK);
duke@435 2849 } else if (tag == vmSymbols::tag_source_debug_extension()) {
duke@435 2850 // Check for SourceDebugExtension tag
coleenp@4719 2851 parse_classfile_source_debug_extension_attribute((int)attribute_length, CHECK);
duke@435 2852 } else if (tag == vmSymbols::tag_inner_classes()) {
duke@435 2853 // Check for InnerClasses tag
duke@435 2854 if (parsed_innerclasses_attribute) {
duke@435 2855 classfile_parse_error("Multiple InnerClasses attributes in class file %s", CHECK);
duke@435 2856 } else {
duke@435 2857 parsed_innerclasses_attribute = true;
duke@435 2858 }
jiangli@3670 2859 inner_classes_attribute_start = cfs->get_u1_buffer();
jiangli@3670 2860 inner_classes_attribute_length = attribute_length;
jiangli@3670 2861 cfs->skip_u1(inner_classes_attribute_length, CHECK);
duke@435 2862 } else if (tag == vmSymbols::tag_synthetic()) {
duke@435 2863 // Check for Synthetic tag
duke@435 2864 // Shouldn't we check that the synthetic flags wasn't already set? - not required in spec
duke@435 2865 if (attribute_length != 0) {
duke@435 2866 classfile_parse_error(
duke@435 2867 "Invalid Synthetic classfile attribute length %u in class file %s",
duke@435 2868 attribute_length, CHECK);
duke@435 2869 }
coleenp@4719 2870 parse_classfile_synthetic_attribute(CHECK);
duke@435 2871 } else if (tag == vmSymbols::tag_deprecated()) {
duke@435 2872 // Check for Deprecatd tag - 4276120
duke@435 2873 if (attribute_length != 0) {
duke@435 2874 classfile_parse_error(
duke@435 2875 "Invalid Deprecated classfile attribute length %u in class file %s",
duke@435 2876 attribute_length, CHECK);
duke@435 2877 }
duke@435 2878 } else if (_major_version >= JAVA_1_5_VERSION) {
duke@435 2879 if (tag == vmSymbols::tag_signature()) {
duke@435 2880 if (attribute_length != 2) {
duke@435 2881 classfile_parse_error(
duke@435 2882 "Wrong Signature attribute length %u in class file %s",
duke@435 2883 attribute_length, CHECK);
duke@435 2884 }
coleenp@4719 2885 parse_classfile_signature_attribute(CHECK);
duke@435 2886 } else if (tag == vmSymbols::tag_runtime_visible_annotations()) {
duke@435 2887 runtime_visible_annotations_length = attribute_length;
duke@435 2888 runtime_visible_annotations = cfs->get_u1_buffer();
duke@435 2889 assert(runtime_visible_annotations != NULL, "null visible annotations");
coleenp@4719 2890 parse_annotations(runtime_visible_annotations,
jrose@3926 2891 runtime_visible_annotations_length,
jrose@3926 2892 parsed_annotations,
jrose@3926 2893 CHECK);
duke@435 2894 cfs->skip_u1(runtime_visible_annotations_length, CHECK);
duke@435 2895 } else if (PreserveAllAnnotations && tag == vmSymbols::tag_runtime_invisible_annotations()) {
duke@435 2896 runtime_invisible_annotations_length = attribute_length;
duke@435 2897 runtime_invisible_annotations = cfs->get_u1_buffer();
duke@435 2898 assert(runtime_invisible_annotations != NULL, "null invisible annotations");
duke@435 2899 cfs->skip_u1(runtime_invisible_annotations_length, CHECK);
duke@435 2900 } else if (tag == vmSymbols::tag_enclosing_method()) {
duke@435 2901 if (parsed_enclosingmethod_attribute) {
duke@435 2902 classfile_parse_error("Multiple EnclosingMethod attributes in class file %s", CHECK);
duke@435 2903 } else {
duke@435 2904 parsed_enclosingmethod_attribute = true;
duke@435 2905 }
duke@435 2906 cfs->guarantee_more(4, CHECK); // class_index, method_index
jiangli@3670 2907 enclosing_method_class_index = cfs->get_u2_fast();
jiangli@3670 2908 enclosing_method_method_index = cfs->get_u2_fast();
jiangli@3670 2909 if (enclosing_method_class_index == 0) {
duke@435 2910 classfile_parse_error("Invalid class index in EnclosingMethod attribute in class file %s", CHECK);
duke@435 2911 }
duke@435 2912 // Validate the constant pool indices and types
coleenp@4719 2913 check_property(valid_klass_reference_at(enclosing_method_class_index),
coleenp@4719 2914 "Invalid or out-of-bounds class index in EnclosingMethod attribute in class file %s", CHECK);
jiangli@3670 2915 if (enclosing_method_method_index != 0 &&
coleenp@4719 2916 (!_cp->is_within_bounds(enclosing_method_method_index) ||
coleenp@4719 2917 !_cp->tag_at(enclosing_method_method_index).is_name_and_type())) {
duke@435 2918 classfile_parse_error("Invalid or out-of-bounds method index in EnclosingMethod attribute in class file %s", CHECK);
duke@435 2919 }
jrose@2353 2920 } else if (tag == vmSymbols::tag_bootstrap_methods() &&
jrose@2353 2921 _major_version >= Verifier::INVOKEDYNAMIC_MAJOR_VERSION) {
jrose@2353 2922 if (parsed_bootstrap_methods_attribute)
jrose@2353 2923 classfile_parse_error("Multiple BootstrapMethods attributes in class file %s", CHECK);
jrose@2353 2924 parsed_bootstrap_methods_attribute = true;
coleenp@4719 2925 parse_classfile_bootstrap_methods_attribute(attribute_length, CHECK);
stefank@4393 2926 } else if (tag == vmSymbols::tag_runtime_visible_type_annotations()) {
stefank@4393 2927 runtime_visible_type_annotations_length = attribute_length;
stefank@4393 2928 runtime_visible_type_annotations = cfs->get_u1_buffer();
stefank@4393 2929 assert(runtime_visible_type_annotations != NULL, "null visible type annotations");
stefank@4393 2930 // No need for the VM to parse Type annotations
stefank@4393 2931 cfs->skip_u1(runtime_visible_type_annotations_length, CHECK);
stefank@4393 2932 } else if (PreserveAllAnnotations && tag == vmSymbols::tag_runtime_invisible_type_annotations()) {
stefank@4393 2933 runtime_invisible_type_annotations_length = attribute_length;
stefank@4393 2934 runtime_invisible_type_annotations = cfs->get_u1_buffer();
stefank@4393 2935 assert(runtime_invisible_type_annotations != NULL, "null invisible type annotations");
stefank@4393 2936 cfs->skip_u1(runtime_invisible_type_annotations_length, CHECK);
duke@435 2937 } else {
duke@435 2938 // Unknown attribute
duke@435 2939 cfs->skip_u1(attribute_length, CHECK);
duke@435 2940 }
duke@435 2941 } else {
duke@435 2942 // Unknown attribute
duke@435 2943 cfs->skip_u1(attribute_length, CHECK);
duke@435 2944 }
duke@435 2945 }
coleenp@4719 2946 _annotations = assemble_annotations(runtime_visible_annotations,
coleenp@4719 2947 runtime_visible_annotations_length,
coleenp@4719 2948 runtime_invisible_annotations,
coleenp@4719 2949 runtime_invisible_annotations_length,
coleenp@4719 2950 CHECK);
coleenp@4719 2951 _type_annotations = assemble_annotations(runtime_visible_type_annotations,
coleenp@4719 2952 runtime_visible_type_annotations_length,
coleenp@4719 2953 runtime_invisible_type_annotations,
coleenp@4719 2954 runtime_invisible_type_annotations_length,
coleenp@4719 2955 CHECK);
jrose@2353 2956
jiangli@3670 2957 if (parsed_innerclasses_attribute || parsed_enclosingmethod_attribute) {
jiangli@3670 2958 u2 num_of_classes = parse_classfile_inner_classes_attribute(
jiangli@3670 2959 inner_classes_attribute_start,
jiangli@3670 2960 parsed_innerclasses_attribute,
jiangli@3670 2961 enclosing_method_class_index,
jiangli@3670 2962 enclosing_method_method_index,
coleenp@4719 2963 CHECK);
jiangli@3670 2964 if (parsed_innerclasses_attribute &&_need_verify && _major_version >= JAVA_1_5_VERSION) {
jiangli@3670 2965 guarantee_property(
jiangli@3670 2966 inner_classes_attribute_length == sizeof(num_of_classes) + 4 * sizeof(u2) * num_of_classes,
jiangli@3670 2967 "Wrong InnerClasses attribute length in class file %s", CHECK);
jiangli@3670 2968 }
jiangli@3670 2969 }
jiangli@3670 2970
jrose@2353 2971 if (_max_bootstrap_specifier_index >= 0) {
jrose@2353 2972 guarantee_property(parsed_bootstrap_methods_attribute,
jrose@2353 2973 "Missing BootstrapMethods attribute in class file %s", CHECK);
jrose@2353 2974 }
duke@435 2975 }
duke@435 2976
jrose@3926 2977 void ClassFileParser::apply_parsed_class_attributes(instanceKlassHandle k) {
jrose@3926 2978 if (_synthetic_flag)
jrose@3926 2979 k->set_is_synthetic();
jrose@3926 2980 if (_sourcefile != NULL) {
jrose@3926 2981 _sourcefile->increment_refcount();
jrose@3926 2982 k->set_source_file_name(_sourcefile);
jrose@3926 2983 }
jrose@3926 2984 if (_generic_signature != NULL) {
jrose@3926 2985 _generic_signature->increment_refcount();
jrose@3926 2986 k->set_generic_signature(_generic_signature);
jrose@3926 2987 }
kvn@3930 2988 if (_sde_buffer != NULL) {
kvn@3930 2989 k->set_source_debug_extension(_sde_buffer, _sde_length);
kvn@3930 2990 }
jrose@3926 2991 }
duke@435 2992
coleenp@4719 2993 // Transfer ownership of metadata allocated to the InstanceKlass.
coleenp@4719 2994 void ClassFileParser::apply_parsed_class_metadata(
coleenp@4719 2995 instanceKlassHandle this_klass,
coleenp@4719 2996 int java_fields_count, TRAPS) {
coleenp@4719 2997 // Assign annotations if needed
coleenp@4719 2998 if (_annotations != NULL || _type_annotations != NULL ||
coleenp@4719 2999 _fields_annotations != NULL || _fields_type_annotations != NULL) {
coleenp@4719 3000 Annotations* annotations = Annotations::allocate(_loader_data, CHECK);
coleenp@4719 3001 annotations->set_class_annotations(_annotations);
coleenp@4719 3002 annotations->set_class_type_annotations(_type_annotations);
coleenp@4719 3003 annotations->set_fields_annotations(_fields_annotations);
coleenp@4719 3004 annotations->set_fields_type_annotations(_fields_type_annotations);
coleenp@4719 3005 this_klass->set_annotations(annotations);
coleenp@4719 3006 }
coleenp@4719 3007
coleenp@4719 3008 _cp->set_pool_holder(this_klass());
coleenp@4719 3009 this_klass->set_constants(_cp);
coleenp@4719 3010 this_klass->set_fields(_fields, java_fields_count);
coleenp@4719 3011 this_klass->set_methods(_methods);
coleenp@4719 3012 this_klass->set_inner_classes(_inner_classes);
coleenp@4719 3013 this_klass->set_local_interfaces(_local_interfaces);
coleenp@4719 3014 this_klass->set_transitive_interfaces(_transitive_interfaces);
coleenp@4719 3015
coleenp@4719 3016 // Clear out these fields so they don't get deallocated by the destructor
coleenp@4719 3017 clear_class_metadata();
coleenp@4719 3018 }
coleenp@4719 3019
coleenp@4719 3020 AnnotationArray* ClassFileParser::assemble_annotations(u1* runtime_visible_annotations,
coleenp@4142 3021 int runtime_visible_annotations_length,
coleenp@4142 3022 u1* runtime_invisible_annotations,
coleenp@4142 3023 int runtime_invisible_annotations_length, TRAPS) {
coleenp@4037 3024 AnnotationArray* annotations = NULL;
duke@435 3025 if (runtime_visible_annotations != NULL ||
duke@435 3026 runtime_invisible_annotations != NULL) {
coleenp@4719 3027 annotations = MetadataFactory::new_array<u1>(_loader_data,
coleenp@4037 3028 runtime_visible_annotations_length +
coleenp@4037 3029 runtime_invisible_annotations_length,
coleenp@4037 3030 CHECK_(annotations));
duke@435 3031 if (runtime_visible_annotations != NULL) {
coleenp@4037 3032 for (int i = 0; i < runtime_visible_annotations_length; i++) {
coleenp@4037 3033 annotations->at_put(i, runtime_visible_annotations[i]);
coleenp@4037 3034 }
duke@435 3035 }
duke@435 3036 if (runtime_invisible_annotations != NULL) {
coleenp@4037 3037 for (int i = 0; i < runtime_invisible_annotations_length; i++) {
coleenp@4037 3038 int append = runtime_visible_annotations_length+i;
coleenp@4037 3039 annotations->at_put(append, runtime_invisible_annotations[i]);
coleenp@4037 3040 }
duke@435 3041 }
duke@435 3042 }
duke@435 3043 return annotations;
duke@435 3044 }
duke@435 3045
duke@435 3046
kamg@4245 3047 #ifndef PRODUCT
kamg@4245 3048 static void parseAndPrintGenericSignatures(
kamg@4245 3049 instanceKlassHandle this_klass, TRAPS) {
kamg@4245 3050 assert(ParseAllGenericSignatures == true, "Shouldn't call otherwise");
kamg@4245 3051 ResourceMark rm;
kamg@4245 3052
kamg@4245 3053 if (this_klass->generic_signature() != NULL) {
kamg@4245 3054 using namespace generic;
kamg@4245 3055 ClassDescriptor* spec = ClassDescriptor::parse_generic_signature(this_klass(), CHECK);
kamg@4245 3056
kamg@4245 3057 tty->print_cr("Parsing %s", this_klass->generic_signature()->as_C_string());
kamg@4245 3058 spec->print_on(tty);
kamg@4245 3059
kamg@4245 3060 for (int i = 0; i < this_klass->methods()->length(); ++i) {
kamg@4245 3061 Method* m = this_klass->methods()->at(i);
kamg@4245 3062 MethodDescriptor* method_spec = MethodDescriptor::parse_generic_signature(m, spec);
kamg@4245 3063 Symbol* sig = m->generic_signature();
kamg@4245 3064 if (sig == NULL) {
kamg@4245 3065 sig = m->signature();
kamg@4245 3066 }
kamg@4245 3067 tty->print_cr("Parsing %s", sig->as_C_string());
kamg@4245 3068 method_spec->print_on(tty);
kamg@4245 3069 }
kamg@4245 3070 }
kamg@4245 3071 }
kamg@4245 3072 #endif // ndef PRODUCT
kamg@4245 3073
kamg@4245 3074
coleenp@4719 3075 instanceKlassHandle ClassFileParser::parse_super_class(int super_class_index,
coleenp@4719 3076 TRAPS) {
coleenp@4719 3077 instanceKlassHandle super_klass;
coleenp@4719 3078 if (super_class_index == 0) {
coleenp@4719 3079 check_property(_class_name == vmSymbols::java_lang_Object(),
coleenp@4719 3080 "Invalid superclass index %u in class file %s",
coleenp@4719 3081 super_class_index,
coleenp@4719 3082 CHECK_NULL);
coleenp@4719 3083 } else {
coleenp@4719 3084 check_property(valid_klass_reference_at(super_class_index),
coleenp@4719 3085 "Invalid superclass index %u in class file %s",
coleenp@4719 3086 super_class_index,
coleenp@4719 3087 CHECK_NULL);
coleenp@4719 3088 // The class name should be legal because it is checked when parsing constant pool.
coleenp@4719 3089 // However, make sure it is not an array type.
coleenp@4719 3090 bool is_array = false;
coleenp@4719 3091 if (_cp->tag_at(super_class_index).is_klass()) {
coleenp@4719 3092 super_klass = instanceKlassHandle(THREAD, _cp->resolved_klass_at(super_class_index));
coleenp@4719 3093 if (_need_verify)
coleenp@4719 3094 is_array = super_klass->oop_is_array();
coleenp@4719 3095 } else if (_need_verify) {
coleenp@4719 3096 is_array = (_cp->unresolved_klass_at(super_class_index)->byte_at(0) == JVM_SIGNATURE_ARRAY);
coleenp@4719 3097 }
coleenp@4719 3098 if (_need_verify) {
coleenp@4719 3099 guarantee_property(!is_array,
coleenp@4719 3100 "Bad superclass name in class file %s", CHECK_NULL);
coleenp@4719 3101 }
coleenp@4719 3102 }
coleenp@4719 3103 return super_klass;
coleenp@4719 3104 }
coleenp@4719 3105
coleenp@4719 3106
coleenp@4719 3107 // Values needed for oopmap and InstanceKlass creation
coleenp@4719 3108 class FieldLayoutInfo : public StackObj {
coleenp@4719 3109 public:
coleenp@4719 3110 int* nonstatic_oop_offsets;
coleenp@4719 3111 unsigned int* nonstatic_oop_counts;
coleenp@4719 3112 unsigned int nonstatic_oop_map_count;
coleenp@4719 3113 unsigned int total_oop_map_count;
coleenp@4719 3114 int instance_size;
coleenp@4719 3115 int nonstatic_field_size;
coleenp@4719 3116 int static_field_size;
coleenp@4719 3117 bool has_nonstatic_fields;
coleenp@4719 3118 };
coleenp@4719 3119
coleenp@4719 3120 // Layout fields and fill in FieldLayoutInfo. Could use more refactoring!
coleenp@4719 3121 void ClassFileParser::layout_fields(Handle class_loader,
coleenp@4719 3122 FieldAllocationCount* fac,
coleenp@4719 3123 ClassAnnotationCollector* parsed_annotations,
coleenp@4719 3124 FieldLayoutInfo* info,
coleenp@4719 3125 TRAPS) {
coleenp@4719 3126
coleenp@4719 3127 // get the padding width from the option
coleenp@4719 3128 // TODO: Ask VM about specific CPU we are running on
coleenp@4719 3129 int pad_size = ContendedPaddingWidth;
coleenp@4719 3130
coleenp@4719 3131 // Field size and offset computation
coleenp@4719 3132 int nonstatic_field_size = _super_klass() == NULL ? 0 : _super_klass()->nonstatic_field_size();
coleenp@4719 3133 #ifndef PRODUCT
coleenp@4719 3134 int orig_nonstatic_field_size = 0;
coleenp@4719 3135 #endif
coleenp@4719 3136 int next_static_oop_offset;
coleenp@4719 3137 int next_static_double_offset;
coleenp@4719 3138 int next_static_word_offset;
coleenp@4719 3139 int next_static_short_offset;
coleenp@4719 3140 int next_static_byte_offset;
coleenp@4719 3141 int next_nonstatic_oop_offset;
coleenp@4719 3142 int next_nonstatic_double_offset;
coleenp@4719 3143 int next_nonstatic_word_offset;
coleenp@4719 3144 int next_nonstatic_short_offset;
coleenp@4719 3145 int next_nonstatic_byte_offset;
coleenp@4719 3146 int next_nonstatic_type_offset;
coleenp@4719 3147 int first_nonstatic_oop_offset;
coleenp@4719 3148 int first_nonstatic_field_offset;
coleenp@4719 3149 int next_nonstatic_field_offset;
coleenp@4719 3150 int next_nonstatic_padded_offset;
coleenp@4719 3151
coleenp@4719 3152 // Count the contended fields by type.
coleenp@4719 3153 int nonstatic_contended_count = 0;
coleenp@4719 3154 FieldAllocationCount fac_contended;
coleenp@4719 3155 for (AllFieldStream fs(_fields, _cp); !fs.done(); fs.next()) {
coleenp@4719 3156 FieldAllocationType atype = (FieldAllocationType) fs.allocation_type();
coleenp@4719 3157 if (fs.is_contended()) {
coleenp@4719 3158 fac_contended.count[atype]++;
coleenp@4719 3159 if (!fs.access_flags().is_static()) {
coleenp@4719 3160 nonstatic_contended_count++;
coleenp@4719 3161 }
coleenp@4719 3162 }
coleenp@4719 3163 }
coleenp@4719 3164 int contended_count = nonstatic_contended_count;
coleenp@4719 3165
coleenp@4719 3166
coleenp@4719 3167 // Calculate the starting byte offsets
coleenp@4719 3168 next_static_oop_offset = InstanceMirrorKlass::offset_of_static_fields();
coleenp@4719 3169 next_static_double_offset = next_static_oop_offset +
coleenp@4719 3170 ((fac->count[STATIC_OOP]) * heapOopSize);
coleenp@4719 3171 if ( fac->count[STATIC_DOUBLE] &&
coleenp@4719 3172 (Universe::field_type_should_be_aligned(T_DOUBLE) ||
coleenp@4719 3173 Universe::field_type_should_be_aligned(T_LONG)) ) {
coleenp@4719 3174 next_static_double_offset = align_size_up(next_static_double_offset, BytesPerLong);
coleenp@4719 3175 }
coleenp@4719 3176
coleenp@4719 3177 next_static_word_offset = next_static_double_offset +
coleenp@4719 3178 ((fac->count[STATIC_DOUBLE]) * BytesPerLong);
coleenp@4719 3179 next_static_short_offset = next_static_word_offset +
coleenp@4719 3180 ((fac->count[STATIC_WORD]) * BytesPerInt);
coleenp@4719 3181 next_static_byte_offset = next_static_short_offset +
coleenp@4719 3182 ((fac->count[STATIC_SHORT]) * BytesPerShort);
coleenp@4719 3183
coleenp@4719 3184 first_nonstatic_field_offset = instanceOopDesc::base_offset_in_bytes() +
coleenp@4719 3185 nonstatic_field_size * heapOopSize;
coleenp@4719 3186
coleenp@4719 3187 // class is contended, pad before all the fields
coleenp@4719 3188 if (parsed_annotations->is_contended()) {
coleenp@4719 3189 first_nonstatic_field_offset += pad_size;
coleenp@4719 3190 }
coleenp@4719 3191
coleenp@4719 3192 next_nonstatic_field_offset = first_nonstatic_field_offset;
coleenp@4719 3193
coleenp@4719 3194 unsigned int nonstatic_double_count = fac->count[NONSTATIC_DOUBLE] - fac_contended.count[NONSTATIC_DOUBLE];
coleenp@4719 3195 unsigned int nonstatic_word_count = fac->count[NONSTATIC_WORD] - fac_contended.count[NONSTATIC_WORD];
coleenp@4719 3196 unsigned int nonstatic_short_count = fac->count[NONSTATIC_SHORT] - fac_contended.count[NONSTATIC_SHORT];
coleenp@4719 3197 unsigned int nonstatic_byte_count = fac->count[NONSTATIC_BYTE] - fac_contended.count[NONSTATIC_BYTE];
coleenp@4719 3198 unsigned int nonstatic_oop_count = fac->count[NONSTATIC_OOP] - fac_contended.count[NONSTATIC_OOP];
coleenp@4719 3199
coleenp@4719 3200 bool super_has_nonstatic_fields =
coleenp@4719 3201 (_super_klass() != NULL && _super_klass->has_nonstatic_fields());
coleenp@4719 3202 bool has_nonstatic_fields = super_has_nonstatic_fields ||
coleenp@4719 3203 ((nonstatic_double_count + nonstatic_word_count +
coleenp@4719 3204 nonstatic_short_count + nonstatic_byte_count +
coleenp@4719 3205 nonstatic_oop_count) != 0);
coleenp@4719 3206
coleenp@4719 3207
coleenp@4719 3208 // Prepare list of oops for oop map generation.
coleenp@4719 3209 int* nonstatic_oop_offsets;
coleenp@4719 3210 unsigned int* nonstatic_oop_counts;
coleenp@4719 3211 unsigned int nonstatic_oop_map_count = 0;
coleenp@4719 3212
coleenp@4719 3213 nonstatic_oop_offsets = NEW_RESOURCE_ARRAY_IN_THREAD(
coleenp@4719 3214 THREAD, int, nonstatic_oop_count + 1);
coleenp@4719 3215 nonstatic_oop_counts = NEW_RESOURCE_ARRAY_IN_THREAD(
coleenp@4719 3216 THREAD, unsigned int, nonstatic_oop_count + 1);
coleenp@4719 3217
coleenp@4719 3218 first_nonstatic_oop_offset = 0; // will be set for first oop field
coleenp@4719 3219
coleenp@4719 3220 #ifndef PRODUCT
coleenp@4719 3221 if( PrintCompactFieldsSavings ) {
coleenp@4719 3222 next_nonstatic_double_offset = next_nonstatic_field_offset +
coleenp@4719 3223 (nonstatic_oop_count * heapOopSize);
coleenp@4719 3224 if ( nonstatic_double_count > 0 ) {
coleenp@4719 3225 next_nonstatic_double_offset = align_size_up(next_nonstatic_double_offset, BytesPerLong);
coleenp@4719 3226 }
coleenp@4719 3227 next_nonstatic_word_offset = next_nonstatic_double_offset +
coleenp@4719 3228 (nonstatic_double_count * BytesPerLong);
coleenp@4719 3229 next_nonstatic_short_offset = next_nonstatic_word_offset +
coleenp@4719 3230 (nonstatic_word_count * BytesPerInt);
coleenp@4719 3231 next_nonstatic_byte_offset = next_nonstatic_short_offset +
coleenp@4719 3232 (nonstatic_short_count * BytesPerShort);
coleenp@4719 3233 next_nonstatic_type_offset = align_size_up((next_nonstatic_byte_offset +
coleenp@4719 3234 nonstatic_byte_count ), heapOopSize );
coleenp@4719 3235 orig_nonstatic_field_size = nonstatic_field_size +
coleenp@4719 3236 ((next_nonstatic_type_offset - first_nonstatic_field_offset)/heapOopSize);
coleenp@4719 3237 }
coleenp@4719 3238 #endif
coleenp@4719 3239 bool compact_fields = CompactFields;
coleenp@4719 3240 int allocation_style = FieldsAllocationStyle;
coleenp@4719 3241 if( allocation_style < 0 || allocation_style > 2 ) { // Out of range?
coleenp@4719 3242 assert(false, "0 <= FieldsAllocationStyle <= 2");
coleenp@4719 3243 allocation_style = 1; // Optimistic
coleenp@4719 3244 }
coleenp@4719 3245
coleenp@4719 3246 // The next classes have predefined hard-coded fields offsets
coleenp@4719 3247 // (see in JavaClasses::compute_hard_coded_offsets()).
coleenp@4719 3248 // Use default fields allocation order for them.
coleenp@4719 3249 if( (allocation_style != 0 || compact_fields ) && class_loader.is_null() &&
coleenp@4719 3250 (_class_name == vmSymbols::java_lang_AssertionStatusDirectives() ||
coleenp@4719 3251 _class_name == vmSymbols::java_lang_Class() ||
coleenp@4719 3252 _class_name == vmSymbols::java_lang_ClassLoader() ||
coleenp@4719 3253 _class_name == vmSymbols::java_lang_ref_Reference() ||
coleenp@4719 3254 _class_name == vmSymbols::java_lang_ref_SoftReference() ||
coleenp@4719 3255 _class_name == vmSymbols::java_lang_StackTraceElement() ||
coleenp@4719 3256 _class_name == vmSymbols::java_lang_String() ||
coleenp@4719 3257 _class_name == vmSymbols::java_lang_Throwable() ||
coleenp@4719 3258 _class_name == vmSymbols::java_lang_Boolean() ||
coleenp@4719 3259 _class_name == vmSymbols::java_lang_Character() ||
coleenp@4719 3260 _class_name == vmSymbols::java_lang_Float() ||
coleenp@4719 3261 _class_name == vmSymbols::java_lang_Double() ||
coleenp@4719 3262 _class_name == vmSymbols::java_lang_Byte() ||
coleenp@4719 3263 _class_name == vmSymbols::java_lang_Short() ||
coleenp@4719 3264 _class_name == vmSymbols::java_lang_Integer() ||
coleenp@4719 3265 _class_name == vmSymbols::java_lang_Long())) {
coleenp@4719 3266 allocation_style = 0; // Allocate oops first
coleenp@4719 3267 compact_fields = false; // Don't compact fields
coleenp@4719 3268 }
coleenp@4719 3269
coleenp@4719 3270 if( allocation_style == 0 ) {
coleenp@4719 3271 // Fields order: oops, longs/doubles, ints, shorts/chars, bytes, padded fields
coleenp@4719 3272 next_nonstatic_oop_offset = next_nonstatic_field_offset;
coleenp@4719 3273 next_nonstatic_double_offset = next_nonstatic_oop_offset +
coleenp@4719 3274 (nonstatic_oop_count * heapOopSize);
coleenp@4719 3275 } else if( allocation_style == 1 ) {
coleenp@4719 3276 // Fields order: longs/doubles, ints, shorts/chars, bytes, oops, padded fields
coleenp@4719 3277 next_nonstatic_double_offset = next_nonstatic_field_offset;
coleenp@4719 3278 } else if( allocation_style == 2 ) {
coleenp@4719 3279 // Fields allocation: oops fields in super and sub classes are together.
coleenp@4719 3280 if( nonstatic_field_size > 0 && _super_klass() != NULL &&
coleenp@4719 3281 _super_klass->nonstatic_oop_map_size() > 0 ) {
coleenp@4719 3282 unsigned int map_count = _super_klass->nonstatic_oop_map_count();
coleenp@4719 3283 OopMapBlock* first_map = _super_klass->start_of_nonstatic_oop_maps();
coleenp@4719 3284 OopMapBlock* last_map = first_map + map_count - 1;
coleenp@4719 3285 int next_offset = last_map->offset() + (last_map->count() * heapOopSize);
coleenp@4719 3286 if (next_offset == next_nonstatic_field_offset) {
coleenp@4719 3287 allocation_style = 0; // allocate oops first
coleenp@4719 3288 next_nonstatic_oop_offset = next_nonstatic_field_offset;
coleenp@4719 3289 next_nonstatic_double_offset = next_nonstatic_oop_offset +
coleenp@4719 3290 (nonstatic_oop_count * heapOopSize);
coleenp@4719 3291 }
coleenp@4719 3292 }
coleenp@4719 3293 if( allocation_style == 2 ) {
coleenp@4719 3294 allocation_style = 1; // allocate oops last
coleenp@4719 3295 next_nonstatic_double_offset = next_nonstatic_field_offset;
coleenp@4719 3296 }
coleenp@4719 3297 } else {
coleenp@4719 3298 ShouldNotReachHere();
coleenp@4719 3299 }
coleenp@4719 3300
coleenp@4719 3301 int nonstatic_oop_space_count = 0;
coleenp@4719 3302 int nonstatic_word_space_count = 0;
coleenp@4719 3303 int nonstatic_short_space_count = 0;
coleenp@4719 3304 int nonstatic_byte_space_count = 0;
coleenp@4719 3305 int nonstatic_oop_space_offset;
coleenp@4719 3306 int nonstatic_word_space_offset;
coleenp@4719 3307 int nonstatic_short_space_offset;
coleenp@4719 3308 int nonstatic_byte_space_offset;
coleenp@4719 3309
coleenp@4719 3310 if( nonstatic_double_count > 0 ) {
coleenp@4719 3311 int offset = next_nonstatic_double_offset;
coleenp@4719 3312 next_nonstatic_double_offset = align_size_up(offset, BytesPerLong);
coleenp@4719 3313 if( compact_fields && offset != next_nonstatic_double_offset ) {
coleenp@4719 3314 // Allocate available fields into the gap before double field.
coleenp@4719 3315 int length = next_nonstatic_double_offset - offset;
coleenp@4719 3316 assert(length == BytesPerInt, "");
coleenp@4719 3317 nonstatic_word_space_offset = offset;
coleenp@4719 3318 if( nonstatic_word_count > 0 ) {
coleenp@4719 3319 nonstatic_word_count -= 1;
coleenp@4719 3320 nonstatic_word_space_count = 1; // Only one will fit
coleenp@4719 3321 length -= BytesPerInt;
coleenp@4719 3322 offset += BytesPerInt;
coleenp@4719 3323 }
coleenp@4719 3324 nonstatic_short_space_offset = offset;
coleenp@4719 3325 while( length >= BytesPerShort && nonstatic_short_count > 0 ) {
coleenp@4719 3326 nonstatic_short_count -= 1;
coleenp@4719 3327 nonstatic_short_space_count += 1;
coleenp@4719 3328 length -= BytesPerShort;
coleenp@4719 3329 offset += BytesPerShort;
coleenp@4719 3330 }
coleenp@4719 3331 nonstatic_byte_space_offset = offset;
coleenp@4719 3332 while( length > 0 && nonstatic_byte_count > 0 ) {
coleenp@4719 3333 nonstatic_byte_count -= 1;
coleenp@4719 3334 nonstatic_byte_space_count += 1;
coleenp@4719 3335 length -= 1;
coleenp@4719 3336 }
coleenp@4719 3337 // Allocate oop field in the gap if there are no other fields for that.
coleenp@4719 3338 nonstatic_oop_space_offset = offset;
coleenp@4719 3339 if( length >= heapOopSize && nonstatic_oop_count > 0 &&
coleenp@4719 3340 allocation_style != 0 ) { // when oop fields not first
coleenp@4719 3341 nonstatic_oop_count -= 1;
coleenp@4719 3342 nonstatic_oop_space_count = 1; // Only one will fit
coleenp@4719 3343 length -= heapOopSize;
coleenp@4719 3344 offset += heapOopSize;
coleenp@4719 3345 }
coleenp@4719 3346 }
coleenp@4719 3347 }
coleenp@4719 3348
coleenp@4719 3349 next_nonstatic_word_offset = next_nonstatic_double_offset +
coleenp@4719 3350 (nonstatic_double_count * BytesPerLong);
coleenp@4719 3351 next_nonstatic_short_offset = next_nonstatic_word_offset +
coleenp@4719 3352 (nonstatic_word_count * BytesPerInt);
coleenp@4719 3353 next_nonstatic_byte_offset = next_nonstatic_short_offset +
coleenp@4719 3354 (nonstatic_short_count * BytesPerShort);
coleenp@4719 3355 next_nonstatic_padded_offset = next_nonstatic_byte_offset +
coleenp@4719 3356 nonstatic_byte_count;
coleenp@4719 3357
coleenp@4719 3358 // let oops jump before padding with this allocation style
coleenp@4719 3359 if( allocation_style == 1 ) {
coleenp@4719 3360 next_nonstatic_oop_offset = next_nonstatic_padded_offset;
coleenp@4719 3361 if( nonstatic_oop_count > 0 ) {
coleenp@4719 3362 next_nonstatic_oop_offset = align_size_up(next_nonstatic_oop_offset, heapOopSize);
coleenp@4719 3363 }
coleenp@4719 3364 next_nonstatic_padded_offset = next_nonstatic_oop_offset + (nonstatic_oop_count * heapOopSize);
coleenp@4719 3365 }
coleenp@4719 3366
coleenp@4719 3367 // Iterate over fields again and compute correct offsets.
coleenp@4719 3368 // The field allocation type was temporarily stored in the offset slot.
coleenp@4719 3369 // oop fields are located before non-oop fields (static and non-static).
coleenp@4719 3370 for (AllFieldStream fs(_fields, _cp); !fs.done(); fs.next()) {
coleenp@4719 3371
coleenp@4719 3372 // skip already laid out fields
coleenp@4719 3373 if (fs.is_offset_set()) continue;
coleenp@4719 3374
coleenp@4719 3375 // contended instance fields are handled below
coleenp@4719 3376 if (fs.is_contended() && !fs.access_flags().is_static()) continue;
coleenp@4719 3377
coleenp@4719 3378 int real_offset;
coleenp@4719 3379 FieldAllocationType atype = (FieldAllocationType) fs.allocation_type();
coleenp@4719 3380
coleenp@4719 3381 // pack the rest of the fields
coleenp@4719 3382 switch (atype) {
coleenp@4719 3383 case STATIC_OOP:
coleenp@4719 3384 real_offset = next_static_oop_offset;
coleenp@4719 3385 next_static_oop_offset += heapOopSize;
coleenp@4719 3386 break;
coleenp@4719 3387 case STATIC_BYTE:
coleenp@4719 3388 real_offset = next_static_byte_offset;
coleenp@4719 3389 next_static_byte_offset += 1;
coleenp@4719 3390 break;
coleenp@4719 3391 case STATIC_SHORT:
coleenp@4719 3392 real_offset = next_static_short_offset;
coleenp@4719 3393 next_static_short_offset += BytesPerShort;
coleenp@4719 3394 break;
coleenp@4719 3395 case STATIC_WORD:
coleenp@4719 3396 real_offset = next_static_word_offset;
coleenp@4719 3397 next_static_word_offset += BytesPerInt;
coleenp@4719 3398 break;
coleenp@4719 3399 case STATIC_DOUBLE:
coleenp@4719 3400 real_offset = next_static_double_offset;
coleenp@4719 3401 next_static_double_offset += BytesPerLong;
coleenp@4719 3402 break;
coleenp@4719 3403 case NONSTATIC_OOP:
coleenp@4719 3404 if( nonstatic_oop_space_count > 0 ) {
coleenp@4719 3405 real_offset = nonstatic_oop_space_offset;
coleenp@4719 3406 nonstatic_oop_space_offset += heapOopSize;
coleenp@4719 3407 nonstatic_oop_space_count -= 1;
coleenp@4719 3408 } else {
coleenp@4719 3409 real_offset = next_nonstatic_oop_offset;
coleenp@4719 3410 next_nonstatic_oop_offset += heapOopSize;
coleenp@4719 3411 }
coleenp@4719 3412 // Update oop maps
coleenp@4719 3413 if( nonstatic_oop_map_count > 0 &&
coleenp@4719 3414 nonstatic_oop_offsets[nonstatic_oop_map_count - 1] ==
coleenp@4719 3415 real_offset -
coleenp@4719 3416 int(nonstatic_oop_counts[nonstatic_oop_map_count - 1]) *
coleenp@4719 3417 heapOopSize ) {
coleenp@4719 3418 // Extend current oop map
coleenp@4719 3419 nonstatic_oop_counts[nonstatic_oop_map_count - 1] += 1;
coleenp@4719 3420 } else {
coleenp@4719 3421 // Create new oop map
coleenp@4719 3422 nonstatic_oop_offsets[nonstatic_oop_map_count] = real_offset;
coleenp@4719 3423 nonstatic_oop_counts [nonstatic_oop_map_count] = 1;
coleenp@4719 3424 nonstatic_oop_map_count += 1;
coleenp@4719 3425 if( first_nonstatic_oop_offset == 0 ) { // Undefined
coleenp@4719 3426 first_nonstatic_oop_offset = real_offset;
coleenp@4719 3427 }
coleenp@4719 3428 }
coleenp@4719 3429 break;
coleenp@4719 3430 case NONSTATIC_BYTE:
coleenp@4719 3431 if( nonstatic_byte_space_count > 0 ) {
coleenp@4719 3432 real_offset = nonstatic_byte_space_offset;
coleenp@4719 3433 nonstatic_byte_space_offset += 1;
coleenp@4719 3434 nonstatic_byte_space_count -= 1;
coleenp@4719 3435 } else {
coleenp@4719 3436 real_offset = next_nonstatic_byte_offset;
coleenp@4719 3437 next_nonstatic_byte_offset += 1;
coleenp@4719 3438 }
coleenp@4719 3439 break;
coleenp@4719 3440 case NONSTATIC_SHORT:
coleenp@4719 3441 if( nonstatic_short_space_count > 0 ) {
coleenp@4719 3442 real_offset = nonstatic_short_space_offset;
coleenp@4719 3443 nonstatic_short_space_offset += BytesPerShort;
coleenp@4719 3444 nonstatic_short_space_count -= 1;
coleenp@4719 3445 } else {
coleenp@4719 3446 real_offset = next_nonstatic_short_offset;
coleenp@4719 3447 next_nonstatic_short_offset += BytesPerShort;
coleenp@4719 3448 }
coleenp@4719 3449 break;
coleenp@4719 3450 case NONSTATIC_WORD:
coleenp@4719 3451 if( nonstatic_word_space_count > 0 ) {
coleenp@4719 3452 real_offset = nonstatic_word_space_offset;
coleenp@4719 3453 nonstatic_word_space_offset += BytesPerInt;
coleenp@4719 3454 nonstatic_word_space_count -= 1;
coleenp@4719 3455 } else {
coleenp@4719 3456 real_offset = next_nonstatic_word_offset;
coleenp@4719 3457 next_nonstatic_word_offset += BytesPerInt;
coleenp@4719 3458 }
coleenp@4719 3459 break;
coleenp@4719 3460 case NONSTATIC_DOUBLE:
coleenp@4719 3461 real_offset = next_nonstatic_double_offset;
coleenp@4719 3462 next_nonstatic_double_offset += BytesPerLong;
coleenp@4719 3463 break;
coleenp@4719 3464 default:
coleenp@4719 3465 ShouldNotReachHere();
coleenp@4719 3466 }
coleenp@4719 3467 fs.set_offset(real_offset);
coleenp@4719 3468 }
coleenp@4719 3469
coleenp@4719 3470
coleenp@4719 3471 // Handle the contended cases.
coleenp@4719 3472 //
coleenp@4719 3473 // Each contended field should not intersect the cache line with another contended field.
coleenp@4719 3474 // In the absence of alignment information, we end up with pessimistically separating
coleenp@4719 3475 // the fields with full-width padding.
coleenp@4719 3476 //
coleenp@4719 3477 // Additionally, this should not break alignment for the fields, so we round the alignment up
coleenp@4719 3478 // for each field.
coleenp@4719 3479 if (contended_count > 0) {
coleenp@4719 3480
coleenp@4719 3481 // if there is at least one contended field, we need to have pre-padding for them
coleenp@4719 3482 if (nonstatic_contended_count > 0) {
coleenp@4719 3483 next_nonstatic_padded_offset += pad_size;
coleenp@4719 3484 }
coleenp@4719 3485
coleenp@4719 3486 // collect all contended groups
coleenp@4719 3487 BitMap bm(_cp->size());
coleenp@4719 3488 for (AllFieldStream fs(_fields, _cp); !fs.done(); fs.next()) {
coleenp@4719 3489 // skip already laid out fields
coleenp@4719 3490 if (fs.is_offset_set()) continue;
coleenp@4719 3491
coleenp@4719 3492 if (fs.is_contended()) {
coleenp@4719 3493 bm.set_bit(fs.contended_group());
coleenp@4719 3494 }
coleenp@4719 3495 }
coleenp@4719 3496
coleenp@4719 3497 int current_group = -1;
coleenp@4719 3498 while ((current_group = (int)bm.get_next_one_offset(current_group + 1)) != (int)bm.size()) {
coleenp@4719 3499
coleenp@4719 3500 for (AllFieldStream fs(_fields, _cp); !fs.done(); fs.next()) {
coleenp@4719 3501
coleenp@4719 3502 // skip already laid out fields
coleenp@4719 3503 if (fs.is_offset_set()) continue;
coleenp@4719 3504
coleenp@4719 3505 // skip non-contended fields and fields from different group
coleenp@4719 3506 if (!fs.is_contended() || (fs.contended_group() != current_group)) continue;
coleenp@4719 3507
coleenp@4719 3508 // handle statics below
coleenp@4719 3509 if (fs.access_flags().is_static()) continue;
coleenp@4719 3510
coleenp@4719 3511 int real_offset;
coleenp@4719 3512 FieldAllocationType atype = (FieldAllocationType) fs.allocation_type();
coleenp@4719 3513
coleenp@4719 3514 switch (atype) {
coleenp@4719 3515 case NONSTATIC_BYTE:
coleenp@4719 3516 next_nonstatic_padded_offset = align_size_up(next_nonstatic_padded_offset, 1);
coleenp@4719 3517 real_offset = next_nonstatic_padded_offset;
coleenp@4719 3518 next_nonstatic_padded_offset += 1;
coleenp@4719 3519 break;
coleenp@4719 3520
coleenp@4719 3521 case NONSTATIC_SHORT:
coleenp@4719 3522 next_nonstatic_padded_offset = align_size_up(next_nonstatic_padded_offset, BytesPerShort);
coleenp@4719 3523 real_offset = next_nonstatic_padded_offset;
coleenp@4719 3524 next_nonstatic_padded_offset += BytesPerShort;
coleenp@4719 3525 break;
coleenp@4719 3526
coleenp@4719 3527 case NONSTATIC_WORD:
coleenp@4719 3528 next_nonstatic_padded_offset = align_size_up(next_nonstatic_padded_offset, BytesPerInt);
coleenp@4719 3529 real_offset = next_nonstatic_padded_offset;
coleenp@4719 3530 next_nonstatic_padded_offset += BytesPerInt;
coleenp@4719 3531 break;
coleenp@4719 3532
coleenp@4719 3533 case NONSTATIC_DOUBLE:
coleenp@4719 3534 next_nonstatic_padded_offset = align_size_up(next_nonstatic_padded_offset, BytesPerLong);
coleenp@4719 3535 real_offset = next_nonstatic_padded_offset;
coleenp@4719 3536 next_nonstatic_padded_offset += BytesPerLong;
coleenp@4719 3537 break;
coleenp@4719 3538
coleenp@4719 3539 case NONSTATIC_OOP:
coleenp@4719 3540 next_nonstatic_padded_offset = align_size_up(next_nonstatic_padded_offset, heapOopSize);
coleenp@4719 3541 real_offset = next_nonstatic_padded_offset;
coleenp@4719 3542 next_nonstatic_padded_offset += heapOopSize;
coleenp@4719 3543
coleenp@4719 3544 // Create new oop map
coleenp@4719 3545 nonstatic_oop_offsets[nonstatic_oop_map_count] = real_offset;
coleenp@4719 3546 nonstatic_oop_counts [nonstatic_oop_map_count] = 1;
coleenp@4719 3547 nonstatic_oop_map_count += 1;
coleenp@4719 3548 if( first_nonstatic_oop_offset == 0 ) { // Undefined
coleenp@4719 3549 first_nonstatic_oop_offset = real_offset;
coleenp@4719 3550 }
coleenp@4719 3551 break;
coleenp@4719 3552
coleenp@4719 3553 default:
coleenp@4719 3554 ShouldNotReachHere();
coleenp@4719 3555 }
coleenp@4719 3556
coleenp@4719 3557 if (fs.contended_group() == 0) {
coleenp@4719 3558 // Contended group defines the equivalence class over the fields:
coleenp@4719 3559 // the fields within the same contended group are not inter-padded.
coleenp@4719 3560 // The only exception is default group, which does not incur the
coleenp@4719 3561 // equivalence, and so requires intra-padding.
coleenp@4719 3562 next_nonstatic_padded_offset += pad_size;
coleenp@4719 3563 }
coleenp@4719 3564
coleenp@4719 3565 fs.set_offset(real_offset);
coleenp@4719 3566 } // for
coleenp@4719 3567
coleenp@4719 3568 // Start laying out the next group.
coleenp@4719 3569 // Note that this will effectively pad the last group in the back;
coleenp@4719 3570 // this is expected to alleviate memory contention effects for
coleenp@4719 3571 // subclass fields and/or adjacent object.
coleenp@4719 3572 // If this was the default group, the padding is already in place.
coleenp@4719 3573 if (current_group != 0) {
coleenp@4719 3574 next_nonstatic_padded_offset += pad_size;
coleenp@4719 3575 }
coleenp@4719 3576 }
coleenp@4719 3577
coleenp@4719 3578 // handle static fields
coleenp@4719 3579 }
coleenp@4719 3580
coleenp@4719 3581 // Size of instances
coleenp@4719 3582 int notaligned_offset = next_nonstatic_padded_offset;
coleenp@4719 3583
coleenp@4719 3584 // Entire class is contended, pad in the back.
coleenp@4719 3585 // This helps to alleviate memory contention effects for subclass fields
coleenp@4719 3586 // and/or adjacent object.
coleenp@4719 3587 if (parsed_annotations->is_contended()) {
coleenp@4719 3588 notaligned_offset += pad_size;
coleenp@4719 3589 }
coleenp@4719 3590
coleenp@4719 3591 int next_static_type_offset = align_size_up(next_static_byte_offset, wordSize);
coleenp@4719 3592 int static_field_size = (next_static_type_offset -
coleenp@4719 3593 InstanceMirrorKlass::offset_of_static_fields()) / wordSize;
coleenp@4719 3594
coleenp@4719 3595 next_nonstatic_type_offset = align_size_up(notaligned_offset, heapOopSize );
coleenp@4719 3596 nonstatic_field_size = nonstatic_field_size + ((next_nonstatic_type_offset
coleenp@4719 3597 - first_nonstatic_field_offset)/heapOopSize);
coleenp@4719 3598
coleenp@4719 3599 next_nonstatic_type_offset = align_size_up(notaligned_offset, wordSize );
coleenp@4719 3600 int instance_size = align_object_size(next_nonstatic_type_offset / wordSize);
coleenp@4719 3601
coleenp@4719 3602 assert(instance_size == align_object_size(align_size_up(
coleenp@4719 3603 (instanceOopDesc::base_offset_in_bytes() + nonstatic_field_size*heapOopSize + ((parsed_annotations->is_contended()) ? pad_size : 0)),
coleenp@4719 3604 wordSize) / wordSize), "consistent layout helper value");
coleenp@4719 3605
coleenp@4719 3606 // Number of non-static oop map blocks allocated at end of klass.
coleenp@4719 3607 const unsigned int total_oop_map_count =
coleenp@4719 3608 compute_oop_map_count(_super_klass, nonstatic_oop_map_count,
coleenp@4719 3609 first_nonstatic_oop_offset);
coleenp@4719 3610
coleenp@4719 3611 #ifndef PRODUCT
coleenp@4719 3612 if( PrintCompactFieldsSavings ) {
coleenp@4719 3613 ResourceMark rm;
coleenp@4719 3614 if( nonstatic_field_size < orig_nonstatic_field_size ) {
coleenp@4719 3615 tty->print("[Saved %d of %d bytes in %s]\n",
coleenp@4719 3616 (orig_nonstatic_field_size - nonstatic_field_size)*heapOopSize,
coleenp@4719 3617 orig_nonstatic_field_size*heapOopSize,
coleenp@4719 3618 _class_name);
coleenp@4719 3619 } else if( nonstatic_field_size > orig_nonstatic_field_size ) {
coleenp@4719 3620 tty->print("[Wasted %d over %d bytes in %s]\n",
coleenp@4719 3621 (nonstatic_field_size - orig_nonstatic_field_size)*heapOopSize,
coleenp@4719 3622 orig_nonstatic_field_size*heapOopSize,
coleenp@4719 3623 _class_name);
coleenp@4719 3624 }
coleenp@4719 3625 }
coleenp@4719 3626
coleenp@4719 3627 if (PrintFieldLayout) {
coleenp@4719 3628 print_field_layout(_class_name,
coleenp@4719 3629 _fields,
coleenp@4719 3630 _cp,
coleenp@4719 3631 instance_size,
coleenp@4719 3632 first_nonstatic_field_offset,
coleenp@4719 3633 next_nonstatic_field_offset,
coleenp@4719 3634 next_static_type_offset);
coleenp@4719 3635 }
coleenp@4719 3636
coleenp@4719 3637 #endif
coleenp@4719 3638 // Pass back information needed for InstanceKlass creation
coleenp@4719 3639 info->nonstatic_oop_offsets = nonstatic_oop_offsets;
coleenp@4719 3640 info->nonstatic_oop_counts = nonstatic_oop_counts;
coleenp@4719 3641 info->nonstatic_oop_map_count = nonstatic_oop_map_count;
coleenp@4719 3642 info->total_oop_map_count = total_oop_map_count;
coleenp@4719 3643 info->instance_size = instance_size;
coleenp@4719 3644 info->static_field_size = static_field_size;
coleenp@4719 3645 info->nonstatic_field_size = nonstatic_field_size;
coleenp@4719 3646 info->has_nonstatic_fields = has_nonstatic_fields;
coleenp@4719 3647 }
coleenp@4719 3648
coleenp@4719 3649
coleenp@2497 3650 instanceKlassHandle ClassFileParser::parseClassFile(Symbol* name,
coleenp@4304 3651 ClassLoaderData* loader_data,
duke@435 3652 Handle protection_domain,
jrose@1145 3653 KlassHandle host_klass,
jrose@866 3654 GrowableArray<Handle>* cp_patches,
coleenp@2497 3655 TempNewSymbol& parsed_name,
acorn@1408 3656 bool verify,
duke@435 3657 TRAPS) {
coleenp@4398 3658
dcubed@3360 3659 // When a retransformable agent is attached, JVMTI caches the
dcubed@3360 3660 // class bytes that existed before the first retransformation.
dcubed@3360 3661 // If RedefineClasses() was used before the retransformable
dcubed@3360 3662 // agent attached, then the cached class bytes may not be the
dcubed@3360 3663 // original class bytes.
duke@435 3664 unsigned char *cached_class_file_bytes = NULL;
duke@435 3665 jint cached_class_file_length;
coleenp@4304 3666 Handle class_loader(THREAD, loader_data->class_loader());
kamg@4245 3667 bool has_default_methods = false;
kamg@4245 3668 ResourceMark rm(THREAD);
duke@435 3669
duke@435 3670 ClassFileStream* cfs = stream();
duke@435 3671 // Timing
mchung@1310 3672 assert(THREAD->is_Java_thread(), "must be a JavaThread");
mchung@1310 3673 JavaThread* jt = (JavaThread*) THREAD;
mchung@1310 3674
mchung@1310 3675 PerfClassTraceTime ctimer(ClassLoader::perf_class_parse_time(),
mchung@1310 3676 ClassLoader::perf_class_parse_selftime(),
mchung@1310 3677 NULL,
mchung@1310 3678 jt->get_thread_stat()->perf_recursion_counts_addr(),
mchung@1310 3679 jt->get_thread_stat()->perf_timers_addr(),
mchung@1310 3680 PerfClassTraceTime::PARSE_CLASS);
duke@435 3681
coleenp@4719 3682 init_parsed_class_attributes(loader_data);
duke@435 3683
duke@435 3684 if (JvmtiExport::should_post_class_file_load_hook()) {
dcubed@3380 3685 // Get the cached class file bytes (if any) from the class that
dcubed@3380 3686 // is being redefined or retransformed. We use jvmti_thread_state()
dcubed@3380 3687 // instead of JvmtiThreadState::state_for(jt) so we don't allocate
dcubed@3380 3688 // a JvmtiThreadState any earlier than necessary. This will help
dcubed@3380 3689 // avoid the bug described by 7126851.
dcubed@3380 3690 JvmtiThreadState *state = jt->jvmti_thread_state();
dcubed@3380 3691 if (state != NULL) {
dcubed@3380 3692 KlassHandle *h_class_being_redefined =
dcubed@3380 3693 state->get_class_being_redefined();
dcubed@3380 3694 if (h_class_being_redefined != NULL) {
dcubed@3380 3695 instanceKlassHandle ikh_class_being_redefined =
dcubed@3380 3696 instanceKlassHandle(THREAD, (*h_class_being_redefined)());
dcubed@3380 3697 cached_class_file_bytes =
dcubed@3380 3698 ikh_class_being_redefined->get_cached_class_file_bytes();
dcubed@3380 3699 cached_class_file_length =
dcubed@3380 3700 ikh_class_being_redefined->get_cached_class_file_len();
dcubed@3380 3701 }
dcubed@3360 3702 }
dcubed@3360 3703
duke@435 3704 unsigned char* ptr = cfs->buffer();
duke@435 3705 unsigned char* end_ptr = cfs->buffer() + cfs->length();
duke@435 3706
coleenp@4304 3707 JvmtiExport::post_class_file_load_hook(name, class_loader(), protection_domain,
duke@435 3708 &ptr, &end_ptr,
duke@435 3709 &cached_class_file_bytes,
duke@435 3710 &cached_class_file_length);
duke@435 3711
duke@435 3712 if (ptr != cfs->buffer()) {
duke@435 3713 // JVMTI agent has modified class file data.
duke@435 3714 // Set new class file stream using JVMTI agent modified
duke@435 3715 // class file data.
duke@435 3716 cfs = new ClassFileStream(ptr, end_ptr - ptr, cfs->source());
duke@435 3717 set_stream(cfs);
duke@435 3718 }
duke@435 3719 }
duke@435 3720
jrose@1145 3721 _host_klass = host_klass;
jrose@866 3722 _cp_patches = cp_patches;
duke@435 3723
duke@435 3724 instanceKlassHandle nullHandle;
duke@435 3725
duke@435 3726 // Figure out whether we can skip format checking (matching classic VM behavior)
acorn@1408 3727 _need_verify = Verifier::should_verify_for(class_loader(), verify);
duke@435 3728
duke@435 3729 // Set the verify flag in stream
duke@435 3730 cfs->set_verify(_need_verify);
duke@435 3731
duke@435 3732 // Save the class file name for easier error message printing.
coleenp@2497 3733 _class_name = (name != NULL) ? name : vmSymbols::unknown_class_name();
duke@435 3734
duke@435 3735 cfs->guarantee_more(8, CHECK_(nullHandle)); // magic, major, minor
duke@435 3736 // Magic value
duke@435 3737 u4 magic = cfs->get_u4_fast();
duke@435 3738 guarantee_property(magic == JAVA_CLASSFILE_MAGIC,
duke@435 3739 "Incompatible magic value %u in class file %s",
duke@435 3740 magic, CHECK_(nullHandle));
duke@435 3741
duke@435 3742 // Version numbers
duke@435 3743 u2 minor_version = cfs->get_u2_fast();
duke@435 3744 u2 major_version = cfs->get_u2_fast();
duke@435 3745
duke@435 3746 // Check version numbers - we check this even with verifier off
duke@435 3747 if (!is_supported_version(major_version, minor_version)) {
coleenp@2497 3748 if (name == NULL) {
duke@435 3749 Exceptions::fthrow(
duke@435 3750 THREAD_AND_LOCATION,
coleenp@2497 3751 vmSymbols::java_lang_UnsupportedClassVersionError(),
duke@435 3752 "Unsupported major.minor version %u.%u",
duke@435 3753 major_version,
duke@435 3754 minor_version);
duke@435 3755 } else {
duke@435 3756 ResourceMark rm(THREAD);
duke@435 3757 Exceptions::fthrow(
duke@435 3758 THREAD_AND_LOCATION,
coleenp@2497 3759 vmSymbols::java_lang_UnsupportedClassVersionError(),
duke@435 3760 "%s : Unsupported major.minor version %u.%u",
duke@435 3761 name->as_C_string(),
duke@435 3762 major_version,
duke@435 3763 minor_version);
duke@435 3764 }
duke@435 3765 return nullHandle;
duke@435 3766 }
duke@435 3767
duke@435 3768 _major_version = major_version;
duke@435 3769 _minor_version = minor_version;
duke@435 3770
duke@435 3771
duke@435 3772 // Check if verification needs to be relaxed for this class file
duke@435 3773 // Do not restrict it to jdk1.0 or jdk1.1 to maintain backward compatibility (4982376)
duke@435 3774 _relax_verify = Verifier::relax_verify_for(class_loader());
duke@435 3775
duke@435 3776 // Constant pool
coleenp@4719 3777 constantPoolHandle cp = parse_constant_pool(CHECK_(nullHandle));
coleenp@2497 3778
duke@435 3779 int cp_size = cp->length();
duke@435 3780
duke@435 3781 cfs->guarantee_more(8, CHECK_(nullHandle)); // flags, this_class, super_class, infs_len
duke@435 3782
duke@435 3783 // Access flags
duke@435 3784 AccessFlags access_flags;
duke@435 3785 jint flags = cfs->get_u2_fast() & JVM_RECOGNIZED_CLASS_MODIFIERS;
duke@435 3786
duke@435 3787 if ((flags & JVM_ACC_INTERFACE) && _major_version < JAVA_6_VERSION) {
duke@435 3788 // Set abstract bit for old class files for backward compatibility
duke@435 3789 flags |= JVM_ACC_ABSTRACT;
duke@435 3790 }
duke@435 3791 verify_legal_class_modifiers(flags, CHECK_(nullHandle));
duke@435 3792 access_flags.set_flags(flags);
duke@435 3793
duke@435 3794 // This class and superclass
duke@435 3795 u2 this_class_index = cfs->get_u2_fast();
duke@435 3796 check_property(
duke@435 3797 valid_cp_range(this_class_index, cp_size) &&
duke@435 3798 cp->tag_at(this_class_index).is_unresolved_klass(),
duke@435 3799 "Invalid this class index %u in constant pool in class file %s",
duke@435 3800 this_class_index, CHECK_(nullHandle));
duke@435 3801
coleenp@2497 3802 Symbol* class_name = cp->unresolved_klass_at(this_class_index);
coleenp@2497 3803 assert(class_name != NULL, "class_name can't be null");
duke@435 3804
duke@435 3805 // It's important to set parsed_name *before* resolving the super class.
duke@435 3806 // (it's used for cleanup by the caller if parsing fails)
duke@435 3807 parsed_name = class_name;
coleenp@2497 3808 // parsed_name is returned and can be used if there's an error, so add to
coleenp@2497 3809 // its reference count. Caller will decrement the refcount.
coleenp@2497 3810 parsed_name->increment_refcount();
duke@435 3811
duke@435 3812 // Update _class_name which could be null previously to be class_name
duke@435 3813 _class_name = class_name;
duke@435 3814
duke@435 3815 // Don't need to check whether this class name is legal or not.
duke@435 3816 // It has been checked when constant pool is parsed.
duke@435 3817 // However, make sure it is not an array type.
duke@435 3818 if (_need_verify) {
duke@435 3819 guarantee_property(class_name->byte_at(0) != JVM_SIGNATURE_ARRAY,
duke@435 3820 "Bad class name in class file %s",
duke@435 3821 CHECK_(nullHandle));
duke@435 3822 }
duke@435 3823
coleenp@4037 3824 Klass* preserve_this_klass; // for storing result across HandleMark
duke@435 3825
duke@435 3826 // release all handles when parsing is done
duke@435 3827 { HandleMark hm(THREAD);
duke@435 3828
duke@435 3829 // Checks if name in class file matches requested name
coleenp@2497 3830 if (name != NULL && class_name != name) {
duke@435 3831 ResourceMark rm(THREAD);
duke@435 3832 Exceptions::fthrow(
duke@435 3833 THREAD_AND_LOCATION,
coleenp@2497 3834 vmSymbols::java_lang_NoClassDefFoundError(),
duke@435 3835 "%s (wrong name: %s)",
duke@435 3836 name->as_C_string(),
duke@435 3837 class_name->as_C_string()
duke@435 3838 );
duke@435 3839 return nullHandle;
duke@435 3840 }
duke@435 3841
duke@435 3842 if (TraceClassLoadingPreorder) {
coleenp@2497 3843 tty->print("[Loading %s", name->as_klass_external_name());
duke@435 3844 if (cfs->source() != NULL) tty->print(" from %s", cfs->source());
duke@435 3845 tty->print_cr("]");
duke@435 3846 }
duke@435 3847
duke@435 3848 u2 super_class_index = cfs->get_u2_fast();
coleenp@4719 3849 instanceKlassHandle super_klass = parse_super_class(super_class_index,
coleenp@4719 3850 CHECK_NULL);
duke@435 3851
duke@435 3852 // Interfaces
duke@435 3853 u2 itfs_len = cfs->get_u2_fast();
coleenp@4719 3854 Array<Klass*>* local_interfaces =
coleenp@4719 3855 parse_interfaces(itfs_len, protection_domain, _class_name,
coleenp@4719 3856 &has_default_methods, CHECK_(nullHandle));
duke@435 3857
jiangli@3373 3858 u2 java_fields_count = 0;
duke@435 3859 // Fields (offsets are filled in later)
never@3137 3860 FieldAllocationCount fac;
coleenp@4719 3861 Array<u2>* fields = parse_fields(class_name,
coleenp@4719 3862 access_flags.is_interface(),
coleenp@4719 3863 &fac, &java_fields_count,
coleenp@4719 3864 CHECK_(nullHandle));
duke@435 3865 // Methods
duke@435 3866 bool has_final_method = false;
duke@435 3867 AccessFlags promoted_flags;
duke@435 3868 promoted_flags.set_flags(0);
coleenp@4719 3869 Array<Method*>* methods = parse_methods(access_flags.is_interface(),
coleenp@4142 3870 &promoted_flags,
coleenp@4142 3871 &has_final_method,
kamg@4245 3872 &has_default_methods,
coleenp@4142 3873 CHECK_(nullHandle));
duke@435 3874
jrose@3926 3875 // Additional attributes
jrose@3926 3876 ClassAnnotationCollector parsed_annotations;
coleenp@4719 3877 parse_classfile_attributes(&parsed_annotations, CHECK_(nullHandle));
jrose@3926 3878
jrose@3926 3879 // Make sure this is the end of class file stream
jrose@3926 3880 guarantee_property(cfs->at_eos(), "Extra bytes at the end of class file %s", CHECK_(nullHandle));
jrose@3926 3881
duke@435 3882 // We check super class after class file is parsed and format is checked
jrose@866 3883 if (super_class_index > 0 && super_klass.is_null()) {
coleenp@2497 3884 Symbol* sk = cp->klass_name_at(super_class_index);
duke@435 3885 if (access_flags.is_interface()) {
duke@435 3886 // Before attempting to resolve the superclass, check for class format
duke@435 3887 // errors not checked yet.
coleenp@2497 3888 guarantee_property(sk == vmSymbols::java_lang_Object(),
duke@435 3889 "Interfaces must have java.lang.Object as superclass in class file %s",
duke@435 3890 CHECK_(nullHandle));
duke@435 3891 }
coleenp@4142 3892 Klass* k = SystemDictionary::resolve_super_or_fail(class_name, sk,
coleenp@4142 3893 class_loader,
coleenp@4142 3894 protection_domain,
coleenp@4142 3895 true,
coleenp@4142 3896 CHECK_(nullHandle));
mchung@1310 3897
duke@435 3898 KlassHandle kh (THREAD, k);
duke@435 3899 super_klass = instanceKlassHandle(THREAD, kh());
jrose@866 3900 }
jrose@866 3901 if (super_klass.not_null()) {
kamg@4245 3902
kamg@4245 3903 if (super_klass->has_default_methods()) {
kamg@4245 3904 has_default_methods = true;
kamg@4245 3905 }
kamg@4245 3906
duke@435 3907 if (super_klass->is_interface()) {
duke@435 3908 ResourceMark rm(THREAD);
duke@435 3909 Exceptions::fthrow(
duke@435 3910 THREAD_AND_LOCATION,
coleenp@2497 3911 vmSymbols::java_lang_IncompatibleClassChangeError(),
duke@435 3912 "class %s has interface %s as super class",
duke@435 3913 class_name->as_klass_external_name(),
duke@435 3914 super_klass->external_name()
duke@435 3915 );
duke@435 3916 return nullHandle;
duke@435 3917 }
duke@435 3918 // Make sure super class is not final
duke@435 3919 if (super_klass->is_final()) {
duke@435 3920 THROW_MSG_(vmSymbols::java_lang_VerifyError(), "Cannot inherit from final class", nullHandle);
duke@435 3921 }
duke@435 3922 }
duke@435 3923
coleenp@4719 3924 // save super klass for error handling.
coleenp@4719 3925 _super_klass = super_klass;
coleenp@4719 3926
duke@435 3927 // Compute the transitive list of all unique interfaces implemented by this class
coleenp@4719 3928 _transitive_interfaces =
coleenp@4719 3929 compute_transitive_interfaces(super_klass, local_interfaces, CHECK_(nullHandle));
duke@435 3930
duke@435 3931 // sort methods
coleenp@4719 3932 intArray* method_ordering = sort_methods(methods);
duke@435 3933
duke@435 3934 // promote flags from parse_methods() to the klass' flags
duke@435 3935 access_flags.add_promoted_flags(promoted_flags.as_int());
duke@435 3936
duke@435 3937 // Size of Java vtable (in words)
duke@435 3938 int vtable_size = 0;
duke@435 3939 int itable_size = 0;
duke@435 3940 int num_miranda_methods = 0;
duke@435 3941
kamg@4245 3942 GrowableArray<Method*> all_mirandas(20);
kamg@4245 3943
kamg@4245 3944 klassVtable::compute_vtable_size_and_num_mirandas(
kamg@4245 3945 &vtable_size, &num_miranda_methods, &all_mirandas, super_klass(), methods,
kamg@4245 3946 access_flags, class_loader, class_name, local_interfaces,
acorn@1087 3947 CHECK_(nullHandle));
duke@435 3948
duke@435 3949 // Size of Java itable (in words)
coleenp@4719 3950 itable_size = access_flags.is_interface() ? 0 : klassItable::compute_itable_size(_transitive_interfaces);
coleenp@4719 3951
coleenp@4719 3952 FieldLayoutInfo info;
coleenp@4719 3953 layout_fields(class_loader, &fac, &parsed_annotations, &info, CHECK_NULL);
coleenp@4719 3954
coleenp@4719 3955 int total_oop_map_size2 =
coleenp@4719 3956 InstanceKlass::nonstatic_oop_map_size(info.total_oop_map_count);
coleenp@4719 3957
duke@435 3958 // Compute reference type
duke@435 3959 ReferenceType rt;
duke@435 3960 if (super_klass() == NULL) {
duke@435 3961 rt = REF_NONE;
duke@435 3962 } else {
duke@435 3963 rt = super_klass->reference_type();
duke@435 3964 }
duke@435 3965
coleenp@4037 3966 // We can now create the basic Klass* for this klass
coleenp@4719 3967 _klass = InstanceKlass::allocate_instance_klass(loader_data,
coleenp@4719 3968 vtable_size,
coleenp@4719 3969 itable_size,
coleenp@4719 3970 info.static_field_size,
coleenp@4719 3971 total_oop_map_size2,
coleenp@4719 3972 rt,
coleenp@4719 3973 access_flags,
coleenp@4719 3974 name,
coleenp@4719 3975 super_klass(),
coleenp@4719 3976 !host_klass.is_null(),
coleenp@4719 3977 CHECK_(nullHandle));
coleenp@4719 3978 instanceKlassHandle this_klass (THREAD, _klass);
coleenp@4719 3979
coleenp@4719 3980 assert(this_klass->static_field_size() == info.static_field_size, "sanity");
coleenp@4719 3981 assert(this_klass->nonstatic_oop_map_count() == info.total_oop_map_count,
jcoomes@1373 3982 "sanity");
duke@435 3983
duke@435 3984 // Fill in information already parsed
acorn@1410 3985 this_klass->set_should_verify_class(verify);
coleenp@4719 3986 jint lh = Klass::instance_layout_helper(info.instance_size, false);
duke@435 3987 this_klass->set_layout_helper(lh);
duke@435 3988 assert(this_klass->oop_is_instance(), "layout is correct");
coleenp@4719 3989 assert(this_klass->size_helper() == info.instance_size, "correct size_helper");
duke@435 3990 // Not yet: supers are done below to support the new subtype-checking fields
duke@435 3991 //this_klass->set_super(super_klass());
coleenp@4037 3992 this_klass->set_class_loader_data(loader_data);
coleenp@4719 3993 this_klass->set_nonstatic_field_size(info.nonstatic_field_size);
coleenp@4719 3994 this_klass->set_has_nonstatic_fields(info.has_nonstatic_fields);
never@3137 3995 this_klass->set_static_oop_field_count(fac.count[STATIC_OOP]);
coleenp@4719 3996
coleenp@4719 3997 apply_parsed_class_metadata(this_klass, java_fields_count, CHECK_NULL);
coleenp@4719 3998
duke@435 3999 if (has_final_method) {
duke@435 4000 this_klass->set_has_final_method();
duke@435 4001 }
coleenp@4719 4002 this_klass->copy_method_ordering(method_ordering, CHECK_NULL);
coleenp@4037 4003 // The InstanceKlass::_methods_jmethod_ids cache and the
coleenp@4037 4004 // InstanceKlass::_methods_cached_itable_indices cache are
dcubed@1412 4005 // both managed on the assumption that the initial cache
dcubed@1412 4006 // size is equal to the number of methods in the class. If
coleenp@4037 4007 // that changes, then InstanceKlass::idnum_can_increment()
dcubed@1412 4008 // has to be changed accordingly.
duke@435 4009 this_klass->set_initial_method_idnum(methods->length());
duke@435 4010 this_klass->set_name(cp->klass_name_at(this_class_index));
twisti@4163 4011 if (is_anonymous()) // I am well known to myself
jrose@909 4012 cp->klass_at_put(this_class_index, this_klass()); // eagerly resolve
coleenp@4037 4013
duke@435 4014 this_klass->set_minor_version(minor_version);
duke@435 4015 this_klass->set_major_version(major_version);
kamg@4245 4016 this_klass->set_has_default_methods(has_default_methods);
duke@435 4017
coleenp@4037 4018 // Set up Method*::intrinsic_id as soon as we know the names of methods.
jrose@1291 4019 // (We used to do this lazily, but now we query it in Rewriter,
jrose@1291 4020 // which is eagerly done for every method, so we might as well do it now,
jrose@1291 4021 // when everything is fresh in memory.)
coleenp@4037 4022 if (Method::klass_id_for_intrinsics(this_klass()) != vmSymbols::NO_SID) {
jrose@1291 4023 for (int j = 0; j < methods->length(); j++) {
coleenp@4037 4024 methods->at(j)->init_intrinsic_id();
jrose@1291 4025 }
jrose@1291 4026 }
jrose@1291 4027
duke@435 4028 if (cached_class_file_bytes != NULL) {
coleenp@4037 4029 // JVMTI: we have an InstanceKlass now, tell it about the cached bytes
duke@435 4030 this_klass->set_cached_class_file(cached_class_file_bytes,
duke@435 4031 cached_class_file_length);
duke@435 4032 }
duke@435 4033
kamg@4245 4034 // Fill in field values obtained by parse_classfile_attributes
kamg@4245 4035 if (parsed_annotations.has_any_annotations())
kamg@4245 4036 parsed_annotations.apply_to(this_klass);
kamg@4245 4037 apply_parsed_class_attributes(this_klass);
kamg@4245 4038
duke@435 4039 // Miranda methods
duke@435 4040 if ((num_miranda_methods > 0) ||
duke@435 4041 // if this class introduced new miranda methods or
duke@435 4042 (super_klass.not_null() && (super_klass->has_miranda_methods()))
duke@435 4043 // super class exists and this class inherited miranda methods
duke@435 4044 ) {
duke@435 4045 this_klass->set_has_miranda_methods(); // then set a flag
duke@435 4046 }
duke@435 4047
duke@435 4048 // Fill in information needed to compute superclasses.
duke@435 4049 this_klass->initialize_supers(super_klass(), CHECK_(nullHandle));
duke@435 4050
duke@435 4051 // Initialize itable offset tables
duke@435 4052 klassItable::setup_itable_offset_table(this_klass);
duke@435 4053
kamg@4245 4054 // Compute transitive closure of interfaces this class implements
duke@435 4055 // Do final class setup
coleenp@4719 4056 fill_oop_maps(this_klass, info.nonstatic_oop_map_count, info.nonstatic_oop_offsets, info.nonstatic_oop_counts);
duke@435 4057
jrose@3926 4058 // Fill in has_finalizer, has_vanilla_constructor, and layout_helper
duke@435 4059 set_precomputed_flags(this_klass);
duke@435 4060
duke@435 4061 // reinitialize modifiers, using the InnerClasses attribute
duke@435 4062 int computed_modifiers = this_klass->compute_modifier_flags(CHECK_(nullHandle));
duke@435 4063 this_klass->set_modifier_flags(computed_modifiers);
duke@435 4064
duke@435 4065 // check if this class can access its super class
duke@435 4066 check_super_class_access(this_klass, CHECK_(nullHandle));
duke@435 4067
duke@435 4068 // check if this class can access its superinterfaces
duke@435 4069 check_super_interface_access(this_klass, CHECK_(nullHandle));
duke@435 4070
duke@435 4071 // check if this class overrides any final method
duke@435 4072 check_final_method_override(this_klass, CHECK_(nullHandle));
duke@435 4073
duke@435 4074 // check that if this class is an interface then it doesn't have static methods
duke@435 4075 if (this_klass->is_interface()) {
acorn@4422 4076 /* An interface in a JAVA 8 classfile can be static */
acorn@4422 4077 if (_major_version < JAVA_8_VERSION) {
acorn@4422 4078 check_illegal_static_method(this_klass, CHECK_(nullHandle));
acorn@4422 4079 }
duke@435 4080 }
duke@435 4081
kamg@4245 4082
kamg@4245 4083 #ifdef ASSERT
kamg@4245 4084 if (ParseAllGenericSignatures) {
kamg@4245 4085 parseAndPrintGenericSignatures(this_klass, CHECK_(nullHandle));
kamg@4245 4086 }
kamg@4245 4087 #endif
kamg@4245 4088
kamg@4245 4089 // Generate any default methods - default methods are interface methods
kamg@4245 4090 // that have a default implementation. This is new with Lambda project.
kamg@4245 4091 if (has_default_methods && !access_flags.is_interface() &&
kamg@4245 4092 local_interfaces->length() > 0) {
kamg@4245 4093 DefaultMethods::generate_default_methods(
kamg@4245 4094 this_klass(), &all_mirandas, CHECK_(nullHandle));
kamg@4245 4095 }
kamg@4245 4096
never@2658 4097 // Allocate mirror and initialize static fields
never@2658 4098 java_lang_Class::create_mirror(this_klass, CHECK_(nullHandle));
never@2658 4099
coleenp@4037 4100 // Allocate a simple java object for locking during class initialization.
coleenp@4037 4101 // This needs to be a java object because it can be held across a java call.
coleenp@4037 4102 typeArrayOop r = oopFactory::new_typeArray(T_INT, 0, CHECK_NULL);
coleenp@4037 4103 this_klass->set_init_lock(r);
coleenp@4037 4104
coleenp@4037 4105 // TODO: Move these oops to the mirror
coleenp@4037 4106 this_klass->set_protection_domain(protection_domain());
coleenp@4037 4107
coleenp@4037 4108 // Update the loader_data graph.
coleenp@4037 4109 record_defined_class_dependencies(this_klass, CHECK_NULL);
coleenp@4037 4110
coleenp@4037 4111 ClassLoadingService::notify_class_loaded(InstanceKlass::cast(this_klass()),
duke@435 4112 false /* not shared class */);
duke@435 4113
duke@435 4114 if (TraceClassLoading) {
kamg@4245 4115 ResourceMark rm;
duke@435 4116 // print in a single call to reduce interleaving of output
duke@435 4117 if (cfs->source() != NULL) {
duke@435 4118 tty->print("[Loaded %s from %s]\n", this_klass->external_name(),
duke@435 4119 cfs->source());
duke@435 4120 } else if (class_loader.is_null()) {
duke@435 4121 if (THREAD->is_Java_thread()) {
coleenp@4037 4122 Klass* caller = ((JavaThread*)THREAD)->security_get_caller_class(1);
duke@435 4123 tty->print("[Loaded %s by instance of %s]\n",
duke@435 4124 this_klass->external_name(),
coleenp@4037 4125 InstanceKlass::cast(caller)->external_name());
duke@435 4126 } else {
duke@435 4127 tty->print("[Loaded %s]\n", this_klass->external_name());
duke@435 4128 }
duke@435 4129 } else {
duke@435 4130 tty->print("[Loaded %s from %s]\n", this_klass->external_name(),
coleenp@4037 4131 InstanceKlass::cast(class_loader->klass())->external_name());
duke@435 4132 }
duke@435 4133 }
duke@435 4134
duke@435 4135 if (TraceClassResolution) {
kamg@4245 4136 ResourceMark rm;
duke@435 4137 // print out the superclass.
hseigel@4278 4138 const char * from = this_klass()->external_name();
duke@435 4139 if (this_klass->java_super() != NULL) {
coleenp@4037 4140 tty->print("RESOLVE %s %s (super)\n", from, InstanceKlass::cast(this_klass->java_super())->external_name());
duke@435 4141 }
duke@435 4142 // print out each of the interface classes referred to by this class.
coleenp@4037 4143 Array<Klass*>* local_interfaces = this_klass->local_interfaces();
coleenp@4037 4144 if (local_interfaces != NULL) {
duke@435 4145 int length = local_interfaces->length();
duke@435 4146 for (int i = 0; i < length; i++) {
coleenp@4037 4147 Klass* k = local_interfaces->at(i);
coleenp@4037 4148 InstanceKlass* to_class = InstanceKlass::cast(k);
duke@435 4149 const char * to = to_class->external_name();
acorn@1092 4150 tty->print("RESOLVE %s %s (interface)\n", from, to);
duke@435 4151 }
duke@435 4152 }
duke@435 4153 }
duke@435 4154
duke@435 4155 // preserve result across HandleMark
duke@435 4156 preserve_this_klass = this_klass();
duke@435 4157 }
duke@435 4158
coleenp@4037 4159 // Create new handle outside HandleMark (might be needed for
coleenp@4037 4160 // Extended Class Redefinition)
duke@435 4161 instanceKlassHandle this_klass (THREAD, preserve_this_klass);
coleenp@4037 4162 debug_only(this_klass->verify();)
duke@435 4163
coleenp@4719 4164 // Clear class if no error has occurred so destructor doesn't deallocate it
coleenp@4719 4165 _klass = NULL;
duke@435 4166 return this_klass;
duke@435 4167 }
duke@435 4168
coleenp@4719 4169 // Destructor to clean up if there's an error
coleenp@4719 4170 ClassFileParser::~ClassFileParser() {
coleenp@4719 4171 MetadataFactory::free_metadata(_loader_data, _cp);
coleenp@4719 4172 MetadataFactory::free_array<u2>(_loader_data, _fields);
coleenp@4719 4173
coleenp@4719 4174 // Free methods
coleenp@4719 4175 InstanceKlass::deallocate_methods(_loader_data, _methods);
coleenp@4719 4176
coleenp@4719 4177 // beware of the Universe::empty_blah_array!!
coleenp@4719 4178 if (_inner_classes != Universe::the_empty_short_array()) {
coleenp@4719 4179 MetadataFactory::free_array<u2>(_loader_data, _inner_classes);
coleenp@4719 4180 }
coleenp@4719 4181
coleenp@4719 4182 // Free interfaces
coleenp@4719 4183 InstanceKlass::deallocate_interfaces(_loader_data, _super_klass(),
coleenp@4719 4184 _local_interfaces, _transitive_interfaces);
coleenp@4719 4185
coleenp@4719 4186 MetadataFactory::free_array<u1>(_loader_data, _annotations);
coleenp@4719 4187 MetadataFactory::free_array<u1>(_loader_data, _type_annotations);
coleenp@4719 4188 Annotations::free_contents(_loader_data, _fields_annotations);
coleenp@4719 4189 Annotations::free_contents(_loader_data, _fields_type_annotations);
coleenp@4719 4190
coleenp@4719 4191 clear_class_metadata();
coleenp@4719 4192
coleenp@4719 4193 // deallocate the klass if already created.
coleenp@4719 4194 MetadataFactory::free_metadata(_loader_data, _klass);
coleenp@4719 4195 _klass = NULL;
coleenp@4719 4196 }
coleenp@4719 4197
jwilhelm@4430 4198 void ClassFileParser::print_field_layout(Symbol* name,
jwilhelm@4430 4199 Array<u2>* fields,
jwilhelm@4430 4200 constantPoolHandle cp,
jwilhelm@4430 4201 int instance_size,
jwilhelm@4430 4202 int instance_fields_start,
jwilhelm@4430 4203 int instance_fields_end,
jwilhelm@4430 4204 int static_fields_end) {
jwilhelm@4430 4205 tty->print("%s: field layout\n", name->as_klass_external_name());
jwilhelm@4430 4206 tty->print(" @%3d %s\n", instance_fields_start, "--- instance fields start ---");
jwilhelm@4430 4207 for (AllFieldStream fs(fields, cp); !fs.done(); fs.next()) {
jwilhelm@4430 4208 if (!fs.access_flags().is_static()) {
jwilhelm@4430 4209 tty->print(" @%3d \"%s\" %s\n",
jwilhelm@4430 4210 fs.offset(),
jwilhelm@4430 4211 fs.name()->as_klass_external_name(),
jwilhelm@4430 4212 fs.signature()->as_klass_external_name());
jwilhelm@4430 4213 }
jwilhelm@4430 4214 }
jwilhelm@4430 4215 tty->print(" @%3d %s\n", instance_fields_end, "--- instance fields end ---");
jwilhelm@4430 4216 tty->print(" @%3d %s\n", instance_size * wordSize, "--- instance ends ---");
jwilhelm@4430 4217 tty->print(" @%3d %s\n", InstanceMirrorKlass::offset_of_static_fields(), "--- static fields start ---");
jwilhelm@4430 4218 for (AllFieldStream fs(fields, cp); !fs.done(); fs.next()) {
jwilhelm@4430 4219 if (fs.access_flags().is_static()) {
jwilhelm@4430 4220 tty->print(" @%3d \"%s\" %s\n",
jwilhelm@4430 4221 fs.offset(),
jwilhelm@4430 4222 fs.name()->as_klass_external_name(),
jwilhelm@4430 4223 fs.signature()->as_klass_external_name());
jwilhelm@4430 4224 }
jwilhelm@4430 4225 }
jwilhelm@4430 4226 tty->print(" @%3d %s\n", static_fields_end, "--- static fields end ---");
jwilhelm@4430 4227 tty->print("\n");
jwilhelm@4430 4228 }
jwilhelm@4430 4229
jcoomes@1374 4230 unsigned int
jcoomes@1374 4231 ClassFileParser::compute_oop_map_count(instanceKlassHandle super,
jcoomes@1374 4232 unsigned int nonstatic_oop_map_count,
jcoomes@1374 4233 int first_nonstatic_oop_offset) {
jcoomes@1374 4234 unsigned int map_count =
jcoomes@1374 4235 super.is_null() ? 0 : super->nonstatic_oop_map_count();
duke@435 4236 if (nonstatic_oop_map_count > 0) {
duke@435 4237 // We have oops to add to map
jcoomes@1373 4238 if (map_count == 0) {
jcoomes@1373 4239 map_count = nonstatic_oop_map_count;
duke@435 4240 } else {
jcoomes@1373 4241 // Check whether we should add a new map block or whether the last one can
jcoomes@1373 4242 // be extended
jcoomes@1373 4243 OopMapBlock* const first_map = super->start_of_nonstatic_oop_maps();
jcoomes@1373 4244 OopMapBlock* const last_map = first_map + map_count - 1;
jcoomes@1373 4245
jcoomes@1373 4246 int next_offset = last_map->offset() + last_map->count() * heapOopSize;
duke@435 4247 if (next_offset == first_nonstatic_oop_offset) {
duke@435 4248 // There is no gap bettwen superklass's last oop field and first
duke@435 4249 // local oop field, merge maps.
duke@435 4250 nonstatic_oop_map_count -= 1;
duke@435 4251 } else {
duke@435 4252 // Superklass didn't end with a oop field, add extra maps
jcoomes@1373 4253 assert(next_offset < first_nonstatic_oop_offset, "just checking");
duke@435 4254 }
jcoomes@1373 4255 map_count += nonstatic_oop_map_count;
duke@435 4256 }
duke@435 4257 }
jcoomes@1373 4258 return map_count;
duke@435 4259 }
duke@435 4260
duke@435 4261
duke@435 4262 void ClassFileParser::fill_oop_maps(instanceKlassHandle k,
jcoomes@1374 4263 unsigned int nonstatic_oop_map_count,
jcoomes@1374 4264 int* nonstatic_oop_offsets,
jcoomes@1374 4265 unsigned int* nonstatic_oop_counts) {
duke@435 4266 OopMapBlock* this_oop_map = k->start_of_nonstatic_oop_maps();
coleenp@4037 4267 const InstanceKlass* const super = k->superklass();
jcoomes@1374 4268 const unsigned int super_count = super ? super->nonstatic_oop_map_count() : 0;
jcoomes@1373 4269 if (super_count > 0) {
jcoomes@1373 4270 // Copy maps from superklass
duke@435 4271 OopMapBlock* super_oop_map = super->start_of_nonstatic_oop_maps();
jcoomes@1374 4272 for (unsigned int i = 0; i < super_count; ++i) {
duke@435 4273 *this_oop_map++ = *super_oop_map++;
duke@435 4274 }
duke@435 4275 }
jcoomes@1373 4276
duke@435 4277 if (nonstatic_oop_map_count > 0) {
jcoomes@1373 4278 if (super_count + nonstatic_oop_map_count > k->nonstatic_oop_map_count()) {
jcoomes@1373 4279 // The counts differ because there is no gap between superklass's last oop
jcoomes@1373 4280 // field and the first local oop field. Extend the last oop map copied
duke@435 4281 // from the superklass instead of creating new one.
duke@435 4282 nonstatic_oop_map_count--;
duke@435 4283 nonstatic_oop_offsets++;
duke@435 4284 this_oop_map--;
jcoomes@1373 4285 this_oop_map->set_count(this_oop_map->count() + *nonstatic_oop_counts++);
duke@435 4286 this_oop_map++;
duke@435 4287 }
jcoomes@1373 4288
duke@435 4289 // Add new map blocks, fill them
duke@435 4290 while (nonstatic_oop_map_count-- > 0) {
duke@435 4291 this_oop_map->set_offset(*nonstatic_oop_offsets++);
jcoomes@1373 4292 this_oop_map->set_count(*nonstatic_oop_counts++);
duke@435 4293 this_oop_map++;
duke@435 4294 }
jcoomes@1373 4295 assert(k->start_of_nonstatic_oop_maps() + k->nonstatic_oop_map_count() ==
jcoomes@1373 4296 this_oop_map, "sanity");
duke@435 4297 }
duke@435 4298 }
duke@435 4299
duke@435 4300
duke@435 4301 void ClassFileParser::set_precomputed_flags(instanceKlassHandle k) {
coleenp@4037 4302 Klass* super = k->super();
duke@435 4303
duke@435 4304 // Check if this klass has an empty finalize method (i.e. one with return bytecode only),
duke@435 4305 // in which case we don't have to register objects as finalizable
duke@435 4306 if (!_has_empty_finalizer) {
duke@435 4307 if (_has_finalizer ||
coleenp@4037 4308 (super != NULL && super->has_finalizer())) {
duke@435 4309 k->set_has_finalizer();
duke@435 4310 }
duke@435 4311 }
duke@435 4312
duke@435 4313 #ifdef ASSERT
duke@435 4314 bool f = false;
coleenp@4037 4315 Method* m = k->lookup_method(vmSymbols::finalize_method_name(),
duke@435 4316 vmSymbols::void_method_signature());
duke@435 4317 if (m != NULL && !m->is_empty_method()) {
duke@435 4318 f = true;
duke@435 4319 }
duke@435 4320 assert(f == k->has_finalizer(), "inconsistent has_finalizer");
duke@435 4321 #endif
duke@435 4322
duke@435 4323 // Check if this klass supports the java.lang.Cloneable interface
never@1577 4324 if (SystemDictionary::Cloneable_klass_loaded()) {
never@1577 4325 if (k->is_subtype_of(SystemDictionary::Cloneable_klass())) {
duke@435 4326 k->set_is_cloneable();
duke@435 4327 }
duke@435 4328 }
duke@435 4329
duke@435 4330 // Check if this klass has a vanilla default constructor
duke@435 4331 if (super == NULL) {
duke@435 4332 // java.lang.Object has empty default constructor
duke@435 4333 k->set_has_vanilla_constructor();
duke@435 4334 } else {
hseigel@4278 4335 if (super->has_vanilla_constructor() &&
duke@435 4336 _has_vanilla_constructor) {
duke@435 4337 k->set_has_vanilla_constructor();
duke@435 4338 }
duke@435 4339 #ifdef ASSERT
duke@435 4340 bool v = false;
hseigel@4278 4341 if (super->has_vanilla_constructor()) {
coleenp@4037 4342 Method* constructor = k->find_method(vmSymbols::object_initializer_name(
duke@435 4343 ), vmSymbols::void_method_signature());
duke@435 4344 if (constructor != NULL && constructor->is_vanilla_constructor()) {
duke@435 4345 v = true;
duke@435 4346 }
duke@435 4347 }
duke@435 4348 assert(v == k->has_vanilla_constructor(), "inconsistent has_vanilla_constructor");
duke@435 4349 #endif
duke@435 4350 }
duke@435 4351
duke@435 4352 // If it cannot be fast-path allocated, set a bit in the layout helper.
coleenp@4037 4353 // See documentation of InstanceKlass::can_be_fastpath_allocated().
duke@435 4354 assert(k->size_helper() > 0, "layout_helper is initialized");
duke@435 4355 if ((!RegisterFinalizersAtInit && k->has_finalizer())
duke@435 4356 || k->is_abstract() || k->is_interface()
coleenp@4304 4357 || (k->name() == vmSymbols::java_lang_Class() && k->class_loader() == NULL)
duke@435 4358 || k->size_helper() >= FastAllocateSizeLimit) {
duke@435 4359 // Forbid fast-path allocation.
duke@435 4360 jint lh = Klass::instance_layout_helper(k->size_helper(), true);
duke@435 4361 k->set_layout_helper(lh);
duke@435 4362 }
duke@435 4363 }
duke@435 4364
coleenp@4037 4365 // Attach super classes and interface classes to class loader data
coleenp@4037 4366 void ClassFileParser::record_defined_class_dependencies(instanceKlassHandle defined_klass, TRAPS) {
coleenp@4037 4367 ClassLoaderData * defining_loader_data = defined_klass->class_loader_data();
coleenp@4037 4368 if (defining_loader_data->is_the_null_class_loader_data()) {
coleenp@4037 4369 // Dependencies to null class loader data are implicit.
coleenp@4037 4370 return;
coleenp@4037 4371 } else {
coleenp@4037 4372 // add super class dependency
coleenp@4037 4373 Klass* super = defined_klass->super();
coleenp@4037 4374 if (super != NULL) {
coleenp@4037 4375 defining_loader_data->record_dependency(super, CHECK);
coleenp@4037 4376 }
coleenp@4037 4377
coleenp@4037 4378 // add super interface dependencies
coleenp@4037 4379 Array<Klass*>* local_interfaces = defined_klass->local_interfaces();
coleenp@4037 4380 if (local_interfaces != NULL) {
coleenp@4037 4381 int length = local_interfaces->length();
coleenp@4037 4382 for (int i = 0; i < length; i++) {
coleenp@4037 4383 defining_loader_data->record_dependency(local_interfaces->at(i), CHECK);
duke@435 4384 }
duke@435 4385 }
duke@435 4386 }
duke@435 4387 }
duke@435 4388
coleenp@4719 4389 // utility methods for appending an array with check for duplicates
coleenp@4037 4390
coleenp@4037 4391 void append_interfaces(GrowableArray<Klass*>* result, Array<Klass*>* ifs) {
coleenp@4037 4392 // iterate over new interfaces
coleenp@4037 4393 for (int i = 0; i < ifs->length(); i++) {
coleenp@4037 4394 Klass* e = ifs->at(i);
coleenp@4037 4395 assert(e->is_klass() && InstanceKlass::cast(e)->is_interface(), "just checking");
coleenp@4037 4396 // add new interface
coleenp@4037 4397 result->append_if_missing(e);
coleenp@4037 4398 }
coleenp@4037 4399 }
coleenp@4037 4400
coleenp@4719 4401 Array<Klass*>* ClassFileParser::compute_transitive_interfaces(
coleenp@4719 4402 instanceKlassHandle super,
coleenp@4719 4403 Array<Klass*>* local_ifs, TRAPS) {
duke@435 4404 // Compute maximum size for transitive interfaces
duke@435 4405 int max_transitive_size = 0;
duke@435 4406 int super_size = 0;
duke@435 4407 // Add superclass transitive interfaces size
duke@435 4408 if (super.not_null()) {
duke@435 4409 super_size = super->transitive_interfaces()->length();
duke@435 4410 max_transitive_size += super_size;
duke@435 4411 }
duke@435 4412 // Add local interfaces' super interfaces
duke@435 4413 int local_size = local_ifs->length();
duke@435 4414 for (int i = 0; i < local_size; i++) {
coleenp@4037 4415 Klass* l = local_ifs->at(i);
coleenp@4037 4416 max_transitive_size += InstanceKlass::cast(l)->transitive_interfaces()->length();
duke@435 4417 }
duke@435 4418 // Finally add local interfaces
duke@435 4419 max_transitive_size += local_size;
duke@435 4420 // Construct array
duke@435 4421 if (max_transitive_size == 0) {
duke@435 4422 // no interfaces, use canonicalized array
coleenp@4037 4423 return Universe::the_empty_klass_array();
duke@435 4424 } else if (max_transitive_size == super_size) {
duke@435 4425 // no new local interfaces added, share superklass' transitive interface array
coleenp@4037 4426 return super->transitive_interfaces();
duke@435 4427 } else if (max_transitive_size == local_size) {
duke@435 4428 // only local interfaces added, share local interface array
coleenp@4037 4429 return local_ifs;
duke@435 4430 } else {
coleenp@4037 4431 ResourceMark rm;
coleenp@4037 4432 GrowableArray<Klass*>* result = new GrowableArray<Klass*>(max_transitive_size);
coleenp@4037 4433
duke@435 4434 // Copy down from superclass
duke@435 4435 if (super.not_null()) {
coleenp@4037 4436 append_interfaces(result, super->transitive_interfaces());
duke@435 4437 }
coleenp@4037 4438
duke@435 4439 // Copy down from local interfaces' superinterfaces
duke@435 4440 for (int i = 0; i < local_ifs->length(); i++) {
coleenp@4037 4441 Klass* l = local_ifs->at(i);
coleenp@4037 4442 append_interfaces(result, InstanceKlass::cast(l)->transitive_interfaces());
duke@435 4443 }
duke@435 4444 // Finally add local interfaces
coleenp@4037 4445 append_interfaces(result, local_ifs);
coleenp@4037 4446
coleenp@4037 4447 // length will be less than the max_transitive_size if duplicates were removed
coleenp@4037 4448 int length = result->length();
coleenp@4037 4449 assert(length <= max_transitive_size, "just checking");
coleenp@4719 4450 Array<Klass*>* new_result = MetadataFactory::new_array<Klass*>(_loader_data, length, CHECK_NULL);
coleenp@4037 4451 for (int i = 0; i < length; i++) {
coleenp@4037 4452 Klass* e = result->at(i);
duke@435 4453 assert(e != NULL, "just checking");
coleenp@4037 4454 new_result->at_put(i, e);
duke@435 4455 }
coleenp@4037 4456 return new_result;
duke@435 4457 }
duke@435 4458 }
duke@435 4459
duke@435 4460 void ClassFileParser::check_super_class_access(instanceKlassHandle this_klass, TRAPS) {
coleenp@4037 4461 Klass* super = this_klass->super();
duke@435 4462 if ((super != NULL) &&
coleenp@4037 4463 (!Reflection::verify_class_access(this_klass(), super, false))) {
duke@435 4464 ResourceMark rm(THREAD);
duke@435 4465 Exceptions::fthrow(
duke@435 4466 THREAD_AND_LOCATION,
coleenp@2497 4467 vmSymbols::java_lang_IllegalAccessError(),
duke@435 4468 "class %s cannot access its superclass %s",
duke@435 4469 this_klass->external_name(),
coleenp@4037 4470 InstanceKlass::cast(super)->external_name()
duke@435 4471 );
duke@435 4472 return;
duke@435 4473 }
duke@435 4474 }
duke@435 4475
duke@435 4476
duke@435 4477 void ClassFileParser::check_super_interface_access(instanceKlassHandle this_klass, TRAPS) {
coleenp@4037 4478 Array<Klass*>* local_interfaces = this_klass->local_interfaces();
duke@435 4479 int lng = local_interfaces->length();
duke@435 4480 for (int i = lng - 1; i >= 0; i--) {
coleenp@4037 4481 Klass* k = local_interfaces->at(i);
hseigel@4278 4482 assert (k != NULL && k->is_interface(), "invalid interface");
coleenp@4037 4483 if (!Reflection::verify_class_access(this_klass(), k, false)) {
duke@435 4484 ResourceMark rm(THREAD);
duke@435 4485 Exceptions::fthrow(
duke@435 4486 THREAD_AND_LOCATION,
coleenp@2497 4487 vmSymbols::java_lang_IllegalAccessError(),
duke@435 4488 "class %s cannot access its superinterface %s",
duke@435 4489 this_klass->external_name(),
coleenp@4037 4490 InstanceKlass::cast(k)->external_name()
duke@435 4491 );
duke@435 4492 return;
duke@435 4493 }
duke@435 4494 }
duke@435 4495 }
duke@435 4496
duke@435 4497
duke@435 4498 void ClassFileParser::check_final_method_override(instanceKlassHandle this_klass, TRAPS) {
coleenp@4037 4499 Array<Method*>* methods = this_klass->methods();
duke@435 4500 int num_methods = methods->length();
duke@435 4501
duke@435 4502 // go thru each method and check if it overrides a final method
duke@435 4503 for (int index = 0; index < num_methods; index++) {
coleenp@4037 4504 Method* m = methods->at(index);
duke@435 4505
duke@435 4506 // skip private, static and <init> methods
duke@435 4507 if ((!m->is_private()) &&
duke@435 4508 (!m->is_static()) &&
duke@435 4509 (m->name() != vmSymbols::object_initializer_name())) {
duke@435 4510
coleenp@2497 4511 Symbol* name = m->name();
coleenp@2497 4512 Symbol* signature = m->signature();
coleenp@4037 4513 Klass* k = this_klass->super();
coleenp@4037 4514 Method* super_m = NULL;
duke@435 4515 while (k != NULL) {
duke@435 4516 // skip supers that don't have final methods.
coleenp@4037 4517 if (k->has_final_method()) {
duke@435 4518 // lookup a matching method in the super class hierarchy
coleenp@4037 4519 super_m = InstanceKlass::cast(k)->lookup_method(name, signature);
duke@435 4520 if (super_m == NULL) {
duke@435 4521 break; // didn't find any match; get out
duke@435 4522 }
duke@435 4523
duke@435 4524 if (super_m->is_final() &&
duke@435 4525 // matching method in super is final
coleenp@4037 4526 (Reflection::verify_field_access(this_klass(),
duke@435 4527 super_m->method_holder(),
duke@435 4528 super_m->method_holder(),
duke@435 4529 super_m->access_flags(), false))
duke@435 4530 // this class can access super final method and therefore override
duke@435 4531 ) {
duke@435 4532 ResourceMark rm(THREAD);
duke@435 4533 Exceptions::fthrow(
duke@435 4534 THREAD_AND_LOCATION,
coleenp@2497 4535 vmSymbols::java_lang_VerifyError(),
duke@435 4536 "class %s overrides final method %s.%s",
duke@435 4537 this_klass->external_name(),
duke@435 4538 name->as_C_string(),
duke@435 4539 signature->as_C_string()
duke@435 4540 );
duke@435 4541 return;
duke@435 4542 }
duke@435 4543
duke@435 4544 // continue to look from super_m's holder's super.
coleenp@4251 4545 k = super_m->method_holder()->super();
duke@435 4546 continue;
duke@435 4547 }
duke@435 4548
coleenp@4037 4549 k = k->super();
duke@435 4550 }
duke@435 4551 }
duke@435 4552 }
duke@435 4553 }
duke@435 4554
duke@435 4555
duke@435 4556 // assumes that this_klass is an interface
duke@435 4557 void ClassFileParser::check_illegal_static_method(instanceKlassHandle this_klass, TRAPS) {
duke@435 4558 assert(this_klass->is_interface(), "not an interface");
coleenp@4037 4559 Array<Method*>* methods = this_klass->methods();
duke@435 4560 int num_methods = methods->length();
duke@435 4561
duke@435 4562 for (int index = 0; index < num_methods; index++) {
coleenp@4037 4563 Method* m = methods->at(index);
duke@435 4564 // if m is static and not the init method, throw a verify error
duke@435 4565 if ((m->is_static()) && (m->name() != vmSymbols::class_initializer_name())) {
duke@435 4566 ResourceMark rm(THREAD);
duke@435 4567 Exceptions::fthrow(
duke@435 4568 THREAD_AND_LOCATION,
coleenp@2497 4569 vmSymbols::java_lang_VerifyError(),
duke@435 4570 "Illegal static method %s in interface %s",
duke@435 4571 m->name()->as_C_string(),
duke@435 4572 this_klass->external_name()
duke@435 4573 );
duke@435 4574 return;
duke@435 4575 }
duke@435 4576 }
duke@435 4577 }
duke@435 4578
duke@435 4579 // utility methods for format checking
duke@435 4580
duke@435 4581 void ClassFileParser::verify_legal_class_modifiers(jint flags, TRAPS) {
duke@435 4582 if (!_need_verify) { return; }
duke@435 4583
duke@435 4584 const bool is_interface = (flags & JVM_ACC_INTERFACE) != 0;
duke@435 4585 const bool is_abstract = (flags & JVM_ACC_ABSTRACT) != 0;
duke@435 4586 const bool is_final = (flags & JVM_ACC_FINAL) != 0;
duke@435 4587 const bool is_super = (flags & JVM_ACC_SUPER) != 0;
duke@435 4588 const bool is_enum = (flags & JVM_ACC_ENUM) != 0;
duke@435 4589 const bool is_annotation = (flags & JVM_ACC_ANNOTATION) != 0;
duke@435 4590 const bool major_gte_15 = _major_version >= JAVA_1_5_VERSION;
duke@435 4591
duke@435 4592 if ((is_abstract && is_final) ||
duke@435 4593 (is_interface && !is_abstract) ||
duke@435 4594 (is_interface && major_gte_15 && (is_super || is_enum)) ||
duke@435 4595 (!is_interface && major_gte_15 && is_annotation)) {
duke@435 4596 ResourceMark rm(THREAD);
duke@435 4597 Exceptions::fthrow(
duke@435 4598 THREAD_AND_LOCATION,
coleenp@2497 4599 vmSymbols::java_lang_ClassFormatError(),
duke@435 4600 "Illegal class modifiers in class %s: 0x%X",
duke@435 4601 _class_name->as_C_string(), flags
duke@435 4602 );
duke@435 4603 return;
duke@435 4604 }
duke@435 4605 }
duke@435 4606
duke@435 4607 bool ClassFileParser::has_illegal_visibility(jint flags) {
duke@435 4608 const bool is_public = (flags & JVM_ACC_PUBLIC) != 0;
duke@435 4609 const bool is_protected = (flags & JVM_ACC_PROTECTED) != 0;
duke@435 4610 const bool is_private = (flags & JVM_ACC_PRIVATE) != 0;
duke@435 4611
duke@435 4612 return ((is_public && is_protected) ||
duke@435 4613 (is_public && is_private) ||
duke@435 4614 (is_protected && is_private));
duke@435 4615 }
duke@435 4616
duke@435 4617 bool ClassFileParser::is_supported_version(u2 major, u2 minor) {
xlu@1559 4618 u2 max_version =
xlu@1559 4619 JDK_Version::is_gte_jdk17x_version() ? JAVA_MAX_SUPPORTED_VERSION :
xlu@1559 4620 (JDK_Version::is_gte_jdk16x_version() ? JAVA_6_VERSION : JAVA_1_5_VERSION);
duke@435 4621 return (major >= JAVA_MIN_SUPPORTED_VERSION) &&
kamg@611 4622 (major <= max_version) &&
kamg@611 4623 ((major != max_version) ||
duke@435 4624 (minor <= JAVA_MAX_SUPPORTED_MINOR_VERSION));
duke@435 4625 }
duke@435 4626
duke@435 4627 void ClassFileParser::verify_legal_field_modifiers(
duke@435 4628 jint flags, bool is_interface, TRAPS) {
duke@435 4629 if (!_need_verify) { return; }
duke@435 4630
duke@435 4631 const bool is_public = (flags & JVM_ACC_PUBLIC) != 0;
duke@435 4632 const bool is_protected = (flags & JVM_ACC_PROTECTED) != 0;
duke@435 4633 const bool is_private = (flags & JVM_ACC_PRIVATE) != 0;
duke@435 4634 const bool is_static = (flags & JVM_ACC_STATIC) != 0;
duke@435 4635 const bool is_final = (flags & JVM_ACC_FINAL) != 0;
duke@435 4636 const bool is_volatile = (flags & JVM_ACC_VOLATILE) != 0;
duke@435 4637 const bool is_transient = (flags & JVM_ACC_TRANSIENT) != 0;
duke@435 4638 const bool is_enum = (flags & JVM_ACC_ENUM) != 0;
duke@435 4639 const bool major_gte_15 = _major_version >= JAVA_1_5_VERSION;
duke@435 4640
duke@435 4641 bool is_illegal = false;
duke@435 4642
duke@435 4643 if (is_interface) {
duke@435 4644 if (!is_public || !is_static || !is_final || is_private ||
duke@435 4645 is_protected || is_volatile || is_transient ||
duke@435 4646 (major_gte_15 && is_enum)) {
duke@435 4647 is_illegal = true;
duke@435 4648 }
duke@435 4649 } else { // not interface
duke@435 4650 if (has_illegal_visibility(flags) || (is_final && is_volatile)) {
duke@435 4651 is_illegal = true;
duke@435 4652 }
duke@435 4653 }
duke@435 4654
duke@435 4655 if (is_illegal) {
duke@435 4656 ResourceMark rm(THREAD);
duke@435 4657 Exceptions::fthrow(
duke@435 4658 THREAD_AND_LOCATION,
coleenp@2497 4659 vmSymbols::java_lang_ClassFormatError(),
duke@435 4660 "Illegal field modifiers in class %s: 0x%X",
duke@435 4661 _class_name->as_C_string(), flags);
duke@435 4662 return;
duke@435 4663 }
duke@435 4664 }
duke@435 4665
duke@435 4666 void ClassFileParser::verify_legal_method_modifiers(
coleenp@2497 4667 jint flags, bool is_interface, Symbol* name, TRAPS) {
duke@435 4668 if (!_need_verify) { return; }
duke@435 4669
duke@435 4670 const bool is_public = (flags & JVM_ACC_PUBLIC) != 0;
duke@435 4671 const bool is_private = (flags & JVM_ACC_PRIVATE) != 0;
duke@435 4672 const bool is_static = (flags & JVM_ACC_STATIC) != 0;
duke@435 4673 const bool is_final = (flags & JVM_ACC_FINAL) != 0;
duke@435 4674 const bool is_native = (flags & JVM_ACC_NATIVE) != 0;
duke@435 4675 const bool is_abstract = (flags & JVM_ACC_ABSTRACT) != 0;
duke@435 4676 const bool is_bridge = (flags & JVM_ACC_BRIDGE) != 0;
duke@435 4677 const bool is_strict = (flags & JVM_ACC_STRICT) != 0;
duke@435 4678 const bool is_synchronized = (flags & JVM_ACC_SYNCHRONIZED) != 0;
acorn@4422 4679 const bool is_protected = (flags & JVM_ACC_PROTECTED) != 0;
duke@435 4680 const bool major_gte_15 = _major_version >= JAVA_1_5_VERSION;
kamg@4245 4681 const bool major_gte_8 = _major_version >= JAVA_8_VERSION;
duke@435 4682 const bool is_initializer = (name == vmSymbols::object_initializer_name());
duke@435 4683
duke@435 4684 bool is_illegal = false;
duke@435 4685
duke@435 4686 if (is_interface) {
acorn@4422 4687 if (major_gte_8) {
acorn@4422 4688 // Class file version is JAVA_8_VERSION or later Methods of
acorn@4422 4689 // interfaces may set any of the flags except ACC_PROTECTED,
acorn@4422 4690 // ACC_FINAL, ACC_NATIVE, and ACC_SYNCHRONIZED; they must
acorn@4422 4691 // have exactly one of the ACC_PUBLIC or ACC_PRIVATE flags set.
acorn@4422 4692 if ((is_public == is_private) || /* Only one of private and public should be true - XNOR */
acorn@4422 4693 (is_native || is_protected || is_final || is_synchronized) ||
acorn@4422 4694 // If a specific method of a class or interface has its
acorn@4422 4695 // ACC_ABSTRACT flag set, it must not have any of its
acorn@4422 4696 // ACC_FINAL, ACC_NATIVE, ACC_PRIVATE, ACC_STATIC,
acorn@4422 4697 // ACC_STRICT, or ACC_SYNCHRONIZED flags set. No need to
acorn@4422 4698 // check for ACC_FINAL, ACC_NATIVE or ACC_SYNCHRONIZED as
acorn@4422 4699 // those flags are illegal irrespective of ACC_ABSTRACT being set or not.
acorn@4422 4700 (is_abstract && (is_private || is_static || is_strict))) {
acorn@4422 4701 is_illegal = true;
acorn@4422 4702 }
acorn@4422 4703 } else if (major_gte_15) {
acorn@4422 4704 // Class file version in the interval [JAVA_1_5_VERSION, JAVA_8_VERSION)
acorn@4422 4705 if (!is_public || is_static || is_final || is_synchronized ||
acorn@4422 4706 is_native || !is_abstract || is_strict) {
acorn@4422 4707 is_illegal = true;
acorn@4422 4708 }
acorn@4422 4709 } else {
acorn@4422 4710 // Class file version is pre-JAVA_1_5_VERSION
acorn@4422 4711 if (!is_public || is_static || is_final || is_native || !is_abstract) {
acorn@4422 4712 is_illegal = true;
acorn@4422 4713 }
duke@435 4714 }
duke@435 4715 } else { // not interface
duke@435 4716 if (is_initializer) {
duke@435 4717 if (is_static || is_final || is_synchronized || is_native ||
duke@435 4718 is_abstract || (major_gte_15 && is_bridge)) {
duke@435 4719 is_illegal = true;
duke@435 4720 }
duke@435 4721 } else { // not initializer
duke@435 4722 if (is_abstract) {
duke@435 4723 if ((is_final || is_native || is_private || is_static ||
duke@435 4724 (major_gte_15 && (is_synchronized || is_strict)))) {
duke@435 4725 is_illegal = true;
duke@435 4726 }
duke@435 4727 }
duke@435 4728 if (has_illegal_visibility(flags)) {
duke@435 4729 is_illegal = true;
duke@435 4730 }
duke@435 4731 }
duke@435 4732 }
duke@435 4733
duke@435 4734 if (is_illegal) {
duke@435 4735 ResourceMark rm(THREAD);
duke@435 4736 Exceptions::fthrow(
duke@435 4737 THREAD_AND_LOCATION,
coleenp@2497 4738 vmSymbols::java_lang_ClassFormatError(),
duke@435 4739 "Method %s in class %s has illegal modifiers: 0x%X",
duke@435 4740 name->as_C_string(), _class_name->as_C_string(), flags);
duke@435 4741 return;
duke@435 4742 }
duke@435 4743 }
duke@435 4744
duke@435 4745 void ClassFileParser::verify_legal_utf8(const unsigned char* buffer, int length, TRAPS) {
duke@435 4746 assert(_need_verify, "only called when _need_verify is true");
duke@435 4747 int i = 0;
duke@435 4748 int count = length >> 2;
duke@435 4749 for (int k=0; k<count; k++) {
duke@435 4750 unsigned char b0 = buffer[i];
duke@435 4751 unsigned char b1 = buffer[i+1];
duke@435 4752 unsigned char b2 = buffer[i+2];
duke@435 4753 unsigned char b3 = buffer[i+3];
duke@435 4754 // For an unsigned char v,
duke@435 4755 // (v | v - 1) is < 128 (highest bit 0) for 0 < v < 128;
duke@435 4756 // (v | v - 1) is >= 128 (highest bit 1) for v == 0 or v >= 128.
duke@435 4757 unsigned char res = b0 | b0 - 1 |
duke@435 4758 b1 | b1 - 1 |
duke@435 4759 b2 | b2 - 1 |
duke@435 4760 b3 | b3 - 1;
duke@435 4761 if (res >= 128) break;
duke@435 4762 i += 4;
duke@435 4763 }
duke@435 4764 for(; i < length; i++) {
duke@435 4765 unsigned short c;
duke@435 4766 // no embedded zeros
duke@435 4767 guarantee_property((buffer[i] != 0), "Illegal UTF8 string in constant pool in class file %s", CHECK);
duke@435 4768 if(buffer[i] < 128) {
duke@435 4769 continue;
duke@435 4770 }
duke@435 4771 if ((i + 5) < length) { // see if it's legal supplementary character
duke@435 4772 if (UTF8::is_supplementary_character(&buffer[i])) {
duke@435 4773 c = UTF8::get_supplementary_character(&buffer[i]);
duke@435 4774 i += 5;
duke@435 4775 continue;
duke@435 4776 }
duke@435 4777 }
duke@435 4778 switch (buffer[i] >> 4) {
duke@435 4779 default: break;
duke@435 4780 case 0x8: case 0x9: case 0xA: case 0xB: case 0xF:
duke@435 4781 classfile_parse_error("Illegal UTF8 string in constant pool in class file %s", CHECK);
duke@435 4782 case 0xC: case 0xD: // 110xxxxx 10xxxxxx
duke@435 4783 c = (buffer[i] & 0x1F) << 6;
duke@435 4784 i++;
duke@435 4785 if ((i < length) && ((buffer[i] & 0xC0) == 0x80)) {
duke@435 4786 c += buffer[i] & 0x3F;
duke@435 4787 if (_major_version <= 47 || c == 0 || c >= 0x80) {
duke@435 4788 // for classes with major > 47, c must a null or a character in its shortest form
duke@435 4789 break;
duke@435 4790 }
duke@435 4791 }
duke@435 4792 classfile_parse_error("Illegal UTF8 string in constant pool in class file %s", CHECK);
duke@435 4793 case 0xE: // 1110xxxx 10xxxxxx 10xxxxxx
duke@435 4794 c = (buffer[i] & 0xF) << 12;
duke@435 4795 i += 2;
duke@435 4796 if ((i < length) && ((buffer[i-1] & 0xC0) == 0x80) && ((buffer[i] & 0xC0) == 0x80)) {
duke@435 4797 c += ((buffer[i-1] & 0x3F) << 6) + (buffer[i] & 0x3F);
duke@435 4798 if (_major_version <= 47 || c >= 0x800) {
duke@435 4799 // for classes with major > 47, c must be in its shortest form
duke@435 4800 break;
duke@435 4801 }
duke@435 4802 }
duke@435 4803 classfile_parse_error("Illegal UTF8 string in constant pool in class file %s", CHECK);
duke@435 4804 } // end of switch
duke@435 4805 } // end of for
duke@435 4806 }
duke@435 4807
duke@435 4808 // Checks if name is a legal class name.
coleenp@2497 4809 void ClassFileParser::verify_legal_class_name(Symbol* name, TRAPS) {
duke@435 4810 if (!_need_verify || _relax_verify) { return; }
duke@435 4811
duke@435 4812 char buf[fixed_buffer_size];
duke@435 4813 char* bytes = name->as_utf8_flexible_buffer(THREAD, buf, fixed_buffer_size);
duke@435 4814 unsigned int length = name->utf8_length();
duke@435 4815 bool legal = false;
duke@435 4816
duke@435 4817 if (length > 0) {
duke@435 4818 char* p;
duke@435 4819 if (bytes[0] == JVM_SIGNATURE_ARRAY) {
duke@435 4820 p = skip_over_field_signature(bytes, false, length, CHECK);
duke@435 4821 legal = (p != NULL) && ((p - bytes) == (int)length);
duke@435 4822 } else if (_major_version < JAVA_1_5_VERSION) {
duke@435 4823 if (bytes[0] != '<') {
duke@435 4824 p = skip_over_field_name(bytes, true, length);
duke@435 4825 legal = (p != NULL) && ((p - bytes) == (int)length);
duke@435 4826 }
duke@435 4827 } else {
duke@435 4828 // 4900761: relax the constraints based on JSR202 spec
duke@435 4829 // Class names may be drawn from the entire Unicode character set.
duke@435 4830 // Identifiers between '/' must be unqualified names.
duke@435 4831 // The utf8 string has been verified when parsing cpool entries.
duke@435 4832 legal = verify_unqualified_name(bytes, length, LegalClass);
duke@435 4833 }
duke@435 4834 }
duke@435 4835 if (!legal) {
duke@435 4836 ResourceMark rm(THREAD);
duke@435 4837 Exceptions::fthrow(
duke@435 4838 THREAD_AND_LOCATION,
coleenp@2497 4839 vmSymbols::java_lang_ClassFormatError(),
duke@435 4840 "Illegal class name \"%s\" in class file %s", bytes,
duke@435 4841 _class_name->as_C_string()
duke@435 4842 );
duke@435 4843 return;
duke@435 4844 }
duke@435 4845 }
duke@435 4846
duke@435 4847 // Checks if name is a legal field name.
coleenp@2497 4848 void ClassFileParser::verify_legal_field_name(Symbol* name, TRAPS) {
duke@435 4849 if (!_need_verify || _relax_verify) { return; }
duke@435 4850
duke@435 4851 char buf[fixed_buffer_size];
duke@435 4852 char* bytes = name->as_utf8_flexible_buffer(THREAD, buf, fixed_buffer_size);
duke@435 4853 unsigned int length = name->utf8_length();
duke@435 4854 bool legal = false;
duke@435 4855
duke@435 4856 if (length > 0) {
duke@435 4857 if (_major_version < JAVA_1_5_VERSION) {
duke@435 4858 if (bytes[0] != '<') {
duke@435 4859 char* p = skip_over_field_name(bytes, false, length);
duke@435 4860 legal = (p != NULL) && ((p - bytes) == (int)length);
duke@435 4861 }
duke@435 4862 } else {
duke@435 4863 // 4881221: relax the constraints based on JSR202 spec
duke@435 4864 legal = verify_unqualified_name(bytes, length, LegalField);
duke@435 4865 }
duke@435 4866 }
duke@435 4867
duke@435 4868 if (!legal) {
duke@435 4869 ResourceMark rm(THREAD);
duke@435 4870 Exceptions::fthrow(
duke@435 4871 THREAD_AND_LOCATION,
coleenp@2497 4872 vmSymbols::java_lang_ClassFormatError(),
duke@435 4873 "Illegal field name \"%s\" in class %s", bytes,
duke@435 4874 _class_name->as_C_string()
duke@435 4875 );
duke@435 4876 return;
duke@435 4877 }
duke@435 4878 }
duke@435 4879
duke@435 4880 // Checks if name is a legal method name.
coleenp@2497 4881 void ClassFileParser::verify_legal_method_name(Symbol* name, TRAPS) {
duke@435 4882 if (!_need_verify || _relax_verify) { return; }
duke@435 4883
coleenp@2497 4884 assert(name != NULL, "method name is null");
duke@435 4885 char buf[fixed_buffer_size];
duke@435 4886 char* bytes = name->as_utf8_flexible_buffer(THREAD, buf, fixed_buffer_size);
duke@435 4887 unsigned int length = name->utf8_length();
duke@435 4888 bool legal = false;
duke@435 4889
duke@435 4890 if (length > 0) {
duke@435 4891 if (bytes[0] == '<') {
duke@435 4892 if (name == vmSymbols::object_initializer_name() || name == vmSymbols::class_initializer_name()) {
duke@435 4893 legal = true;
duke@435 4894 }
duke@435 4895 } else if (_major_version < JAVA_1_5_VERSION) {
duke@435 4896 char* p;
duke@435 4897 p = skip_over_field_name(bytes, false, length);
duke@435 4898 legal = (p != NULL) && ((p - bytes) == (int)length);
duke@435 4899 } else {
duke@435 4900 // 4881221: relax the constraints based on JSR202 spec
duke@435 4901 legal = verify_unqualified_name(bytes, length, LegalMethod);
duke@435 4902 }
duke@435 4903 }
duke@435 4904
duke@435 4905 if (!legal) {
duke@435 4906 ResourceMark rm(THREAD);
duke@435 4907 Exceptions::fthrow(
duke@435 4908 THREAD_AND_LOCATION,
coleenp@2497 4909 vmSymbols::java_lang_ClassFormatError(),
duke@435 4910 "Illegal method name \"%s\" in class %s", bytes,
duke@435 4911 _class_name->as_C_string()
duke@435 4912 );
duke@435 4913 return;
duke@435 4914 }
duke@435 4915 }
duke@435 4916
duke@435 4917
duke@435 4918 // Checks if signature is a legal field signature.
coleenp@2497 4919 void ClassFileParser::verify_legal_field_signature(Symbol* name, Symbol* signature, TRAPS) {
duke@435 4920 if (!_need_verify) { return; }
duke@435 4921
duke@435 4922 char buf[fixed_buffer_size];
duke@435 4923 char* bytes = signature->as_utf8_flexible_buffer(THREAD, buf, fixed_buffer_size);
duke@435 4924 unsigned int length = signature->utf8_length();
duke@435 4925 char* p = skip_over_field_signature(bytes, false, length, CHECK);
duke@435 4926
duke@435 4927 if (p == NULL || (p - bytes) != (int)length) {
kamg@1941 4928 throwIllegalSignature("Field", name, signature, CHECK);
duke@435 4929 }
duke@435 4930 }
duke@435 4931
duke@435 4932 // Checks if signature is a legal method signature.
duke@435 4933 // Returns number of parameters
coleenp@2497 4934 int ClassFileParser::verify_legal_method_signature(Symbol* name, Symbol* signature, TRAPS) {
duke@435 4935 if (!_need_verify) {
duke@435 4936 // make sure caller's args_size will be less than 0 even for non-static
duke@435 4937 // method so it will be recomputed in compute_size_of_parameters().
duke@435 4938 return -2;
duke@435 4939 }
duke@435 4940
duke@435 4941 unsigned int args_size = 0;
duke@435 4942 char buf[fixed_buffer_size];
duke@435 4943 char* p = signature->as_utf8_flexible_buffer(THREAD, buf, fixed_buffer_size);
duke@435 4944 unsigned int length = signature->utf8_length();
duke@435 4945 char* nextp;
duke@435 4946
duke@435 4947 // The first character must be a '('
duke@435 4948 if ((length > 0) && (*p++ == JVM_SIGNATURE_FUNC)) {
duke@435 4949 length--;
duke@435 4950 // Skip over legal field signatures
duke@435 4951 nextp = skip_over_field_signature(p, false, length, CHECK_0);
duke@435 4952 while ((length > 0) && (nextp != NULL)) {
duke@435 4953 args_size++;
duke@435 4954 if (p[0] == 'J' || p[0] == 'D') {
duke@435 4955 args_size++;
duke@435 4956 }
duke@435 4957 length -= nextp - p;
duke@435 4958 p = nextp;
duke@435 4959 nextp = skip_over_field_signature(p, false, length, CHECK_0);
duke@435 4960 }
duke@435 4961 // The first non-signature thing better be a ')'
duke@435 4962 if ((length > 0) && (*p++ == JVM_SIGNATURE_ENDFUNC)) {
duke@435 4963 length--;
duke@435 4964 if (name->utf8_length() > 0 && name->byte_at(0) == '<') {
duke@435 4965 // All internal methods must return void
duke@435 4966 if ((length == 1) && (p[0] == JVM_SIGNATURE_VOID)) {
duke@435 4967 return args_size;
duke@435 4968 }
duke@435 4969 } else {
duke@435 4970 // Now we better just have a return value
duke@435 4971 nextp = skip_over_field_signature(p, true, length, CHECK_0);
duke@435 4972 if (nextp && ((int)length == (nextp - p))) {
duke@435 4973 return args_size;
duke@435 4974 }
duke@435 4975 }
duke@435 4976 }
duke@435 4977 }
duke@435 4978 // Report error
kamg@1941 4979 throwIllegalSignature("Method", name, signature, CHECK_0);
duke@435 4980 return 0;
duke@435 4981 }
duke@435 4982
duke@435 4983
kamg@2236 4984 // Unqualified names may not contain the characters '.', ';', '[', or '/'.
kamg@2236 4985 // Method names also may not contain the characters '<' or '>', unless <init>
kamg@2236 4986 // or <clinit>. Note that method names may not be <init> or <clinit> in this
kamg@2236 4987 // method. Because these names have been checked as special cases before
kamg@2236 4988 // calling this method in verify_legal_method_name.
kamg@2236 4989 bool ClassFileParser::verify_unqualified_name(
kamg@2236 4990 char* name, unsigned int length, int type) {
duke@435 4991 jchar ch;
duke@435 4992
duke@435 4993 for (char* p = name; p != name + length; ) {
duke@435 4994 ch = *p;
duke@435 4995 if (ch < 128) {
duke@435 4996 p++;
kamg@2236 4997 if (ch == '.' || ch == ';' || ch == '[' ) {
kamg@2236 4998 return false; // do not permit '.', ';', or '['
duke@435 4999 }
duke@435 5000 if (type != LegalClass && ch == '/') {
duke@435 5001 return false; // do not permit '/' unless it's class name
duke@435 5002 }
duke@435 5003 if (type == LegalMethod && (ch == '<' || ch == '>')) {
duke@435 5004 return false; // do not permit '<' or '>' in method names
duke@435 5005 }
duke@435 5006 } else {
duke@435 5007 char* tmp_p = UTF8::next(p, &ch);
duke@435 5008 p = tmp_p;
duke@435 5009 }
duke@435 5010 }
duke@435 5011 return true;
duke@435 5012 }
duke@435 5013
duke@435 5014
duke@435 5015 // Take pointer to a string. Skip over the longest part of the string that could
duke@435 5016 // be taken as a fieldname. Allow '/' if slash_ok is true.
duke@435 5017 // Return a pointer to just past the fieldname.
duke@435 5018 // Return NULL if no fieldname at all was found, or in the case of slash_ok
duke@435 5019 // being true, we saw consecutive slashes (meaning we were looking for a
duke@435 5020 // qualified path but found something that was badly-formed).
duke@435 5021 char* ClassFileParser::skip_over_field_name(char* name, bool slash_ok, unsigned int length) {
duke@435 5022 char* p;
duke@435 5023 jchar ch;
duke@435 5024 jboolean last_is_slash = false;
duke@435 5025 jboolean not_first_ch = false;
duke@435 5026
duke@435 5027 for (p = name; p != name + length; not_first_ch = true) {
duke@435 5028 char* old_p = p;
duke@435 5029 ch = *p;
duke@435 5030 if (ch < 128) {
duke@435 5031 p++;
duke@435 5032 // quick check for ascii
duke@435 5033 if ((ch >= 'a' && ch <= 'z') ||
duke@435 5034 (ch >= 'A' && ch <= 'Z') ||
duke@435 5035 (ch == '_' || ch == '$') ||
duke@435 5036 (not_first_ch && ch >= '0' && ch <= '9')) {
duke@435 5037 last_is_slash = false;
duke@435 5038 continue;
duke@435 5039 }
duke@435 5040 if (slash_ok && ch == '/') {
duke@435 5041 if (last_is_slash) {
duke@435 5042 return NULL; // Don't permit consecutive slashes
duke@435 5043 }
duke@435 5044 last_is_slash = true;
duke@435 5045 continue;
duke@435 5046 }
duke@435 5047 } else {
duke@435 5048 jint unicode_ch;
duke@435 5049 char* tmp_p = UTF8::next_character(p, &unicode_ch);
duke@435 5050 p = tmp_p;
duke@435 5051 last_is_slash = false;
duke@435 5052 // Check if ch is Java identifier start or is Java identifier part
duke@435 5053 // 4672820: call java.lang.Character methods directly without generating separate tables.
duke@435 5054 EXCEPTION_MARK;
never@1577 5055 instanceKlassHandle klass (THREAD, SystemDictionary::Character_klass());
duke@435 5056
duke@435 5057 // return value
duke@435 5058 JavaValue result(T_BOOLEAN);
duke@435 5059 // Set up the arguments to isJavaIdentifierStart and isJavaIdentifierPart
duke@435 5060 JavaCallArguments args;
duke@435 5061 args.push_int(unicode_ch);
duke@435 5062
duke@435 5063 // public static boolean isJavaIdentifierStart(char ch);
duke@435 5064 JavaCalls::call_static(&result,
duke@435 5065 klass,
coleenp@2497 5066 vmSymbols::isJavaIdentifierStart_name(),
coleenp@2497 5067 vmSymbols::int_bool_signature(),
duke@435 5068 &args,
duke@435 5069 THREAD);
duke@435 5070
duke@435 5071 if (HAS_PENDING_EXCEPTION) {
duke@435 5072 CLEAR_PENDING_EXCEPTION;
duke@435 5073 return 0;
duke@435 5074 }
duke@435 5075 if (result.get_jboolean()) {
duke@435 5076 continue;
duke@435 5077 }
duke@435 5078
duke@435 5079 if (not_first_ch) {
duke@435 5080 // public static boolean isJavaIdentifierPart(char ch);
duke@435 5081 JavaCalls::call_static(&result,
duke@435 5082 klass,
coleenp@2497 5083 vmSymbols::isJavaIdentifierPart_name(),
coleenp@2497 5084 vmSymbols::int_bool_signature(),
duke@435 5085 &args,
duke@435 5086 THREAD);
duke@435 5087
duke@435 5088 if (HAS_PENDING_EXCEPTION) {
duke@435 5089 CLEAR_PENDING_EXCEPTION;
duke@435 5090 return 0;
duke@435 5091 }
duke@435 5092
duke@435 5093 if (result.get_jboolean()) {
duke@435 5094 continue;
duke@435 5095 }
duke@435 5096 }
duke@435 5097 }
duke@435 5098 return (not_first_ch) ? old_p : NULL;
duke@435 5099 }
duke@435 5100 return (not_first_ch) ? p : NULL;
duke@435 5101 }
duke@435 5102
duke@435 5103
duke@435 5104 // Take pointer to a string. Skip over the longest part of the string that could
duke@435 5105 // be taken as a field signature. Allow "void" if void_ok.
duke@435 5106 // Return a pointer to just past the signature.
duke@435 5107 // Return NULL if no legal signature is found.
duke@435 5108 char* ClassFileParser::skip_over_field_signature(char* signature,
duke@435 5109 bool void_ok,
duke@435 5110 unsigned int length,
duke@435 5111 TRAPS) {
duke@435 5112 unsigned int array_dim = 0;
duke@435 5113 while (length > 0) {
duke@435 5114 switch (signature[0]) {
duke@435 5115 case JVM_SIGNATURE_VOID: if (!void_ok) { return NULL; }
duke@435 5116 case JVM_SIGNATURE_BOOLEAN:
duke@435 5117 case JVM_SIGNATURE_BYTE:
duke@435 5118 case JVM_SIGNATURE_CHAR:
duke@435 5119 case JVM_SIGNATURE_SHORT:
duke@435 5120 case JVM_SIGNATURE_INT:
duke@435 5121 case JVM_SIGNATURE_FLOAT:
duke@435 5122 case JVM_SIGNATURE_LONG:
duke@435 5123 case JVM_SIGNATURE_DOUBLE:
duke@435 5124 return signature + 1;
duke@435 5125 case JVM_SIGNATURE_CLASS: {
duke@435 5126 if (_major_version < JAVA_1_5_VERSION) {
duke@435 5127 // Skip over the class name if one is there
duke@435 5128 char* p = skip_over_field_name(signature + 1, true, --length);
duke@435 5129
duke@435 5130 // The next character better be a semicolon
duke@435 5131 if (p && (p - signature) > 1 && p[0] == ';') {
duke@435 5132 return p + 1;
duke@435 5133 }
duke@435 5134 } else {
duke@435 5135 // 4900761: For class version > 48, any unicode is allowed in class name.
duke@435 5136 length--;
duke@435 5137 signature++;
duke@435 5138 while (length > 0 && signature[0] != ';') {
duke@435 5139 if (signature[0] == '.') {
duke@435 5140 classfile_parse_error("Class name contains illegal character '.' in descriptor in class file %s", CHECK_0);
duke@435 5141 }
duke@435 5142 length--;
duke@435 5143 signature++;
duke@435 5144 }
duke@435 5145 if (signature[0] == ';') { return signature + 1; }
duke@435 5146 }
duke@435 5147
duke@435 5148 return NULL;
duke@435 5149 }
duke@435 5150 case JVM_SIGNATURE_ARRAY:
duke@435 5151 array_dim++;
duke@435 5152 if (array_dim > 255) {
duke@435 5153 // 4277370: array descriptor is valid only if it represents 255 or fewer dimensions.
duke@435 5154 classfile_parse_error("Array type descriptor has more than 255 dimensions in class file %s", CHECK_0);
duke@435 5155 }
duke@435 5156 // The rest of what's there better be a legal signature
duke@435 5157 signature++;
duke@435 5158 length--;
duke@435 5159 void_ok = false;
duke@435 5160 break;
duke@435 5161
duke@435 5162 default:
duke@435 5163 return NULL;
duke@435 5164 }
duke@435 5165 }
duke@435 5166 return NULL;
duke@435 5167 }

mercurial