hotspot/src/share/vm/runtime/reflection.cpp
author mgronlun
Tue, 08 Dec 2015 20:04:03 +0100
changeset 34666 1c7168ea0034
parent 34238 60e87df08f1e
child 35219 b9ef87beb87c
permissions -rw-r--r--
8140485: Class load and creation cleanup Reviewed-by: hseigel, coleenp, sspitsyn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
29081
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 27685
diff changeset
     2
 * Copyright (c) 1997, 2015, 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: 4581
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4581
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: 4581
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: 5547
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#include "classfile/javaClasses.hpp"
24426
0a69c8cdfca9 8038654: Separate SymbolTable and StringTable code
gziemski
parents: 22897
diff changeset
    27
#include "classfile/stringTable.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "classfile/systemDictionary.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "classfile/verifier.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "classfile/vmSymbols.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "interpreter/linkResolver.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
#include "memory/oopFactory.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    33
#include "memory/resourceArea.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    34
#include "memory/universe.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    35
#include "oops/instanceKlass.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    36
#include "oops/objArrayKlass.hpp"
29081
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 27685
diff changeset
    37
#include "oops/objArrayOop.inline.hpp"
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 27685
diff changeset
    38
#include "oops/oop.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    39
#include "prims/jvm.h"
22897
77e1024a4a14 4505697: nsk/jdi/ExceptionEvent/_itself_/exevent006 and exevent008 tests fail with InvocationTargetException
jbachorik
parents: 22551
diff changeset
    40
#include "prims/jvmtiExport.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    41
#include "runtime/arguments.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    42
#include "runtime/handles.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    43
#include "runtime/javaCalls.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    44
#include "runtime/reflection.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    45
#include "runtime/reflectionUtils.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    46
#include "runtime/signature.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    47
#include "runtime/vframe.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
    49
static void trace_class_resolution(const Klass* to_class) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  int line_number = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  const char * source_file = NULL;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    53
  Klass* caller = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  JavaThread* jthread = JavaThread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  if (jthread->has_last_Java_frame()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
    vframeStream vfst(jthread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
    // skip over any frames belonging to java.lang.Class
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
    while (!vfst.at_end() &&
14391
df0a1573d5bd 8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents: 14385
diff changeset
    59
           vfst.method()->method_holder()->name() == vmSymbols::java_lang_Class()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
      vfst.next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
    if (!vfst.at_end()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
      // this frame is a likely suspect
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
      caller = vfst.method()->method_holder();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
      line_number = vfst.method()->line_number_from_bci(vfst.bci());
14391
df0a1573d5bd 8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents: 14385
diff changeset
    66
      Symbol* s = vfst.method()->method_holder()->source_file_name();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
      if (s != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
        source_file = s->as_C_string();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  if (caller != NULL) {
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
    73
    const char * from = caller->external_name();
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
    74
    const char * to = to_class->external_name();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
    // print in a single call to reduce interleaving between threads
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
    if (source_file != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
      tty->print("RESOLVE %s %s %s:%d (reflection)\n", from, to, source_file, line_number);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
      tty->print("RESOLVE %s %s (reflection)\n", from, to);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
oop Reflection::box(jvalue* value, BasicType type, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  if (type == T_VOID) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  if (type == T_OBJECT || type == T_ARRAY) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    // regular objects are not boxed
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    return (oop) value->l;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  oop result = java_lang_boxing_object::create(type, value, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  if (result == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
    THROW_(vmSymbols::java_lang_IllegalArgumentException(), result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
BasicType Reflection::unbox_for_primitive(oop box, jvalue* value, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  if (box == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    THROW_(vmSymbols::java_lang_IllegalArgumentException(), T_ILLEGAL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  return java_lang_boxing_object::get_value(box, value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
BasicType Reflection::unbox_for_regular_object(oop box, jvalue* value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  // Note:  box is really the unboxed oop.  It might even be a Short, etc.!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  value->l = (jobject) box;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  return T_OBJECT;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
void Reflection::widen(jvalue* value, BasicType current_type, BasicType wide_type, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  assert(wide_type != current_type, "widen should not be called with identical types");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  switch (wide_type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
    case T_BOOLEAN:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
    case T_BYTE:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
    case T_CHAR:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
      break;  // fail
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    case T_SHORT:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
      switch (current_type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
        case T_BYTE:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
          value->s = (jshort) value->b;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
          return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
      break;  // fail
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
    case T_INT:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
      switch (current_type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
        case T_BYTE:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
          value->i = (jint) value->b;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
          return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
        case T_CHAR:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
          value->i = (jint) value->c;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
          return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
        case T_SHORT:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
          value->i = (jint) value->s;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
          return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
      break;  // fail
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
    case T_LONG:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
      switch (current_type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
        case T_BYTE:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
          value->j = (jlong) value->b;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
          return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
        case T_CHAR:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
          value->j = (jlong) value->c;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
          return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
        case T_SHORT:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
          value->j = (jlong) value->s;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
          return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
        case T_INT:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
          value->j = (jlong) value->i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
          return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
      break;  // fail
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
    case T_FLOAT:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
      switch (current_type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
        case T_BYTE:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
          value->f = (jfloat) value->b;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
          return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
        case T_CHAR:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
          value->f = (jfloat) value->c;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
          return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
        case T_SHORT:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
          value->f = (jfloat) value->s;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
          return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
        case T_INT:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
          value->f = (jfloat) value->i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
          return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
        case T_LONG:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
          value->f = (jfloat) value->j;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
          return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
      break;  // fail
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
    case T_DOUBLE:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
      switch (current_type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
        case T_BYTE:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
          value->d = (jdouble) value->b;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
          return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
        case T_CHAR:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
          value->d = (jdouble) value->c;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
          return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
        case T_SHORT:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
          value->d = (jdouble) value->s;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
          return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
        case T_INT:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
          value->d = (jdouble) value->i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
          return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
        case T_FLOAT:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
          value->d = (jdouble) value->f;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
          return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
        case T_LONG:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
          value->d = (jdouble) value->j;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
          return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
      break;  // fail
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
    default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
      break;  // fail
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  THROW_MSG(vmSymbols::java_lang_IllegalArgumentException(), "argument type mismatch");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
BasicType Reflection::array_get(jvalue* value, arrayOop a, int index, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  if (!a->is_within_bounds(index)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
    THROW_(vmSymbols::java_lang_ArrayIndexOutOfBoundsException(), T_ILLEGAL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  if (a->is_objArray()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
    value->l = (jobject) objArrayOop(a)->obj_at(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
    return T_OBJECT;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
    assert(a->is_typeArray(), "just checking");
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
   215
    BasicType type = TypeArrayKlass::cast(a->klass())->element_type();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
    switch (type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
      case T_BOOLEAN:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
        value->z = typeArrayOop(a)->bool_at(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
      case T_CHAR:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
        value->c = typeArrayOop(a)->char_at(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
      case T_FLOAT:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
        value->f = typeArrayOop(a)->float_at(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
      case T_DOUBLE:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
        value->d = typeArrayOop(a)->double_at(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
      case T_BYTE:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
        value->b = typeArrayOop(a)->byte_at(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
      case T_SHORT:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
        value->s = typeArrayOop(a)->short_at(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
      case T_INT:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
        value->i = typeArrayOop(a)->int_at(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
      case T_LONG:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
        value->j = typeArrayOop(a)->long_at(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
      default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
        return T_ILLEGAL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
    return type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
void Reflection::array_set(jvalue* value, arrayOop a, int index, BasicType value_type, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  if (!a->is_within_bounds(index)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
    THROW(vmSymbols::java_lang_ArrayIndexOutOfBoundsException());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  if (a->is_objArray()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
    if (value_type == T_OBJECT) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
      oop obj = (oop) value->l;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
      if (obj != NULL) {
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
   257
        Klass* element_klass = ObjArrayKlass::cast(a->klass())->element_klass();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
        if (!obj->is_a(element_klass)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
          THROW_MSG(vmSymbols::java_lang_IllegalArgumentException(), "array element type mismatch");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
      objArrayOop(a)->obj_at_put(index, obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
    assert(a->is_typeArray(), "just checking");
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
   266
    BasicType array_type = TypeArrayKlass::cast(a->klass())->element_type();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
    if (array_type != value_type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
      // The widen operation can potentially throw an exception, but cannot block,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
      // so typeArrayOop a is safe if the call succeeds.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
      widen(value, value_type, array_type, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
    switch (array_type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
      case T_BOOLEAN:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
        typeArrayOop(a)->bool_at_put(index, value->z);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
      case T_CHAR:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
        typeArrayOop(a)->char_at_put(index, value->c);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
      case T_FLOAT:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
        typeArrayOop(a)->float_at_put(index, value->f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
      case T_DOUBLE:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
        typeArrayOop(a)->double_at_put(index, value->d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
      case T_BYTE:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
        typeArrayOop(a)->byte_at_put(index, value->b);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
      case T_SHORT:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
        typeArrayOop(a)->short_at_put(index, value->s);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
      case T_INT:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
        typeArrayOop(a)->int_at_put(index, value->i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
      case T_LONG:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
        typeArrayOop(a)->long_at_put(index, value->j);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
      default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
        THROW(vmSymbols::java_lang_IllegalArgumentException());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   303
static Klass* basic_type_mirror_to_arrayklass(oop basic_type_mirror, TRAPS) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  assert(java_lang_Class::is_primitive(basic_type_mirror), "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  BasicType type = java_lang_Class::primitive_type(basic_type_mirror);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  if (type == T_VOID) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
    THROW_0(vmSymbols::java_lang_IllegalArgumentException());
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   308
  }
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   309
  else {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
    return Universe::typeArrayKlassObj(type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   314
#ifdef ASSERT
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   315
static oop basic_type_arrayklass_to_mirror(Klass* basic_type_arrayklass, TRAPS) {
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
   316
  BasicType type = TypeArrayKlass::cast(basic_type_arrayklass)->element_type();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  return Universe::java_mirror(type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
}
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   319
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
arrayOop Reflection::reflect_new_array(oop element_mirror, jint length, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  if (element_mirror == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
    THROW_0(vmSymbols::java_lang_NullPointerException());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  if (length < 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
    THROW_0(vmSymbols::java_lang_NegativeArraySizeException());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
  if (java_lang_Class::is_primitive(element_mirror)) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   329
    Klass* tak = basic_type_mirror_to_arrayklass(element_mirror, CHECK_NULL);
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
   330
    return TypeArrayKlass::cast(tak)->allocate(length, THREAD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
  } else {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   332
    Klass* k = java_lang_Class::as_Klass(element_mirror);
33611
9abd65805e19 8139203: Consistent naming for klass type predicates
coleenp
parents: 33602
diff changeset
   333
    if (k->is_array_klass() && ArrayKlass::cast(k)->dimension() >= MAX_DIM) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
      THROW_0(vmSymbols::java_lang_IllegalArgumentException());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
    return oopFactory::new_objArray(k, length, THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
arrayOop Reflection::reflect_new_multi_array(oop element_mirror, typeArrayOop dim_array, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  assert(dim_array->is_typeArray(), "just checking");
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
   343
  assert(TypeArrayKlass::cast(dim_array->klass())->element_type() == T_INT, "just checking");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  if (element_mirror == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
    THROW_0(vmSymbols::java_lang_NullPointerException());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  int len = dim_array->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  if (len <= 0 || len > MAX_DIM) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
    THROW_0(vmSymbols::java_lang_IllegalArgumentException());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  jint dimensions[MAX_DIM];   // C array copy of intArrayOop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  for (int i = 0; i < len; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
    int d = dim_array->int_at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
    if (d < 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
      THROW_0(vmSymbols::java_lang_NegativeArraySizeException());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
    dimensions[i] = d;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   363
  Klass* klass;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
  int dim = len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
  if (java_lang_Class::is_primitive(element_mirror)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
    klass = basic_type_mirror_to_arrayklass(element_mirror, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
  } else {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   368
    klass = java_lang_Class::as_Klass(element_mirror);
33611
9abd65805e19 8139203: Consistent naming for klass type predicates
coleenp
parents: 33602
diff changeset
   369
    if (klass->is_array_klass()) {
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
   370
      int k_dim = ArrayKlass::cast(klass)->dimension();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
      if (k_dim + len > MAX_DIM) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
        THROW_0(vmSymbols::java_lang_IllegalArgumentException());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
      dim += k_dim;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  }
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
   377
  klass = klass->array_klass(dim, CHECK_NULL);
17861
8f14da01157d 6726963: multi_allocate() call does not CHECK_NULL and causes crash in fastdebug bits
ctornqvi
parents: 17860
diff changeset
   378
  oop obj = ArrayKlass::cast(klass)->multi_allocate(len, dimensions, CHECK_NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  assert(obj->is_array(), "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  return arrayOop(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
oop Reflection::array_component_type(oop mirror, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  if (java_lang_Class::is_primitive(mirror)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   389
  Klass* klass = java_lang_Class::as_Klass(mirror);
33611
9abd65805e19 8139203: Consistent naming for klass type predicates
coleenp
parents: 33602
diff changeset
   390
  if (!klass->is_array_klass()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
26412
80741eb33ba2 8049105: Move array component mirror to instance of java/lang/Class (hotspot part 2)
coleenp
parents: 25057
diff changeset
   394
  oop result = java_lang_Class::component_mirror(mirror);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  oop result2 = NULL;
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
   397
  if (ArrayKlass::cast(klass)->dimension() == 1) {
33611
9abd65805e19 8139203: Consistent naming for klass type predicates
coleenp
parents: 33602
diff changeset
   398
    if (klass->is_typeArray_klass()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
      result2 = basic_type_arrayklass_to_mirror(klass, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
    } else {
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
   401
      result2 = ObjArrayKlass::cast(klass)->element_klass()->java_mirror();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
  } else {
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
   404
    Klass* lower_dim = ArrayKlass::cast(klass)->lower_dimension();
33611
9abd65805e19 8139203: Consistent naming for klass type predicates
coleenp
parents: 33602
diff changeset
   405
    assert(lower_dim->is_array_klass(), "just checking");
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
   406
    result2 = lower_dim->java_mirror();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
  assert(result == result2, "results must be consistent");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
#endif //ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   413
static bool under_host_klass(const InstanceKlass* ik, const Klass* host_klass) {
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   414
  DEBUG_ONLY(int inf_loop_check = 1000 * 1000 * 1000);
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   415
  for (;;) {
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   416
    const Klass* hc = (const Klass*)ik->host_klass();
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   417
    if (hc == NULL)        return false;
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   418
    if (hc == host_klass)  return true;
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   419
    ik = InstanceKlass::cast(hc);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   421
    // There's no way to make a host class loop short of patching memory.
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   422
    // Therefore there cannot be a loop here unless there's another bug.
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   423
    // Still, let's check for it.
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   424
    assert(--inf_loop_check > 0, "no host_klass loop");
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   425
  }
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   426
}
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   427
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   428
static bool can_relax_access_check_for(const Klass* accessor,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   429
                                       const Klass* accessee,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   430
                                       bool classloader_only) {
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   431
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   432
  const InstanceKlass* accessor_ik = InstanceKlass::cast(accessor);
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   433
  const InstanceKlass* accessee_ik = InstanceKlass::cast(accessee);
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   434
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   435
  // If either is on the other's host_klass chain, access is OK,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   436
  // because one is inside the other.
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   437
  if (under_host_klass(accessor_ik, accessee) ||
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   438
    under_host_klass(accessee_ik, accessor))
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   439
    return true;
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   440
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   441
  if ((RelaxAccessControlCheck &&
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   442
    accessor_ik->major_version() < Verifier::NO_RELAX_ACCESS_CTRL_CHECK_VERSION &&
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   443
    accessee_ik->major_version() < Verifier::NO_RELAX_ACCESS_CTRL_CHECK_VERSION) ||
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   444
    (accessor_ik->major_version() < Verifier::STRICTER_ACCESS_CTRL_CHECK_VERSION &&
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   445
    accessee_ik->major_version() < Verifier::STRICTER_ACCESS_CTRL_CHECK_VERSION)) {
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   446
    return classloader_only &&
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   447
      Verifier::relax_verify_for(accessor_ik->class_loader()) &&
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   448
      accessor_ik->protection_domain() == accessee_ik->protection_domain() &&
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   449
      accessor_ik->class_loader() == accessee_ik->class_loader();
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   450
  }
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   451
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   452
  return false;
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   453
}
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   454
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   455
bool Reflection::verify_class_access(const Klass* current_class,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   456
                                     const Klass* new_class,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   457
                                     bool classloader_only) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
  // Verify that current_class can access new_class.  If the classloader_only
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
  // flag is set, we automatically allow any accesses in which current_class
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
  // doesn't have a classloader.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
  if ((current_class == NULL) ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
      (current_class == new_class) ||
18508
3b95160639d8 8017571: JSR292: JVM crashing on assert "cast to instanceKlass" while producing MethodHandle for array methods with MethodHandle.findVirtual
twisti
parents: 17863
diff changeset
   463
      (new_class->is_public()) ||
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
      is_same_class_package(current_class, new_class)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
  }
25057
f38210f84f8c 8031819: Remove legacy jdk checks and code
hseigel
parents: 24456
diff changeset
   467
  // Allow all accesses from sun/reflect/MagicAccessorImpl subclasses to
f38210f84f8c 8031819: Remove legacy jdk checks and code
hseigel
parents: 24456
diff changeset
   468
  // succeed trivially.
f38210f84f8c 8031819: Remove legacy jdk checks and code
hseigel
parents: 24456
diff changeset
   469
  if (current_class->is_subclass_of(SystemDictionary::reflect_MagicAccessorImpl_klass())) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
  return can_relax_access_check_for(current_class, new_class, classloader_only);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   476
bool Reflection::verify_field_access(const Klass* current_class,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   477
                                     const Klass* resolved_class,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   478
                                     const Klass* field_class,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
                                     AccessFlags access,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
                                     bool classloader_only,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
                                     bool protected_restriction) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
  // Verify that current_class can access a field of field_class, where that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
  // field's access bits are "access".  We assume that we've already verified
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
  // that current_class can access field_class.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
  // If the classloader_only flag is set, we automatically allow any accesses
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
  // in which current_class doesn't have a classloader.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
  // "resolved_class" is the runtime type of "field_class". Sometimes we don't
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
  // need this distinction (e.g. if all we have is the runtime type, or during
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
  // class file parsing when we only care about the static type); in that case
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
  // callers should ensure that resolved_class == field_class.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
  if ((current_class == NULL) ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
      (current_class == field_class) ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
      access.is_public()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   500
  const Klass* host_class = current_class;
33611
9abd65805e19 8139203: Consistent naming for klass type predicates
coleenp
parents: 33602
diff changeset
   501
  while (host_class->is_instance_klass() &&
22215
579f4a1a4aa6 8027458: VM anonymous classes: wrong context for protected access checks
hseigel
parents: 21729
diff changeset
   502
         InstanceKlass::cast(host_class)->is_anonymous()) {
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   503
    const Klass* next_host_class = InstanceKlass::cast(host_class)->host_klass();
22215
579f4a1a4aa6 8027458: VM anonymous classes: wrong context for protected access checks
hseigel
parents: 21729
diff changeset
   504
    if (next_host_class == NULL)  break;
579f4a1a4aa6 8027458: VM anonymous classes: wrong context for protected access checks
hseigel
parents: 21729
diff changeset
   505
    host_class = next_host_class;
579f4a1a4aa6 8027458: VM anonymous classes: wrong context for protected access checks
hseigel
parents: 21729
diff changeset
   506
  }
579f4a1a4aa6 8027458: VM anonymous classes: wrong context for protected access checks
hseigel
parents: 21729
diff changeset
   507
  if (host_class == field_class) {
579f4a1a4aa6 8027458: VM anonymous classes: wrong context for protected access checks
hseigel
parents: 21729
diff changeset
   508
    return true;
579f4a1a4aa6 8027458: VM anonymous classes: wrong context for protected access checks
hseigel
parents: 21729
diff changeset
   509
  }
579f4a1a4aa6 8027458: VM anonymous classes: wrong context for protected access checks
hseigel
parents: 21729
diff changeset
   510
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
  if (access.is_protected()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
    if (!protected_restriction) {
22215
579f4a1a4aa6 8027458: VM anonymous classes: wrong context for protected access checks
hseigel
parents: 21729
diff changeset
   513
      // See if current_class (or outermost host class) is a subclass of field_class
27022
2db6fe33afc2 8036533: Method for correct defaults
hseigel
parents: 26412
diff changeset
   514
      // An interface may not access protected members of j.l.Object
2db6fe33afc2 8036533: Method for correct defaults
hseigel
parents: 26412
diff changeset
   515
      if (!host_class->is_interface() && host_class->is_subclass_of(field_class)) {
362
00cf4bffd828 6622385: Accessing protected static methods
kamg
parents: 224
diff changeset
   516
        if (access.is_static() || // static fields are ok, see 6622385
00cf4bffd828 6622385: Accessing protected static methods
kamg
parents: 224
diff changeset
   517
            current_class == resolved_class ||
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
            field_class == resolved_class ||
22215
579f4a1a4aa6 8027458: VM anonymous classes: wrong context for protected access checks
hseigel
parents: 21729
diff changeset
   519
            host_class->is_subclass_of(resolved_class) ||
579f4a1a4aa6 8027458: VM anonymous classes: wrong context for protected access checks
hseigel
parents: 21729
diff changeset
   520
            resolved_class->is_subclass_of(host_class)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
          return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
  if (!access.is_private() && is_same_class_package(current_class, field_class)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
25057
f38210f84f8c 8031819: Remove legacy jdk checks and code
hseigel
parents: 24456
diff changeset
   531
  // Allow all accesses from sun/reflect/MagicAccessorImpl subclasses to
f38210f84f8c 8031819: Remove legacy jdk checks and code
hseigel
parents: 24456
diff changeset
   532
  // succeed trivially.
f38210f84f8c 8031819: Remove legacy jdk checks and code
hseigel
parents: 24456
diff changeset
   533
  if (current_class->is_subclass_of(SystemDictionary::reflect_MagicAccessorImpl_klass())) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
  return can_relax_access_check_for(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
    current_class, field_class, classloader_only);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   541
bool Reflection::is_same_class_package(const Klass* class1, const Klass* class2) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   542
  return InstanceKlass::cast(class1)->is_same_class_package(class2);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
// Checks that the 'outer' klass has declared 'inner' as being an inner klass. If not,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
// throw an incompatible class change exception
2332
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 1550
diff changeset
   547
// If inner_is_member, require the inner to be a member of the outer.
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 1550
diff changeset
   548
// If !inner_is_member, require the inner to be anonymous (a non-member).
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 1550
diff changeset
   549
// Caller is responsible for figuring out in advance which case must be true.
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 1550
diff changeset
   550
void Reflection::check_for_inner_class(instanceKlassHandle outer, instanceKlassHandle inner,
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 1550
diff changeset
   551
                                       bool inner_is_member, TRAPS) {
12231
6a9cfc59a18a 7109878: The instanceKlass EnclosingMethhod attribute fields can be folded into the _inner_class field.
jiangli
parents: 10504
diff changeset
   552
  InnerClassesIterator iter(outer);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
  constantPoolHandle cp   (THREAD, outer->constants());
12231
6a9cfc59a18a 7109878: The instanceKlass EnclosingMethhod attribute fields can be folded into the _inner_class field.
jiangli
parents: 10504
diff changeset
   554
  for (; !iter.done(); iter.next()) {
6a9cfc59a18a 7109878: The instanceKlass EnclosingMethhod attribute fields can be folded into the _inner_class field.
jiangli
parents: 10504
diff changeset
   555
     int ioff = iter.inner_class_info_index();
6a9cfc59a18a 7109878: The instanceKlass EnclosingMethhod attribute fields can be folded into the _inner_class field.
jiangli
parents: 10504
diff changeset
   556
     int ooff = iter.outer_class_info_index();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
2332
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 1550
diff changeset
   558
     if (inner_is_member && ioff != 0 && ooff != 0) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   559
        Klass* o = cp->klass_at(ooff, CHECK);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
        if (o == outer()) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   561
          Klass* i = cp->klass_at(ioff, CHECK);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
          if (i == inner()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
            return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
     }
2332
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 1550
diff changeset
   567
     if (!inner_is_member && ioff != 0 && ooff == 0 &&
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 1550
diff changeset
   568
         cp->klass_name_at_matches(inner, ioff)) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   569
        Klass* i = cp->klass_at(ioff, CHECK);
2332
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 1550
diff changeset
   570
        if (i == inner()) {
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 1550
diff changeset
   571
          return;
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 1550
diff changeset
   572
        }
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 1550
diff changeset
   573
     }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
  // 'inner' not declared as an inner klass in outer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
  ResourceMark rm(THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
  Exceptions::fthrow(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
    THREAD_AND_LOCATION,
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   580
    vmSymbols::java_lang_IncompatibleClassChangeError(),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
    "%s and %s disagree on InnerClasses attribute",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
    outer->external_name(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
    inner->external_name()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
// Utility method converting a single SignatureStream element into java.lang.Class instance
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   588
static oop get_mirror_from_signature(methodHandle method,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   589
                                     SignatureStream* ss,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   590
                                     TRAPS) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   592
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   593
  if (T_OBJECT == ss->type() || T_ARRAY == ss->type()) {
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   594
    Symbol* name = ss->as_symbol(CHECK_NULL);
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   595
    oop loader = method->method_holder()->class_loader();
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   596
    oop protection_domain = method->method_holder()->protection_domain();
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   597
    const Klass* k = SystemDictionary::resolve_or_fail(name,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   598
                                                       Handle(THREAD, loader),
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   599
                                                       Handle(THREAD, protection_domain),
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   600
                                                       true,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   601
                                                       CHECK_NULL);
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   602
    if (TraceClassResolution) {
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   603
      trace_class_resolution(k);
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   604
    }
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   605
    return k->java_mirror();
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   606
  }
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   607
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   608
  assert(ss->type() != T_VOID || ss->at_return_type(),
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   609
    "T_VOID should only appear as return type");
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   610
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   611
  return java_lang_Class::primitive_mirror(ss->type());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   614
static objArrayHandle get_parameter_types(methodHandle method,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   615
                                          int parameter_count,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   616
                                          oop* return_type,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   617
                                          TRAPS) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
  // Allocate array holding parameter types (java.lang.Class instances)
4571
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 2332
diff changeset
   619
  objArrayOop m = oopFactory::new_objArray(SystemDictionary::Class_klass(), parameter_count, CHECK_(objArrayHandle()));
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   620
  objArrayHandle mirrors(THREAD, m);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
  int index = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
  // Collect parameter types
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   623
  ResourceMark rm(THREAD);
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   624
  Symbol*  signature = method->signature();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
  SignatureStream ss(signature);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
  while (!ss.at_return_type()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
    oop mirror = get_mirror_from_signature(method, &ss, CHECK_(objArrayHandle()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
    mirrors->obj_at_put(index++, mirror);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
    ss.next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
  assert(index == parameter_count, "invalid parameter count");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
  if (return_type != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
    // Collect return type as well
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
    assert(ss.at_return_type(), "return type should be present");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
    *return_type = get_mirror_from_signature(method, &ss, CHECK_(objArrayHandle()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
  return mirrors;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   640
static objArrayHandle get_exception_types(methodHandle method, TRAPS) {
27680
8ecc0871c18e 8064811: Use THREAD instead of CHECK_NULL in return statements
stefank
parents: 27677
diff changeset
   641
  return method->resolved_checked_exceptions(THREAD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   644
static Handle new_type(Symbol* signature, KlassHandle k, TRAPS) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
  // Basic types
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   646
  BasicType type = vmSymbols::signature_type(signature);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
  if (type != T_OBJECT) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
    return Handle(THREAD, Universe::java_mirror(type));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   651
  Klass* result =
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   652
    SystemDictionary::resolve_or_fail(signature,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   653
                                      Handle(THREAD, k->class_loader()),
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   654
                                      Handle(THREAD, k->protection_domain()),
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   655
                                      true, CHECK_(Handle()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
  if (TraceClassResolution) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
    trace_class_resolution(result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
   661
  oop nt = result->java_mirror();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
  return Handle(THREAD, nt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 31615
diff changeset
   666
oop Reflection::new_method(const methodHandle& method, bool for_constant_pool_access, TRAPS) {
25057
f38210f84f8c 8031819: Remove legacy jdk checks and code
hseigel
parents: 24456
diff changeset
   667
  // Allow sun.reflect.ConstantPool to refer to <clinit> methods as java.lang.reflect.Methods.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
  assert(!method()->is_initializer() ||
25057
f38210f84f8c 8031819: Remove legacy jdk checks and code
hseigel
parents: 24456
diff changeset
   669
         (for_constant_pool_access && method()->is_static()),
f38210f84f8c 8031819: Remove legacy jdk checks and code
hseigel
parents: 24456
diff changeset
   670
         "should call new_constructor instead");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
  instanceKlassHandle holder (THREAD, method->method_holder());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
  int slot = method->method_idnum();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   674
  Symbol*  signature  = method->signature();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
  int parameter_count = ArgumentCount(signature).size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
  oop return_type_oop = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
  objArrayHandle parameter_types = get_parameter_types(method, parameter_count, &return_type_oop, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
  if (parameter_types.is_null() || return_type_oop == NULL) return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
  Handle return_type(THREAD, return_type_oop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
  objArrayHandle exception_types = get_exception_types(method, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
  if (exception_types.is_null()) return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   686
  Symbol*  method_name = method->name();
24456
8c7933fa5a1f 8025580: Temporary flags: UseNewReflection and ReflectionWrapResolutionErrors
coleenp
parents: 24426
diff changeset
   687
  oop name_oop = StringTable::intern(method_name, CHECK_NULL);
8c7933fa5a1f 8025580: Temporary flags: UseNewReflection and ReflectionWrapResolutionErrors
coleenp
parents: 24426
diff changeset
   688
  Handle name = Handle(THREAD, name_oop);
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   689
  if (name == NULL) return NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   691
  const int modifiers = method->access_flags().as_int() & JVM_RECOGNIZED_METHOD_MODIFIERS;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
  Handle mh = java_lang_reflect_Method::create(CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
  java_lang_reflect_Method::set_clazz(mh(), holder->java_mirror());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
  java_lang_reflect_Method::set_slot(mh(), slot);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
  java_lang_reflect_Method::set_name(mh(), name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
  java_lang_reflect_Method::set_return_type(mh(), return_type());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
  java_lang_reflect_Method::set_parameter_types(mh(), parameter_types());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
  java_lang_reflect_Method::set_exception_types(mh(), exception_types());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
  java_lang_reflect_Method::set_modifiers(mh(), modifiers);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
  java_lang_reflect_Method::set_override(mh(), false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
  if (java_lang_reflect_Method::has_signature_field() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
      method->generic_signature() != NULL) {
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   705
    Symbol*  gs = method->generic_signature();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
    Handle sig = java_lang_String::create_from_symbol(gs, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
    java_lang_reflect_Method::set_signature(mh(), sig());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
  if (java_lang_reflect_Method::has_annotations_field()) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   710
    typeArrayOop an_oop = Annotations::make_java_array(method->annotations(), CHECK_NULL);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   711
    java_lang_reflect_Method::set_annotations(mh(), an_oop);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
  if (java_lang_reflect_Method::has_parameter_annotations_field()) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   714
    typeArrayOop an_oop = Annotations::make_java_array(method->parameter_annotations(), CHECK_NULL);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   715
    java_lang_reflect_Method::set_parameter_annotations(mh(), an_oop);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
  if (java_lang_reflect_Method::has_annotation_default_field()) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   718
    typeArrayOop an_oop = Annotations::make_java_array(method->annotation_default(), CHECK_NULL);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   719
    java_lang_reflect_Method::set_annotation_default(mh(), an_oop);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
  }
15097
9db149412e0e 8004823: Add VM support for type annotation reflection
stefank
parents: 14488
diff changeset
   721
  if (java_lang_reflect_Method::has_type_annotations_field()) {
9db149412e0e 8004823: Add VM support for type annotation reflection
stefank
parents: 14488
diff changeset
   722
    typeArrayOop an_oop = Annotations::make_java_array(method->type_annotations(), CHECK_NULL);
9db149412e0e 8004823: Add VM support for type annotation reflection
stefank
parents: 14488
diff changeset
   723
    java_lang_reflect_Method::set_type_annotations(mh(), an_oop);
9db149412e0e 8004823: Add VM support for type annotation reflection
stefank
parents: 14488
diff changeset
   724
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
  return mh();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 31615
diff changeset
   729
oop Reflection::new_constructor(const methodHandle& method, TRAPS) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
  assert(method()->is_initializer(), "should call new_method instead");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
  instanceKlassHandle  holder (THREAD, method->method_holder());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
  int slot = method->method_idnum();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   735
  Symbol*  signature  = method->signature();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
  int parameter_count = ArgumentCount(signature).size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
  objArrayHandle parameter_types = get_parameter_types(method, parameter_count, NULL, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
  if (parameter_types.is_null()) return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
  objArrayHandle exception_types = get_exception_types(method, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
  if (exception_types.is_null()) return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   743
  const int modifiers = method->access_flags().as_int() & JVM_RECOGNIZED_METHOD_MODIFIERS;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
  Handle ch = java_lang_reflect_Constructor::create(CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
  java_lang_reflect_Constructor::set_clazz(ch(), holder->java_mirror());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
  java_lang_reflect_Constructor::set_slot(ch(), slot);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
  java_lang_reflect_Constructor::set_parameter_types(ch(), parameter_types());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
  java_lang_reflect_Constructor::set_exception_types(ch(), exception_types());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
  java_lang_reflect_Constructor::set_modifiers(ch(), modifiers);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
  java_lang_reflect_Constructor::set_override(ch(), false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
  if (java_lang_reflect_Constructor::has_signature_field() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
      method->generic_signature() != NULL) {
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   755
    Symbol*  gs = method->generic_signature();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
    Handle sig = java_lang_String::create_from_symbol(gs, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
    java_lang_reflect_Constructor::set_signature(ch(), sig());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
  if (java_lang_reflect_Constructor::has_annotations_field()) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   760
    typeArrayOop an_oop = Annotations::make_java_array(method->annotations(), CHECK_NULL);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   761
    java_lang_reflect_Constructor::set_annotations(ch(), an_oop);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
  if (java_lang_reflect_Constructor::has_parameter_annotations_field()) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   764
    typeArrayOop an_oop = Annotations::make_java_array(method->parameter_annotations(), CHECK_NULL);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   765
    java_lang_reflect_Constructor::set_parameter_annotations(ch(), an_oop);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
  }
17860
1ad3f2d9b4eb 8014709: Constructor.getAnnotatedReturnType() returns empty AnnotatedType
rbackman
parents: 15194
diff changeset
   767
  if (java_lang_reflect_Constructor::has_type_annotations_field()) {
1ad3f2d9b4eb 8014709: Constructor.getAnnotatedReturnType() returns empty AnnotatedType
rbackman
parents: 15194
diff changeset
   768
    typeArrayOop an_oop = Annotations::make_java_array(method->type_annotations(), CHECK_NULL);
1ad3f2d9b4eb 8014709: Constructor.getAnnotatedReturnType() returns empty AnnotatedType
rbackman
parents: 15194
diff changeset
   769
    java_lang_reflect_Constructor::set_type_annotations(ch(), an_oop);
1ad3f2d9b4eb 8014709: Constructor.getAnnotatedReturnType() returns empty AnnotatedType
rbackman
parents: 15194
diff changeset
   770
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
  return ch();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
24456
8c7933fa5a1f 8025580: Temporary flags: UseNewReflection and ReflectionWrapResolutionErrors
coleenp
parents: 24426
diff changeset
   775
oop Reflection::new_field(fieldDescriptor* fd, TRAPS) {
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   776
  Symbol*  field_name = fd->name();
24456
8c7933fa5a1f 8025580: Temporary flags: UseNewReflection and ReflectionWrapResolutionErrors
coleenp
parents: 24426
diff changeset
   777
  oop name_oop = StringTable::intern(field_name, CHECK_NULL);
8c7933fa5a1f 8025580: Temporary flags: UseNewReflection and ReflectionWrapResolutionErrors
coleenp
parents: 24426
diff changeset
   778
  Handle name = Handle(THREAD, name_oop);
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   779
  Symbol*  signature  = fd->signature();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   780
  instanceKlassHandle  holder    (THREAD, fd->field_holder());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
  Handle type = new_type(signature, holder, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
  Handle rh  = java_lang_reflect_Field::create(CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
14391
df0a1573d5bd 8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents: 14385
diff changeset
   784
  java_lang_reflect_Field::set_clazz(rh(), fd->field_holder()->java_mirror());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
  java_lang_reflect_Field::set_slot(rh(), fd->index());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
  java_lang_reflect_Field::set_name(rh(), name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
  java_lang_reflect_Field::set_type(rh(), type());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
  // Note the ACC_ANNOTATION bit, which is a per-class access flag, is never set here.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
  java_lang_reflect_Field::set_modifiers(rh(), fd->access_flags().as_int() & JVM_RECOGNIZED_FIELD_MODIFIERS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
  java_lang_reflect_Field::set_override(rh(), false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
  if (java_lang_reflect_Field::has_signature_field() &&
13101
67539edd246d 7177409: Perf regression in JVM_GetClassDeclaredFields after generic signature changes.
jiangli
parents: 12231
diff changeset
   792
      fd->has_generic_signature()) {
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   793
    Symbol*  gs = fd->generic_signature();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
    Handle sig = java_lang_String::create_from_symbol(gs, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
    java_lang_reflect_Field::set_signature(rh(), sig());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
  if (java_lang_reflect_Field::has_annotations_field()) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   798
    typeArrayOop an_oop = Annotations::make_java_array(fd->annotations(), CHECK_NULL);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   799
    java_lang_reflect_Field::set_annotations(rh(), an_oop);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
  }
15097
9db149412e0e 8004823: Add VM support for type annotation reflection
stefank
parents: 14488
diff changeset
   801
  if (java_lang_reflect_Field::has_type_annotations_field()) {
9db149412e0e 8004823: Add VM support for type annotation reflection
stefank
parents: 14488
diff changeset
   802
    typeArrayOop an_oop = Annotations::make_java_array(fd->type_annotations(), CHECK_NULL);
9db149412e0e 8004823: Add VM support for type annotation reflection
stefank
parents: 14488
diff changeset
   803
    java_lang_reflect_Field::set_type_annotations(rh(), an_oop);
9db149412e0e 8004823: Add VM support for type annotation reflection
stefank
parents: 14488
diff changeset
   804
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
  return rh();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
15102
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 15097
diff changeset
   808
oop Reflection::new_parameter(Handle method, int index, Symbol* sym,
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 15097
diff changeset
   809
                              int flags, TRAPS) {
15194
a35093d73168 8006005: Fix constant pool index validation and alignment trap for method parameter reflection
coleenp
parents: 15102
diff changeset
   810
27613
f4773c0d8717 8058322: Zero name_index item of MethodParameters attribute cause MalformedParameterException
emc
parents: 27022
diff changeset
   811
  Handle rh = java_lang_reflect_Parameter::create(CHECK_NULL);
f4773c0d8717 8058322: Zero name_index item of MethodParameters attribute cause MalformedParameterException
emc
parents: 27022
diff changeset
   812
15194
a35093d73168 8006005: Fix constant pool index validation and alignment trap for method parameter reflection
coleenp
parents: 15102
diff changeset
   813
  if(NULL != sym) {
27613
f4773c0d8717 8058322: Zero name_index item of MethodParameters attribute cause MalformedParameterException
emc
parents: 27022
diff changeset
   814
    Handle name = java_lang_String::create_from_symbol(sym, CHECK_NULL);
f4773c0d8717 8058322: Zero name_index item of MethodParameters attribute cause MalformedParameterException
emc
parents: 27022
diff changeset
   815
    java_lang_reflect_Parameter::set_name(rh(), name());
15194
a35093d73168 8006005: Fix constant pool index validation and alignment trap for method parameter reflection
coleenp
parents: 15102
diff changeset
   816
  } else {
27613
f4773c0d8717 8058322: Zero name_index item of MethodParameters attribute cause MalformedParameterException
emc
parents: 27022
diff changeset
   817
    java_lang_reflect_Parameter::set_name(rh(), NULL);
15194
a35093d73168 8006005: Fix constant pool index validation and alignment trap for method parameter reflection
coleenp
parents: 15102
diff changeset
   818
  }
a35093d73168 8006005: Fix constant pool index validation and alignment trap for method parameter reflection
coleenp
parents: 15102
diff changeset
   819
15102
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 15097
diff changeset
   820
  java_lang_reflect_Parameter::set_modifiers(rh(), flags);
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 15097
diff changeset
   821
  java_lang_reflect_Parameter::set_executable(rh(), method());
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 15097
diff changeset
   822
  java_lang_reflect_Parameter::set_index(rh(), index);
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 15097
diff changeset
   823
  return rh();
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 15097
diff changeset
   824
}
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 15097
diff changeset
   825
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   827
static methodHandle resolve_interface_call(instanceKlassHandle klass,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   828
                                           const methodHandle& method,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   829
                                           KlassHandle recv_klass,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   830
                                           Handle receiver,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   831
                                           TRAPS) {
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   832
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
  assert(!method.is_null() , "method should not be null");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
  CallInfo info;
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   836
  Symbol*  signature  = method->signature();
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   837
  Symbol*  name       = method->name();
31019
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 29081
diff changeset
   838
  LinkResolver::resolve_interface_call(info, receiver, recv_klass,
34238
60e87df08f1e 8143324: Backout JDK-8087223
ctornqvi
parents: 34229
diff changeset
   839
                                       LinkInfo(klass, name, signature, KlassHandle(), false),
31019
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 29081
diff changeset
   840
                                       true,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
                                       CHECK_(methodHandle()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
  return info.selected_method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   845
// Conversion
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   846
static BasicType basic_type_mirror_to_basic_type(oop basic_type_mirror, TRAPS) {
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   847
  assert(java_lang_Class::is_primitive(basic_type_mirror),
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   848
    "just checking");
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   849
  return java_lang_Class::primitive_type(basic_type_mirror);
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   850
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   852
// Narrowing of basic types. Used to create correct jvalues for
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   853
// boolean, byte, char and short return return values from interpreter
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   854
// which are returned as ints. Throws IllegalArgumentException.
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   855
static void narrow(jvalue* value, BasicType narrow_type, TRAPS) {
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   856
  switch (narrow_type) {
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   857
  case T_BOOLEAN:
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   858
    value->z = (jboolean)value->i;
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   859
    return;
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   860
  case T_BYTE:
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   861
    value->b = (jbyte)value->i;
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   862
    return;
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   863
  case T_CHAR:
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   864
    value->c = (jchar)value->i;
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   865
    return;
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   866
  case T_SHORT:
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   867
    value->s = (jshort)value->i;
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   868
    return;
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   869
  default:
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   870
    break; // fail
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   871
  }
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   872
  THROW_MSG(vmSymbols::java_lang_IllegalArgumentException(), "argument type mismatch");
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   873
}
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   874
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   875
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   876
// Method call (shared by invoke_method and invoke_constructor)
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   877
static oop invoke(instanceKlassHandle klass,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   878
                  methodHandle reflected_method,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   879
                  Handle receiver,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   880
                  bool override,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   881
                  objArrayHandle ptypes,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   882
                  BasicType rtype,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   883
                  objArrayHandle args,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   884
                  bool is_method_invoke,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   885
                  TRAPS) {
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   886
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
  ResourceMark rm(THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
  methodHandle method;      // actual method to invoke
489c9b5090e2 Initial load
duke
parents:
diff changeset
   890
  KlassHandle target_klass; // target klass, receiver's klass for non-static
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
  // Ensure klass is initialized
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
  klass->initialize(CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   894
489c9b5090e2 Initial load
duke
parents:
diff changeset
   895
  bool is_static = reflected_method->is_static();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
  if (is_static) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   897
    // ignore receiver argument
489c9b5090e2 Initial load
duke
parents:
diff changeset
   898
    method = reflected_method;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   899
    target_klass = klass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   900
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
    // check for null receiver
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
    if (receiver.is_null()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
      THROW_0(vmSymbols::java_lang_NullPointerException());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
    // Check class of receiver against class declaring method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   906
    if (!receiver->is_a(klass())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
      THROW_MSG_0(vmSymbols::java_lang_IllegalArgumentException(), "object is not an instance of declaring class");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   908
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   909
    // target klass is receiver's klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
   910
    target_klass = KlassHandle(THREAD, receiver->klass());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   911
    // no need to resolve if method is private or <init>
489c9b5090e2 Initial load
duke
parents:
diff changeset
   912
    if (reflected_method->is_private() || reflected_method->name() == vmSymbols::object_initializer_name()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   913
      method = reflected_method;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   914
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   915
      // resolve based on the receiver
14391
df0a1573d5bd 8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents: 14385
diff changeset
   916
      if (reflected_method->method_holder()->is_interface()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   917
        // resolve interface call
24456
8c7933fa5a1f 8025580: Temporary flags: UseNewReflection and ReflectionWrapResolutionErrors
coleenp
parents: 24426
diff changeset
   918
        //
8c7933fa5a1f 8025580: Temporary flags: UseNewReflection and ReflectionWrapResolutionErrors
coleenp
parents: 24426
diff changeset
   919
        // Match resolution errors with those thrown due to reflection inlining
8c7933fa5a1f 8025580: Temporary flags: UseNewReflection and ReflectionWrapResolutionErrors
coleenp
parents: 24426
diff changeset
   920
        // Linktime resolution & IllegalAccessCheck already done by Class.getMethod()
8c7933fa5a1f 8025580: Temporary flags: UseNewReflection and ReflectionWrapResolutionErrors
coleenp
parents: 24426
diff changeset
   921
        method = resolve_interface_call(klass, reflected_method, target_klass, receiver, THREAD);
8c7933fa5a1f 8025580: Temporary flags: UseNewReflection and ReflectionWrapResolutionErrors
coleenp
parents: 24426
diff changeset
   922
        if (HAS_PENDING_EXCEPTION) {
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   923
          // Method resolution threw an exception; wrap it in an InvocationTargetException
24456
8c7933fa5a1f 8025580: Temporary flags: UseNewReflection and ReflectionWrapResolutionErrors
coleenp
parents: 24426
diff changeset
   924
          oop resolution_exception = PENDING_EXCEPTION;
8c7933fa5a1f 8025580: Temporary flags: UseNewReflection and ReflectionWrapResolutionErrors
coleenp
parents: 24426
diff changeset
   925
          CLEAR_PENDING_EXCEPTION;
8c7933fa5a1f 8025580: Temporary flags: UseNewReflection and ReflectionWrapResolutionErrors
coleenp
parents: 24426
diff changeset
   926
          // JVMTI has already reported the pending exception
8c7933fa5a1f 8025580: Temporary flags: UseNewReflection and ReflectionWrapResolutionErrors
coleenp
parents: 24426
diff changeset
   927
          // JVMTI internal flag reset is needed in order to report InvocationTargetException
8c7933fa5a1f 8025580: Temporary flags: UseNewReflection and ReflectionWrapResolutionErrors
coleenp
parents: 24426
diff changeset
   928
          if (THREAD->is_Java_thread()) {
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   929
            JvmtiExport::clear_detected_exception((JavaThread*)THREAD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   930
          }
24456
8c7933fa5a1f 8025580: Temporary flags: UseNewReflection and ReflectionWrapResolutionErrors
coleenp
parents: 24426
diff changeset
   931
          JavaCallArguments args(Handle(THREAD, resolution_exception));
8c7933fa5a1f 8025580: Temporary flags: UseNewReflection and ReflectionWrapResolutionErrors
coleenp
parents: 24426
diff changeset
   932
          THROW_ARG_0(vmSymbols::java_lang_reflect_InvocationTargetException(),
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   933
                      vmSymbols::throwable_void_signature(),
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   934
                      &args);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   935
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
      }  else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   937
        // if the method can be overridden, we resolve using the vtable index.
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 18508
diff changeset
   938
        assert(!reflected_method->has_itable_index(), "");
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 18508
diff changeset
   939
        int index = reflected_method->vtable_index();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   940
        method = reflected_method;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   941
        if (index != Method::nonvirtual_vtable_index) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   942
          // target_klass might be an arrayKlassOop but all vtables start at
489c9b5090e2 Initial load
duke
parents:
diff changeset
   943
          // the same place. The cast is to avoid virtual call and assertion.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   944
          InstanceKlass* inst = (InstanceKlass*)target_klass();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   945
          method = methodHandle(THREAD, inst->method_at_vtable(index));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   946
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   947
        if (!method.is_null()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   948
          // Check for abstract methods as well
489c9b5090e2 Initial load
duke
parents:
diff changeset
   949
          if (method->is_abstract()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   950
            // new default: 6531596
24456
8c7933fa5a1f 8025580: Temporary flags: UseNewReflection and ReflectionWrapResolutionErrors
coleenp
parents: 24426
diff changeset
   951
            ResourceMark rm(THREAD);
8c7933fa5a1f 8025580: Temporary flags: UseNewReflection and ReflectionWrapResolutionErrors
coleenp
parents: 24426
diff changeset
   952
            Handle h_origexception = Exceptions::new_exception(THREAD,
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   953
              vmSymbols::java_lang_AbstractMethodError(),
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   954
              Method::name_and_sig_as_C_string(target_klass(),
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   955
              method->name(),
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   956
              method->signature()));
24456
8c7933fa5a1f 8025580: Temporary flags: UseNewReflection and ReflectionWrapResolutionErrors
coleenp
parents: 24426
diff changeset
   957
            JavaCallArguments args(h_origexception);
8c7933fa5a1f 8025580: Temporary flags: UseNewReflection and ReflectionWrapResolutionErrors
coleenp
parents: 24426
diff changeset
   958
            THROW_ARG_0(vmSymbols::java_lang_reflect_InvocationTargetException(),
8c7933fa5a1f 8025580: Temporary flags: UseNewReflection and ReflectionWrapResolutionErrors
coleenp
parents: 24426
diff changeset
   959
              vmSymbols::throwable_void_signature(),
8c7933fa5a1f 8025580: Temporary flags: UseNewReflection and ReflectionWrapResolutionErrors
coleenp
parents: 24426
diff changeset
   960
              &args);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   961
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   962
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   963
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   964
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   965
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   966
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
  // I believe this is a ShouldNotGetHere case which requires
489c9b5090e2 Initial load
duke
parents:
diff changeset
   968
  // an internal vtable bug. If you ever get this please let Karen know.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   969
  if (method.is_null()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   970
    ResourceMark rm(THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   971
    THROW_MSG_0(vmSymbols::java_lang_NoSuchMethodError(),
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
   972
                Method::name_and_sig_as_C_string(klass(),
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   973
                reflected_method->name(),
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   974
                reflected_method->signature()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   975
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   976
489c9b5090e2 Initial load
duke
parents:
diff changeset
   977
  assert(ptypes->is_objArray(), "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   978
  int args_len = args.is_null() ? 0 : args->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   979
  // Check number of arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
   980
  if (ptypes->length() != args_len) {
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   981
    THROW_MSG_0(vmSymbols::java_lang_IllegalArgumentException(),
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   982
                "wrong number of arguments");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   983
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   984
489c9b5090e2 Initial load
duke
parents:
diff changeset
   985
  // Create object to contain parameters for the JavaCall
489c9b5090e2 Initial load
duke
parents:
diff changeset
   986
  JavaCallArguments java_args(method->size_of_parameters());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   987
489c9b5090e2 Initial load
duke
parents:
diff changeset
   988
  if (!is_static) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   989
    java_args.push_oop(receiver);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   990
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   991
489c9b5090e2 Initial load
duke
parents:
diff changeset
   992
  for (int i = 0; i < args_len; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   993
    oop type_mirror = ptypes->obj_at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   994
    oop arg = args->obj_at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   995
    if (java_lang_Class::is_primitive(type_mirror)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   996
      jvalue value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   997
      BasicType ptype = basic_type_mirror_to_basic_type(type_mirror, CHECK_NULL);
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
   998
      BasicType atype = Reflection::unbox_for_primitive(arg, &value, CHECK_NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   999
      if (ptype != atype) {
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
  1000
        Reflection::widen(&value, atype, ptype, CHECK_NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1001
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1002
      switch (ptype) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1003
        case T_BOOLEAN:     java_args.push_int(value.z);    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1004
        case T_CHAR:        java_args.push_int(value.c);    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1005
        case T_BYTE:        java_args.push_int(value.b);    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1006
        case T_SHORT:       java_args.push_int(value.s);    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1007
        case T_INT:         java_args.push_int(value.i);    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1008
        case T_LONG:        java_args.push_long(value.j);   break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1009
        case T_FLOAT:       java_args.push_float(value.f);  break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1010
        case T_DOUBLE:      java_args.push_double(value.d); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1011
        default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1012
          THROW_MSG_0(vmSymbols::java_lang_IllegalArgumentException(), "argument type mismatch");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1013
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1014
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1015
      if (arg != NULL) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1016
        Klass* k = java_lang_Class::as_Klass(type_mirror);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1017
        if (!arg->is_a(k)) {
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
  1018
          THROW_MSG_0(vmSymbols::java_lang_IllegalArgumentException(),
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
  1019
                      "argument type mismatch");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1020
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1021
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1022
      Handle arg_handle(THREAD, arg);         // Create handle for argument
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1023
      java_args.push_oop(arg_handle); // Push handle
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1024
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1025
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1026
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
  1027
  assert(java_args.size_of_parameters() == method->size_of_parameters(),
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
  1028
    "just checking");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1029
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1030
  // All oops (including receiver) is passed in as Handles. An potential oop is returned as an
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1031
  // oop (i.e., NOT as an handle)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1032
  JavaValue result(rtype);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1033
  JavaCalls::call(&result, method, &java_args, THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1034
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1035
  if (HAS_PENDING_EXCEPTION) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1036
    // Method threw an exception; wrap it in an InvocationTargetException
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1037
    oop target_exception = PENDING_EXCEPTION;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1038
    CLEAR_PENDING_EXCEPTION;
22897
77e1024a4a14 4505697: nsk/jdi/ExceptionEvent/_itself_/exevent006 and exevent008 tests fail with InvocationTargetException
jbachorik
parents: 22551
diff changeset
  1039
    // JVMTI has already reported the pending exception
77e1024a4a14 4505697: nsk/jdi/ExceptionEvent/_itself_/exevent006 and exevent008 tests fail with InvocationTargetException
jbachorik
parents: 22551
diff changeset
  1040
    // JVMTI internal flag reset is needed in order to report InvocationTargetException
77e1024a4a14 4505697: nsk/jdi/ExceptionEvent/_itself_/exevent006 and exevent008 tests fail with InvocationTargetException
jbachorik
parents: 22551
diff changeset
  1041
    if (THREAD->is_Java_thread()) {
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
  1042
      JvmtiExport::clear_detected_exception((JavaThread*)THREAD);
22897
77e1024a4a14 4505697: nsk/jdi/ExceptionEvent/_itself_/exevent006 and exevent008 tests fail with InvocationTargetException
jbachorik
parents: 22551
diff changeset
  1043
    }
77e1024a4a14 4505697: nsk/jdi/ExceptionEvent/_itself_/exevent006 and exevent008 tests fail with InvocationTargetException
jbachorik
parents: 22551
diff changeset
  1044
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1045
    JavaCallArguments args(Handle(THREAD, target_exception));
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
  1046
    THROW_ARG_0(vmSymbols::java_lang_reflect_InvocationTargetException(),
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
  1047
                vmSymbols::throwable_void_signature(),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1048
                &args);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1049
  } else {
31615
e48d94b97b6c 8130036: Fix problems with imprecise C++ coding.
goetz
parents: 31019
diff changeset
  1050
    if (rtype == T_BOOLEAN || rtype == T_BYTE || rtype == T_CHAR || rtype == T_SHORT) {
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
  1051
      narrow((jvalue*)result.get_value_addr(), rtype, CHECK_NULL);
31615
e48d94b97b6c 8130036: Fix problems with imprecise C++ coding.
goetz
parents: 31019
diff changeset
  1052
    }
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34238
diff changeset
  1053
    return Reflection::box((jvalue*)result.get_value_addr(), rtype, THREAD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1054
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1055
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1056
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1057
// This would be nicer if, say, java.lang.reflect.Method was a subclass
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1058
// of java.lang.reflect.Constructor
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1059
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1060
oop Reflection::invoke_method(oop method_mirror, Handle receiver, objArrayHandle args, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1061
  oop mirror             = java_lang_reflect_Method::clazz(method_mirror);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1062
  int slot               = java_lang_reflect_Method::slot(method_mirror);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1063
  bool override          = java_lang_reflect_Method::override(method_mirror) != 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1064
  objArrayHandle ptypes(THREAD, objArrayOop(java_lang_reflect_Method::parameter_types(method_mirror)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1065
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1066
  oop return_type_mirror = java_lang_reflect_Method::return_type(method_mirror);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1067
  BasicType rtype;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1068
  if (java_lang_Class::is_primitive(return_type_mirror)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1069
    rtype = basic_type_mirror_to_basic_type(return_type_mirror, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1070
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1071
    rtype = T_OBJECT;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1072
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1073
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1074
  instanceKlassHandle klass(THREAD, java_lang_Class::as_Klass(mirror));
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1075
  Method* m = klass->method_with_idnum(slot);
224
6a257cd604e7 6667089: 3/3 multiple redefinitions of a class break reflection
dcubed
parents: 1
diff changeset
  1076
  if (m == NULL) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1077
    THROW_MSG_0(vmSymbols::java_lang_InternalError(), "invoke");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1078
  }
224
6a257cd604e7 6667089: 3/3 multiple redefinitions of a class break reflection
dcubed
parents: 1
diff changeset
  1079
  methodHandle method(THREAD, m);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1080
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1081
  return invoke(klass, method, receiver, override, ptypes, rtype, args, true, THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1082
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1083
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1084
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1085
oop Reflection::invoke_constructor(oop constructor_mirror, objArrayHandle args, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1086
  oop mirror             = java_lang_reflect_Constructor::clazz(constructor_mirror);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1087
  int slot               = java_lang_reflect_Constructor::slot(constructor_mirror);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1088
  bool override          = java_lang_reflect_Constructor::override(constructor_mirror) != 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1089
  objArrayHandle ptypes(THREAD, objArrayOop(java_lang_reflect_Constructor::parameter_types(constructor_mirror)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1090
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1091
  instanceKlassHandle klass(THREAD, java_lang_Class::as_Klass(mirror));
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1092
  Method* m = klass->method_with_idnum(slot);
224
6a257cd604e7 6667089: 3/3 multiple redefinitions of a class break reflection
dcubed
parents: 1
diff changeset
  1093
  if (m == NULL) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1094
    THROW_MSG_0(vmSymbols::java_lang_InternalError(), "invoke");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1095
  }
224
6a257cd604e7 6667089: 3/3 multiple redefinitions of a class break reflection
dcubed
parents: 1
diff changeset
  1096
  methodHandle method(THREAD, m);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1097
  assert(method->name() == vmSymbols::object_initializer_name(), "invalid constructor");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1098
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1099
  // Make sure klass gets initialize
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1100
  klass->initialize(CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1101
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1102
  // Create new instance (the receiver)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1103
  klass->check_valid_for_instantiation(false, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1104
  Handle receiver = klass->allocate_instance_handle(CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1105
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1106
  // Ignore result from call and return receiver
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1107
  invoke(klass, method, receiver, override, ptypes, T_VOID, args, false, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1108
  return receiver();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1109
}