hotspot/src/share/vm/classfile/verificationType.cpp
author coleenp
Thu, 27 Jan 2011 16:11:27 -0800
changeset 8076 96d498ec7ae1
parent 7397 5b173b4ca846
child 8921 14bfe81f2a9d
permissions -rw-r--r--
6990754: Use native memory and reference counting to implement SymbolTable Summary: move symbols from permgen into C heap and reference count them Reviewed-by: never, acorn, jmasa, stefank
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6473
diff changeset
     2
 * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6473
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6473
diff changeset
    26
#include "classfile/symbolTable.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6473
diff changeset
    27
#include "classfile/verificationType.hpp"
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    28
#include "classfile/verifier.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
VerificationType VerificationType::from_tag(u1 tag) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
  switch (tag) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
    case ITEM_Top:     return bogus_type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
    case ITEM_Integer: return integer_type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
    case ITEM_Float:   return float_type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
    case ITEM_Double:  return double_type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
    case ITEM_Long:    return long_type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
    case ITEM_Null:    return null_type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
    default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
      ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
      return bogus_type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
bool VerificationType::is_reference_assignable_from(
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    45
    const VerificationType& from, ClassVerifier* context, TRAPS) const {
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    46
  instanceKlassHandle klass = context->current_class();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  if (from.is_null()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
    // null is assignable to any reference
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  } else if (is_null()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  } else if (name() == from.name()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  } else if (is_object()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
    // We need check the class hierarchy to check assignability
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
    if (name() == vmSymbols::java_lang_Object()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
      // any object or array is assignable to java.lang.Object
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
    }
6473
04e6d80f38b1 6975210: java.lang.VerifyError in some of JCK tests
kamg
parents: 6172
diff changeset
    60
    klassOop obj = SystemDictionary::resolve_or_fail(
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    61
        name(), Handle(THREAD, klass->class_loader()),
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    62
        Handle(THREAD, klass->protection_domain()), true, CHECK_false);
6473
04e6d80f38b1 6975210: java.lang.VerifyError in some of JCK tests
kamg
parents: 6172
diff changeset
    63
    KlassHandle this_class(THREAD, obj);
04e6d80f38b1 6975210: java.lang.VerifyError in some of JCK tests
kamg
parents: 6172
diff changeset
    64
04e6d80f38b1 6975210: java.lang.VerifyError in some of JCK tests
kamg
parents: 6172
diff changeset
    65
    if (this_class->is_interface()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
      // We treat interfaces as java.lang.Object, including
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
      // java.lang.Cloneable and java.io.Serializable
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
    } else if (from.is_object()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
      klassOop from_class = SystemDictionary::resolve_or_fail(
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    71
          from.name(), Handle(THREAD, klass->class_loader()),
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    72
          Handle(THREAD, klass->protection_domain()), true, CHECK_false);
6473
04e6d80f38b1 6975210: java.lang.VerifyError in some of JCK tests
kamg
parents: 6172
diff changeset
    73
      return instanceKlass::cast(from_class)->is_subclass_of(this_class());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  } else if (is_array() && from.is_array()) {
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    76
    VerificationType comp_this = get_component(context, CHECK_false);
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    77
    VerificationType comp_from = from.get_component(context, CHECK_false);
6172
e1d9c632fa3c 6964170: Verifier crashes
apangin
parents: 5547
diff changeset
    78
    if (!comp_this.is_bogus() && !comp_from.is_bogus()) {
e1d9c632fa3c 6964170: Verifier crashes
apangin
parents: 5547
diff changeset
    79
      return comp_this.is_assignable_from(comp_from, context, CHECK_false);
e1d9c632fa3c 6964170: Verifier crashes
apangin
parents: 5547
diff changeset
    80
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    85
VerificationType VerificationType::get_component(ClassVerifier *context, TRAPS) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  assert(is_array() && name()->utf8_length() >= 2, "Must be a valid array");
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    87
  Symbol* component;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  switch (name()->byte_at(1)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
    case 'Z': return VerificationType(Boolean);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    case 'B': return VerificationType(Byte);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    case 'C': return VerificationType(Char);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    case 'S': return VerificationType(Short);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
    case 'I': return VerificationType(Integer);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
    case 'J': return VerificationType(Long);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
    case 'F': return VerificationType(Float);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
    case 'D': return VerificationType(Double);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
    case '[':
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    98
      component = context->create_temporary_symbol(
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
        name(), 1, name()->utf8_length(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
        CHECK_(VerificationType::bogus_type()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
      return VerificationType::reference_type(component);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
    case 'L':
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   103
      component = context->create_temporary_symbol(
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
        name(), 2, name()->utf8_length() - 1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
        CHECK_(VerificationType::bogus_type()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
      return VerificationType::reference_type(component);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
    default:
6172
e1d9c632fa3c 6964170: Verifier crashes
apangin
parents: 5547
diff changeset
   108
      // Met an invalid type signature, e.g. [X
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
      return VerificationType::bogus_type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
void VerificationType::print_on(outputStream* st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  switch (_u._data) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
    case Bogus:            st->print(" bogus "); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
    case Category1:        st->print(" category1 "); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
    case Category2:        st->print(" category2 "); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
    case Category2_2nd:    st->print(" category2_2nd "); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
    case Boolean:          st->print(" boolean "); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    case Byte:             st->print(" byte "); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
    case Short:            st->print(" short "); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    case Char:             st->print(" char "); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
    case Integer:          st->print(" integer "); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
    case Float:            st->print(" float "); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
    case Long:             st->print(" long "); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
    case Double:           st->print(" double "); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
    case Long_2nd:         st->print(" long_2nd "); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    case Double_2nd:       st->print(" double_2nd "); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
    case Null:             st->print(" null "); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
    default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
      if (is_uninitialized_this()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
        st->print(" uninitializedThis ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
      } else if (is_uninitialized()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
        st->print(" uninitialized %d ", bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
        st->print(" class %s ", name()->as_klass_external_name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
#endif