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