src/share/vm/classfile/verifier.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File hotspot Sdiff src/share/vm/classfile

src/share/vm/classfile/verifier.hpp

Print this page
rev 3510 : 7116786: RFE: Detailed information on VerifyErrors
Summary: Provide additional detail in VerifyError messages
Reviewed-by:


  71 // StackMapTable is stack allocated.
  72 // StackMapFrame are resource allocated. There is only one ResourceMark
  73 // for each class verification, which is created at the top level.
  74 // There is one mutable StackMapFrame (current_frame) which is updated
  75 // by abstract bytecode interpretation. frame_in_exception_handler() returns
  76 // a frame that has a mutable one-item stack (ready for pushing the
  77 // catch type exception object). All the other StackMapFrame's
  78 // are immutable (including their locals and stack arrays) after
  79 // their constructions.
  80 // locals/stack arrays in StackMapFrame are resource allocated.
  81 // locals/stack arrays can be shared between StackMapFrame's, except
  82 // the mutable StackMapFrame (current_frame).
  83 
  84 // These macros are used similarly to CHECK macros but also check
  85 // the status of the verifier and return if that has an error.
  86 #define CHECK_VERIFY(verifier) \
  87   CHECK); if ((verifier)->has_error()) return; (0
  88 #define CHECK_VERIFY_(verifier, result) \
  89   CHECK_(result)); if ((verifier)->has_error()) return (result); (0
  90 





























































































































































  91 // A new instance of this class is created for each class being verified
  92 class ClassVerifier : public StackObj {
  93  private:
  94   Thread* _thread;


  95   Symbol* _exception_type;
  96   char* _message;
  97   size_t _message_buffer_len;
  98   GrowableArray<Symbol*>* _symbols;  // keep a list of symbols created
  99 
 100   void verify_method(methodHandle method, TRAPS);
 101   char* generate_code_data(methodHandle m, u4 code_length, TRAPS);
 102   void verify_exception_handler_table(u4 code_length, char* code_data, int& min, int& max, TRAPS);

 103   void verify_local_variable_table(u4 code_length, char* code_data, TRAPS);
 104 
 105   VerificationType cp_ref_index_to_type(
 106       int index, constantPoolHandle cp, TRAPS) {
 107     return cp_index_to_type(cp->klass_ref_index_at(index), cp, THREAD);
 108   }
 109 
 110   bool is_protected_access(
 111     instanceKlassHandle this_class, klassOop target_class,
 112     Symbol* field_name, Symbol* field_sig, bool is_method);
 113 
 114   void verify_cp_index(constantPoolHandle cp, int index, TRAPS);
 115   void verify_cp_type(
 116     int index, constantPoolHandle cp, unsigned int types, TRAPS);
 117   void verify_cp_class_type(int index, constantPoolHandle cp, TRAPS);
 118 
 119   u2 verify_stackmap_table(
 120     u2 stackmap_index, u2 bci, StackMapFrame* current_frame,
 121     StackMapTable* stackmap_table, bool no_control_flow, TRAPS);
 122 
 123   void verify_exception_handler_targets(
 124     u2 bci, bool this_uninit, StackMapFrame* current_frame,
 125     StackMapTable* stackmap_table, TRAPS);
 126 
 127   void verify_ldc(
 128     int opcode, u2 index, StackMapFrame *current_frame,
 129     constantPoolHandle cp, u2 bci, TRAPS);
 130 
 131   void verify_switch(
 132     RawBytecodeStream* bcs, u4 code_length, char* code_data,
 133     StackMapFrame* current_frame, StackMapTable* stackmap_table, TRAPS);
 134 
 135   void verify_field_instructions(
 136     RawBytecodeStream* bcs, StackMapFrame* current_frame,
 137     constantPoolHandle cp, TRAPS);
 138 
 139   void verify_invoke_init(
 140     RawBytecodeStream* bcs, VerificationType ref_class_type,
 141     StackMapFrame* current_frame, u4 code_length, bool* this_uninit,
 142     constantPoolHandle cp, TRAPS);
 143 
 144   void verify_invoke_instructions(
 145     RawBytecodeStream* bcs, u4 code_length, StackMapFrame* current_frame,
 146     bool* this_uninit, VerificationType return_type,
 147     constantPoolHandle cp, TRAPS);
 148 
 149   VerificationType get_newarray_type(u2 index, u2 bci, TRAPS);
 150   void verify_anewarray(
 151     u2 index, constantPoolHandle cp, StackMapFrame* current_frame, TRAPS);
 152   void verify_return_value(
 153     VerificationType return_type, VerificationType type, u2 offset, TRAPS);

 154 
 155   void verify_iload (u2 index, StackMapFrame* current_frame, TRAPS);
 156   void verify_lload (u2 index, StackMapFrame* current_frame, TRAPS);
 157   void verify_fload (u2 index, StackMapFrame* current_frame, TRAPS);
 158   void verify_dload (u2 index, StackMapFrame* current_frame, TRAPS);
 159   void verify_aload (u2 index, StackMapFrame* current_frame, TRAPS);
 160   void verify_istore(u2 index, StackMapFrame* current_frame, TRAPS);
 161   void verify_lstore(u2 index, StackMapFrame* current_frame, TRAPS);
 162   void verify_fstore(u2 index, StackMapFrame* current_frame, TRAPS);
 163   void verify_dstore(u2 index, StackMapFrame* current_frame, TRAPS);
 164   void verify_astore(u2 index, StackMapFrame* current_frame, TRAPS);
 165   void verify_iinc  (u2 index, StackMapFrame* current_frame, TRAPS);
 166 
 167   bool name_in_supers(Symbol* ref_name, instanceKlassHandle current);
 168 
 169   VerificationType object_type() const;
 170 
 171   instanceKlassHandle _klass;  // the class being verified
 172   methodHandle        _method; // current method being verified
 173   VerificationType    _this_type; // the verification type of the current class
 174 
 175   // Some recursive calls from the verifier to the name resolver
 176   // can cause the current class to be re-verified and rewritten.
 177   // If this happens, the original verification should not continue,
 178   // because constant pool indexes will have changed.
 179   // The rewriter is preceded by the verifier.  If the verifier throws
 180   // an error, rewriting is prevented.  Also, rewriting always precedes
 181   // bytecode execution or compilation.  Thus, is_rewritten implies
 182   // that a class has been verified and prepared for execution.
 183   bool was_recursively_verified() { return _klass->is_rewritten(); }
 184 
 185  public:
 186   enum {
 187     BYTECODE_OFFSET = 1,
 188     NEW_OFFSET = 2
 189   };
 190 
 191   // constructor
 192   ClassVerifier(instanceKlassHandle klass, char* msg, size_t msg_len, TRAPS);
 193 
 194   // destructor
 195   ~ClassVerifier();
 196 
 197   Thread* thread()             { return _thread; }
 198   methodHandle method()        { return _method; }
 199   instanceKlassHandle current_class() const { return _klass; }
 200   VerificationType current_type() const { return _this_type; }
 201 
 202   // Verifies the class.  If a verify or class file format error occurs,
 203   // the '_exception_name' symbols will set to the exception name and
 204   // the message_buffer will be filled in with the exception message.
 205   void verify_class(TRAPS);
 206 
 207   // Return status modes
 208   Symbol* result() const { return _exception_type; }
 209   bool has_error() const { return result() != NULL; }






 210 
 211   // Called when verify or class format errors are encountered.
 212   // May throw an exception based upon the mode.
 213   void verify_error(u2 offset, const char* fmt, ...);
 214   void verify_error(const char* fmt, ...);
 215   void class_format_error(const char* fmt, ...);
 216   void format_error_message(const char* fmt, int offset, va_list args);
 217 
 218   klassOop load_class(Symbol* name, TRAPS);
 219 
 220   int change_sig_to_verificationType(
 221     SignatureStream* sig_type, VerificationType* inference_type, TRAPS);
 222 
 223   VerificationType cp_index_to_type(int index, constantPoolHandle cp, TRAPS) {
 224     return VerificationType::reference_type(cp->klass_name_at(index));
 225   }
 226 
 227   // Keep a list of temporary symbols created during verification because
 228   // their reference counts need to be decrememented when the verifier object
 229   // goes out of scope.  Since these symbols escape the scope in which they're
 230   // created, we can't use a TempNewSymbol.
 231   Symbol* create_temporary_symbol(const Symbol* s, int begin, int end, TRAPS);

 232   Symbol* create_temporary_symbol(const char *s, int length, TRAPS);
 233 
 234   static bool _verify_verbose;  // for debugging
 235 };
 236 
 237 inline int ClassVerifier::change_sig_to_verificationType(
 238     SignatureStream* sig_type, VerificationType* inference_type, TRAPS) {
 239   BasicType bt = sig_type->type();
 240   switch (bt) {
 241     case T_OBJECT:
 242     case T_ARRAY:
 243       {
 244         Symbol* name = sig_type->as_symbol(CHECK_0);
 245         // Create another symbol to save as signature stream unreferences
 246         // this symbol.
 247         Symbol* name_copy =
 248           create_temporary_symbol(name, 0, name->utf8_length(), CHECK_0);
 249         assert(name_copy == name, "symbols don't match");
 250         *inference_type =
 251           VerificationType::reference_type(name_copy);
 252         return 1;
 253       }
 254     case T_LONG:




  71 // StackMapTable is stack allocated.
  72 // StackMapFrame are resource allocated. There is only one ResourceMark
  73 // for each class verification, which is created at the top level.
  74 // There is one mutable StackMapFrame (current_frame) which is updated
  75 // by abstract bytecode interpretation. frame_in_exception_handler() returns
  76 // a frame that has a mutable one-item stack (ready for pushing the
  77 // catch type exception object). All the other StackMapFrame's
  78 // are immutable (including their locals and stack arrays) after
  79 // their constructions.
  80 // locals/stack arrays in StackMapFrame are resource allocated.
  81 // locals/stack arrays can be shared between StackMapFrame's, except
  82 // the mutable StackMapFrame (current_frame).
  83 
  84 // These macros are used similarly to CHECK macros but also check
  85 // the status of the verifier and return if that has an error.
  86 #define CHECK_VERIFY(verifier) \
  87   CHECK); if ((verifier)->has_error()) return; (0
  88 #define CHECK_VERIFY_(verifier, result) \
  89   CHECK_(result)); if ((verifier)->has_error()) return (result); (0
  90 
  91 class TypeOrigin VALUE_OBJ_CLASS_SPEC {
  92  private:
  93   typedef enum {
  94     CF_LOCALS,  // Comes from the current frame locals
  95     CF_STACK,   // Comes from the current frame expression stack
  96     SM_LOCALS,  // Comes from stackmap locals
  97     SM_STACK,   // Comes from stackmap exporession stack
  98     CONST_POOL, // Comes from the constant pool
  99     SIG,        // Comes from method signature
 100     IMPLICIT,   // Comes implicitly from code or context
 101     BAD_INDEX,  // No type, but the index is bad
 102     FRAME_ONLY, // No type, context just contains the frame
 103     NONE
 104   } Origin;
 105 
 106   Origin _origin;
 107   u2 _index;              // local, stack, or constant pool index
 108   StackMapFrame* _frame;  // source frame if CF or SM
 109   VerificationType _type; // The actual type
 110 
 111   TypeOrigin(
 112       Origin origin, u2 index, StackMapFrame* frame, VerificationType type)
 113       : _origin(origin), _index(index), _frame(frame), _type(type) {}
 114 
 115  public:
 116   TypeOrigin() : _origin(NONE), _index(0), _frame(NULL) {}
 117 
 118   static TypeOrigin null();
 119   static TypeOrigin local(u2 index, StackMapFrame* frame);
 120   static TypeOrigin stack(u2 index, StackMapFrame* frame);
 121   static TypeOrigin sm_local(u2 index, StackMapFrame* frame);
 122   static TypeOrigin sm_stack(u2 index, StackMapFrame* frame);
 123   static TypeOrigin cp(u2 index, VerificationType vt);
 124   static TypeOrigin signature(VerificationType vt);
 125   static TypeOrigin bad_index(u2 index);
 126   static TypeOrigin implicit(VerificationType t);
 127   static TypeOrigin frame(StackMapFrame* frame);
 128 
 129   void reset_frame();
 130   void details(outputStream* ss);
 131   void print_frame(outputStream* ss);
 132   StackMapFrame* frame() { return _frame; }
 133   bool is_valid() const { return _origin != NONE; }
 134   u2 index() const { return _index; }
 135 
 136 #ifdef ASSERT
 137   void print(outputStream* str);
 138 #endif
 139 };
 140 
 141 class ErrorContext VALUE_OBJ_CLASS_SPEC {
 142  private:
 143   typedef enum {
 144     INVALID_BYTECODE,     // there was a problem with the bytecode
 145     WRONG_TYPE,           // Type value was not as expected
 146     FLAGS_MISMATCH,       // Frame flags are not assignable
 147     BAD_CP_INDEX,         // Invalid constant pool index
 148     BAD_LOCAL_INDEX,      // Invalid local index
 149     LOCALS_SIZE_MISMATCH, // Frames have differing local counts
 150     STACK_SIZE_MISMATCH,  // Frames have different stack sizes
 151     STACK_OVERFLOW,       // Attempt to push onto a full expression stack
 152     STACK_UNDERFLOW,      // Attempt to pop and empty expression stack
 153     MISSING_STACKMAP,     // No stackmap for this location and there should be
 154     BAD_STACKMAP,         // Format error in stackmap
 155     NO_ERROR,             // No error
 156     UNKNOWN
 157   } FaultType;
 158 
 159   int _bci;
 160   FaultType _fault;
 161   TypeOrigin _type;
 162   TypeOrigin _expected;
 163 
 164   ErrorContext(int bci, FaultType fault) :
 165       _bci(bci), _fault(fault)  {}
 166   ErrorContext(int bci, FaultType fault, TypeOrigin type) :
 167       _bci(bci), _fault(fault), _type(type)  {}
 168   ErrorContext(int bci, FaultType fault, TypeOrigin type, TypeOrigin exp) :
 169       _bci(bci), _fault(fault), _type(type), _expected(exp)  {}
 170 
 171  public:
 172   ErrorContext() : _bci(-1), _fault(NO_ERROR) {}
 173 
 174   static ErrorContext bad_code(u2 bci) {
 175     return ErrorContext(bci, INVALID_BYTECODE);
 176   }
 177   static ErrorContext bad_type(u2 bci, TypeOrigin type) {
 178     return ErrorContext(bci, WRONG_TYPE, type);
 179   }
 180   static ErrorContext bad_type(u2 bci, TypeOrigin type, TypeOrigin exp) {
 181     return ErrorContext(bci, WRONG_TYPE, type, exp);
 182   }
 183   static ErrorContext bad_flags(u2 bci, StackMapFrame* frame) {
 184     return ErrorContext(bci, FLAGS_MISMATCH, TypeOrigin::frame(frame));
 185   }
 186   static ErrorContext bad_flags(u2 bci, StackMapFrame* cur, StackMapFrame* sm) {
 187     return ErrorContext(bci, FLAGS_MISMATCH,
 188                         TypeOrigin::frame(cur), TypeOrigin::frame(sm));
 189   }
 190   static ErrorContext bad_cp_index(u2 bci, u2 index) {
 191     return ErrorContext(bci, BAD_CP_INDEX, TypeOrigin::bad_index(index));
 192   }
 193   static ErrorContext bad_local_index(u2 bci, u2 index) {
 194     return ErrorContext(bci, BAD_LOCAL_INDEX, TypeOrigin::bad_index(index));
 195   }
 196   static ErrorContext locals_size_mismatch(
 197       u2 bci, StackMapFrame* frame0, StackMapFrame* frame1) {
 198     return ErrorContext(bci, LOCALS_SIZE_MISMATCH,
 199         TypeOrigin::frame(frame0), TypeOrigin::frame(frame1));
 200   }
 201   static ErrorContext stack_size_mismatch(
 202       u2 bci, StackMapFrame* frame0, StackMapFrame* frame1) {
 203     return ErrorContext(bci, STACK_SIZE_MISMATCH,
 204         TypeOrigin::frame(frame0), TypeOrigin::frame(frame1));
 205   }
 206   static ErrorContext stack_overflow(u2 bci, StackMapFrame* frame) {
 207     return ErrorContext(bci, STACK_OVERFLOW, TypeOrigin::frame(frame));
 208   }
 209   static ErrorContext stack_underflow(u2 bci, StackMapFrame* frame) {
 210     return ErrorContext(bci, STACK_UNDERFLOW, TypeOrigin::frame(frame));
 211   }
 212   static ErrorContext missing_stackmap(u2 bci) {
 213     return ErrorContext(bci, MISSING_STACKMAP);
 214   }
 215   static ErrorContext bad_stackmap(int index, StackMapFrame* frame) {
 216     return ErrorContext(0, BAD_STACKMAP, TypeOrigin::frame(frame));
 217   }
 218 
 219   bool is_valid() { return _fault != NO_ERROR; }
 220   int bci() const { return _bci; }
 221 
 222   void reset_frames() {
 223     _type.reset_frame();
 224     _expected.reset_frame();
 225   }
 226 
 227   void details(outputStream* ss, methodOop method);
 228 
 229 #ifdef ASSERT
 230   void print(outputStream* str) {
 231     str->print("error_context(%d, %d,", _bci, _fault);
 232     _type.print(str);
 233     str->print(",");
 234     _expected.print(str);
 235     str->print(")");
 236   }
 237 #endif
 238 
 239  private:
 240   void location_details(outputStream* ss, methodOop method);
 241   void reason_details(outputStream* ss);
 242   void frame_details(outputStream* ss);
 243   void bytecode_details(outputStream* ss, methodOop method);
 244   void handler_details(outputStream* ss, methodOop method);
 245   void stackmap_details(outputStream* ss, methodOop method);
 246 };
 247 
 248 // A new instance of this class is created for each class being verified
 249 class ClassVerifier : public StackObj {
 250  private:
 251   Thread* _thread;
 252   GrowableArray<Symbol*>* _symbols;  // keep a list of symbols created
 253 
 254   Symbol* _exception_type;
 255   char* _message;
 256 
 257   ErrorContext _error_context;  // contains information about an error
 258 
 259   void verify_method(methodHandle method, TRAPS);
 260   char* generate_code_data(methodHandle m, u4 code_length, TRAPS);
 261   void verify_exception_handler_table(u4 code_length, char* code_data,
 262                                       int& min, int& max, TRAPS);
 263   void verify_local_variable_table(u4 code_length, char* code_data, TRAPS);
 264 
 265   VerificationType cp_ref_index_to_type(
 266       int index, constantPoolHandle cp, TRAPS) {
 267     return cp_index_to_type(cp->klass_ref_index_at(index), cp, THREAD);
 268   }
 269 
 270   bool is_protected_access(
 271     instanceKlassHandle this_class, klassOop target_class,
 272     Symbol* field_name, Symbol* field_sig, bool is_method);
 273 
 274   void verify_cp_index(u2 bci, constantPoolHandle cp, int index, TRAPS);
 275   void verify_cp_type(u2 bci, int index, constantPoolHandle cp,
 276       unsigned int types, TRAPS);
 277   void verify_cp_class_type(u2 bci, int index, constantPoolHandle cp, TRAPS);
 278 
 279   u2 verify_stackmap_table(
 280     u2 stackmap_index, u2 bci, StackMapFrame* current_frame,
 281     StackMapTable* stackmap_table, bool no_control_flow, TRAPS);
 282 
 283   void verify_exception_handler_targets(
 284     u2 bci, bool this_uninit, StackMapFrame* current_frame,
 285     StackMapTable* stackmap_table, TRAPS);
 286 
 287   void verify_ldc(
 288     int opcode, u2 index, StackMapFrame *current_frame,
 289     constantPoolHandle cp, u2 bci, TRAPS);
 290 
 291   void verify_switch(
 292     RawBytecodeStream* bcs, u4 code_length, char* code_data,
 293     StackMapFrame* current_frame, StackMapTable* stackmap_table, TRAPS);
 294 
 295   void verify_field_instructions(
 296     RawBytecodeStream* bcs, StackMapFrame* current_frame,
 297     constantPoolHandle cp, TRAPS);
 298 
 299   void verify_invoke_init(
 300     RawBytecodeStream* bcs, u2 ref_index, VerificationType ref_class_type,
 301     StackMapFrame* current_frame, u4 code_length, bool* this_uninit,
 302     constantPoolHandle cp, TRAPS);
 303 
 304   void verify_invoke_instructions(
 305     RawBytecodeStream* bcs, u4 code_length, StackMapFrame* current_frame,
 306     bool* this_uninit, VerificationType return_type,
 307     constantPoolHandle cp, TRAPS);
 308 
 309   VerificationType get_newarray_type(u2 index, u2 bci, TRAPS);
 310   void verify_anewarray(u2 bci, u2 index, constantPoolHandle cp,
 311       StackMapFrame* current_frame, TRAPS);
 312   void verify_return_value(
 313       VerificationType return_type, VerificationType type, u2 offset,
 314       StackMapFrame* current_frame, TRAPS);
 315 
 316   void verify_iload (u2 index, StackMapFrame* current_frame, TRAPS);
 317   void verify_lload (u2 index, StackMapFrame* current_frame, TRAPS);
 318   void verify_fload (u2 index, StackMapFrame* current_frame, TRAPS);
 319   void verify_dload (u2 index, StackMapFrame* current_frame, TRAPS);
 320   void verify_aload (u2 index, StackMapFrame* current_frame, TRAPS);
 321   void verify_istore(u2 index, StackMapFrame* current_frame, TRAPS);
 322   void verify_lstore(u2 index, StackMapFrame* current_frame, TRAPS);
 323   void verify_fstore(u2 index, StackMapFrame* current_frame, TRAPS);
 324   void verify_dstore(u2 index, StackMapFrame* current_frame, TRAPS);
 325   void verify_astore(u2 index, StackMapFrame* current_frame, TRAPS);
 326   void verify_iinc  (u2 index, StackMapFrame* current_frame, TRAPS);
 327 
 328   bool name_in_supers(Symbol* ref_name, instanceKlassHandle current);
 329 
 330   VerificationType object_type() const;
 331 
 332   instanceKlassHandle _klass;  // the class being verified
 333   methodHandle        _method; // current method being verified
 334   VerificationType    _this_type; // the verification type of the current class
 335 
 336   // Some recursive calls from the verifier to the name resolver
 337   // can cause the current class to be re-verified and rewritten.
 338   // If this happens, the original verification should not continue,
 339   // because constant pool indexes will have changed.
 340   // The rewriter is preceded by the verifier.  If the verifier throws
 341   // an error, rewriting is prevented.  Also, rewriting always precedes
 342   // bytecode execution or compilation.  Thus, is_rewritten implies
 343   // that a class has been verified and prepared for execution.
 344   bool was_recursively_verified() { return _klass->is_rewritten(); }
 345 
 346  public:
 347   enum {
 348     BYTECODE_OFFSET = 1,
 349     NEW_OFFSET = 2
 350   };
 351 
 352   // constructor
 353   ClassVerifier(instanceKlassHandle klass, TRAPS);
 354 
 355   // destructor
 356   ~ClassVerifier();
 357 
 358   Thread* thread()             { return _thread; }
 359   methodHandle method()        { return _method; }
 360   instanceKlassHandle current_class() const { return _klass; }
 361   VerificationType current_type() const { return _this_type; }
 362 
 363   // Verifies the class.  If a verify or class file format error occurs,
 364   // the '_exception_name' symbols will set to the exception name and
 365   // the message_buffer will be filled in with the exception message.
 366   void verify_class(TRAPS);
 367 
 368   // Return status modes
 369   Symbol* result() const { return _exception_type; }
 370   bool has_error() const { return result() != NULL; }
 371   char* exception_message() {
 372     stringStream ss;
 373     ss.print(_message);
 374     _error_context.details(&ss, _method());
 375     return ss.as_string();
 376   }
 377 
 378   // Called when verify or class format errors are encountered.
 379   // May throw an exception based upon the mode.
 380   void verify_error(ErrorContext ctx, const char* fmt, ...);

 381   void class_format_error(const char* fmt, ...);

 382 
 383   klassOop load_class(Symbol* name, TRAPS);
 384 
 385   int change_sig_to_verificationType(
 386     SignatureStream* sig_type, VerificationType* inference_type, TRAPS);
 387 
 388   VerificationType cp_index_to_type(int index, constantPoolHandle cp, TRAPS) {
 389     return VerificationType::reference_type(cp->klass_name_at(index));
 390   }
 391 
 392   // Keep a list of temporary symbols created during verification because
 393   // their reference counts need to be decrememented when the verifier object
 394   // goes out of scope.  Since these symbols escape the scope in which they're
 395   // created, we can't use a TempNewSymbol.
 396   Symbol* create_temporary_symbol(
 397       const Symbol* s, int begin, int end, TRAPS);
 398   Symbol* create_temporary_symbol(const char *s, int length, TRAPS);
 399 
 400   TypeOrigin ref_ctx(const char* str, TRAPS);
 401 };
 402 
 403 inline int ClassVerifier::change_sig_to_verificationType(
 404     SignatureStream* sig_type, VerificationType* inference_type, TRAPS) {
 405   BasicType bt = sig_type->type();
 406   switch (bt) {
 407     case T_OBJECT:
 408     case T_ARRAY:
 409       {
 410         Symbol* name = sig_type->as_symbol(CHECK_0);
 411         // Create another symbol to save as signature stream unreferences
 412         // this symbol.
 413         Symbol* name_copy =
 414           create_temporary_symbol(name, 0, name->utf8_length(), CHECK_0);
 415         assert(name_copy == name, "symbols don't match");
 416         *inference_type =
 417           VerificationType::reference_type(name_copy);
 418         return 1;
 419       }
 420     case T_LONG:


src/share/vm/classfile/verifier.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File