src/share/vm/classfile/verifier.hpp

Mon, 27 May 2013 12:56:34 +0200

author
stefank
date
Mon, 27 May 2013 12:56:34 +0200
changeset 5195
95c00927be11
parent 5097
92ef81e2f571
child 5213
4552a7633a07
permissions
-rw-r--r--

8015428: Remove unused CDS support from StringTable
Summary: The string in StringTable is not used by CDS anymore. Remove the unnecessary code in preparation for 8015422: Large performance hit when the StringTable is walked twice in Parallel Scavenge
Reviewed-by: pliden, tschatzl, coleenp

duke@435 1 /*
minqi@5097 2 * Copyright (c) 1998, 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 #ifndef SHARE_VM_CLASSFILE_VERIFIER_HPP
stefank@2314 26 #define SHARE_VM_CLASSFILE_VERIFIER_HPP
stefank@2314 27
stefank@2314 28 #include "classfile/verificationType.hpp"
stefank@2314 29 #include "memory/gcLocker.hpp"
stefank@2314 30 #include "oops/klass.hpp"
coleenp@4037 31 #include "oops/method.hpp"
stefank@2314 32 #include "runtime/handles.hpp"
stefank@2314 33 #include "utilities/exceptions.hpp"
stefank@2314 34
duke@435 35 // The verifier class
duke@435 36 class Verifier : AllStatic {
duke@435 37 public:
jrose@1957 38 enum {
jrose@1957 39 STACKMAP_ATTRIBUTE_MAJOR_VERSION = 50,
jrose@1957 40 INVOKEDYNAMIC_MAJOR_VERSION = 51
jrose@1957 41 };
duke@435 42 typedef enum { ThrowException, NoException } Mode;
duke@435 43
duke@435 44 /**
duke@435 45 * Verify the bytecodes for a class. If 'throw_exception' is true
duke@435 46 * then the appropriate VerifyError or ClassFormatError will be thrown.
duke@435 47 * Otherwise, no exception is thrown and the return indicates the
duke@435 48 * error.
duke@435 49 */
acorn@1408 50 static bool verify(instanceKlassHandle klass, Mode mode, bool should_verify_class, TRAPS);
duke@435 51
acorn@1408 52 // Return false if the class is loaded by the bootstrap loader,
acorn@1408 53 // or if defineClass was called requesting skipping verification
acorn@1408 54 // -Xverify:all/none override this value
acorn@1408 55 static bool should_verify_for(oop class_loader, bool should_verify_class);
duke@435 56
duke@435 57 // Relax certain verifier checks to enable some broken 1.1 apps to run on 1.2.
duke@435 58 static bool relax_verify_for(oop class_loader);
duke@435 59
duke@435 60 private:
acorn@1408 61 static bool is_eligible_for_verification(instanceKlassHandle klass, bool should_verify_class);
coleenp@2497 62 static Symbol* inference_verify(
duke@435 63 instanceKlassHandle klass, char* msg, size_t msg_len, TRAPS);
duke@435 64 };
duke@435 65
duke@435 66 class RawBytecodeStream;
duke@435 67 class StackMapFrame;
duke@435 68 class StackMapTable;
duke@435 69
duke@435 70 // Summary of verifier's memory usage:
duke@435 71 // StackMapTable is stack allocated.
coleenp@2497 72 // StackMapFrame are resource allocated. There is only one ResourceMark
coleenp@2497 73 // for each class verification, which is created at the top level.
duke@435 74 // There is one mutable StackMapFrame (current_frame) which is updated
duke@435 75 // by abstract bytecode interpretation. frame_in_exception_handler() returns
duke@435 76 // a frame that has a mutable one-item stack (ready for pushing the
duke@435 77 // catch type exception object). All the other StackMapFrame's
duke@435 78 // are immutable (including their locals and stack arrays) after
duke@435 79 // their constructions.
duke@435 80 // locals/stack arrays in StackMapFrame are resource allocated.
duke@435 81 // locals/stack arrays can be shared between StackMapFrame's, except
duke@435 82 // the mutable StackMapFrame (current_frame).
duke@435 83
duke@435 84 // These macros are used similarly to CHECK macros but also check
duke@435 85 // the status of the verifier and return if that has an error.
duke@435 86 #define CHECK_VERIFY(verifier) \
duke@435 87 CHECK); if ((verifier)->has_error()) return; (0
duke@435 88 #define CHECK_VERIFY_(verifier, result) \
duke@435 89 CHECK_(result)); if ((verifier)->has_error()) return (result); (0
duke@435 90
kamg@3992 91 class TypeOrigin VALUE_OBJ_CLASS_SPEC {
kamg@3992 92 private:
kamg@3992 93 typedef enum {
kamg@3992 94 CF_LOCALS, // Comes from the current frame locals
kamg@3992 95 CF_STACK, // Comes from the current frame expression stack
kamg@3992 96 SM_LOCALS, // Comes from stackmap locals
kamg@3992 97 SM_STACK, // Comes from stackmap expression stack
kamg@3992 98 CONST_POOL, // Comes from the constant pool
kamg@3992 99 SIG, // Comes from method signature
kamg@3992 100 IMPLICIT, // Comes implicitly from code or context
kamg@3992 101 BAD_INDEX, // No type, but the index is bad
kamg@3992 102 FRAME_ONLY, // No type, context just contains the frame
kamg@3992 103 NONE
kamg@3992 104 } Origin;
kamg@3992 105
kamg@3992 106 Origin _origin;
kamg@3992 107 u2 _index; // local, stack, or constant pool index
kamg@3992 108 StackMapFrame* _frame; // source frame if CF or SM
kamg@3992 109 VerificationType _type; // The actual type
kamg@3992 110
kamg@3992 111 TypeOrigin(
kamg@3992 112 Origin origin, u2 index, StackMapFrame* frame, VerificationType type)
kamg@3992 113 : _origin(origin), _index(index), _frame(frame), _type(type) {}
kamg@3992 114
kamg@3992 115 public:
kamg@3992 116 TypeOrigin() : _origin(NONE), _index(0), _frame(NULL) {}
kamg@3992 117
kamg@3992 118 static TypeOrigin null();
kamg@3992 119 static TypeOrigin local(u2 index, StackMapFrame* frame);
kamg@3992 120 static TypeOrigin stack(u2 index, StackMapFrame* frame);
kamg@3992 121 static TypeOrigin sm_local(u2 index, StackMapFrame* frame);
kamg@3992 122 static TypeOrigin sm_stack(u2 index, StackMapFrame* frame);
kamg@3992 123 static TypeOrigin cp(u2 index, VerificationType vt);
kamg@3992 124 static TypeOrigin signature(VerificationType vt);
kamg@3992 125 static TypeOrigin bad_index(u2 index);
kamg@3992 126 static TypeOrigin implicit(VerificationType t);
kamg@3992 127 static TypeOrigin frame(StackMapFrame* frame);
kamg@3992 128
kamg@3992 129 void reset_frame();
kamg@3992 130 void details(outputStream* ss) const;
kamg@3992 131 void print_frame(outputStream* ss) const;
kamg@3992 132 const StackMapFrame* frame() const { return _frame; }
kamg@3992 133 bool is_valid() const { return _origin != NONE; }
kamg@3992 134 u2 index() const { return _index; }
kamg@3992 135
kamg@3992 136 #ifdef ASSERT
kamg@3992 137 void print_on(outputStream* str) const;
kamg@3992 138 #endif
kamg@3992 139 };
kamg@3992 140
kamg@3992 141 class ErrorContext VALUE_OBJ_CLASS_SPEC {
kamg@3992 142 private:
kamg@3992 143 typedef enum {
kamg@3992 144 INVALID_BYTECODE, // There was a problem with the bytecode
kamg@3992 145 WRONG_TYPE, // Type value was not as expected
kamg@3992 146 FLAGS_MISMATCH, // Frame flags are not assignable
kamg@3992 147 BAD_CP_INDEX, // Invalid constant pool index
kamg@3992 148 BAD_LOCAL_INDEX, // Invalid local index
kamg@3992 149 LOCALS_SIZE_MISMATCH, // Frames have differing local counts
kamg@3992 150 STACK_SIZE_MISMATCH, // Frames have different stack sizes
kamg@3992 151 STACK_OVERFLOW, // Attempt to push onto a full expression stack
kamg@3992 152 STACK_UNDERFLOW, // Attempt to pop and empty expression stack
kamg@3992 153 MISSING_STACKMAP, // No stackmap for this location and there should be
kamg@3992 154 BAD_STACKMAP, // Format error in stackmap
kamg@3992 155 NO_FAULT, // No error
kamg@3992 156 UNKNOWN
kamg@3992 157 } FaultType;
kamg@3992 158
kamg@3992 159 int _bci;
kamg@3992 160 FaultType _fault;
kamg@3992 161 TypeOrigin _type;
kamg@3992 162 TypeOrigin _expected;
kamg@3992 163
kamg@3992 164 ErrorContext(int bci, FaultType fault) :
kamg@3992 165 _bci(bci), _fault(fault) {}
kamg@3992 166 ErrorContext(int bci, FaultType fault, TypeOrigin type) :
kamg@3992 167 _bci(bci), _fault(fault), _type(type) {}
kamg@3992 168 ErrorContext(int bci, FaultType fault, TypeOrigin type, TypeOrigin exp) :
kamg@3992 169 _bci(bci), _fault(fault), _type(type), _expected(exp) {}
kamg@3992 170
kamg@3992 171 public:
kamg@3992 172 ErrorContext() : _bci(-1), _fault(NO_FAULT) {}
kamg@3992 173
kamg@3992 174 static ErrorContext bad_code(u2 bci) {
kamg@3992 175 return ErrorContext(bci, INVALID_BYTECODE);
kamg@3992 176 }
kamg@3992 177 static ErrorContext bad_type(u2 bci, TypeOrigin type) {
kamg@3992 178 return ErrorContext(bci, WRONG_TYPE, type);
kamg@3992 179 }
kamg@3992 180 static ErrorContext bad_type(u2 bci, TypeOrigin type, TypeOrigin exp) {
kamg@3992 181 return ErrorContext(bci, WRONG_TYPE, type, exp);
kamg@3992 182 }
kamg@3992 183 static ErrorContext bad_flags(u2 bci, StackMapFrame* frame) {
kamg@3992 184 return ErrorContext(bci, FLAGS_MISMATCH, TypeOrigin::frame(frame));
kamg@3992 185 }
kamg@3992 186 static ErrorContext bad_flags(u2 bci, StackMapFrame* cur, StackMapFrame* sm) {
kamg@3992 187 return ErrorContext(bci, FLAGS_MISMATCH,
kamg@3992 188 TypeOrigin::frame(cur), TypeOrigin::frame(sm));
kamg@3992 189 }
kamg@3992 190 static ErrorContext bad_cp_index(u2 bci, u2 index) {
kamg@3992 191 return ErrorContext(bci, BAD_CP_INDEX, TypeOrigin::bad_index(index));
kamg@3992 192 }
kamg@3992 193 static ErrorContext bad_local_index(u2 bci, u2 index) {
kamg@3992 194 return ErrorContext(bci, BAD_LOCAL_INDEX, TypeOrigin::bad_index(index));
kamg@3992 195 }
kamg@3992 196 static ErrorContext locals_size_mismatch(
kamg@3992 197 u2 bci, StackMapFrame* frame0, StackMapFrame* frame1) {
kamg@3992 198 return ErrorContext(bci, LOCALS_SIZE_MISMATCH,
kamg@3992 199 TypeOrigin::frame(frame0), TypeOrigin::frame(frame1));
kamg@3992 200 }
kamg@3992 201 static ErrorContext stack_size_mismatch(
kamg@3992 202 u2 bci, StackMapFrame* frame0, StackMapFrame* frame1) {
kamg@3992 203 return ErrorContext(bci, STACK_SIZE_MISMATCH,
kamg@3992 204 TypeOrigin::frame(frame0), TypeOrigin::frame(frame1));
kamg@3992 205 }
kamg@3992 206 static ErrorContext stack_overflow(u2 bci, StackMapFrame* frame) {
kamg@3992 207 return ErrorContext(bci, STACK_OVERFLOW, TypeOrigin::frame(frame));
kamg@3992 208 }
kamg@3992 209 static ErrorContext stack_underflow(u2 bci, StackMapFrame* frame) {
kamg@3992 210 return ErrorContext(bci, STACK_UNDERFLOW, TypeOrigin::frame(frame));
kamg@3992 211 }
kamg@3992 212 static ErrorContext missing_stackmap(u2 bci) {
kamg@3992 213 return ErrorContext(bci, MISSING_STACKMAP);
kamg@3992 214 }
kamg@3992 215 static ErrorContext bad_stackmap(int index, StackMapFrame* frame) {
kamg@3992 216 return ErrorContext(0, BAD_STACKMAP, TypeOrigin::frame(frame));
kamg@3992 217 }
kamg@3992 218
kamg@3992 219 bool is_valid() const { return _fault != NO_FAULT; }
kamg@3992 220 int bci() const { return _bci; }
kamg@3992 221
kamg@3992 222 void reset_frames() {
kamg@3992 223 _type.reset_frame();
kamg@3992 224 _expected.reset_frame();
kamg@3992 225 }
kamg@3992 226
minqi@5097 227 void details(outputStream* ss, const Method* method) const;
kamg@3992 228
kamg@3992 229 #ifdef ASSERT
kamg@3992 230 void print_on(outputStream* str) const {
kamg@3992 231 str->print("error_context(%d, %d,", _bci, _fault);
kamg@3992 232 _type.print_on(str);
kamg@3992 233 str->print(",");
kamg@3992 234 _expected.print_on(str);
kamg@3992 235 str->print(")");
kamg@3992 236 }
kamg@3992 237 #endif
kamg@3992 238
kamg@3992 239 private:
minqi@5097 240 void location_details(outputStream* ss, const Method* method) const;
kamg@3992 241 void reason_details(outputStream* ss) const;
kamg@3992 242 void frame_details(outputStream* ss) const;
minqi@5097 243 void bytecode_details(outputStream* ss, const Method* method) const;
minqi@5097 244 void handler_details(outputStream* ss, const Method* method) const;
minqi@5097 245 void stackmap_details(outputStream* ss, const Method* method) const;
kamg@3992 246 };
kamg@3992 247
duke@435 248 // A new instance of this class is created for each class being verified
duke@435 249 class ClassVerifier : public StackObj {
duke@435 250 private:
duke@435 251 Thread* _thread;
kamg@3992 252 GrowableArray<Symbol*>* _symbols; // keep a list of symbols created
kamg@3992 253
coleenp@2497 254 Symbol* _exception_type;
duke@435 255 char* _message;
kamg@3992 256
kamg@3992 257 ErrorContext _error_context; // contains information about an error
duke@435 258
duke@435 259 void verify_method(methodHandle method, TRAPS);
duke@435 260 char* generate_code_data(methodHandle m, u4 code_length, TRAPS);
kamg@3992 261 void verify_exception_handler_table(u4 code_length, char* code_data,
kamg@3992 262 int& min, int& max, TRAPS);
duke@435 263 void verify_local_variable_table(u4 code_length, char* code_data, TRAPS);
duke@435 264
duke@435 265 VerificationType cp_ref_index_to_type(
duke@435 266 int index, constantPoolHandle cp, TRAPS) {
duke@435 267 return cp_index_to_type(cp->klass_ref_index_at(index), cp, THREAD);
duke@435 268 }
duke@435 269
duke@435 270 bool is_protected_access(
coleenp@4037 271 instanceKlassHandle this_class, Klass* target_class,
coleenp@2497 272 Symbol* field_name, Symbol* field_sig, bool is_method);
duke@435 273
kamg@3992 274 void verify_cp_index(u2 bci, constantPoolHandle cp, int index, TRAPS);
kamg@3992 275 void verify_cp_type(u2 bci, int index, constantPoolHandle cp,
kamg@3992 276 unsigned int types, TRAPS);
kamg@3992 277 void verify_cp_class_type(u2 bci, int index, constantPoolHandle cp, TRAPS);
duke@435 278
duke@435 279 u2 verify_stackmap_table(
duke@435 280 u2 stackmap_index, u2 bci, StackMapFrame* current_frame,
duke@435 281 StackMapTable* stackmap_table, bool no_control_flow, TRAPS);
duke@435 282
duke@435 283 void verify_exception_handler_targets(
duke@435 284 u2 bci, bool this_uninit, StackMapFrame* current_frame,
duke@435 285 StackMapTable* stackmap_table, TRAPS);
duke@435 286
duke@435 287 void verify_ldc(
duke@435 288 int opcode, u2 index, StackMapFrame *current_frame,
duke@435 289 constantPoolHandle cp, u2 bci, TRAPS);
duke@435 290
duke@435 291 void verify_switch(
duke@435 292 RawBytecodeStream* bcs, u4 code_length, char* code_data,
duke@435 293 StackMapFrame* current_frame, StackMapTable* stackmap_table, TRAPS);
duke@435 294
duke@435 295 void verify_field_instructions(
duke@435 296 RawBytecodeStream* bcs, StackMapFrame* current_frame,
duke@435 297 constantPoolHandle cp, TRAPS);
duke@435 298
duke@435 299 void verify_invoke_init(
kamg@3992 300 RawBytecodeStream* bcs, u2 ref_index, VerificationType ref_class_type,
duke@435 301 StackMapFrame* current_frame, u4 code_length, bool* this_uninit,
duke@435 302 constantPoolHandle cp, TRAPS);
duke@435 303
duke@435 304 void verify_invoke_instructions(
duke@435 305 RawBytecodeStream* bcs, u4 code_length, StackMapFrame* current_frame,
duke@435 306 bool* this_uninit, VerificationType return_type,
duke@435 307 constantPoolHandle cp, TRAPS);
duke@435 308
duke@435 309 VerificationType get_newarray_type(u2 index, u2 bci, TRAPS);
kamg@3992 310 void verify_anewarray(u2 bci, u2 index, constantPoolHandle cp,
kamg@3992 311 StackMapFrame* current_frame, TRAPS);
duke@435 312 void verify_return_value(
kamg@3992 313 VerificationType return_type, VerificationType type, u2 offset,
kamg@3992 314 StackMapFrame* current_frame, TRAPS);
duke@435 315
duke@435 316 void verify_iload (u2 index, StackMapFrame* current_frame, TRAPS);
duke@435 317 void verify_lload (u2 index, StackMapFrame* current_frame, TRAPS);
duke@435 318 void verify_fload (u2 index, StackMapFrame* current_frame, TRAPS);
duke@435 319 void verify_dload (u2 index, StackMapFrame* current_frame, TRAPS);
duke@435 320 void verify_aload (u2 index, StackMapFrame* current_frame, TRAPS);
duke@435 321 void verify_istore(u2 index, StackMapFrame* current_frame, TRAPS);
duke@435 322 void verify_lstore(u2 index, StackMapFrame* current_frame, TRAPS);
duke@435 323 void verify_fstore(u2 index, StackMapFrame* current_frame, TRAPS);
duke@435 324 void verify_dstore(u2 index, StackMapFrame* current_frame, TRAPS);
duke@435 325 void verify_astore(u2 index, StackMapFrame* current_frame, TRAPS);
duke@435 326 void verify_iinc (u2 index, StackMapFrame* current_frame, TRAPS);
duke@435 327
coleenp@2497 328 bool name_in_supers(Symbol* ref_name, instanceKlassHandle current);
duke@435 329
kamg@2297 330 VerificationType object_type() const;
kamg@2297 331
duke@435 332 instanceKlassHandle _klass; // the class being verified
duke@435 333 methodHandle _method; // current method being verified
duke@435 334 VerificationType _this_type; // the verification type of the current class
duke@435 335
jrose@1925 336 // Some recursive calls from the verifier to the name resolver
jrose@1925 337 // can cause the current class to be re-verified and rewritten.
jrose@1925 338 // If this happens, the original verification should not continue,
jrose@1925 339 // because constant pool indexes will have changed.
jrose@1925 340 // The rewriter is preceded by the verifier. If the verifier throws
jrose@1925 341 // an error, rewriting is prevented. Also, rewriting always precedes
jrose@1925 342 // bytecode execution or compilation. Thus, is_rewritten implies
jrose@1925 343 // that a class has been verified and prepared for execution.
jrose@1925 344 bool was_recursively_verified() { return _klass->is_rewritten(); }
jrose@1925 345
duke@435 346 public:
duke@435 347 enum {
duke@435 348 BYTECODE_OFFSET = 1,
duke@435 349 NEW_OFFSET = 2
duke@435 350 };
duke@435 351
duke@435 352 // constructor
kamg@3992 353 ClassVerifier(instanceKlassHandle klass, TRAPS);
duke@435 354
duke@435 355 // destructor
duke@435 356 ~ClassVerifier();
duke@435 357
duke@435 358 Thread* thread() { return _thread; }
duke@435 359 methodHandle method() { return _method; }
duke@435 360 instanceKlassHandle current_class() const { return _klass; }
duke@435 361 VerificationType current_type() const { return _this_type; }
duke@435 362
duke@435 363 // Verifies the class. If a verify or class file format error occurs,
duke@435 364 // the '_exception_name' symbols will set to the exception name and
duke@435 365 // the message_buffer will be filled in with the exception message.
duke@435 366 void verify_class(TRAPS);
duke@435 367
duke@435 368 // Return status modes
coleenp@2497 369 Symbol* result() const { return _exception_type; }
coleenp@2497 370 bool has_error() const { return result() != NULL; }
kamg@3992 371 char* exception_message() {
kamg@3992 372 stringStream ss;
kamg@3992 373 ss.print(_message);
kamg@3992 374 _error_context.details(&ss, _method());
kamg@3992 375 return ss.as_string();
kamg@3992 376 }
duke@435 377
duke@435 378 // Called when verify or class format errors are encountered.
duke@435 379 // May throw an exception based upon the mode.
kamg@3992 380 void verify_error(ErrorContext ctx, const char* fmt, ...);
duke@435 381 void class_format_error(const char* fmt, ...);
duke@435 382
coleenp@4037 383 Klass* load_class(Symbol* name, TRAPS);
duke@435 384
duke@435 385 int change_sig_to_verificationType(
duke@435 386 SignatureStream* sig_type, VerificationType* inference_type, TRAPS);
duke@435 387
duke@435 388 VerificationType cp_index_to_type(int index, constantPoolHandle cp, TRAPS) {
coleenp@2497 389 return VerificationType::reference_type(cp->klass_name_at(index));
duke@435 390 }
duke@435 391
coleenp@2497 392 // Keep a list of temporary symbols created during verification because
coleenp@2497 393 // their reference counts need to be decrememented when the verifier object
coleenp@2497 394 // goes out of scope. Since these symbols escape the scope in which they're
coleenp@2497 395 // created, we can't use a TempNewSymbol.
kamg@3992 396 Symbol* create_temporary_symbol(
kamg@3992 397 const Symbol* s, int begin, int end, TRAPS);
coleenp@2497 398 Symbol* create_temporary_symbol(const char *s, int length, TRAPS);
coleenp@2497 399
kamg@3992 400 TypeOrigin ref_ctx(const char* str, TRAPS);
duke@435 401 };
duke@435 402
duke@435 403 inline int ClassVerifier::change_sig_to_verificationType(
duke@435 404 SignatureStream* sig_type, VerificationType* inference_type, TRAPS) {
duke@435 405 BasicType bt = sig_type->type();
duke@435 406 switch (bt) {
duke@435 407 case T_OBJECT:
duke@435 408 case T_ARRAY:
duke@435 409 {
coleenp@2497 410 Symbol* name = sig_type->as_symbol(CHECK_0);
coleenp@2497 411 // Create another symbol to save as signature stream unreferences
coleenp@2497 412 // this symbol.
coleenp@2497 413 Symbol* name_copy =
coleenp@2497 414 create_temporary_symbol(name, 0, name->utf8_length(), CHECK_0);
coleenp@2497 415 assert(name_copy == name, "symbols don't match");
duke@435 416 *inference_type =
coleenp@2497 417 VerificationType::reference_type(name_copy);
duke@435 418 return 1;
duke@435 419 }
duke@435 420 case T_LONG:
duke@435 421 *inference_type = VerificationType::long_type();
duke@435 422 *++inference_type = VerificationType::long2_type();
duke@435 423 return 2;
duke@435 424 case T_DOUBLE:
duke@435 425 *inference_type = VerificationType::double_type();
duke@435 426 *++inference_type = VerificationType::double2_type();
duke@435 427 return 2;
duke@435 428 case T_INT:
duke@435 429 case T_BOOLEAN:
duke@435 430 case T_BYTE:
duke@435 431 case T_CHAR:
duke@435 432 case T_SHORT:
duke@435 433 *inference_type = VerificationType::integer_type();
duke@435 434 return 1;
duke@435 435 case T_FLOAT:
duke@435 436 *inference_type = VerificationType::float_type();
duke@435 437 return 1;
duke@435 438 default:
duke@435 439 ShouldNotReachHere();
duke@435 440 return 1;
duke@435 441 }
duke@435 442 }
stefank@2314 443
stefank@2314 444 #endif // SHARE_VM_CLASSFILE_VERIFIER_HPP

mercurial