src/share/vm/classfile/verifier.hpp

Thu, 22 May 2014 15:52:41 -0400

author
drchase
date
Thu, 22 May 2014 15:52:41 -0400
changeset 6680
78bbf4d43a14
parent 6132
22eaa15b7960
child 6782
f73af4455d7d
permissions
-rw-r--r--

8037816: Fix for 8036122 breaks build with Xcode5/clang
8043029: Change 8037816 breaks HS build with older GCC versions which don't support diagnostic pragmas
8043164: Format warning in traceStream.hpp
Summary: Backport of main fix + two corrections, enables clang compilation, turns on format attributes, corrects/mutes warnings
Reviewed-by: kvn, coleenp, iveresov, twisti

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

mercurial