src/share/vm/prims/methodHandles.cpp

Tue, 30 Nov 2010 09:53:04 -0800

author
twisti
date
Tue, 30 Nov 2010 09:53:04 -0800
changeset 2343
f2da85a9b08e
parent 2314
f95d63e2154a
child 2411
8d0b933dda2d
permissions
-rw-r--r--

7001363: java/dyn/InvokeDynamic should not be a well-known class in the JVM
Summary: Because of the removal of language support, the JDK 7 API for JSR 292 no longer includes a public class named java/dyn/InvokeDynamic.
Reviewed-by: jrose, kvn

jrose@1145 1 /*
trims@1907 2 * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
jrose@1145 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
jrose@1145 4 *
jrose@1145 5 * This code is free software; you can redistribute it and/or modify it
jrose@1145 6 * under the terms of the GNU General Public License version 2 only, as
jrose@1145 7 * published by the Free Software Foundation.
jrose@1145 8 *
jrose@1145 9 * This code is distributed in the hope that it will be useful, but WITHOUT
jrose@1145 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
jrose@1145 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
jrose@1145 12 * version 2 for more details (a copy is included in the LICENSE file that
jrose@1145 13 * accompanied this code).
jrose@1145 14 *
jrose@1145 15 * You should have received a copy of the GNU General Public License version
jrose@1145 16 * 2 along with this work; if not, write to the Free Software Foundation,
jrose@1145 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
jrose@1145 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
jrose@1145 22 *
jrose@1145 23 */
jrose@1145 24
stefank@2314 25 #include "precompiled.hpp"
stefank@2314 26 #include "classfile/symbolTable.hpp"
stefank@2314 27 #include "interpreter/interpreter.hpp"
stefank@2314 28 #include "memory/allocation.inline.hpp"
stefank@2314 29 #include "memory/oopFactory.hpp"
stefank@2314 30 #include "prims/methodHandles.hpp"
stefank@2314 31 #include "runtime/javaCalls.hpp"
stefank@2314 32 #include "runtime/reflection.hpp"
stefank@2314 33 #include "runtime/signature.hpp"
stefank@2314 34 #include "runtime/stubRoutines.hpp"
stefank@2314 35
jrose@1145 36 /*
jrose@1145 37 * JSR 292 reference implementation: method handles
jrose@1145 38 */
jrose@1145 39
jrose@1145 40 bool MethodHandles::_enabled = false; // set true after successful native linkage
jrose@1145 41
jrose@1145 42 MethodHandleEntry* MethodHandles::_entries[MethodHandles::_EK_LIMIT] = {NULL};
jrose@1145 43 const char* MethodHandles::_entry_names[_EK_LIMIT+1] = {
jrose@1474 44 "raise_exception",
jrose@1145 45 "invokestatic", // how a MH emulates invokestatic
jrose@1145 46 "invokespecial", // ditto for the other invokes...
jrose@1145 47 "invokevirtual",
jrose@1145 48 "invokeinterface",
jrose@1145 49 "bound_ref", // these are for BMH...
jrose@1145 50 "bound_int",
jrose@1145 51 "bound_long",
jrose@1145 52 "bound_ref_direct", // (direct versions have a direct methodOop)
jrose@1145 53 "bound_int_direct",
jrose@1145 54 "bound_long_direct",
jrose@1145 55
jrose@1145 56 // starting at _adapter_mh_first:
jrose@1145 57 "adapter_retype_only", // these are for AMH...
jrose@1474 58 "adapter_retype_raw",
jrose@1145 59 "adapter_check_cast",
jrose@1145 60 "adapter_prim_to_prim",
jrose@1145 61 "adapter_ref_to_prim",
jrose@1145 62 "adapter_prim_to_ref",
jrose@1145 63 "adapter_swap_args",
jrose@1145 64 "adapter_rot_args",
jrose@1145 65 "adapter_dup_args",
jrose@1145 66 "adapter_drop_args",
jrose@1145 67 "adapter_collect_args",
jrose@1145 68 "adapter_spread_args",
jrose@1145 69 "adapter_flyby",
jrose@1145 70 "adapter_ricochet",
jrose@1145 71
jrose@1145 72 // optimized adapter types:
jrose@1145 73 "adapter_swap_args/1",
jrose@1145 74 "adapter_swap_args/2",
jrose@1145 75 "adapter_rot_args/1,up",
jrose@1145 76 "adapter_rot_args/1,down",
jrose@1145 77 "adapter_rot_args/2,up",
jrose@1145 78 "adapter_rot_args/2,down",
jrose@1145 79 "adapter_prim_to_prim/i2i",
jrose@1145 80 "adapter_prim_to_prim/l2i",
jrose@1145 81 "adapter_prim_to_prim/d2f",
jrose@1145 82 "adapter_prim_to_prim/i2l",
jrose@1145 83 "adapter_prim_to_prim/f2d",
jrose@1145 84 "adapter_ref_to_prim/unboxi",
jrose@1145 85 "adapter_ref_to_prim/unboxl",
jrose@1145 86 "adapter_spread_args/0",
jrose@1145 87 "adapter_spread_args/1",
jrose@1145 88 "adapter_spread_args/more",
jrose@1145 89
jrose@1145 90 NULL
jrose@1145 91 };
jrose@1145 92
twisti@1734 93 // Adapters.
twisti@1734 94 MethodHandlesAdapterBlob* MethodHandles::_adapter_code = NULL;
twisti@1734 95 int MethodHandles::_adapter_code_size = StubRoutines::method_handles_adapters_code_size;
twisti@1734 96
jrose@1474 97 jobject MethodHandles::_raise_exception_method;
jrose@1474 98
jrose@1145 99 #ifdef ASSERT
jrose@1145 100 bool MethodHandles::spot_check_entry_names() {
jrose@1145 101 assert(!strcmp(entry_name(_invokestatic_mh), "invokestatic"), "");
jrose@1145 102 assert(!strcmp(entry_name(_bound_ref_mh), "bound_ref"), "");
jrose@1145 103 assert(!strcmp(entry_name(_adapter_retype_only), "adapter_retype_only"), "");
jrose@1145 104 assert(!strcmp(entry_name(_adapter_ricochet), "adapter_ricochet"), "");
jrose@1145 105 assert(!strcmp(entry_name(_adapter_opt_unboxi), "adapter_ref_to_prim/unboxi"), "");
jrose@1145 106 return true;
jrose@1145 107 }
jrose@1145 108 #endif
jrose@1145 109
twisti@1734 110
twisti@1734 111 //------------------------------------------------------------------------------
twisti@1734 112 // MethodHandles::generate_adapters
twisti@1734 113 //
twisti@1734 114 void MethodHandles::generate_adapters() {
twisti@1734 115 if (!EnableMethodHandles || SystemDictionary::MethodHandle_klass() == NULL) return;
twisti@1734 116
twisti@1734 117 assert(_adapter_code == NULL, "generate only once");
twisti@1734 118
twisti@1734 119 ResourceMark rm;
twisti@1734 120 TraceTime timer("MethodHandles adapters generation", TraceStartupTime);
twisti@1734 121 _adapter_code = MethodHandlesAdapterBlob::create(_adapter_code_size);
twisti@1734 122 if (_adapter_code == NULL)
twisti@1734 123 vm_exit_out_of_memory(_adapter_code_size, "CodeCache: no room for MethodHandles adapters");
twisti@2103 124 CodeBuffer code(_adapter_code);
twisti@1734 125 MethodHandlesAdapterGenerator g(&code);
twisti@1734 126 g.generate();
twisti@1734 127 }
twisti@1734 128
twisti@1734 129
twisti@1734 130 //------------------------------------------------------------------------------
twisti@1734 131 // MethodHandlesAdapterGenerator::generate
twisti@1734 132 //
twisti@1734 133 void MethodHandlesAdapterGenerator::generate() {
twisti@1734 134 // Generate generic method handle adapters.
twisti@1734 135 for (MethodHandles::EntryKind ek = MethodHandles::_EK_FIRST;
twisti@1734 136 ek < MethodHandles::_EK_LIMIT;
twisti@1734 137 ek = MethodHandles::EntryKind(1 + (int)ek)) {
twisti@1734 138 StubCodeMark mark(this, "MethodHandle", MethodHandles::entry_name(ek));
twisti@1734 139 MethodHandles::generate_method_handle_stub(_masm, ek);
twisti@1734 140 }
twisti@1734 141 }
twisti@1734 142
twisti@1734 143
jrose@1145 144 void MethodHandles::set_enabled(bool z) {
jrose@1145 145 if (_enabled != z) {
jrose@1145 146 guarantee(z && EnableMethodHandles, "can only enable once, and only if -XX:+EnableMethodHandles");
jrose@1145 147 _enabled = z;
jrose@1145 148 }
jrose@1145 149 }
jrose@1145 150
jrose@1145 151 // Note: A method which does not have a TRAPS argument cannot block in the GC
jrose@1145 152 // or throw exceptions. Such methods are used in this file to do something quick
jrose@1145 153 // and local, like parse a data structure. For speed, such methods work on plain
jrose@1145 154 // oops, not handles. Trapping methods uniformly operate on handles.
jrose@1145 155
jrose@1145 156 methodOop MethodHandles::decode_vmtarget(oop vmtarget, int vmindex, oop mtype,
jrose@1145 157 klassOop& receiver_limit_result, int& decode_flags_result) {
jrose@1145 158 if (vmtarget == NULL) return NULL;
jrose@1145 159 assert(methodOopDesc::nonvirtual_vtable_index < 0, "encoding");
jrose@1145 160 if (vmindex < 0) {
jrose@1145 161 // this DMH performs no dispatch; it is directly bound to a methodOop
jrose@1145 162 // A MemberName may either be directly bound to a methodOop,
jrose@1145 163 // or it may use the klass/index form; both forms mean the same thing.
jrose@1145 164 methodOop m = decode_methodOop(methodOop(vmtarget), decode_flags_result);
jrose@1145 165 if ((decode_flags_result & _dmf_has_receiver) != 0
jrose@1145 166 && java_dyn_MethodType::is_instance(mtype)) {
jrose@1145 167 // Extract receiver type restriction from mtype.ptypes[0].
jrose@1145 168 objArrayOop ptypes = java_dyn_MethodType::ptypes(mtype);
jrose@1145 169 oop ptype0 = (ptypes == NULL || ptypes->length() < 1) ? oop(NULL) : ptypes->obj_at(0);
jrose@1145 170 if (java_lang_Class::is_instance(ptype0))
jrose@1145 171 receiver_limit_result = java_lang_Class::as_klassOop(ptype0);
jrose@1145 172 }
jrose@1145 173 if (vmindex == methodOopDesc::nonvirtual_vtable_index) {
jrose@1145 174 // this DMH can be an "invokespecial" version
jrose@1145 175 decode_flags_result &= ~_dmf_does_dispatch;
jrose@1145 176 } else {
jrose@1145 177 assert(vmindex == methodOopDesc::invalid_vtable_index, "random vmindex?");
jrose@1145 178 }
jrose@1145 179 return m;
jrose@1145 180 } else {
twisti@1573 181 assert(vmtarget->is_klass(), "must be class or interface");
jrose@1145 182 decode_flags_result |= MethodHandles::_dmf_does_dispatch;
twisti@1573 183 decode_flags_result |= MethodHandles::_dmf_has_receiver;
jrose@1145 184 receiver_limit_result = (klassOop)vmtarget;
jrose@1145 185 Klass* tk = Klass::cast((klassOop)vmtarget);
jrose@1145 186 if (tk->is_interface()) {
jrose@1145 187 // an itable linkage is <interface, itable index>
jrose@1145 188 decode_flags_result |= MethodHandles::_dmf_from_interface;
jrose@1145 189 return klassItable::method_for_itable_index((klassOop)vmtarget, vmindex);
jrose@1145 190 } else {
jrose@1145 191 if (!tk->oop_is_instance())
never@1577 192 tk = instanceKlass::cast(SystemDictionary::Object_klass());
jrose@1145 193 return ((instanceKlass*)tk)->method_at_vtable(vmindex);
jrose@1145 194 }
jrose@1145 195 }
jrose@1145 196 }
jrose@1145 197
jrose@1145 198 // MemberName and DirectMethodHandle have the same linkage to the JVM internals.
jrose@1145 199 // (MemberName is the non-operational name used for queries and setup.)
jrose@1145 200
jrose@1145 201 methodOop MethodHandles::decode_DirectMethodHandle(oop mh, klassOop& receiver_limit_result, int& decode_flags_result) {
jrose@1145 202 oop vmtarget = sun_dyn_DirectMethodHandle::vmtarget(mh);
jrose@1145 203 int vmindex = sun_dyn_DirectMethodHandle::vmindex(mh);
jrose@1145 204 oop mtype = sun_dyn_DirectMethodHandle::type(mh);
jrose@1145 205 return decode_vmtarget(vmtarget, vmindex, mtype, receiver_limit_result, decode_flags_result);
jrose@1145 206 }
jrose@1145 207
jrose@1145 208 methodOop MethodHandles::decode_BoundMethodHandle(oop mh, klassOop& receiver_limit_result, int& decode_flags_result) {
jrose@1474 209 assert(sun_dyn_BoundMethodHandle::is_instance(mh), "");
jrose@1474 210 assert(mh->klass() != SystemDictionary::AdapterMethodHandle_klass(), "");
jrose@1145 211 for (oop bmh = mh;;) {
jrose@1145 212 // Bound MHs can be stacked to bind several arguments.
jrose@1145 213 oop target = java_dyn_MethodHandle::vmtarget(bmh);
jrose@1145 214 if (target == NULL) return NULL;
jrose@1145 215 decode_flags_result |= MethodHandles::_dmf_binds_argument;
jrose@1145 216 klassOop tk = target->klass();
jrose@1145 217 if (tk == SystemDictionary::BoundMethodHandle_klass()) {
jrose@1145 218 bmh = target;
jrose@1145 219 continue;
jrose@1145 220 } else {
jrose@1145 221 if (java_dyn_MethodHandle::is_subclass(tk)) {
jrose@1145 222 //assert(tk == SystemDictionary::DirectMethodHandle_klass(), "end of BMH chain must be DMH");
jrose@1145 223 return decode_MethodHandle(target, receiver_limit_result, decode_flags_result);
jrose@1145 224 } else {
jrose@1145 225 // Optimized case: binding a receiver to a non-dispatched DMH
jrose@1145 226 // short-circuits directly to the methodOop.
jrose@1474 227 // (It might be another argument besides a receiver also.)
jrose@1145 228 assert(target->is_method(), "must be a simple method");
twisti@1573 229 decode_flags_result |= MethodHandles::_dmf_binds_method;
jrose@1145 230 methodOop m = (methodOop) target;
twisti@1573 231 if (!m->is_static())
twisti@1573 232 decode_flags_result |= MethodHandles::_dmf_has_receiver;
jrose@1145 233 return m;
jrose@1145 234 }
jrose@1145 235 }
jrose@1145 236 }
jrose@1145 237 }
jrose@1145 238
jrose@1145 239 methodOop MethodHandles::decode_AdapterMethodHandle(oop mh, klassOop& receiver_limit_result, int& decode_flags_result) {
jrose@1145 240 assert(mh->klass() == SystemDictionary::AdapterMethodHandle_klass(), "");
jrose@1145 241 for (oop amh = mh;;) {
jrose@1145 242 // Adapter MHs can be stacked to convert several arguments.
jrose@1145 243 int conv_op = adapter_conversion_op(sun_dyn_AdapterMethodHandle::conversion(amh));
jrose@1145 244 decode_flags_result |= (_dmf_adapter_lsb << conv_op) & _DMF_ADAPTER_MASK;
jrose@1145 245 oop target = java_dyn_MethodHandle::vmtarget(amh);
jrose@1145 246 if (target == NULL) return NULL;
jrose@1145 247 klassOop tk = target->klass();
jrose@1145 248 if (tk == SystemDictionary::AdapterMethodHandle_klass()) {
jrose@1145 249 amh = target;
jrose@1145 250 continue;
jrose@1145 251 } else {
jrose@1145 252 // must be a BMH (which will bind some more arguments) or a DMH (for the final call)
jrose@1145 253 return MethodHandles::decode_MethodHandle(target, receiver_limit_result, decode_flags_result);
jrose@1145 254 }
jrose@1145 255 }
jrose@1145 256 }
jrose@1145 257
jrose@1145 258 methodOop MethodHandles::decode_MethodHandle(oop mh, klassOop& receiver_limit_result, int& decode_flags_result) {
jrose@1145 259 if (mh == NULL) return NULL;
jrose@1145 260 klassOop mhk = mh->klass();
jrose@1145 261 assert(java_dyn_MethodHandle::is_subclass(mhk), "must be a MethodHandle");
jrose@1145 262 if (mhk == SystemDictionary::DirectMethodHandle_klass()) {
jrose@1145 263 return decode_DirectMethodHandle(mh, receiver_limit_result, decode_flags_result);
jrose@1145 264 } else if (mhk == SystemDictionary::BoundMethodHandle_klass()) {
jrose@1145 265 return decode_BoundMethodHandle(mh, receiver_limit_result, decode_flags_result);
jrose@1145 266 } else if (mhk == SystemDictionary::AdapterMethodHandle_klass()) {
jrose@1145 267 return decode_AdapterMethodHandle(mh, receiver_limit_result, decode_flags_result);
jrose@1474 268 } else if (sun_dyn_BoundMethodHandle::is_subclass(mhk)) {
jrose@1474 269 // could be a JavaMethodHandle (but not an adapter MH)
jrose@1474 270 return decode_BoundMethodHandle(mh, receiver_limit_result, decode_flags_result);
jrose@1145 271 } else {
jrose@1145 272 assert(false, "cannot parse this MH");
jrose@1145 273 return NULL; // random MH?
jrose@1145 274 }
jrose@1145 275 }
jrose@1145 276
jrose@1145 277 methodOop MethodHandles::decode_methodOop(methodOop m, int& decode_flags_result) {
jrose@1145 278 assert(m->is_method(), "");
jrose@1145 279 if (m->is_static()) {
jrose@1145 280 // check that signature begins '(L' or '([' (not '(I', '()', etc.)
jrose@1145 281 symbolOop sig = m->signature();
jrose@1145 282 BasicType recv_bt = char2type(sig->byte_at(1));
jrose@1145 283 // Note: recv_bt might be T_ILLEGAL if byte_at(2) is ')'
jrose@1145 284 assert(sig->byte_at(0) == '(', "must be method sig");
twisti@1573 285 // if (recv_bt == T_OBJECT || recv_bt == T_ARRAY)
twisti@1573 286 // decode_flags_result |= _dmf_has_receiver;
jrose@1145 287 } else {
jrose@1145 288 // non-static method
jrose@1145 289 decode_flags_result |= _dmf_has_receiver;
jrose@1145 290 if (!m->can_be_statically_bound() && !m->is_initializer()) {
jrose@1145 291 decode_flags_result |= _dmf_does_dispatch;
jrose@1145 292 if (Klass::cast(m->method_holder())->is_interface())
jrose@1145 293 decode_flags_result |= _dmf_from_interface;
jrose@1145 294 }
jrose@1145 295 }
jrose@1145 296 return m;
jrose@1145 297 }
jrose@1145 298
jrose@1145 299
jrose@1145 300 // A trusted party is handing us a cookie to determine a method.
jrose@1145 301 // Let's boil it down to the method oop they really want.
jrose@1145 302 methodOop MethodHandles::decode_method(oop x, klassOop& receiver_limit_result, int& decode_flags_result) {
jrose@1145 303 decode_flags_result = 0;
jrose@1145 304 receiver_limit_result = NULL;
jrose@1145 305 klassOop xk = x->klass();
jrose@1145 306 if (xk == Universe::methodKlassObj()) {
jrose@1145 307 return decode_methodOop((methodOop) x, decode_flags_result);
jrose@1145 308 } else if (xk == SystemDictionary::MemberName_klass()) {
jrose@1145 309 // Note: This only works if the MemberName has already been resolved.
jrose@1145 310 return decode_MemberName(x, receiver_limit_result, decode_flags_result);
jrose@1145 311 } else if (java_dyn_MethodHandle::is_subclass(xk)) {
jrose@1145 312 return decode_MethodHandle(x, receiver_limit_result, decode_flags_result);
never@1577 313 } else if (xk == SystemDictionary::reflect_Method_klass()) {
jrose@1145 314 oop clazz = java_lang_reflect_Method::clazz(x);
jrose@1145 315 int slot = java_lang_reflect_Method::slot(x);
jrose@1145 316 klassOop k = java_lang_Class::as_klassOop(clazz);
jrose@1145 317 if (k != NULL && Klass::cast(k)->oop_is_instance())
jrose@1145 318 return decode_methodOop(instanceKlass::cast(k)->method_with_idnum(slot),
jrose@1145 319 decode_flags_result);
never@1577 320 } else if (xk == SystemDictionary::reflect_Constructor_klass()) {
jrose@1145 321 oop clazz = java_lang_reflect_Constructor::clazz(x);
jrose@1145 322 int slot = java_lang_reflect_Constructor::slot(x);
jrose@1145 323 klassOop k = java_lang_Class::as_klassOop(clazz);
jrose@1145 324 if (k != NULL && Klass::cast(k)->oop_is_instance())
jrose@1145 325 return decode_methodOop(instanceKlass::cast(k)->method_with_idnum(slot),
jrose@1145 326 decode_flags_result);
jrose@1145 327 } else {
jrose@1145 328 // unrecognized object
jrose@1145 329 assert(!x->is_method(), "already checked");
jrose@1145 330 assert(!sun_dyn_MemberName::is_instance(x), "already checked");
jrose@1145 331 }
jrose@1145 332 return NULL;
jrose@1145 333 }
jrose@1145 334
jrose@1145 335
jrose@1145 336 int MethodHandles::decode_MethodHandle_stack_pushes(oop mh) {
jrose@1145 337 if (mh->klass() == SystemDictionary::DirectMethodHandle_klass())
jrose@1145 338 return 0; // no push/pop
jrose@1145 339 int this_vmslots = java_dyn_MethodHandle::vmslots(mh);
jrose@1145 340 int last_vmslots = 0;
jrose@1145 341 oop last_mh = mh;
jrose@1145 342 for (;;) {
jrose@1145 343 oop target = java_dyn_MethodHandle::vmtarget(last_mh);
jrose@1145 344 if (target->klass() == SystemDictionary::DirectMethodHandle_klass()) {
jrose@1145 345 last_vmslots = java_dyn_MethodHandle::vmslots(target);
jrose@1145 346 break;
jrose@1145 347 } else if (!java_dyn_MethodHandle::is_instance(target)) {
jrose@1145 348 // might be klass or method
jrose@1145 349 assert(target->is_method(), "must get here with a direct ref to method");
jrose@1145 350 last_vmslots = methodOop(target)->size_of_parameters();
jrose@1145 351 break;
jrose@1145 352 }
jrose@1145 353 last_mh = target;
jrose@1145 354 }
jrose@1145 355 // If I am called with fewer VM slots than my ultimate callee,
jrose@1145 356 // it must be that I push the additionally needed slots.
jrose@1145 357 // Likewise if am called with more VM slots, I will pop them.
jrose@1145 358 return (last_vmslots - this_vmslots);
jrose@1145 359 }
jrose@1145 360
jrose@1145 361
jrose@1145 362 // MemberName support
jrose@1145 363
jrose@1145 364 // import sun_dyn_MemberName.*
jrose@1145 365 enum {
jrose@1145 366 IS_METHOD = sun_dyn_MemberName::MN_IS_METHOD,
jrose@1145 367 IS_CONSTRUCTOR = sun_dyn_MemberName::MN_IS_CONSTRUCTOR,
jrose@1145 368 IS_FIELD = sun_dyn_MemberName::MN_IS_FIELD,
jrose@1145 369 IS_TYPE = sun_dyn_MemberName::MN_IS_TYPE,
jrose@1145 370 SEARCH_SUPERCLASSES = sun_dyn_MemberName::MN_SEARCH_SUPERCLASSES,
jrose@1145 371 SEARCH_INTERFACES = sun_dyn_MemberName::MN_SEARCH_INTERFACES,
jrose@1145 372 ALL_KINDS = IS_METHOD | IS_CONSTRUCTOR | IS_FIELD | IS_TYPE,
jrose@1145 373 VM_INDEX_UNINITIALIZED = sun_dyn_MemberName::VM_INDEX_UNINITIALIZED
jrose@1145 374 };
jrose@1145 375
jrose@1862 376 Handle MethodHandles::new_MemberName(TRAPS) {
jrose@1862 377 Handle empty;
jrose@1862 378 instanceKlassHandle k(THREAD, SystemDictionary::MemberName_klass());
jrose@1862 379 if (!k->is_initialized()) k->initialize(CHECK_(empty));
jrose@1862 380 return Handle(THREAD, k->allocate_instance(THREAD));
jrose@1862 381 }
jrose@1862 382
jrose@1145 383 void MethodHandles::init_MemberName(oop mname_oop, oop target_oop) {
never@1577 384 if (target_oop->klass() == SystemDictionary::reflect_Field_klass()) {
jrose@1145 385 oop clazz = java_lang_reflect_Field::clazz(target_oop); // fd.field_holder()
jrose@1145 386 int slot = java_lang_reflect_Field::slot(target_oop); // fd.index()
jrose@1145 387 int mods = java_lang_reflect_Field::modifiers(target_oop);
jrose@1145 388 klassOop k = java_lang_Class::as_klassOop(clazz);
jrose@1145 389 int offset = instanceKlass::cast(k)->offset_from_fields(slot);
jrose@1145 390 init_MemberName(mname_oop, k, accessFlags_from(mods), offset);
jrose@1145 391 } else {
jrose@1145 392 int decode_flags = 0; klassOop receiver_limit = NULL;
jrose@1145 393 methodOop m = MethodHandles::decode_method(target_oop,
jrose@1145 394 receiver_limit, decode_flags);
jrose@1145 395 bool do_dispatch = ((decode_flags & MethodHandles::_dmf_does_dispatch) != 0);
jrose@1145 396 init_MemberName(mname_oop, m, do_dispatch);
jrose@1145 397 }
jrose@1145 398 }
jrose@1145 399
jrose@1145 400 void MethodHandles::init_MemberName(oop mname_oop, methodOop m, bool do_dispatch) {
jrose@1145 401 int flags = ((m->is_initializer() ? IS_CONSTRUCTOR : IS_METHOD)
jrose@1145 402 | (jushort)( m->access_flags().as_short() & JVM_RECOGNIZED_METHOD_MODIFIERS ));
jrose@1145 403 oop vmtarget = m;
jrose@1145 404 int vmindex = methodOopDesc::invalid_vtable_index; // implies no info yet
jrose@1145 405 if (!do_dispatch || (flags & IS_CONSTRUCTOR) || m->can_be_statically_bound())
jrose@1145 406 vmindex = methodOopDesc::nonvirtual_vtable_index; // implies never any dispatch
jrose@1145 407 assert(vmindex != VM_INDEX_UNINITIALIZED, "Java sentinel value");
jrose@1145 408 sun_dyn_MemberName::set_vmtarget(mname_oop, vmtarget);
jrose@1145 409 sun_dyn_MemberName::set_vmindex(mname_oop, vmindex);
jrose@1145 410 sun_dyn_MemberName::set_flags(mname_oop, flags);
jrose@1862 411 sun_dyn_MemberName::set_clazz(mname_oop, Klass::cast(m->method_holder())->java_mirror());
jrose@1145 412 }
jrose@1145 413
jrose@1145 414 void MethodHandles::init_MemberName(oop mname_oop, klassOop field_holder, AccessFlags mods, int offset) {
jrose@1145 415 int flags = (IS_FIELD | (jushort)( mods.as_short() & JVM_RECOGNIZED_FIELD_MODIFIERS ));
jrose@1145 416 oop vmtarget = field_holder;
jrose@1862 417 int vmindex = offset; // determines the field uniquely when combined with static bit
jrose@1145 418 assert(vmindex != VM_INDEX_UNINITIALIZED, "bad alias on vmindex");
jrose@1145 419 sun_dyn_MemberName::set_vmtarget(mname_oop, vmtarget);
jrose@1145 420 sun_dyn_MemberName::set_vmindex(mname_oop, vmindex);
jrose@1145 421 sun_dyn_MemberName::set_flags(mname_oop, flags);
jrose@1862 422 sun_dyn_MemberName::set_clazz(mname_oop, Klass::cast(field_holder)->java_mirror());
jrose@1145 423 }
jrose@1145 424
jrose@1145 425
jrose@1145 426 methodOop MethodHandles::decode_MemberName(oop mname, klassOop& receiver_limit_result, int& decode_flags_result) {
jrose@1145 427 int flags = sun_dyn_MemberName::flags(mname);
jrose@1145 428 if ((flags & (IS_METHOD | IS_CONSTRUCTOR)) == 0) return NULL; // not invocable
jrose@1145 429 oop vmtarget = sun_dyn_MemberName::vmtarget(mname);
jrose@1145 430 int vmindex = sun_dyn_MemberName::vmindex(mname);
jrose@1145 431 if (vmindex == VM_INDEX_UNINITIALIZED) return NULL; // not resolved
jrose@1474 432 methodOop m = decode_vmtarget(vmtarget, vmindex, NULL, receiver_limit_result, decode_flags_result);
jrose@1474 433 oop clazz = sun_dyn_MemberName::clazz(mname);
jrose@1474 434 if (clazz != NULL && java_lang_Class::is_instance(clazz)) {
jrose@1474 435 klassOop klass = java_lang_Class::as_klassOop(clazz);
jrose@1474 436 if (klass != NULL) receiver_limit_result = klass;
jrose@1474 437 }
jrose@1474 438 return m;
jrose@1145 439 }
jrose@1145 440
jrose@1145 441 // An unresolved member name is a mere symbolic reference.
jrose@1145 442 // Resolving it plants a vmtarget/vmindex in it,
jrose@1145 443 // which refers dirctly to JVM internals.
jrose@1145 444 void MethodHandles::resolve_MemberName(Handle mname, TRAPS) {
jrose@1145 445 assert(sun_dyn_MemberName::is_instance(mname()), "");
jrose@1145 446 #ifdef ASSERT
jrose@1145 447 // If this assert throws, renegotiate the sentinel value used by the Java code,
jrose@1145 448 // so that it is distinct from any valid vtable index value, and any special
jrose@1145 449 // values defined in methodOopDesc::VtableIndexFlag.
jrose@1145 450 // The point of the slop is to give the Java code and the JVM some room
jrose@1145 451 // to independently specify sentinel values.
jrose@1145 452 const int sentinel_slop = 10;
jrose@1145 453 const int sentinel_limit = methodOopDesc::highest_unused_vtable_index_value - sentinel_slop;
jrose@1145 454 assert(VM_INDEX_UNINITIALIZED < sentinel_limit, "Java sentinel != JVM sentinels");
jrose@1145 455 #endif
jrose@1145 456 if (sun_dyn_MemberName::vmindex(mname()) != VM_INDEX_UNINITIALIZED)
jrose@1145 457 return; // already resolved
jrose@1145 458 oop defc_oop = sun_dyn_MemberName::clazz(mname());
jrose@1145 459 oop name_str = sun_dyn_MemberName::name(mname());
jrose@1145 460 oop type_str = sun_dyn_MemberName::type(mname());
jrose@1145 461 int flags = sun_dyn_MemberName::flags(mname());
jrose@1145 462
jrose@1145 463 if (defc_oop == NULL || name_str == NULL || type_str == NULL) {
jrose@1145 464 THROW_MSG(vmSymbols::java_lang_IllegalArgumentException(), "nothing to resolve");
jrose@1145 465 }
jrose@1145 466 klassOop defc_klassOop = java_lang_Class::as_klassOop(defc_oop);
jrose@1145 467 defc_oop = NULL; // safety
jrose@1145 468 if (defc_klassOop == NULL) return; // a primitive; no resolution possible
jrose@1145 469 if (!Klass::cast(defc_klassOop)->oop_is_instance()) {
jrose@1145 470 if (!Klass::cast(defc_klassOop)->oop_is_array()) return;
never@1577 471 defc_klassOop = SystemDictionary::Object_klass();
jrose@1145 472 }
jrose@1145 473 instanceKlassHandle defc(THREAD, defc_klassOop);
jrose@1145 474 defc_klassOop = NULL; // safety
jrose@1145 475 if (defc.is_null()) {
jrose@1145 476 THROW_MSG(vmSymbols::java_lang_InternalError(), "primitive class");
jrose@1145 477 }
jrose@1145 478 defc->link_class(CHECK);
jrose@1145 479
jrose@1145 480 // convert the external string name to an internal symbol
jrose@1145 481 symbolHandle name(THREAD, java_lang_String::as_symbol_or_null(name_str));
jrose@1145 482 if (name.is_null()) return; // no such name
jrose@1145 483 name_str = NULL; // safety
jrose@1145 484
jrose@1863 485 Handle polymorphic_method_type;
jrose@1863 486 bool polymorphic_signature = false;
jrose@1863 487 if ((flags & ALL_KINDS) == IS_METHOD &&
twisti@2343 488 (defc() == SystemDictionary::MethodHandle_klass() &&
twisti@2343 489 methodOopDesc::is_method_handle_invoke_name(name())))
jrose@1863 490 polymorphic_signature = true;
jrose@1863 491
jrose@1145 492 // convert the external string or reflective type to an internal signature
jrose@1145 493 symbolHandle type; {
jrose@1145 494 symbolOop type_sym = NULL;
jrose@1145 495 if (java_dyn_MethodType::is_instance(type_str)) {
jrose@1863 496 type_sym = java_dyn_MethodType::as_signature(type_str, polymorphic_signature, CHECK);
jrose@1863 497 if (polymorphic_signature)
jrose@1863 498 polymorphic_method_type = Handle(THREAD, type_str); //preserve exactly
jrose@1145 499 } else if (java_lang_Class::is_instance(type_str)) {
jrose@1863 500 type_sym = java_lang_Class::as_signature(type_str, false, CHECK);
jrose@1145 501 } else if (java_lang_String::is_instance(type_str)) {
jrose@1863 502 if (polymorphic_signature) {
jrose@1145 503 type = java_lang_String::as_symbol(type_str, CHECK);
jrose@1145 504 } else {
jrose@1145 505 type_sym = java_lang_String::as_symbol_or_null(type_str);
jrose@1145 506 }
jrose@1145 507 } else {
jrose@1145 508 THROW_MSG(vmSymbols::java_lang_InternalError(), "unrecognized type");
jrose@1145 509 }
jrose@1145 510 if (type_sym != NULL)
jrose@1145 511 type = symbolHandle(THREAD, type_sym);
jrose@1145 512 }
jrose@1145 513 if (type.is_null()) return; // no such signature exists in the VM
jrose@1145 514 type_str = NULL; // safety
jrose@1145 515
jrose@1145 516 // Time to do the lookup.
jrose@1145 517 switch (flags & ALL_KINDS) {
jrose@1145 518 case IS_METHOD:
jrose@1145 519 {
jrose@1145 520 CallInfo result;
jrose@1145 521 {
jrose@1145 522 EXCEPTION_MARK;
jrose@1145 523 if ((flags & JVM_ACC_STATIC) != 0) {
jrose@1145 524 LinkResolver::resolve_static_call(result,
jrose@1145 525 defc, name, type, KlassHandle(), false, false, THREAD);
jrose@1145 526 } else if (defc->is_interface()) {
jrose@1145 527 LinkResolver::resolve_interface_call(result, Handle(), defc,
jrose@1145 528 defc, name, type, KlassHandle(), false, false, THREAD);
jrose@1145 529 } else {
jrose@1145 530 LinkResolver::resolve_virtual_call(result, Handle(), defc,
jrose@1145 531 defc, name, type, KlassHandle(), false, false, THREAD);
jrose@1145 532 }
jrose@1145 533 if (HAS_PENDING_EXCEPTION) {
jrose@1145 534 CLEAR_PENDING_EXCEPTION;
jrose@1863 535 break; // go to second chance
jrose@1145 536 }
jrose@1145 537 }
jrose@1145 538 methodHandle m = result.resolved_method();
jrose@1145 539 oop vmtarget = NULL;
jrose@1145 540 int vmindex = methodOopDesc::nonvirtual_vtable_index;
jrose@1145 541 if (defc->is_interface()) {
jrose@1145 542 vmindex = klassItable::compute_itable_index(m());
jrose@1145 543 assert(vmindex >= 0, "");
jrose@1145 544 } else if (result.has_vtable_index()) {
jrose@1145 545 vmindex = result.vtable_index();
jrose@1145 546 assert(vmindex >= 0, "");
jrose@1145 547 }
jrose@1145 548 assert(vmindex != VM_INDEX_UNINITIALIZED, "");
jrose@1145 549 if (vmindex < 0) {
jrose@1145 550 assert(result.is_statically_bound(), "");
jrose@1145 551 vmtarget = m();
jrose@1145 552 } else {
jrose@1145 553 vmtarget = result.resolved_klass()->as_klassOop();
jrose@1145 554 }
jrose@1145 555 int mods = (m->access_flags().as_short() & JVM_RECOGNIZED_METHOD_MODIFIERS);
jrose@1145 556 sun_dyn_MemberName::set_vmtarget(mname(), vmtarget);
jrose@1145 557 sun_dyn_MemberName::set_vmindex(mname(), vmindex);
jrose@1145 558 sun_dyn_MemberName::set_modifiers(mname(), mods);
jrose@1145 559 DEBUG_ONLY(int junk; klassOop junk2);
jrose@1145 560 assert(decode_MemberName(mname(), junk2, junk) == result.resolved_method()(),
jrose@1145 561 "properly stored for later decoding");
jrose@1145 562 return;
jrose@1145 563 }
jrose@1145 564 case IS_CONSTRUCTOR:
jrose@1145 565 {
jrose@1145 566 CallInfo result;
jrose@1145 567 {
jrose@1145 568 EXCEPTION_MARK;
jrose@1145 569 if (name() == vmSymbols::object_initializer_name()) {
jrose@1145 570 LinkResolver::resolve_special_call(result,
jrose@1145 571 defc, name, type, KlassHandle(), false, THREAD);
jrose@1145 572 } else {
jrose@1145 573 break; // will throw after end of switch
jrose@1145 574 }
jrose@1145 575 if (HAS_PENDING_EXCEPTION) {
jrose@1145 576 CLEAR_PENDING_EXCEPTION;
jrose@1145 577 return;
jrose@1145 578 }
jrose@1145 579 }
jrose@1145 580 assert(result.is_statically_bound(), "");
jrose@1145 581 methodHandle m = result.resolved_method();
jrose@1145 582 oop vmtarget = m();
jrose@1145 583 int vmindex = methodOopDesc::nonvirtual_vtable_index;
jrose@1145 584 int mods = (m->access_flags().as_short() & JVM_RECOGNIZED_METHOD_MODIFIERS);
jrose@1145 585 sun_dyn_MemberName::set_vmtarget(mname(), vmtarget);
jrose@1145 586 sun_dyn_MemberName::set_vmindex(mname(), vmindex);
jrose@1145 587 sun_dyn_MemberName::set_modifiers(mname(), mods);
jrose@1145 588 DEBUG_ONLY(int junk; klassOop junk2);
jrose@1145 589 assert(decode_MemberName(mname(), junk2, junk) == result.resolved_method()(),
jrose@1145 590 "properly stored for later decoding");
jrose@1145 591 return;
jrose@1145 592 }
jrose@1145 593 case IS_FIELD:
jrose@1145 594 {
jrose@1145 595 // This is taken from LinkResolver::resolve_field, sans access checks.
jrose@1145 596 fieldDescriptor fd; // find_field initializes fd if found
jrose@1145 597 KlassHandle sel_klass(THREAD, instanceKlass::cast(defc())->find_field(name(), type(), &fd));
jrose@1145 598 // check if field exists; i.e., if a klass containing the field def has been selected
jrose@1145 599 if (sel_klass.is_null()) return;
jrose@1145 600 oop vmtarget = sel_klass->as_klassOop();
jrose@1145 601 int vmindex = fd.offset();
jrose@1145 602 int mods = (fd.access_flags().as_short() & JVM_RECOGNIZED_FIELD_MODIFIERS);
jrose@1145 603 if (vmindex == VM_INDEX_UNINITIALIZED) break; // should not happen
jrose@1145 604 sun_dyn_MemberName::set_vmtarget(mname(), vmtarget);
jrose@1145 605 sun_dyn_MemberName::set_vmindex(mname(), vmindex);
jrose@1145 606 sun_dyn_MemberName::set_modifiers(mname(), mods);
jrose@1145 607 return;
jrose@1145 608 }
jrose@1863 609 default:
jrose@1863 610 THROW_MSG(vmSymbols::java_lang_InternalError(), "unrecognized MemberName format");
jrose@1145 611 }
jrose@1863 612
jrose@1863 613 // Second chance.
jrose@1863 614 if (polymorphic_method_type.not_null()) {
jrose@1863 615 // Look on a non-null class loader.
jrose@1863 616 Handle cur_class_loader;
jrose@1863 617 const int nptypes = java_dyn_MethodType::ptype_count(polymorphic_method_type());
jrose@1863 618 for (int i = 0; i <= nptypes; i++) {
jrose@1863 619 oop type_mirror;
jrose@1863 620 if (i < nptypes) type_mirror = java_dyn_MethodType::ptype(polymorphic_method_type(), i);
jrose@1863 621 else type_mirror = java_dyn_MethodType::rtype(polymorphic_method_type());
jrose@1863 622 klassOop example_type = java_lang_Class::as_klassOop(type_mirror);
jrose@1863 623 if (example_type == NULL) continue;
jrose@1863 624 oop class_loader = Klass::cast(example_type)->class_loader();
jrose@1863 625 if (class_loader == NULL || class_loader == cur_class_loader()) continue;
jrose@1863 626 cur_class_loader = Handle(THREAD, class_loader);
jrose@1863 627 methodOop m = SystemDictionary::find_method_handle_invoke(name,
jrose@1863 628 type,
jrose@1863 629 KlassHandle(THREAD, example_type),
jrose@1863 630 THREAD);
jrose@1863 631 if (HAS_PENDING_EXCEPTION) {
jrose@1863 632 CLEAR_PENDING_EXCEPTION;
jrose@1863 633 m = NULL;
jrose@1863 634 // try again with a different class loader...
jrose@1863 635 }
jrose@1863 636 if (m != NULL) {
jrose@1863 637 int mods = (m->access_flags().as_short() & JVM_RECOGNIZED_METHOD_MODIFIERS);
jrose@1863 638 sun_dyn_MemberName::set_vmtarget(mname(), m);
jrose@1863 639 sun_dyn_MemberName::set_vmindex(mname(), m->vtable_index());
jrose@1863 640 sun_dyn_MemberName::set_modifiers(mname(), mods);
jrose@1863 641 return;
jrose@1863 642 }
jrose@1863 643 }
jrose@1863 644 }
jrose@1145 645 }
jrose@1145 646
jrose@1145 647 // Conversely, a member name which is only initialized from JVM internals
jrose@1145 648 // may have null defc, name, and type fields.
jrose@1145 649 // Resolving it plants a vmtarget/vmindex in it,
jrose@1145 650 // which refers directly to JVM internals.
jrose@1145 651 void MethodHandles::expand_MemberName(Handle mname, int suppress, TRAPS) {
jrose@1145 652 assert(sun_dyn_MemberName::is_instance(mname()), "");
jrose@1145 653 oop vmtarget = sun_dyn_MemberName::vmtarget(mname());
jrose@1145 654 int vmindex = sun_dyn_MemberName::vmindex(mname());
jrose@1145 655 if (vmtarget == NULL || vmindex == VM_INDEX_UNINITIALIZED) {
jrose@1145 656 THROW_MSG(vmSymbols::java_lang_IllegalArgumentException(), "nothing to expand");
jrose@1145 657 }
jrose@1145 658
jrose@1145 659 bool have_defc = (sun_dyn_MemberName::clazz(mname()) != NULL);
jrose@1145 660 bool have_name = (sun_dyn_MemberName::name(mname()) != NULL);
jrose@1145 661 bool have_type = (sun_dyn_MemberName::type(mname()) != NULL);
jrose@1145 662 int flags = sun_dyn_MemberName::flags(mname());
jrose@1145 663
jrose@1145 664 if (suppress != 0) {
jrose@1145 665 if (suppress & _suppress_defc) have_defc = true;
jrose@1145 666 if (suppress & _suppress_name) have_name = true;
jrose@1145 667 if (suppress & _suppress_type) have_type = true;
jrose@1145 668 }
jrose@1145 669
jrose@1145 670 if (have_defc && have_name && have_type) return; // nothing needed
jrose@1145 671
jrose@1145 672 switch (flags & ALL_KINDS) {
jrose@1145 673 case IS_METHOD:
jrose@1145 674 case IS_CONSTRUCTOR:
jrose@1145 675 {
jrose@1145 676 klassOop receiver_limit = NULL;
jrose@1145 677 int decode_flags = 0;
jrose@1145 678 methodHandle m(THREAD, decode_vmtarget(vmtarget, vmindex, NULL,
jrose@1145 679 receiver_limit, decode_flags));
jrose@1145 680 if (m.is_null()) break;
jrose@1145 681 if (!have_defc) {
jrose@1145 682 klassOop defc = m->method_holder();
jrose@1145 683 if (receiver_limit != NULL && receiver_limit != defc
jrose@1145 684 && Klass::cast(receiver_limit)->is_subtype_of(defc))
jrose@1145 685 defc = receiver_limit;
jrose@1145 686 sun_dyn_MemberName::set_clazz(mname(), Klass::cast(defc)->java_mirror());
jrose@1145 687 }
jrose@1145 688 if (!have_name) {
jrose@1145 689 //not java_lang_String::create_from_symbol; let's intern member names
jrose@1145 690 Handle name = StringTable::intern(m->name(), CHECK);
jrose@1145 691 sun_dyn_MemberName::set_name(mname(), name());
jrose@1145 692 }
jrose@1145 693 if (!have_type) {
jrose@1145 694 Handle type = java_lang_String::create_from_symbol(m->signature(), CHECK);
jrose@1145 695 sun_dyn_MemberName::set_type(mname(), type());
jrose@1145 696 }
jrose@1145 697 return;
jrose@1145 698 }
jrose@1145 699 case IS_FIELD:
jrose@1145 700 {
jrose@1145 701 // This is taken from LinkResolver::resolve_field, sans access checks.
jrose@1145 702 if (!vmtarget->is_klass()) break;
jrose@1145 703 if (!Klass::cast((klassOop) vmtarget)->oop_is_instance()) break;
jrose@1145 704 instanceKlassHandle defc(THREAD, (klassOop) vmtarget);
jrose@1145 705 bool is_static = ((flags & JVM_ACC_STATIC) != 0);
jrose@1145 706 fieldDescriptor fd; // find_field initializes fd if found
jrose@1145 707 if (!defc->find_field_from_offset(vmindex, is_static, &fd))
jrose@1145 708 break; // cannot expand
jrose@1145 709 if (!have_defc) {
jrose@1145 710 sun_dyn_MemberName::set_clazz(mname(), defc->java_mirror());
jrose@1145 711 }
jrose@1145 712 if (!have_name) {
jrose@1145 713 //not java_lang_String::create_from_symbol; let's intern member names
jrose@1145 714 Handle name = StringTable::intern(fd.name(), CHECK);
jrose@1145 715 sun_dyn_MemberName::set_name(mname(), name());
jrose@1145 716 }
jrose@1145 717 if (!have_type) {
jrose@1145 718 Handle type = java_lang_String::create_from_symbol(fd.signature(), CHECK);
jrose@1145 719 sun_dyn_MemberName::set_type(mname(), type());
jrose@1145 720 }
jrose@1145 721 return;
jrose@1145 722 }
jrose@1145 723 }
jrose@1145 724 THROW_MSG(vmSymbols::java_lang_InternalError(), "unrecognized MemberName format");
jrose@1145 725 }
jrose@1145 726
jrose@1145 727 int MethodHandles::find_MemberNames(klassOop k,
jrose@1145 728 symbolOop name, symbolOop sig,
jrose@1145 729 int mflags, klassOop caller,
jrose@1145 730 int skip, objArrayOop results) {
jrose@1145 731 DEBUG_ONLY(No_Safepoint_Verifier nsv);
jrose@1145 732 // this code contains no safepoints!
jrose@1145 733
jrose@1145 734 // %%% take caller into account!
jrose@1145 735
jrose@1145 736 if (k == NULL || !Klass::cast(k)->oop_is_instance()) return -1;
jrose@1145 737
jrose@1145 738 int rfill = 0, rlimit = results->length(), rskip = skip;
jrose@1145 739 // overflow measurement:
jrose@1145 740 int overflow = 0, overflow_limit = MAX2(1000, rlimit);
jrose@1145 741
jrose@1145 742 int match_flags = mflags;
jrose@1145 743 bool search_superc = ((match_flags & SEARCH_SUPERCLASSES) != 0);
jrose@1145 744 bool search_intfc = ((match_flags & SEARCH_INTERFACES) != 0);
jrose@1145 745 bool local_only = !(search_superc | search_intfc);
jrose@1145 746 bool classes_only = false;
jrose@1145 747
jrose@1145 748 if (name != NULL) {
jrose@1145 749 if (name->utf8_length() == 0) return 0; // a match is not possible
jrose@1145 750 }
jrose@1145 751 if (sig != NULL) {
jrose@1145 752 if (sig->utf8_length() == 0) return 0; // a match is not possible
jrose@1145 753 if (sig->byte_at(0) == '(')
jrose@1145 754 match_flags &= ~(IS_FIELD | IS_TYPE);
jrose@1145 755 else
jrose@1145 756 match_flags &= ~(IS_CONSTRUCTOR | IS_METHOD);
jrose@1145 757 }
jrose@1145 758
jrose@1145 759 if ((match_flags & IS_TYPE) != 0) {
jrose@1145 760 // NYI, and Core Reflection works quite well for this query
jrose@1145 761 }
jrose@1145 762
jrose@1145 763 if ((match_flags & IS_FIELD) != 0) {
jrose@1145 764 for (FieldStream st(k, local_only, !search_intfc); !st.eos(); st.next()) {
jrose@1145 765 if (name != NULL && st.name() != name)
jrose@1145 766 continue;
jrose@1145 767 if (sig != NULL && st.signature() != sig)
jrose@1145 768 continue;
jrose@1145 769 // passed the filters
jrose@1145 770 if (rskip > 0) {
jrose@1145 771 --rskip;
jrose@1145 772 } else if (rfill < rlimit) {
jrose@1145 773 oop result = results->obj_at(rfill++);
jrose@1145 774 if (!sun_dyn_MemberName::is_instance(result))
jrose@1145 775 return -99; // caller bug!
jrose@1145 776 MethodHandles::init_MemberName(result, st.klass()->as_klassOop(), st.access_flags(), st.offset());
jrose@1145 777 } else if (++overflow >= overflow_limit) {
jrose@1145 778 match_flags = 0; break; // got tired of looking at overflow
jrose@1145 779 }
jrose@1145 780 }
jrose@1145 781 }
jrose@1145 782
jrose@1145 783 if ((match_flags & (IS_METHOD | IS_CONSTRUCTOR)) != 0) {
jrose@1145 784 // watch out for these guys:
jrose@1145 785 symbolOop init_name = vmSymbols::object_initializer_name();
jrose@1145 786 symbolOop clinit_name = vmSymbols::class_initializer_name();
jrose@1145 787 if (name == clinit_name) clinit_name = NULL; // hack for exposing <clinit>
jrose@1145 788 bool negate_name_test = false;
jrose@1145 789 // fix name so that it captures the intention of IS_CONSTRUCTOR
jrose@1145 790 if (!(match_flags & IS_METHOD)) {
jrose@1145 791 // constructors only
jrose@1145 792 if (name == NULL) {
jrose@1145 793 name = init_name;
jrose@1145 794 } else if (name != init_name) {
jrose@1145 795 return 0; // no constructors of this method name
jrose@1145 796 }
jrose@1145 797 } else if (!(match_flags & IS_CONSTRUCTOR)) {
jrose@1145 798 // methods only
jrose@1145 799 if (name == NULL) {
jrose@1145 800 name = init_name;
jrose@1145 801 negate_name_test = true; // if we see the name, we *omit* the entry
jrose@1145 802 } else if (name == init_name) {
jrose@1145 803 return 0; // no methods of this constructor name
jrose@1145 804 }
jrose@1145 805 } else {
jrose@1145 806 // caller will accept either sort; no need to adjust name
jrose@1145 807 }
jrose@1145 808 for (MethodStream st(k, local_only, !search_intfc); !st.eos(); st.next()) {
jrose@1145 809 methodOop m = st.method();
jrose@1145 810 symbolOop m_name = m->name();
jrose@1145 811 if (m_name == clinit_name)
jrose@1145 812 continue;
jrose@1145 813 if (name != NULL && ((m_name != name) ^ negate_name_test))
jrose@1145 814 continue;
jrose@1145 815 if (sig != NULL && m->signature() != sig)
jrose@1145 816 continue;
jrose@1145 817 // passed the filters
jrose@1145 818 if (rskip > 0) {
jrose@1145 819 --rskip;
jrose@1145 820 } else if (rfill < rlimit) {
jrose@1145 821 oop result = results->obj_at(rfill++);
jrose@1145 822 if (!sun_dyn_MemberName::is_instance(result))
jrose@1145 823 return -99; // caller bug!
jrose@1145 824 MethodHandles::init_MemberName(result, m, true);
jrose@1145 825 } else if (++overflow >= overflow_limit) {
jrose@1145 826 match_flags = 0; break; // got tired of looking at overflow
jrose@1145 827 }
jrose@1145 828 }
jrose@1145 829 }
jrose@1145 830
jrose@1145 831 // return number of elements we at leasted wanted to initialize
jrose@1145 832 return rfill + overflow;
jrose@1145 833 }
jrose@1145 834
jrose@1145 835
jrose@1862 836 // Decode this java.lang.Class object into an instanceKlass, if possible.
jrose@1862 837 // Throw IAE if not
jrose@1862 838 instanceKlassHandle MethodHandles::resolve_instance_klass(oop java_mirror_oop, TRAPS) {
jrose@1862 839 instanceKlassHandle empty;
jrose@1862 840 klassOop caller = NULL;
jrose@1862 841 if (java_lang_Class::is_instance(java_mirror_oop)) {
jrose@1862 842 caller = java_lang_Class::as_klassOop(java_mirror_oop);
jrose@1862 843 }
jrose@1862 844 if (caller == NULL || !Klass::cast(caller)->oop_is_instance()) {
jrose@1862 845 THROW_MSG_(vmSymbols::java_lang_IllegalArgumentException(), "not a class", empty);
jrose@1862 846 }
jrose@1862 847 return instanceKlassHandle(THREAD, caller);
jrose@1862 848 }
jrose@1862 849
jrose@1145 850
jrose@1145 851
jrose@1145 852 // Decode the vmtarget field of a method handle.
jrose@1145 853 // Sanitize out methodOops, klassOops, and any other non-Java data.
jrose@1145 854 // This is for debugging and reflection.
jrose@1145 855 oop MethodHandles::encode_target(Handle mh, int format, TRAPS) {
jrose@1145 856 assert(java_dyn_MethodHandle::is_instance(mh()), "must be a MH");
jrose@1145 857 if (format == ETF_HANDLE_OR_METHOD_NAME) {
jrose@1145 858 oop target = java_dyn_MethodHandle::vmtarget(mh());
jrose@1145 859 if (target == NULL) {
jrose@1145 860 return NULL; // unformed MH
jrose@1145 861 }
jrose@1145 862 klassOop tklass = target->klass();
never@1577 863 if (Klass::cast(tklass)->is_subclass_of(SystemDictionary::Object_klass())) {
jrose@1145 864 return target; // target is another MH (or something else?)
jrose@1145 865 }
jrose@1145 866 }
jrose@1145 867 if (format == ETF_DIRECT_HANDLE) {
jrose@1145 868 oop target = mh();
jrose@1145 869 for (;;) {
jrose@1145 870 if (target->klass() == SystemDictionary::DirectMethodHandle_klass()) {
jrose@1145 871 return target;
jrose@1145 872 }
jrose@1145 873 if (!java_dyn_MethodHandle::is_instance(target)){
jrose@1145 874 return NULL; // unformed MH
jrose@1145 875 }
jrose@1145 876 target = java_dyn_MethodHandle::vmtarget(target);
jrose@1145 877 }
jrose@1145 878 }
jrose@1145 879 // cases of metadata in MH.vmtarget:
jrose@1145 880 // - AMH can have methodOop for static invoke with bound receiver
jrose@1145 881 // - DMH can have methodOop for static invoke (on variable receiver)
jrose@1145 882 // - DMH can have klassOop for dispatched (non-static) invoke
jrose@1145 883 klassOop receiver_limit = NULL;
jrose@1145 884 int decode_flags = 0;
jrose@1145 885 methodOop m = decode_MethodHandle(mh(), receiver_limit, decode_flags);
jrose@1145 886 if (m == NULL) return NULL;
jrose@1145 887 switch (format) {
jrose@1145 888 case ETF_REFLECT_METHOD:
jrose@1145 889 // same as jni_ToReflectedMethod:
jrose@1145 890 if (m->is_initializer()) {
jrose@1145 891 return Reflection::new_constructor(m, THREAD);
jrose@1145 892 } else {
jrose@1145 893 return Reflection::new_method(m, UseNewReflection, false, THREAD);
jrose@1145 894 }
jrose@1145 895
jrose@1145 896 case ETF_HANDLE_OR_METHOD_NAME: // method, not handle
jrose@1145 897 case ETF_METHOD_NAME:
jrose@1145 898 {
jrose@1145 899 if (SystemDictionary::MemberName_klass() == NULL) break;
jrose@1145 900 instanceKlassHandle mname_klass(THREAD, SystemDictionary::MemberName_klass());
jrose@1145 901 mname_klass->initialize(CHECK_NULL);
jrose@1145 902 Handle mname = mname_klass->allocate_instance_handle(CHECK_NULL);
jrose@1145 903 sun_dyn_MemberName::set_vmindex(mname(), VM_INDEX_UNINITIALIZED);
jrose@1145 904 bool do_dispatch = ((decode_flags & MethodHandles::_dmf_does_dispatch) != 0);
jrose@1145 905 init_MemberName(mname(), m, do_dispatch);
jrose@1145 906 expand_MemberName(mname, 0, CHECK_NULL);
jrose@1145 907 return mname();
jrose@1145 908 }
jrose@1145 909 }
jrose@1145 910
jrose@1145 911 // Unknown format code.
jrose@1145 912 char msg[50];
jrose@1145 913 jio_snprintf(msg, sizeof(msg), "unknown getTarget format=%d", format);
jrose@1145 914 THROW_MSG_NULL(vmSymbols::java_lang_IllegalArgumentException(), msg);
jrose@1145 915 }
jrose@1145 916
jrose@1474 917 static const char* always_null_names[] = {
jrose@1474 918 "java/lang/Void",
jrose@1474 919 "java/lang/Null",
jrose@1474 920 //"java/lang/Nothing",
jrose@1474 921 "sun/dyn/empty/Empty",
jrose@1474 922 NULL
jrose@1474 923 };
jrose@1474 924
jrose@1474 925 static bool is_always_null_type(klassOop klass) {
jrose@1474 926 if (!Klass::cast(klass)->oop_is_instance()) return false;
jrose@1474 927 instanceKlass* ik = instanceKlass::cast(klass);
jrose@1474 928 // Must be on the boot class path:
jrose@1474 929 if (ik->class_loader() != NULL) return false;
jrose@1474 930 // Check the name.
jrose@1474 931 symbolOop name = ik->name();
jrose@1474 932 for (int i = 0; ; i++) {
jrose@1474 933 const char* test_name = always_null_names[i];
jrose@1474 934 if (test_name == NULL) break;
twisti@1573 935 if (name->equals(test_name))
jrose@1474 936 return true;
jrose@1474 937 }
jrose@1474 938 return false;
jrose@1474 939 }
jrose@1474 940
jrose@1145 941 bool MethodHandles::class_cast_needed(klassOop src, klassOop dst) {
never@1577 942 if (src == dst || dst == SystemDictionary::Object_klass())
jrose@1145 943 return false; // quickest checks
jrose@1145 944 Klass* srck = Klass::cast(src);
jrose@1145 945 Klass* dstk = Klass::cast(dst);
jrose@1145 946 if (dstk->is_interface()) {
jrose@1145 947 // interface receivers can safely be viewed as untyped,
jrose@1145 948 // because interface calls always include a dynamic check
never@1577 949 //dstk = Klass::cast(SystemDictionary::Object_klass());
jrose@1145 950 return false;
jrose@1145 951 }
jrose@1145 952 if (srck->is_interface()) {
jrose@1145 953 // interface arguments must be viewed as untyped
never@1577 954 //srck = Klass::cast(SystemDictionary::Object_klass());
jrose@1145 955 return true;
jrose@1145 956 }
jrose@1474 957 if (is_always_null_type(src)) {
jrose@1474 958 // some source types are known to be never instantiated;
jrose@1474 959 // they represent references which are always null
jrose@1474 960 // such null references never fail to convert safely
jrose@1474 961 return false;
jrose@1474 962 }
jrose@1145 963 return !srck->is_subclass_of(dstk->as_klassOop());
jrose@1145 964 }
jrose@1145 965
jrose@1145 966 static oop object_java_mirror() {
never@1577 967 return Klass::cast(SystemDictionary::Object_klass())->java_mirror();
jrose@1145 968 }
jrose@1145 969
jrose@1145 970 bool MethodHandles::same_basic_type_for_arguments(BasicType src,
jrose@1145 971 BasicType dst,
jrose@1474 972 bool raw,
jrose@1145 973 bool for_return) {
jrose@1474 974 if (for_return) {
jrose@1474 975 // return values can always be forgotten:
jrose@1474 976 if (dst == T_VOID) return true;
jrose@1474 977 if (src == T_VOID) return raw && (dst == T_INT);
jrose@1474 978 // We allow caller to receive a garbage int, which is harmless.
jrose@1474 979 // This trick is pulled by trusted code (see VerifyType.canPassRaw).
jrose@1474 980 }
jrose@1145 981 assert(src != T_VOID && dst != T_VOID, "should not be here");
jrose@1145 982 if (src == dst) return true;
jrose@1145 983 if (type2size[src] != type2size[dst]) return false;
jrose@2267 984 if (src == T_OBJECT || dst == T_OBJECT) return false;
jrose@2267 985 if (raw) return true; // bitwise reinterpretation; caller guarantees safety
jrose@1145 986 // allow reinterpretation casts for integral widening
jrose@1145 987 if (is_subword_type(src)) { // subwords can fit in int or other subwords
jrose@1145 988 if (dst == T_INT) // any subword fits in an int
jrose@1145 989 return true;
jrose@1145 990 if (src == T_BOOLEAN) // boolean fits in any subword
jrose@1145 991 return is_subword_type(dst);
jrose@1145 992 if (src == T_BYTE && dst == T_SHORT)
jrose@1145 993 return true; // remaining case: byte fits in short
jrose@1145 994 }
jrose@1145 995 // allow float/fixed reinterpretation casts
jrose@1145 996 if (src == T_FLOAT) return dst == T_INT;
jrose@1145 997 if (src == T_INT) return dst == T_FLOAT;
jrose@1145 998 if (src == T_DOUBLE) return dst == T_LONG;
jrose@1145 999 if (src == T_LONG) return dst == T_DOUBLE;
jrose@1145 1000 return false;
jrose@1145 1001 }
jrose@1145 1002
jrose@1145 1003 const char* MethodHandles::check_method_receiver(methodOop m,
jrose@1145 1004 klassOop passed_recv_type) {
jrose@1145 1005 assert(!m->is_static(), "caller resp.");
jrose@1145 1006 if (passed_recv_type == NULL)
jrose@1145 1007 return "receiver type is primitive";
jrose@1145 1008 if (class_cast_needed(passed_recv_type, m->method_holder())) {
jrose@1145 1009 Klass* formal = Klass::cast(m->method_holder());
jrose@1145 1010 return SharedRuntime::generate_class_cast_message("receiver type",
jrose@1145 1011 formal->external_name());
jrose@1145 1012 }
jrose@1145 1013 return NULL; // checks passed
jrose@1145 1014 }
jrose@1145 1015
jrose@1145 1016 // Verify that m's signature can be called type-safely by a method handle
jrose@1145 1017 // of the given method type 'mtype'.
jrose@1145 1018 // It takes a TRAPS argument because it must perform symbol lookups.
jrose@1145 1019 void MethodHandles::verify_method_signature(methodHandle m,
jrose@1145 1020 Handle mtype,
jrose@1145 1021 int first_ptype_pos,
jrose@1145 1022 KlassHandle insert_ptype,
jrose@1145 1023 TRAPS) {
jrose@1145 1024 objArrayHandle ptypes(THREAD, java_dyn_MethodType::ptypes(mtype()));
jrose@1145 1025 int pnum = first_ptype_pos;
jrose@1145 1026 int pmax = ptypes->length();
jrose@1145 1027 int mnum = 0; // method argument
jrose@1145 1028 const char* err = NULL;
jrose@1145 1029 for (SignatureStream ss(m->signature()); !ss.is_done(); ss.next()) {
jrose@1145 1030 oop ptype_oop = NULL;
jrose@1145 1031 if (ss.at_return_type()) {
jrose@1145 1032 if (pnum != pmax)
jrose@1145 1033 { err = "too many arguments"; break; }
jrose@1145 1034 ptype_oop = java_dyn_MethodType::rtype(mtype());
jrose@1145 1035 } else {
jrose@1145 1036 if (pnum >= pmax)
jrose@1145 1037 { err = "not enough arguments"; break; }
jrose@1145 1038 if (pnum >= 0)
jrose@1145 1039 ptype_oop = ptypes->obj_at(pnum);
jrose@1145 1040 else if (insert_ptype.is_null())
jrose@1145 1041 ptype_oop = NULL;
jrose@1145 1042 else
jrose@1145 1043 ptype_oop = insert_ptype->java_mirror();
jrose@1145 1044 pnum += 1;
jrose@1145 1045 mnum += 1;
jrose@1145 1046 }
jrose@1863 1047 klassOop pklass = NULL;
jrose@1863 1048 BasicType ptype = T_OBJECT;
jrose@1863 1049 if (ptype_oop != NULL)
jrose@1863 1050 ptype = java_lang_Class::as_BasicType(ptype_oop, &pklass);
jrose@1863 1051 else
jrose@1863 1052 // null does not match any non-reference; use Object to report the error
jrose@1863 1053 pklass = SystemDictionary::Object_klass();
jrose@1145 1054 klassOop mklass = NULL;
jrose@1145 1055 BasicType mtype = ss.type();
jrose@1145 1056 if (mtype == T_ARRAY) mtype = T_OBJECT; // fold all refs to T_OBJECT
jrose@1145 1057 if (mtype == T_OBJECT) {
jrose@1145 1058 if (ptype_oop == NULL) {
jrose@1145 1059 // null matches any reference
jrose@1145 1060 continue;
jrose@1145 1061 }
jrose@1863 1062 KlassHandle pklass_handle(THREAD, pklass); pklass = NULL;
jrose@1145 1063 // If we fail to resolve types at this point, we will throw an error.
jrose@1145 1064 symbolOop name_oop = ss.as_symbol(CHECK);
jrose@1145 1065 symbolHandle name(THREAD, name_oop);
jrose@1145 1066 instanceKlass* mk = instanceKlass::cast(m->method_holder());
jrose@1145 1067 Handle loader(THREAD, mk->class_loader());
jrose@1145 1068 Handle domain(THREAD, mk->protection_domain());
jrose@1863 1069 mklass = SystemDictionary::resolve_or_null(name, loader, domain, CHECK);
jrose@1863 1070 pklass = pklass_handle();
jrose@1863 1071 if (mklass == NULL && pklass != NULL &&
jrose@1863 1072 Klass::cast(pklass)->name() == name() &&
jrose@1863 1073 m->is_method_handle_invoke()) {
jrose@1863 1074 // Assume a match. We can't really decode the signature of MH.invoke*.
jrose@1863 1075 continue;
jrose@1863 1076 }
jrose@1145 1077 }
jrose@1145 1078 if (!ss.at_return_type()) {
jrose@1145 1079 err = check_argument_type_change(ptype, pklass, mtype, mklass, mnum);
jrose@1145 1080 } else {
jrose@1145 1081 err = check_return_type_change(mtype, mklass, ptype, pklass); // note reversal!
jrose@1145 1082 }
jrose@1145 1083 if (err != NULL) break;
jrose@1145 1084 }
jrose@1145 1085
jrose@1145 1086 if (err != NULL) {
jrose@1145 1087 THROW_MSG(vmSymbols::java_lang_InternalError(), err);
jrose@1145 1088 }
jrose@1145 1089 }
jrose@1145 1090
jrose@1145 1091 // Main routine for verifying the MethodHandle.type of a proposed
jrose@1145 1092 // direct or bound-direct method handle.
jrose@1145 1093 void MethodHandles::verify_method_type(methodHandle m,
jrose@1145 1094 Handle mtype,
jrose@1145 1095 bool has_bound_recv,
jrose@1145 1096 KlassHandle bound_recv_type,
jrose@1145 1097 TRAPS) {
jrose@1145 1098 bool m_needs_receiver = !m->is_static();
jrose@1145 1099
jrose@1145 1100 const char* err = NULL;
jrose@1145 1101
jrose@1145 1102 int first_ptype_pos = m_needs_receiver ? 1 : 0;
jrose@1474 1103 if (has_bound_recv) {
jrose@1474 1104 first_ptype_pos -= 1; // ptypes do not include the bound argument; start earlier in them
jrose@1145 1105 if (m_needs_receiver && bound_recv_type.is_null())
jrose@1145 1106 { err = "bound receiver is not an object"; goto die; }
jrose@1145 1107 }
jrose@1145 1108
jrose@1145 1109 if (m_needs_receiver && err == NULL) {
jrose@1145 1110 objArrayOop ptypes = java_dyn_MethodType::ptypes(mtype());
jrose@1145 1111 if (ptypes->length() < first_ptype_pos)
jrose@1145 1112 { err = "receiver argument is missing"; goto die; }
jrose@1474 1113 if (has_bound_recv)
jrose@1145 1114 err = check_method_receiver(m(), bound_recv_type->as_klassOop());
jrose@1145 1115 else
jrose@1474 1116 err = check_method_receiver(m(), java_lang_Class::as_klassOop(ptypes->obj_at(first_ptype_pos-1)));
jrose@1145 1117 if (err != NULL) goto die;
jrose@1145 1118 }
jrose@1145 1119
jrose@1145 1120 // Check the other arguments for mistypes.
jrose@1145 1121 verify_method_signature(m, mtype, first_ptype_pos, bound_recv_type, CHECK);
jrose@1145 1122 return;
jrose@1145 1123
jrose@1145 1124 die:
jrose@1145 1125 THROW_MSG(vmSymbols::java_lang_InternalError(), err);
jrose@1145 1126 }
jrose@1145 1127
jrose@1145 1128 void MethodHandles::verify_vmslots(Handle mh, TRAPS) {
jrose@1145 1129 // Verify vmslots.
jrose@1145 1130 int check_slots = argument_slot_count(java_dyn_MethodHandle::type(mh()));
jrose@1145 1131 if (java_dyn_MethodHandle::vmslots(mh()) != check_slots) {
jrose@1145 1132 THROW_MSG(vmSymbols::java_lang_InternalError(), "bad vmslots in BMH");
jrose@1145 1133 }
jrose@1145 1134 }
jrose@1145 1135
jrose@1145 1136 void MethodHandles::verify_vmargslot(Handle mh, int argnum, int argslot, TRAPS) {
jrose@1145 1137 // Verify that argslot points at the given argnum.
jrose@1145 1138 int check_slot = argument_slot(java_dyn_MethodHandle::type(mh()), argnum);
jrose@1145 1139 if (argslot != check_slot || argslot < 0) {
jrose@1145 1140 const char* fmt = "for argnum of %d, vmargslot is %d, should be %d";
jrose@1145 1141 size_t msglen = strlen(fmt) + 3*11 + 1;
jrose@1145 1142 char* msg = NEW_RESOURCE_ARRAY(char, msglen);
jrose@1145 1143 jio_snprintf(msg, msglen, fmt, argnum, argslot, check_slot);
jrose@1145 1144 THROW_MSG(vmSymbols::java_lang_InternalError(), msg);
jrose@1145 1145 }
jrose@1145 1146 }
jrose@1145 1147
jrose@1145 1148 // Verify the correspondence between two method types.
jrose@1145 1149 // Apart from the advertised changes, caller method type X must
jrose@1145 1150 // be able to invoke the callee method Y type with no violations
jrose@1145 1151 // of type integrity.
jrose@1145 1152 // Return NULL if all is well, else a short error message.
jrose@1145 1153 const char* MethodHandles::check_method_type_change(oop src_mtype, int src_beg, int src_end,
jrose@1145 1154 int insert_argnum, oop insert_type,
jrose@1145 1155 int change_argnum, oop change_type,
jrose@1145 1156 int delete_argnum,
jrose@1474 1157 oop dst_mtype, int dst_beg, int dst_end,
jrose@1474 1158 bool raw) {
jrose@1145 1159 objArrayOop src_ptypes = java_dyn_MethodType::ptypes(src_mtype);
jrose@1145 1160 objArrayOop dst_ptypes = java_dyn_MethodType::ptypes(dst_mtype);
jrose@1145 1161
jrose@1145 1162 int src_max = src_ptypes->length();
jrose@1145 1163 int dst_max = dst_ptypes->length();
jrose@1145 1164
jrose@1145 1165 if (src_end == -1) src_end = src_max;
jrose@1145 1166 if (dst_end == -1) dst_end = dst_max;
jrose@1145 1167
jrose@1145 1168 assert(0 <= src_beg && src_beg <= src_end && src_end <= src_max, "oob");
jrose@1145 1169 assert(0 <= dst_beg && dst_beg <= dst_end && dst_end <= dst_max, "oob");
jrose@1145 1170
jrose@1145 1171 // pending actions; set to -1 when done:
jrose@1145 1172 int ins_idx = insert_argnum, chg_idx = change_argnum, del_idx = delete_argnum;
jrose@1145 1173
jrose@1145 1174 const char* err = NULL;
jrose@1145 1175
jrose@1145 1176 // Walk along each array of parameter types, including a virtual
jrose@1145 1177 // NULL end marker at the end of each.
jrose@1145 1178 for (int src_idx = src_beg, dst_idx = dst_beg;
jrose@1145 1179 (src_idx <= src_end && dst_idx <= dst_end);
jrose@1145 1180 src_idx++, dst_idx++) {
jrose@1145 1181 oop src_type = (src_idx == src_end) ? oop(NULL) : src_ptypes->obj_at(src_idx);
jrose@1145 1182 oop dst_type = (dst_idx == dst_end) ? oop(NULL) : dst_ptypes->obj_at(dst_idx);
jrose@1145 1183 bool fix_null_src_type = false;
jrose@1145 1184
jrose@1145 1185 // Perform requested edits.
jrose@1145 1186 if (ins_idx == src_idx) {
jrose@1145 1187 // note that the inserted guy is never affected by a change or deletion
jrose@1145 1188 ins_idx = -1;
jrose@1145 1189 src_type = insert_type;
jrose@1145 1190 fix_null_src_type = true;
jrose@1145 1191 --src_idx; // back up to process src type on next loop
jrose@1145 1192 src_idx = src_end;
jrose@1145 1193 } else {
jrose@1145 1194 // note that the changed guy can be immediately deleted
jrose@1145 1195 if (chg_idx == src_idx) {
jrose@1145 1196 chg_idx = -1;
jrose@1145 1197 assert(src_idx < src_end, "oob");
jrose@1145 1198 src_type = change_type;
jrose@1145 1199 fix_null_src_type = true;
jrose@1145 1200 }
jrose@1145 1201 if (del_idx == src_idx) {
jrose@1145 1202 del_idx = -1;
jrose@1145 1203 assert(src_idx < src_end, "oob");
jrose@1145 1204 --dst_idx;
jrose@1145 1205 continue; // rerun loop after skipping this position
jrose@1145 1206 }
jrose@1145 1207 }
jrose@1145 1208
jrose@1145 1209 if (src_type == NULL && fix_null_src_type)
jrose@1145 1210 // explicit null in this case matches any dest reference
jrose@1145 1211 src_type = (java_lang_Class::is_primitive(dst_type) ? object_java_mirror() : dst_type);
jrose@1145 1212
jrose@1145 1213 // Compare the two argument types.
jrose@1145 1214 if (src_type != dst_type) {
jrose@1145 1215 if (src_type == NULL) return "not enough arguments";
jrose@1145 1216 if (dst_type == NULL) return "too many arguments";
jrose@1474 1217 err = check_argument_type_change(src_type, dst_type, dst_idx, raw);
jrose@1145 1218 if (err != NULL) return err;
jrose@1145 1219 }
jrose@1145 1220 }
jrose@1145 1221
jrose@1145 1222 // Now compare return types also.
jrose@1145 1223 oop src_rtype = java_dyn_MethodType::rtype(src_mtype);
jrose@1145 1224 oop dst_rtype = java_dyn_MethodType::rtype(dst_mtype);
jrose@1145 1225 if (src_rtype != dst_rtype) {
jrose@1474 1226 err = check_return_type_change(dst_rtype, src_rtype, raw); // note reversal!
jrose@1145 1227 if (err != NULL) return err;
jrose@1145 1228 }
jrose@1145 1229
jrose@1145 1230 assert(err == NULL, "");
jrose@1145 1231 return NULL; // all is well
jrose@1145 1232 }
jrose@1145 1233
jrose@1145 1234
jrose@1145 1235 const char* MethodHandles::check_argument_type_change(BasicType src_type,
jrose@1474 1236 klassOop src_klass,
jrose@1474 1237 BasicType dst_type,
jrose@1474 1238 klassOop dst_klass,
jrose@1474 1239 int argnum,
jrose@1474 1240 bool raw) {
jrose@1145 1241 const char* err = NULL;
jrose@1474 1242 bool for_return = (argnum < 0);
jrose@1145 1243
jrose@1145 1244 // just in case:
jrose@1145 1245 if (src_type == T_ARRAY) src_type = T_OBJECT;
jrose@1145 1246 if (dst_type == T_ARRAY) dst_type = T_OBJECT;
jrose@1145 1247
jrose@1145 1248 // Produce some nice messages if VerifyMethodHandles is turned on:
jrose@1474 1249 if (!same_basic_type_for_arguments(src_type, dst_type, raw, for_return)) {
jrose@1145 1250 if (src_type == T_OBJECT) {
jrose@1474 1251 if (raw && dst_type == T_INT && is_always_null_type(src_klass))
jrose@1474 1252 return NULL; // OK to convert a null pointer to a garbage int
jrose@1145 1253 err = ((argnum >= 0)
jrose@1145 1254 ? "type mismatch: passing a %s for method argument #%d, which expects primitive %s"
jrose@1145 1255 : "type mismatch: returning a %s, but caller expects primitive %s");
jrose@1145 1256 } else if (dst_type == T_OBJECT) {
jrose@1474 1257 err = ((argnum >= 0)
jrose@1145 1258 ? "type mismatch: passing a primitive %s for method argument #%d, which expects %s"
jrose@1145 1259 : "type mismatch: returning a primitive %s, but caller expects %s");
jrose@1145 1260 } else {
jrose@1474 1261 err = ((argnum >= 0)
jrose@1145 1262 ? "type mismatch: passing a %s for method argument #%d, which expects %s"
jrose@1145 1263 : "type mismatch: returning a %s, but caller expects %s");
jrose@1145 1264 }
jrose@1474 1265 } else if (src_type == T_OBJECT && dst_type == T_OBJECT &&
jrose@1474 1266 class_cast_needed(src_klass, dst_klass)) {
jrose@1145 1267 if (!class_cast_needed(dst_klass, src_klass)) {
jrose@1474 1268 if (raw)
jrose@1474 1269 return NULL; // reverse cast is OK; the MH target is trusted to enforce it
jrose@1474 1270 err = ((argnum >= 0)
jrose@1145 1271 ? "cast required: passing a %s for method argument #%d, which expects %s"
jrose@1145 1272 : "cast required: returning a %s, but caller expects %s");
jrose@1145 1273 } else {
jrose@1474 1274 err = ((argnum >= 0)
jrose@1145 1275 ? "reference mismatch: passing a %s for method argument #%d, which expects %s"
jrose@1145 1276 : "reference mismatch: returning a %s, but caller expects %s");
jrose@1145 1277 }
jrose@1145 1278 } else {
jrose@1145 1279 // passed the obstacle course
jrose@1145 1280 return NULL;
jrose@1145 1281 }
jrose@1145 1282
jrose@1145 1283 // format, format, format
jrose@1145 1284 const char* src_name = type2name(src_type);
jrose@1145 1285 const char* dst_name = type2name(dst_type);
jrose@1145 1286 if (src_type == T_OBJECT) src_name = Klass::cast(src_klass)->external_name();
jrose@1145 1287 if (dst_type == T_OBJECT) dst_name = Klass::cast(dst_klass)->external_name();
jrose@1145 1288 if (src_name == NULL) src_name = "unknown type";
jrose@1145 1289 if (dst_name == NULL) dst_name = "unknown type";
jrose@1145 1290
jrose@1145 1291 size_t msglen = strlen(err) + strlen(src_name) + strlen(dst_name) + (argnum < 10 ? 1 : 11);
jrose@1145 1292 char* msg = NEW_RESOURCE_ARRAY(char, msglen + 1);
jrose@1145 1293 if (argnum >= 0) {
jrose@1145 1294 assert(strstr(err, "%d") != NULL, "");
jrose@1145 1295 jio_snprintf(msg, msglen, err, src_name, argnum, dst_name);
jrose@1145 1296 } else {
jrose@1145 1297 assert(strstr(err, "%d") == NULL, "");
jrose@1145 1298 jio_snprintf(msg, msglen, err, src_name, dst_name);
jrose@1145 1299 }
jrose@1145 1300 return msg;
jrose@1145 1301 }
jrose@1145 1302
jrose@1145 1303 // Compute the depth within the stack of the given argument, i.e.,
jrose@1145 1304 // the combined size of arguments to the right of the given argument.
jrose@1145 1305 // For the last argument (ptypes.length-1) this will be zero.
jrose@1145 1306 // For the first argument (0) this will be the size of all
jrose@1145 1307 // arguments but that one. For the special number -1, this
jrose@1145 1308 // will be the size of all arguments, including the first.
jrose@1145 1309 // If the argument is neither -1 nor a valid argument index,
jrose@1145 1310 // then return a negative number. Otherwise, the result
jrose@1145 1311 // is in the range [0..vmslots] inclusive.
jrose@1145 1312 int MethodHandles::argument_slot(oop method_type, int arg) {
jrose@1145 1313 objArrayOop ptypes = java_dyn_MethodType::ptypes(method_type);
jrose@1145 1314 int argslot = 0;
jrose@1145 1315 int len = ptypes->length();
jrose@1145 1316 if (arg < -1 || arg >= len) return -99;
jrose@1145 1317 for (int i = len-1; i > arg; i--) {
jrose@1145 1318 BasicType bt = java_lang_Class::as_BasicType(ptypes->obj_at(i));
jrose@1145 1319 argslot += type2size[bt];
jrose@1145 1320 }
jrose@1145 1321 assert(argument_slot_to_argnum(method_type, argslot) == arg, "inverse works");
jrose@1145 1322 return argslot;
jrose@1145 1323 }
jrose@1145 1324
jrose@1145 1325 // Given a slot number, return the argument number.
jrose@1145 1326 int MethodHandles::argument_slot_to_argnum(oop method_type, int query_argslot) {
jrose@1145 1327 objArrayOop ptypes = java_dyn_MethodType::ptypes(method_type);
jrose@1145 1328 int argslot = 0;
jrose@1145 1329 int len = ptypes->length();
jrose@1145 1330 for (int i = len-1; i >= 0; i--) {
jrose@1145 1331 if (query_argslot == argslot) return i;
jrose@1145 1332 BasicType bt = java_lang_Class::as_BasicType(ptypes->obj_at(i));
jrose@1145 1333 argslot += type2size[bt];
jrose@1145 1334 }
jrose@1145 1335 // return pseudo-arg deepest in stack:
jrose@1145 1336 if (query_argslot == argslot) return -1;
jrose@1145 1337 return -99; // oob slot, or splitting a double-slot arg
jrose@1145 1338 }
jrose@1145 1339
jrose@1145 1340 methodHandle MethodHandles::dispatch_decoded_method(methodHandle m,
jrose@1145 1341 KlassHandle receiver_limit,
jrose@1145 1342 int decode_flags,
jrose@1145 1343 KlassHandle receiver_klass,
jrose@1145 1344 TRAPS) {
jrose@1145 1345 assert((decode_flags & ~_DMF_DIRECT_MASK) == 0, "must be direct method reference");
jrose@1145 1346 assert((decode_flags & _dmf_has_receiver) != 0, "must have a receiver or first reference argument");
jrose@1145 1347
jrose@1145 1348 if (!m->is_static() &&
jrose@1145 1349 (receiver_klass.is_null() || !receiver_klass->is_subtype_of(m->method_holder())))
jrose@1145 1350 // given type does not match class of method, or receiver is null!
jrose@1145 1351 // caller should have checked this, but let's be extra careful...
jrose@1145 1352 return methodHandle();
jrose@1145 1353
jrose@1145 1354 if (receiver_limit.not_null() &&
jrose@1145 1355 (receiver_klass.not_null() && !receiver_klass->is_subtype_of(receiver_limit())))
jrose@1145 1356 // given type is not limited to the receiver type
jrose@1145 1357 // note that a null receiver can match any reference value, for a static method
jrose@1145 1358 return methodHandle();
jrose@1145 1359
jrose@1145 1360 if (!(decode_flags & MethodHandles::_dmf_does_dispatch)) {
jrose@1145 1361 // pre-dispatched or static method (null receiver is OK for static)
jrose@1145 1362 return m;
jrose@1145 1363
jrose@1145 1364 } else if (receiver_klass.is_null()) {
jrose@1145 1365 // null receiver value; cannot dispatch
jrose@1145 1366 return methodHandle();
jrose@1145 1367
jrose@1145 1368 } else if (!(decode_flags & MethodHandles::_dmf_from_interface)) {
jrose@1145 1369 // perform virtual dispatch
jrose@1145 1370 int vtable_index = m->vtable_index();
jrose@1145 1371 guarantee(vtable_index >= 0, "valid vtable index");
jrose@1145 1372
jrose@1145 1373 // receiver_klass might be an arrayKlassOop but all vtables start at
jrose@1145 1374 // the same place. The cast is to avoid virtual call and assertion.
jrose@1145 1375 // See also LinkResolver::runtime_resolve_virtual_method.
jrose@1145 1376 instanceKlass* inst = (instanceKlass*)Klass::cast(receiver_klass());
jrose@1145 1377 DEBUG_ONLY(inst->verify_vtable_index(vtable_index));
jrose@1145 1378 methodOop m_oop = inst->method_at_vtable(vtable_index);
jrose@1145 1379 return methodHandle(THREAD, m_oop);
jrose@1145 1380
jrose@1145 1381 } else {
jrose@1145 1382 // perform interface dispatch
jrose@1145 1383 int itable_index = klassItable::compute_itable_index(m());
jrose@1145 1384 guarantee(itable_index >= 0, "valid itable index");
jrose@1145 1385 instanceKlass* inst = instanceKlass::cast(receiver_klass());
jrose@1145 1386 methodOop m_oop = inst->method_at_itable(m->method_holder(), itable_index, THREAD);
jrose@1145 1387 return methodHandle(THREAD, m_oop);
jrose@1145 1388 }
jrose@1145 1389 }
jrose@1145 1390
jrose@1145 1391 void MethodHandles::verify_DirectMethodHandle(Handle mh, methodHandle m, TRAPS) {
jrose@1145 1392 // Verify type.
jrose@1145 1393 Handle mtype(THREAD, java_dyn_MethodHandle::type(mh()));
jrose@1145 1394 verify_method_type(m, mtype, false, KlassHandle(), CHECK);
jrose@1145 1395
jrose@1145 1396 // Verify vmslots.
jrose@1145 1397 if (java_dyn_MethodHandle::vmslots(mh()) != m->size_of_parameters()) {
jrose@1145 1398 THROW_MSG(vmSymbols::java_lang_InternalError(), "bad vmslots in DMH");
jrose@1145 1399 }
jrose@1145 1400 }
jrose@1145 1401
jrose@1145 1402 void MethodHandles::init_DirectMethodHandle(Handle mh, methodHandle m, bool do_dispatch, TRAPS) {
jrose@1145 1403 // Check arguments.
jrose@1145 1404 if (mh.is_null() || m.is_null() ||
jrose@1145 1405 (!do_dispatch && m->is_abstract())) {
jrose@1145 1406 THROW(vmSymbols::java_lang_InternalError());
jrose@1145 1407 }
jrose@1145 1408
jrose@1145 1409 java_dyn_MethodHandle::init_vmslots(mh());
jrose@1145 1410
jrose@1145 1411 if (VerifyMethodHandles) {
jrose@1145 1412 // The privileged code which invokes this routine should not make
jrose@1145 1413 // a mistake about types, but it's better to verify.
jrose@1145 1414 verify_DirectMethodHandle(mh, m, CHECK);
jrose@1145 1415 }
jrose@1145 1416
jrose@1145 1417 // Finally, after safety checks are done, link to the target method.
jrose@1145 1418 // We will follow the same path as the latter part of
jrose@1145 1419 // InterpreterRuntime::resolve_invoke(), which first finds the method
jrose@1145 1420 // and then decides how to populate the constant pool cache entry
jrose@1145 1421 // that links the interpreter calls to the method. We need the same
jrose@1145 1422 // bits, and will use the same calling sequence code.
jrose@1145 1423
jrose@1145 1424 int vmindex = methodOopDesc::garbage_vtable_index;
jrose@1145 1425 oop vmtarget = NULL;
jrose@1145 1426
jrose@1145 1427 instanceKlass::cast(m->method_holder())->link_class(CHECK);
jrose@1145 1428
jrose@1145 1429 MethodHandleEntry* me = NULL;
jrose@1145 1430 if (do_dispatch && Klass::cast(m->method_holder())->is_interface()) {
jrose@1145 1431 // We are simulating an invokeinterface instruction.
jrose@1145 1432 // (We might also be simulating an invokevirtual on a miranda method,
jrose@1145 1433 // but it is safe to treat it as an invokeinterface.)
jrose@1145 1434 assert(!m->can_be_statically_bound(), "no final methods on interfaces");
jrose@1145 1435 vmindex = klassItable::compute_itable_index(m());
jrose@1145 1436 assert(vmindex >= 0, "(>=0) == do_dispatch");
jrose@1145 1437 // Set up same bits as ConstantPoolCacheEntry::set_interface_call().
jrose@1145 1438 vmtarget = m->method_holder(); // the interface
jrose@1145 1439 me = MethodHandles::entry(MethodHandles::_invokeinterface_mh);
jrose@1145 1440 } else if (!do_dispatch || m->can_be_statically_bound()) {
jrose@1145 1441 // We are simulating an invokestatic or invokespecial instruction.
jrose@1145 1442 // Set up the method pointer, just like ConstantPoolCacheEntry::set_method().
jrose@1145 1443 vmtarget = m();
jrose@1145 1444 // this does not help dispatch, but it will make it possible to parse this MH:
jrose@1145 1445 vmindex = methodOopDesc::nonvirtual_vtable_index;
jrose@1145 1446 assert(vmindex < 0, "(>=0) == do_dispatch");
jrose@1145 1447 if (!m->is_static()) {
jrose@1145 1448 me = MethodHandles::entry(MethodHandles::_invokespecial_mh);
jrose@1145 1449 } else {
jrose@1145 1450 me = MethodHandles::entry(MethodHandles::_invokestatic_mh);
jrose@1145 1451 // Part of the semantics of a static call is an initialization barrier.
jrose@1145 1452 // For a DMH, it is done now, when the handle is created.
jrose@1145 1453 Klass* k = Klass::cast(m->method_holder());
jrose@1145 1454 if (k->should_be_initialized()) {
jrose@1145 1455 k->initialize(CHECK);
jrose@1145 1456 }
jrose@1145 1457 }
jrose@1145 1458 } else {
jrose@1145 1459 // We are simulating an invokevirtual instruction.
jrose@1145 1460 // Set up the vtable index, just like ConstantPoolCacheEntry::set_method().
jrose@1145 1461 // The key logic is LinkResolver::runtime_resolve_virtual_method.
jrose@1145 1462 vmindex = m->vtable_index();
jrose@1145 1463 vmtarget = m->method_holder();
jrose@1145 1464 me = MethodHandles::entry(MethodHandles::_invokevirtual_mh);
jrose@1145 1465 }
jrose@1145 1466
jrose@1145 1467 if (me == NULL) { THROW(vmSymbols::java_lang_InternalError()); }
jrose@1145 1468
jrose@1145 1469 sun_dyn_DirectMethodHandle::set_vmtarget(mh(), vmtarget);
jrose@1145 1470 sun_dyn_DirectMethodHandle::set_vmindex(mh(), vmindex);
jrose@1145 1471 DEBUG_ONLY(int flags; klassOop rlimit);
jrose@1145 1472 assert(MethodHandles::decode_method(mh(), rlimit, flags) == m(),
jrose@1145 1473 "properly stored for later decoding");
jrose@1145 1474 DEBUG_ONLY(bool actual_do_dispatch = ((flags & _dmf_does_dispatch) != 0));
jrose@1145 1475 assert(!(actual_do_dispatch && !do_dispatch),
jrose@1145 1476 "do not perform dispatch if !do_dispatch specified");
jrose@1145 1477 assert(actual_do_dispatch == (vmindex >= 0), "proper later decoding of do_dispatch");
jrose@1145 1478 assert(decode_MethodHandle_stack_pushes(mh()) == 0, "DMH does not move stack");
jrose@1145 1479
jrose@1145 1480 // Done!
jrose@1145 1481 java_dyn_MethodHandle::set_vmentry(mh(), me);
jrose@1145 1482 }
jrose@1145 1483
jrose@1145 1484 void MethodHandles::verify_BoundMethodHandle_with_receiver(Handle mh,
jrose@1145 1485 methodHandle m,
jrose@1145 1486 TRAPS) {
jrose@1145 1487 // Verify type.
jrose@1145 1488 oop receiver = sun_dyn_BoundMethodHandle::argument(mh());
jrose@1145 1489 Handle mtype(THREAD, java_dyn_MethodHandle::type(mh()));
jrose@1145 1490 KlassHandle bound_recv_type;
jrose@1145 1491 if (receiver != NULL) bound_recv_type = KlassHandle(THREAD, receiver->klass());
jrose@1145 1492 verify_method_type(m, mtype, true, bound_recv_type, CHECK);
jrose@1145 1493
jrose@1145 1494 int receiver_pos = m->size_of_parameters() - 1;
jrose@1145 1495
jrose@1145 1496 // Verify MH.vmargslot, which should point at the bound receiver.
jrose@1145 1497 verify_vmargslot(mh, -1, sun_dyn_BoundMethodHandle::vmargslot(mh()), CHECK);
jrose@1145 1498 //verify_vmslots(mh, CHECK);
jrose@1145 1499
jrose@1145 1500 // Verify vmslots.
jrose@1145 1501 if (java_dyn_MethodHandle::vmslots(mh()) != receiver_pos) {
jrose@1145 1502 THROW_MSG(vmSymbols::java_lang_InternalError(), "bad vmslots in BMH (receiver)");
jrose@1145 1503 }
jrose@1145 1504 }
jrose@1145 1505
jrose@1145 1506 // Initialize a BMH with a receiver bound directly to a methodOop.
jrose@1145 1507 void MethodHandles::init_BoundMethodHandle_with_receiver(Handle mh,
jrose@1145 1508 methodHandle original_m,
jrose@1145 1509 KlassHandle receiver_limit,
jrose@1145 1510 int decode_flags,
jrose@1145 1511 TRAPS) {
jrose@1145 1512 // Check arguments.
jrose@1145 1513 if (mh.is_null() || original_m.is_null()) {
jrose@1145 1514 THROW(vmSymbols::java_lang_InternalError());
jrose@1145 1515 }
jrose@1145 1516
jrose@1145 1517 KlassHandle receiver_klass;
jrose@1145 1518 {
jrose@1145 1519 oop receiver_oop = sun_dyn_BoundMethodHandle::argument(mh());
jrose@1145 1520 if (receiver_oop != NULL)
jrose@1145 1521 receiver_klass = KlassHandle(THREAD, receiver_oop->klass());
jrose@1145 1522 }
jrose@1145 1523 methodHandle m = dispatch_decoded_method(original_m,
jrose@1145 1524 receiver_limit, decode_flags,
jrose@1145 1525 receiver_klass,
jrose@1145 1526 CHECK);
jrose@1145 1527 if (m.is_null()) { THROW(vmSymbols::java_lang_InternalError()); }
jrose@1145 1528 if (m->is_abstract()) { THROW(vmSymbols::java_lang_AbstractMethodError()); }
jrose@1145 1529
jrose@1145 1530 java_dyn_MethodHandle::init_vmslots(mh());
jrose@1145 1531
jrose@1145 1532 if (VerifyMethodHandles) {
jrose@1145 1533 verify_BoundMethodHandle_with_receiver(mh, m, CHECK);
jrose@1145 1534 }
jrose@1145 1535
jrose@1145 1536 sun_dyn_BoundMethodHandle::set_vmtarget(mh(), m());
jrose@1145 1537
jrose@1145 1538 DEBUG_ONLY(int junk; klassOop junk2);
jrose@1145 1539 assert(MethodHandles::decode_method(mh(), junk2, junk) == m(), "properly stored for later decoding");
jrose@1145 1540 assert(decode_MethodHandle_stack_pushes(mh()) == 1, "BMH pushes one stack slot");
jrose@1145 1541
jrose@1145 1542 // Done!
jrose@1145 1543 java_dyn_MethodHandle::set_vmentry(mh(), MethodHandles::entry(MethodHandles::_bound_ref_direct_mh));
jrose@1145 1544 }
jrose@1145 1545
jrose@1145 1546 void MethodHandles::verify_BoundMethodHandle(Handle mh, Handle target, int argnum,
jrose@1145 1547 bool direct_to_method, TRAPS) {
jrose@1145 1548 Handle ptype_handle(THREAD,
jrose@1145 1549 java_dyn_MethodType::ptype(java_dyn_MethodHandle::type(target()), argnum));
jrose@1145 1550 KlassHandle ptype_klass;
jrose@1145 1551 BasicType ptype = java_lang_Class::as_BasicType(ptype_handle(), &ptype_klass);
jrose@1145 1552 int slots_pushed = type2size[ptype];
jrose@1145 1553
jrose@1145 1554 oop argument = sun_dyn_BoundMethodHandle::argument(mh());
jrose@1145 1555
jrose@1145 1556 const char* err = NULL;
jrose@1145 1557
jrose@1145 1558 switch (ptype) {
jrose@1145 1559 case T_OBJECT:
jrose@1145 1560 if (argument != NULL)
jrose@1145 1561 // we must implicitly convert from the arg type to the outgoing ptype
jrose@1145 1562 err = check_argument_type_change(T_OBJECT, argument->klass(), ptype, ptype_klass(), argnum);
jrose@1145 1563 break;
jrose@1145 1564
jrose@1145 1565 case T_ARRAY: case T_VOID:
jrose@1145 1566 assert(false, "array, void do not appear here");
jrose@1145 1567 default:
jrose@1145 1568 if (ptype != T_INT && !is_subword_type(ptype)) {
jrose@1145 1569 err = "unexpected parameter type";
jrose@1145 1570 break;
jrose@1145 1571 }
jrose@1145 1572 // check subrange of Integer.value, if necessary
never@1577 1573 if (argument == NULL || argument->klass() != SystemDictionary::Integer_klass()) {
jrose@1145 1574 err = "bound integer argument must be of type java.lang.Integer";
jrose@1145 1575 break;
jrose@1145 1576 }
jrose@1145 1577 if (ptype != T_INT) {
jrose@1145 1578 int value_offset = java_lang_boxing_object::value_offset_in_bytes(T_INT);
jrose@1145 1579 jint value = argument->int_field(value_offset);
twisti@2204 1580 int vminfo = adapter_unbox_subword_vminfo(ptype);
jrose@1145 1581 jint subword = truncate_subword_from_vminfo(value, vminfo);
jrose@1145 1582 if (value != subword) {
jrose@1145 1583 err = "bound subword value does not fit into the subword type";
jrose@1145 1584 break;
jrose@1145 1585 }
jrose@1145 1586 }
jrose@1145 1587 break;
jrose@1145 1588 case T_FLOAT:
jrose@1145 1589 case T_DOUBLE:
jrose@1145 1590 case T_LONG:
jrose@1145 1591 {
jrose@1145 1592 // we must implicitly convert from the unboxed arg type to the outgoing ptype
jrose@1145 1593 BasicType argbox = java_lang_boxing_object::basic_type(argument);
jrose@1145 1594 if (argbox != ptype) {
jrose@1145 1595 err = check_argument_type_change(T_OBJECT, (argument == NULL
never@1577 1596 ? SystemDictionary::Object_klass()
jrose@1145 1597 : argument->klass()),
jrose@1145 1598 ptype, ptype_klass(), argnum);
jrose@1145 1599 assert(err != NULL, "this must be an error");
jrose@1145 1600 }
jrose@1145 1601 break;
jrose@1145 1602 }
jrose@1145 1603 }
jrose@1145 1604
jrose@1145 1605 if (err == NULL) {
jrose@1145 1606 DEBUG_ONLY(int this_pushes = decode_MethodHandle_stack_pushes(mh()));
jrose@1145 1607 if (direct_to_method) {
jrose@1145 1608 assert(this_pushes == slots_pushed, "BMH pushes one or two stack slots");
jrose@1145 1609 assert(slots_pushed <= MethodHandlePushLimit, "");
jrose@1145 1610 } else {
jrose@1474 1611 int target_pushes = decode_MethodHandle_stack_pushes(target());
jrose@1474 1612 assert(this_pushes == slots_pushed + target_pushes, "BMH stack motion must be correct");
jrose@1145 1613 // do not blow the stack; use a Java-based adapter if this limit is exceeded
twisti@1573 1614 // FIXME
twisti@1573 1615 // if (slots_pushed + target_pushes > MethodHandlePushLimit)
twisti@1573 1616 // err = "too many bound parameters";
jrose@1145 1617 }
jrose@1145 1618 }
jrose@1145 1619
jrose@1145 1620 if (err == NULL) {
jrose@1145 1621 // Verify the rest of the method type.
jrose@1145 1622 err = check_method_type_insertion(java_dyn_MethodHandle::type(mh()),
jrose@1145 1623 argnum, ptype_handle(),
jrose@1145 1624 java_dyn_MethodHandle::type(target()));
jrose@1145 1625 }
jrose@1145 1626
jrose@1145 1627 if (err != NULL) {
jrose@1145 1628 THROW_MSG(vmSymbols::java_lang_InternalError(), err);
jrose@1145 1629 }
jrose@1145 1630 }
jrose@1145 1631
jrose@1145 1632 void MethodHandles::init_BoundMethodHandle(Handle mh, Handle target, int argnum, TRAPS) {
jrose@1145 1633 // Check arguments.
jrose@1145 1634 if (mh.is_null() || target.is_null() || !java_dyn_MethodHandle::is_instance(target())) {
jrose@1145 1635 THROW(vmSymbols::java_lang_InternalError());
jrose@1145 1636 }
jrose@1145 1637
jrose@1145 1638 java_dyn_MethodHandle::init_vmslots(mh());
jrose@1145 1639
jrose@1145 1640 if (VerifyMethodHandles) {
jrose@1145 1641 int insert_after = argnum - 1;
jrose@1145 1642 verify_vmargslot(mh, insert_after, sun_dyn_BoundMethodHandle::vmargslot(mh()), CHECK);
jrose@1145 1643 verify_vmslots(mh, CHECK);
jrose@1145 1644 }
jrose@1145 1645
twisti@1573 1646 // Get bound type and required slots.
twisti@1573 1647 oop ptype_oop = java_dyn_MethodType::ptype(java_dyn_MethodHandle::type(target()), argnum);
twisti@1573 1648 BasicType ptype = java_lang_Class::as_BasicType(ptype_oop);
twisti@1573 1649 int slots_pushed = type2size[ptype];
twisti@1573 1650
jrose@1145 1651 // If (a) the target is a direct non-dispatched method handle,
jrose@1145 1652 // or (b) the target is a dispatched direct method handle and we
jrose@1145 1653 // are binding the receiver, cut out the middle-man.
jrose@1145 1654 // Do this by decoding the DMH and using its methodOop directly as vmtarget.
jrose@1145 1655 bool direct_to_method = false;
jrose@1145 1656 if (OptimizeMethodHandles &&
jrose@1145 1657 target->klass() == SystemDictionary::DirectMethodHandle_klass() &&
jrose@1145 1658 (argnum == 0 || sun_dyn_DirectMethodHandle::vmindex(target()) < 0)) {
jrose@1145 1659 int decode_flags = 0; klassOop receiver_limit_oop = NULL;
jrose@1145 1660 methodHandle m(THREAD, decode_method(target(), receiver_limit_oop, decode_flags));
jrose@1145 1661 if (m.is_null()) { THROW_MSG(vmSymbols::java_lang_InternalError(), "DMH failed to decode"); }
twisti@1573 1662 DEBUG_ONLY(int m_vmslots = m->size_of_parameters() - slots_pushed); // pos. of 1st arg.
jrose@1145 1663 assert(sun_dyn_BoundMethodHandle::vmslots(mh()) == m_vmslots, "type w/ m sig");
jrose@1145 1664 if (argnum == 0 && (decode_flags & _dmf_has_receiver) != 0) {
jrose@1145 1665 KlassHandle receiver_limit(THREAD, receiver_limit_oop);
jrose@1145 1666 init_BoundMethodHandle_with_receiver(mh, m,
jrose@1145 1667 receiver_limit, decode_flags,
jrose@1145 1668 CHECK);
jrose@1145 1669 return;
jrose@1145 1670 }
jrose@1145 1671
jrose@1145 1672 // Even if it is not a bound receiver, we still might be able
jrose@1145 1673 // to bind another argument and still invoke the methodOop directly.
jrose@1145 1674 if (!(decode_flags & _dmf_does_dispatch)) {
jrose@1145 1675 direct_to_method = true;
jrose@1145 1676 sun_dyn_BoundMethodHandle::set_vmtarget(mh(), m());
jrose@1145 1677 }
jrose@1145 1678 }
jrose@1145 1679 if (!direct_to_method)
jrose@1145 1680 sun_dyn_BoundMethodHandle::set_vmtarget(mh(), target());
jrose@1145 1681
jrose@1145 1682 if (VerifyMethodHandles) {
jrose@1145 1683 verify_BoundMethodHandle(mh, target, argnum, direct_to_method, CHECK);
jrose@1145 1684 }
jrose@1145 1685
jrose@1145 1686 // Next question: Is this a ref, int, or long bound value?
jrose@1145 1687 MethodHandleEntry* me = NULL;
jrose@1145 1688 if (ptype == T_OBJECT) {
jrose@1145 1689 if (direct_to_method) me = MethodHandles::entry(_bound_ref_direct_mh);
jrose@1145 1690 else me = MethodHandles::entry(_bound_ref_mh);
jrose@1145 1691 } else if (slots_pushed == 2) {
jrose@1145 1692 if (direct_to_method) me = MethodHandles::entry(_bound_long_direct_mh);
jrose@1145 1693 else me = MethodHandles::entry(_bound_long_mh);
jrose@1145 1694 } else if (slots_pushed == 1) {
jrose@1145 1695 if (direct_to_method) me = MethodHandles::entry(_bound_int_direct_mh);
jrose@1145 1696 else me = MethodHandles::entry(_bound_int_mh);
jrose@1145 1697 } else {
jrose@1145 1698 assert(false, "");
jrose@1145 1699 }
jrose@1145 1700
jrose@1145 1701 // Done!
jrose@1145 1702 java_dyn_MethodHandle::set_vmentry(mh(), me);
jrose@1145 1703 }
jrose@1145 1704
jrose@1145 1705 static void throw_InternalError_for_bad_conversion(int conversion, const char* err, TRAPS) {
jrose@1145 1706 char msg[200];
jrose@1145 1707 jio_snprintf(msg, sizeof(msg), "bad adapter (conversion=0x%08x): %s", conversion, err);
jrose@1145 1708 THROW_MSG(vmSymbols::java_lang_IllegalArgumentException(), msg);
jrose@1145 1709 }
jrose@1145 1710
jrose@1145 1711 void MethodHandles::verify_AdapterMethodHandle(Handle mh, int argnum, TRAPS) {
jrose@1145 1712 jint conversion = sun_dyn_AdapterMethodHandle::conversion(mh());
jrose@1145 1713 int argslot = sun_dyn_AdapterMethodHandle::vmargslot(mh());
jrose@1145 1714
jrose@1145 1715 verify_vmargslot(mh, argnum, argslot, CHECK);
jrose@1145 1716 verify_vmslots(mh, CHECK);
jrose@1145 1717
jrose@1145 1718 jint conv_op = adapter_conversion_op(conversion);
jrose@1145 1719 if (!conv_op_valid(conv_op)) {
jrose@1145 1720 throw_InternalError_for_bad_conversion(conversion, "unknown conversion op", THREAD);
jrose@1145 1721 return;
jrose@1145 1722 }
jrose@1145 1723 EntryKind ek = adapter_entry_kind(conv_op);
jrose@1145 1724
jrose@1145 1725 int stack_move = adapter_conversion_stack_move(conversion);
jrose@1145 1726 BasicType src = adapter_conversion_src_type(conversion);
jrose@1145 1727 BasicType dest = adapter_conversion_dest_type(conversion);
jrose@1145 1728 int vminfo = adapter_conversion_vminfo(conversion); // should be zero
jrose@1145 1729
jrose@1145 1730 Handle argument(THREAD, sun_dyn_AdapterMethodHandle::argument(mh()));
jrose@1145 1731 Handle target(THREAD, sun_dyn_AdapterMethodHandle::vmtarget(mh()));
jrose@1145 1732 Handle src_mtype(THREAD, java_dyn_MethodHandle::type(mh()));
jrose@1145 1733 Handle dst_mtype(THREAD, java_dyn_MethodHandle::type(target()));
jrose@1145 1734
jrose@1145 1735 const char* err = NULL;
jrose@1145 1736
jrose@1145 1737 if (err == NULL) {
jrose@1145 1738 // Check that the correct argument is supplied, but only if it is required.
jrose@1145 1739 switch (ek) {
jrose@1145 1740 case _adapter_check_cast: // target type of cast
jrose@1145 1741 case _adapter_ref_to_prim: // wrapper type from which to unbox
jrose@1145 1742 case _adapter_prim_to_ref: // wrapper type to box into
jrose@1145 1743 case _adapter_collect_args: // array type to collect into
jrose@1145 1744 case _adapter_spread_args: // array type to spread from
jrose@1145 1745 if (!java_lang_Class::is_instance(argument())
jrose@1145 1746 || java_lang_Class::is_primitive(argument()))
jrose@1145 1747 { err = "adapter requires argument of type java.lang.Class"; break; }
jrose@1145 1748 if (ek == _adapter_collect_args ||
jrose@1145 1749 ek == _adapter_spread_args) {
jrose@1145 1750 // Make sure it is a suitable collection type. (Array, for now.)
jrose@1145 1751 Klass* ak = Klass::cast(java_lang_Class::as_klassOop(argument()));
jrose@1145 1752 if (!ak->oop_is_objArray()) {
jrose@1145 1753 { err = "adapter requires argument of type java.lang.Class<Object[]>"; break; }
jrose@1145 1754 }
jrose@1145 1755 }
jrose@1145 1756 break;
jrose@1145 1757 case _adapter_flyby:
jrose@1145 1758 case _adapter_ricochet:
jrose@1145 1759 if (!java_dyn_MethodHandle::is_instance(argument()))
jrose@1145 1760 { err = "MethodHandle adapter argument required"; break; }
jrose@1145 1761 break;
jrose@1145 1762 default:
jrose@1145 1763 if (argument.not_null())
jrose@1145 1764 { err = "adapter has spurious argument"; break; }
jrose@1145 1765 break;
jrose@1145 1766 }
jrose@1145 1767 }
jrose@1145 1768
jrose@1145 1769 if (err == NULL) {
jrose@1145 1770 // Check that the src/dest types are supplied if needed.
jrose@1145 1771 switch (ek) {
jrose@1474 1772 case _adapter_check_cast:
jrose@1474 1773 if (src != T_OBJECT || dest != T_OBJECT) {
jrose@1474 1774 err = "adapter requires object src/dest conversion subfields";
jrose@1474 1775 }
jrose@1474 1776 break;
jrose@1145 1777 case _adapter_prim_to_prim:
jrose@1145 1778 if (!is_java_primitive(src) || !is_java_primitive(dest) || src == dest) {
jrose@1145 1779 err = "adapter requires primitive src/dest conversion subfields"; break;
jrose@1145 1780 }
jrose@1145 1781 if ( (src == T_FLOAT || src == T_DOUBLE) && !(dest == T_FLOAT || dest == T_DOUBLE) ||
jrose@1145 1782 !(src == T_FLOAT || src == T_DOUBLE) && (dest == T_FLOAT || dest == T_DOUBLE)) {
jrose@1145 1783 err = "adapter cannot convert beween floating and fixed-point"; break;
jrose@1145 1784 }
jrose@1145 1785 break;
jrose@1145 1786 case _adapter_ref_to_prim:
jrose@1145 1787 if (src != T_OBJECT || !is_java_primitive(dest)
jrose@1145 1788 || argument() != Klass::cast(SystemDictionary::box_klass(dest))->java_mirror()) {
jrose@1145 1789 err = "adapter requires primitive dest conversion subfield"; break;
jrose@1145 1790 }
jrose@1145 1791 break;
jrose@1145 1792 case _adapter_prim_to_ref:
jrose@1145 1793 if (!is_java_primitive(src) || dest != T_OBJECT
jrose@1145 1794 || argument() != Klass::cast(SystemDictionary::box_klass(src))->java_mirror()) {
jrose@1145 1795 err = "adapter requires primitive src conversion subfield"; break;
jrose@1145 1796 }
jrose@1145 1797 break;
jrose@1145 1798 case _adapter_swap_args:
jrose@1145 1799 case _adapter_rot_args:
jrose@1145 1800 {
jrose@1145 1801 if (!src || src != dest) {
jrose@1145 1802 err = "adapter requires src/dest conversion subfields for swap"; break;
jrose@1145 1803 }
jrose@1145 1804 int swap_size = type2size[src];
jrose@1474 1805 oop src_mtype = sun_dyn_AdapterMethodHandle::type(mh());
jrose@1474 1806 oop dest_mtype = sun_dyn_AdapterMethodHandle::type(target());
jrose@1474 1807 int slot_limit = sun_dyn_AdapterMethodHandle::vmslots(target());
jrose@1145 1808 int src_slot = argslot;
jrose@1145 1809 int dest_slot = vminfo;
jrose@1145 1810 bool rotate_up = (src_slot > dest_slot); // upward rotation
jrose@1145 1811 int src_arg = argnum;
jrose@1145 1812 int dest_arg = argument_slot_to_argnum(dest_mtype, dest_slot);
jrose@1145 1813 verify_vmargslot(mh, dest_arg, dest_slot, CHECK);
jrose@1145 1814 if (!(dest_slot >= src_slot + swap_size) &&
jrose@1145 1815 !(src_slot >= dest_slot + swap_size)) {
jrose@1145 1816 err = "source, destination slots must be distinct";
jrose@1145 1817 } else if (ek == _adapter_swap_args && !(src_slot > dest_slot)) {
jrose@1145 1818 err = "source of swap must be deeper in stack";
jrose@1145 1819 } else if (ek == _adapter_swap_args) {
jrose@1145 1820 err = check_argument_type_change(java_dyn_MethodType::ptype(src_mtype, dest_arg),
jrose@1145 1821 java_dyn_MethodType::ptype(dest_mtype, src_arg),
jrose@1145 1822 dest_arg);
jrose@1145 1823 } else if (ek == _adapter_rot_args) {
jrose@1145 1824 if (rotate_up) {
jrose@1145 1825 assert((src_slot > dest_slot) && (src_arg < dest_arg), "");
jrose@1145 1826 // rotate up: [dest_slot..src_slot-ss] --> [dest_slot+ss..src_slot]
jrose@1145 1827 // that is: [src_arg+1..dest_arg] --> [src_arg..dest_arg-1]
jrose@1145 1828 for (int i = src_arg+1; i <= dest_arg && err == NULL; i++) {
jrose@1145 1829 err = check_argument_type_change(java_dyn_MethodType::ptype(src_mtype, i),
jrose@1145 1830 java_dyn_MethodType::ptype(dest_mtype, i-1),
jrose@1145 1831 i);
jrose@1145 1832 }
jrose@1145 1833 } else { // rotate down
jrose@1145 1834 assert((src_slot < dest_slot) && (src_arg > dest_arg), "");
jrose@1145 1835 // rotate down: [src_slot+ss..dest_slot] --> [src_slot..dest_slot-ss]
jrose@1145 1836 // that is: [dest_arg..src_arg-1] --> [dst_arg+1..src_arg]
jrose@1145 1837 for (int i = dest_arg; i <= src_arg-1 && err == NULL; i++) {
jrose@1145 1838 err = check_argument_type_change(java_dyn_MethodType::ptype(src_mtype, i),
jrose@1145 1839 java_dyn_MethodType::ptype(dest_mtype, i+1),
jrose@1145 1840 i);
jrose@1145 1841 }
jrose@1145 1842 }
jrose@1145 1843 }
jrose@1145 1844 if (err == NULL)
jrose@1145 1845 err = check_argument_type_change(java_dyn_MethodType::ptype(src_mtype, src_arg),
jrose@1145 1846 java_dyn_MethodType::ptype(dest_mtype, dest_arg),
jrose@1145 1847 src_arg);
jrose@1145 1848 }
jrose@1145 1849 break;
jrose@1145 1850 case _adapter_collect_args:
jrose@1145 1851 case _adapter_spread_args:
jrose@1145 1852 {
jrose@1145 1853 BasicType coll_type = (ek == _adapter_collect_args) ? dest : src;
jrose@1145 1854 BasicType elem_type = (ek == _adapter_collect_args) ? src : dest;
jrose@1145 1855 if (coll_type != T_OBJECT || elem_type != T_OBJECT) {
jrose@1145 1856 err = "adapter requires src/dest subfields"; break;
jrose@1145 1857 // later:
jrose@1145 1858 // - consider making coll be a primitive array
jrose@1145 1859 // - consider making coll be a heterogeneous collection
jrose@1145 1860 }
jrose@1145 1861 }
jrose@1145 1862 break;
jrose@1145 1863 default:
jrose@1145 1864 if (src != 0 || dest != 0) {
jrose@1145 1865 err = "adapter has spurious src/dest conversion subfields"; break;
jrose@1145 1866 }
jrose@1145 1867 break;
jrose@1145 1868 }
jrose@1145 1869 }
jrose@1145 1870
jrose@1145 1871 if (err == NULL) {
jrose@1145 1872 // Check the stack_move subfield.
jrose@1145 1873 // It must always report the net change in stack size, positive or negative.
jrose@1145 1874 int slots_pushed = stack_move / stack_move_unit();
jrose@1145 1875 switch (ek) {
jrose@1145 1876 case _adapter_prim_to_prim:
jrose@1145 1877 case _adapter_ref_to_prim:
jrose@1145 1878 case _adapter_prim_to_ref:
jrose@1145 1879 if (slots_pushed != type2size[dest] - type2size[src]) {
jrose@1145 1880 err = "wrong stack motion for primitive conversion";
jrose@1145 1881 }
jrose@1145 1882 break;
jrose@1145 1883 case _adapter_dup_args:
jrose@1145 1884 if (slots_pushed <= 0) {
jrose@1145 1885 err = "adapter requires conversion subfield slots_pushed > 0";
jrose@1145 1886 }
jrose@1145 1887 break;
jrose@1145 1888 case _adapter_drop_args:
jrose@1145 1889 if (slots_pushed >= 0) {
jrose@1145 1890 err = "adapter requires conversion subfield slots_pushed < 0";
jrose@1145 1891 }
jrose@1145 1892 break;
jrose@1145 1893 case _adapter_collect_args:
jrose@1145 1894 if (slots_pushed > 1) {
jrose@1145 1895 err = "adapter requires conversion subfield slots_pushed <= 1";
jrose@1145 1896 }
jrose@1145 1897 break;
jrose@1145 1898 case _adapter_spread_args:
jrose@1145 1899 if (slots_pushed < -1) {
jrose@1145 1900 err = "adapter requires conversion subfield slots_pushed >= -1";
jrose@1145 1901 }
jrose@1145 1902 break;
jrose@1145 1903 default:
jrose@1145 1904 if (stack_move != 0) {
jrose@1145 1905 err = "adapter has spurious stack_move conversion subfield";
jrose@1145 1906 }
jrose@1145 1907 break;
jrose@1145 1908 }
jrose@1145 1909 if (err == NULL && stack_move != slots_pushed * stack_move_unit()) {
jrose@1145 1910 err = "stack_move conversion subfield must be multiple of stack_move_unit";
jrose@1145 1911 }
jrose@1145 1912 }
jrose@1145 1913
jrose@1145 1914 if (err == NULL) {
jrose@1145 1915 // Make sure this adapter does not push too deeply.
jrose@1145 1916 int slots_pushed = stack_move / stack_move_unit();
jrose@1145 1917 int this_vmslots = java_dyn_MethodHandle::vmslots(mh());
jrose@1474 1918 int target_vmslots = java_dyn_MethodHandle::vmslots(target());
jrose@1474 1919 if (slots_pushed != (target_vmslots - this_vmslots)) {
jrose@1145 1920 err = "stack_move inconsistent with previous and current MethodType vmslots";
jrose@1145 1921 } else if (slots_pushed > 0) {
jrose@1145 1922 // verify stack_move against MethodHandlePushLimit
jrose@1474 1923 int target_pushes = decode_MethodHandle_stack_pushes(target());
jrose@1145 1924 // do not blow the stack; use a Java-based adapter if this limit is exceeded
jrose@1474 1925 if (slots_pushed + target_pushes > MethodHandlePushLimit) {
jrose@1145 1926 err = "adapter pushes too many parameters";
jrose@1145 1927 }
jrose@1145 1928 }
jrose@1145 1929
jrose@1145 1930 // While we're at it, check that the stack motion decoder works:
jrose@1474 1931 DEBUG_ONLY(int target_pushes = decode_MethodHandle_stack_pushes(target()));
jrose@1145 1932 DEBUG_ONLY(int this_pushes = decode_MethodHandle_stack_pushes(mh()));
jrose@1474 1933 assert(this_pushes == slots_pushed + target_pushes, "AMH stack motion must be correct");
jrose@1145 1934 }
jrose@1145 1935
jrose@1145 1936 if (err == NULL && vminfo != 0) {
jrose@1145 1937 switch (ek) {
jrose@1145 1938 case _adapter_swap_args:
jrose@1145 1939 case _adapter_rot_args:
jrose@1145 1940 break; // OK
jrose@1145 1941 default:
jrose@1145 1942 err = "vminfo subfield is reserved to the JVM";
jrose@1145 1943 }
jrose@1145 1944 }
jrose@1145 1945
jrose@1145 1946 // Do additional ad hoc checks.
jrose@1145 1947 if (err == NULL) {
jrose@1145 1948 switch (ek) {
jrose@1145 1949 case _adapter_retype_only:
jrose@1474 1950 err = check_method_type_passthrough(src_mtype(), dst_mtype(), false);
jrose@1474 1951 break;
jrose@1474 1952
jrose@1474 1953 case _adapter_retype_raw:
jrose@1474 1954 err = check_method_type_passthrough(src_mtype(), dst_mtype(), true);
jrose@1145 1955 break;
jrose@1145 1956
jrose@1145 1957 case _adapter_check_cast:
jrose@1145 1958 {
jrose@1145 1959 // The actual value being checked must be a reference:
jrose@1145 1960 err = check_argument_type_change(java_dyn_MethodType::ptype(src_mtype(), argnum),
jrose@1145 1961 object_java_mirror(), argnum);
jrose@1145 1962 if (err != NULL) break;
jrose@1145 1963
jrose@1145 1964 // The output of the cast must fit with the destination argument:
jrose@1145 1965 Handle cast_class = argument;
jrose@1145 1966 err = check_method_type_conversion(src_mtype(),
jrose@1145 1967 argnum, cast_class(),
jrose@1145 1968 dst_mtype());
jrose@1145 1969 }
jrose@1145 1970 break;
jrose@1145 1971
jrose@1145 1972 // %%% TO DO: continue in remaining cases to verify src/dst_mtype if VerifyMethodHandles
jrose@1145 1973 }
jrose@1145 1974 }
jrose@1145 1975
jrose@1145 1976 if (err != NULL) {
jrose@1145 1977 throw_InternalError_for_bad_conversion(conversion, err, THREAD);
jrose@1145 1978 return;
jrose@1145 1979 }
jrose@1145 1980
jrose@1145 1981 }
jrose@1145 1982
jrose@1145 1983 void MethodHandles::init_AdapterMethodHandle(Handle mh, Handle target, int argnum, TRAPS) {
jrose@1145 1984 oop argument = sun_dyn_AdapterMethodHandle::argument(mh());
jrose@1145 1985 int argslot = sun_dyn_AdapterMethodHandle::vmargslot(mh());
jrose@1145 1986 jint conversion = sun_dyn_AdapterMethodHandle::conversion(mh());
jrose@1145 1987 jint conv_op = adapter_conversion_op(conversion);
jrose@1145 1988
jrose@1145 1989 // adjust the adapter code to the internal EntryKind enumeration:
jrose@1145 1990 EntryKind ek_orig = adapter_entry_kind(conv_op);
jrose@1145 1991 EntryKind ek_opt = ek_orig; // may be optimized
jrose@1145 1992
jrose@1145 1993 // Finalize the vmtarget field (Java initialized it to null).
jrose@1145 1994 if (!java_dyn_MethodHandle::is_instance(target())) {
jrose@1145 1995 throw_InternalError_for_bad_conversion(conversion, "bad target", THREAD);
jrose@1145 1996 return;
jrose@1145 1997 }
jrose@1145 1998 sun_dyn_AdapterMethodHandle::set_vmtarget(mh(), target());
jrose@1145 1999
jrose@1145 2000 if (VerifyMethodHandles) {
jrose@1145 2001 verify_AdapterMethodHandle(mh, argnum, CHECK);
jrose@1145 2002 }
jrose@1145 2003
jrose@1145 2004 int stack_move = adapter_conversion_stack_move(conversion);
jrose@1145 2005 BasicType src = adapter_conversion_src_type(conversion);
jrose@1145 2006 BasicType dest = adapter_conversion_dest_type(conversion);
jrose@1145 2007 int vminfo = adapter_conversion_vminfo(conversion); // should be zero
jrose@1145 2008
jrose@1145 2009 const char* err = NULL;
jrose@1145 2010
jrose@1145 2011 // Now it's time to finish the case analysis and pick a MethodHandleEntry.
jrose@1145 2012 switch (ek_orig) {
jrose@1145 2013 case _adapter_retype_only:
jrose@1474 2014 case _adapter_retype_raw:
jrose@1145 2015 case _adapter_check_cast:
jrose@1145 2016 case _adapter_dup_args:
jrose@1145 2017 case _adapter_drop_args:
jrose@1145 2018 // these work fine via general case code
jrose@1145 2019 break;
jrose@1145 2020
jrose@1145 2021 case _adapter_prim_to_prim:
jrose@1145 2022 {
jrose@1145 2023 // Non-subword cases are {int,float,long,double} -> {int,float,long,double}.
jrose@1145 2024 // And, the {float,double} -> {int,long} cases must be handled by Java.
jrose@1145 2025 switch (type2size[src] *4+ type2size[dest]) {
jrose@1145 2026 case 1 *4+ 1:
jrose@1145 2027 assert(src == T_INT || is_subword_type(src), "source is not float");
jrose@1145 2028 // Subword-related cases are int -> {boolean,byte,char,short}.
jrose@1145 2029 ek_opt = _adapter_opt_i2i;
twisti@2204 2030 vminfo = adapter_prim_to_prim_subword_vminfo(dest);
jrose@1145 2031 break;
jrose@1145 2032 case 2 *4+ 1:
jrose@1145 2033 if (src == T_LONG && (dest == T_INT || is_subword_type(dest))) {
jrose@1145 2034 ek_opt = _adapter_opt_l2i;
twisti@2204 2035 vminfo = adapter_prim_to_prim_subword_vminfo(dest);
jrose@1145 2036 } else if (src == T_DOUBLE && dest == T_FLOAT) {
jrose@1145 2037 ek_opt = _adapter_opt_d2f;
jrose@1145 2038 } else {
jrose@1145 2039 assert(false, "");
jrose@1145 2040 }
jrose@1145 2041 break;
jrose@1145 2042 case 1 *4+ 2:
jrose@1145 2043 if (src == T_INT && dest == T_LONG) {
jrose@1145 2044 ek_opt = _adapter_opt_i2l;
jrose@1145 2045 } else if (src == T_FLOAT && dest == T_DOUBLE) {
jrose@1145 2046 ek_opt = _adapter_opt_f2d;
jrose@1145 2047 } else {
jrose@1145 2048 assert(false, "");
jrose@1145 2049 }
jrose@1145 2050 break;
jrose@1145 2051 default:
jrose@1145 2052 assert(false, "");
jrose@1145 2053 break;
jrose@1145 2054 }
jrose@1145 2055 }
jrose@1145 2056 break;
jrose@1145 2057
jrose@1145 2058 case _adapter_ref_to_prim:
jrose@1145 2059 {
jrose@1145 2060 switch (type2size[dest]) {
jrose@1145 2061 case 1:
jrose@1145 2062 ek_opt = _adapter_opt_unboxi;
twisti@2204 2063 vminfo = adapter_unbox_subword_vminfo(dest);
jrose@1145 2064 break;
jrose@1145 2065 case 2:
jrose@1145 2066 ek_opt = _adapter_opt_unboxl;
jrose@1145 2067 break;
jrose@1145 2068 default:
jrose@1145 2069 assert(false, "");
jrose@1145 2070 break;
jrose@1145 2071 }
jrose@1145 2072 }
jrose@1145 2073 break;
jrose@1145 2074
jrose@1145 2075 case _adapter_prim_to_ref:
jrose@1145 2076 goto throw_not_impl; // allocates, hence could block
jrose@1145 2077
jrose@1145 2078 case _adapter_swap_args:
jrose@1145 2079 case _adapter_rot_args:
jrose@1145 2080 {
jrose@1145 2081 int swap_slots = type2size[src];
jrose@1474 2082 int slot_limit = sun_dyn_AdapterMethodHandle::vmslots(mh());
jrose@1145 2083 int src_slot = argslot;
jrose@1145 2084 int dest_slot = vminfo;
jrose@1145 2085 int rotate = (ek_orig == _adapter_swap_args) ? 0 : (src_slot > dest_slot) ? 1 : -1;
jrose@1145 2086 switch (swap_slots) {
jrose@1145 2087 case 1:
jrose@1145 2088 ek_opt = (!rotate ? _adapter_opt_swap_1 :
jrose@1145 2089 rotate > 0 ? _adapter_opt_rot_1_up : _adapter_opt_rot_1_down);
jrose@1145 2090 break;
jrose@1145 2091 case 2:
jrose@1145 2092 ek_opt = (!rotate ? _adapter_opt_swap_2 :
jrose@1145 2093 rotate > 0 ? _adapter_opt_rot_2_up : _adapter_opt_rot_2_down);
jrose@1145 2094 break;
jrose@1145 2095 default:
jrose@1145 2096 assert(false, "");
jrose@1145 2097 break;
jrose@1145 2098 }
jrose@1145 2099 }
jrose@1145 2100 break;
jrose@1145 2101
jrose@1145 2102 case _adapter_collect_args:
jrose@1145 2103 goto throw_not_impl; // allocates, hence could block
jrose@1145 2104
jrose@1145 2105 case _adapter_spread_args:
jrose@1145 2106 {
jrose@1145 2107 // vminfo will be the required length of the array
jrose@1145 2108 int slots_pushed = stack_move / stack_move_unit();
jrose@1145 2109 int array_size = slots_pushed + 1;
jrose@1145 2110 assert(array_size >= 0, "");
jrose@1145 2111 vminfo = array_size;
jrose@1145 2112 switch (array_size) {
jrose@1145 2113 case 0: ek_opt = _adapter_opt_spread_0; break;
jrose@1145 2114 case 1: ek_opt = _adapter_opt_spread_1; break;
jrose@1145 2115 default: ek_opt = _adapter_opt_spread_more; break;
jrose@1145 2116 }
jrose@1145 2117 if ((vminfo & CONV_VMINFO_MASK) != vminfo)
jrose@1145 2118 goto throw_not_impl; // overflow
jrose@1145 2119 }
jrose@1145 2120 break;
jrose@1145 2121
jrose@1145 2122 case _adapter_flyby:
jrose@1145 2123 case _adapter_ricochet:
jrose@1145 2124 goto throw_not_impl; // runs Java code, hence could block
jrose@1145 2125
jrose@1145 2126 default:
jrose@1145 2127 // should have failed much earlier; must be a missing case here
jrose@1145 2128 assert(false, "incomplete switch");
jrose@1145 2129 // and fall through:
jrose@1145 2130
jrose@1145 2131 throw_not_impl:
jrose@1145 2132 // FIXME: these adapters are NYI
jrose@1145 2133 err = "adapter not yet implemented in the JVM";
jrose@1145 2134 break;
jrose@1145 2135 }
jrose@1145 2136
jrose@1145 2137 if (err != NULL) {
jrose@1145 2138 throw_InternalError_for_bad_conversion(conversion, err, THREAD);
jrose@1145 2139 return;
jrose@1145 2140 }
jrose@1145 2141
jrose@1145 2142 // Rebuild the conversion value; maybe parts of it were changed.
jrose@1145 2143 jint new_conversion = adapter_conversion(conv_op, src, dest, stack_move, vminfo);
jrose@1145 2144
jrose@1145 2145 // Finalize the conversion field. (Note that it is final to Java code.)
jrose@1145 2146 sun_dyn_AdapterMethodHandle::set_conversion(mh(), new_conversion);
jrose@1145 2147
jrose@1145 2148 // Done!
jrose@1145 2149 java_dyn_MethodHandle::set_vmentry(mh(), entry(ek_opt));
jrose@1145 2150
jrose@1145 2151 // There should be enough memory barriers on exit from native methods
jrose@1145 2152 // to ensure that the MH is fully initialized to all threads before
jrose@1145 2153 // Java code can publish it in global data structures.
jrose@1145 2154 }
jrose@1145 2155
jrose@1145 2156 //
jrose@1145 2157 // Here are the native methods on sun.dyn.MethodHandleImpl.
jrose@1145 2158 // They are the private interface between this JVM and the HotSpot-specific
jrose@1145 2159 // Java code that implements JSR 292 method handles.
jrose@1145 2160 //
jrose@1145 2161 // Note: We use a JVM_ENTRY macro to define each of these, for this is the way
jrose@1145 2162 // that intrinsic (non-JNI) native methods are defined in HotSpot.
jrose@1145 2163 //
jrose@1145 2164
jrose@1145 2165 // direct method handles for invokestatic or invokespecial
jrose@1145 2166 // void init(DirectMethodHandle self, MemberName ref, boolean doDispatch, Class<?> caller);
jrose@1145 2167 JVM_ENTRY(void, MHI_init_DMH(JNIEnv *env, jobject igcls, jobject mh_jh,
jrose@1145 2168 jobject target_jh, jboolean do_dispatch, jobject caller_jh)) {
jrose@1145 2169 ResourceMark rm; // for error messages
jrose@1145 2170
jrose@1145 2171 // This is the guy we are initializing:
jrose@1145 2172 if (mh_jh == NULL) { THROW(vmSymbols::java_lang_InternalError()); }
jrose@1145 2173 Handle mh(THREAD, JNIHandles::resolve_non_null(mh_jh));
jrose@1145 2174
jrose@1145 2175 // Early returns out of this method leave the DMH in an unfinished state.
jrose@1145 2176 assert(java_dyn_MethodHandle::vmentry(mh()) == NULL, "must be safely null");
jrose@1145 2177
jrose@1145 2178 // which method are we really talking about?
jrose@1145 2179 if (target_jh == NULL) { THROW(vmSymbols::java_lang_InternalError()); }
jrose@1145 2180 oop target_oop = JNIHandles::resolve_non_null(target_jh);
jrose@1145 2181 if (sun_dyn_MemberName::is_instance(target_oop) &&
jrose@1145 2182 sun_dyn_MemberName::vmindex(target_oop) == VM_INDEX_UNINITIALIZED) {
jrose@1145 2183 Handle mname(THREAD, target_oop);
jrose@1145 2184 MethodHandles::resolve_MemberName(mname, CHECK);
jrose@1145 2185 target_oop = mname(); // in case of GC
jrose@1145 2186 }
jrose@1145 2187
jrose@1145 2188 int decode_flags = 0; klassOop receiver_limit = NULL;
jrose@1145 2189 methodHandle m(THREAD,
jrose@1145 2190 MethodHandles::decode_method(target_oop,
jrose@1145 2191 receiver_limit, decode_flags));
jrose@1145 2192 if (m.is_null()) { THROW_MSG(vmSymbols::java_lang_InternalError(), "no such method"); }
jrose@1145 2193
jrose@1145 2194 // The trusted Java code that calls this method should already have performed
jrose@1145 2195 // access checks on behalf of the given caller. But, we can verify this.
jrose@1145 2196 if (VerifyMethodHandles && caller_jh != NULL) {
jrose@1145 2197 KlassHandle caller(THREAD, java_lang_Class::as_klassOop(JNIHandles::resolve_non_null(caller_jh)));
jrose@1145 2198 // If this were a bytecode, the first access check would be against
jrose@1145 2199 // the "reference class" mentioned in the CONSTANT_Methodref.
jrose@1862 2200 // We don't know at this point which class that was, and if we
jrose@1862 2201 // check against m.method_holder we might get the wrong answer.
jrose@1862 2202 // So we just make sure to handle this check when the resolution
jrose@1862 2203 // happens, when we call resolve_MemberName.
jrose@1862 2204 //
jrose@1862 2205 // (A public class can inherit public members from private supers,
jrose@1862 2206 // and it would be wrong to check access against the private super
jrose@1862 2207 // if the original symbolic reference was against the public class.)
jrose@1862 2208 //
jrose@1145 2209 // If there were a bytecode, the next step would be to lookup the method
jrose@1145 2210 // in the reference class, then then check the method's access bits.
jrose@1145 2211 // Emulate LinkResolver::check_method_accessability.
jrose@1145 2212 klassOop resolved_klass = m->method_holder();
jrose@1145 2213 if (!Reflection::verify_field_access(caller->as_klassOop(),
jrose@1862 2214 resolved_klass, resolved_klass,
jrose@1145 2215 m->access_flags(),
jrose@1145 2216 true)) {
jrose@1145 2217 // %%% following cutout belongs in Reflection::verify_field_access?
jrose@1145 2218 bool same_pm = Reflection::is_same_package_member(caller->as_klassOop(),
jrose@1862 2219 resolved_klass, THREAD);
jrose@1145 2220 if (!same_pm) {
jrose@1145 2221 THROW_MSG(vmSymbols::java_lang_InternalError(), m->name_and_sig_as_C_string());
jrose@1145 2222 }
jrose@1145 2223 }
jrose@1145 2224 }
jrose@1145 2225
jrose@1145 2226 MethodHandles::init_DirectMethodHandle(mh, m, (do_dispatch != JNI_FALSE), CHECK);
jrose@1145 2227 }
jrose@1145 2228 JVM_END
jrose@1145 2229
jrose@1145 2230 // bound method handles
jrose@1145 2231 JVM_ENTRY(void, MHI_init_BMH(JNIEnv *env, jobject igcls, jobject mh_jh,
jrose@1145 2232 jobject target_jh, int argnum)) {
jrose@1145 2233 ResourceMark rm; // for error messages
jrose@1145 2234
jrose@1145 2235 // This is the guy we are initializing:
jrose@1145 2236 if (mh_jh == NULL) { THROW(vmSymbols::java_lang_InternalError()); }
jrose@1145 2237 Handle mh(THREAD, JNIHandles::resolve_non_null(mh_jh));
jrose@1145 2238
jrose@1145 2239 // Early returns out of this method leave the BMH in an unfinished state.
jrose@1145 2240 assert(java_dyn_MethodHandle::vmentry(mh()) == NULL, "must be safely null");
jrose@1145 2241
jrose@1145 2242 if (target_jh == NULL) { THROW(vmSymbols::java_lang_InternalError()); }
jrose@1145 2243 Handle target(THREAD, JNIHandles::resolve_non_null(target_jh));
jrose@1145 2244
jrose@1145 2245 if (!java_dyn_MethodHandle::is_instance(target())) {
jrose@1145 2246 // Target object is a reflective method. (%%% Do we need this alternate path?)
jrose@1145 2247 Untested("init_BMH of non-MH");
jrose@1145 2248 if (argnum != 0) { THROW(vmSymbols::java_lang_InternalError()); }
jrose@1145 2249 int decode_flags = 0; klassOop receiver_limit_oop = NULL;
jrose@1145 2250 methodHandle m(THREAD,
jrose@1145 2251 MethodHandles::decode_method(target(),
jrose@1145 2252 receiver_limit_oop,
jrose@1145 2253 decode_flags));
jrose@1145 2254 KlassHandle receiver_limit(THREAD, receiver_limit_oop);
jrose@1145 2255 MethodHandles::init_BoundMethodHandle_with_receiver(mh, m,
jrose@1145 2256 receiver_limit,
jrose@1145 2257 decode_flags,
jrose@1145 2258 CHECK);
jrose@1145 2259 return;
jrose@1145 2260 }
jrose@1145 2261
jrose@1145 2262 // Build a BMH on top of a DMH or another BMH:
jrose@1145 2263 MethodHandles::init_BoundMethodHandle(mh, target, argnum, CHECK);
jrose@1145 2264 }
jrose@1145 2265 JVM_END
jrose@1145 2266
jrose@1145 2267 // adapter method handles
jrose@1145 2268 JVM_ENTRY(void, MHI_init_AMH(JNIEnv *env, jobject igcls, jobject mh_jh,
jrose@1145 2269 jobject target_jh, int argnum)) {
jrose@1145 2270 // This is the guy we are initializing:
jrose@1145 2271 if (mh_jh == NULL || target_jh == NULL) {
jrose@1145 2272 THROW(vmSymbols::java_lang_InternalError());
jrose@1145 2273 }
jrose@1145 2274 Handle mh(THREAD, JNIHandles::resolve_non_null(mh_jh));
jrose@1145 2275 Handle target(THREAD, JNIHandles::resolve_non_null(target_jh));
jrose@1145 2276
jrose@1145 2277 // Early returns out of this method leave the AMH in an unfinished state.
jrose@1145 2278 assert(java_dyn_MethodHandle::vmentry(mh()) == NULL, "must be safely null");
jrose@1145 2279
jrose@1145 2280 MethodHandles::init_AdapterMethodHandle(mh, target, argnum, CHECK);
jrose@1145 2281 }
jrose@1145 2282 JVM_END
jrose@1145 2283
jrose@1145 2284 // method type forms
jrose@1145 2285 JVM_ENTRY(void, MHI_init_MT(JNIEnv *env, jobject igcls, jobject erased_jh)) {
jrose@1145 2286 if (erased_jh == NULL) return;
jrose@1145 2287 if (TraceMethodHandles) {
jrose@1145 2288 tty->print("creating MethodType form ");
jrose@1145 2289 if (WizardMode || Verbose) { // Warning: this calls Java code on the MH!
jrose@1145 2290 // call Object.toString()
jrose@1145 2291 symbolOop name = vmSymbols::toString_name(), sig = vmSymbols::void_string_signature();
jrose@1145 2292 JavaCallArguments args(Handle(THREAD, JNIHandles::resolve_non_null(erased_jh)));
jrose@1145 2293 JavaValue result(T_OBJECT);
never@1577 2294 JavaCalls::call_virtual(&result, SystemDictionary::Object_klass(), name, sig,
jrose@1145 2295 &args, CHECK);
jrose@1145 2296 Handle str(THREAD, (oop)result.get_jobject());
jrose@1145 2297 java_lang_String::print(str, tty);
jrose@1145 2298 }
jrose@1145 2299 tty->cr();
jrose@1145 2300 }
jrose@1145 2301 }
jrose@1145 2302 JVM_END
jrose@1145 2303
jrose@1145 2304 // debugging and reflection
jrose@1145 2305 JVM_ENTRY(jobject, MHI_getTarget(JNIEnv *env, jobject igcls, jobject mh_jh, jint format)) {
jrose@1145 2306 Handle mh(THREAD, JNIHandles::resolve(mh_jh));
jrose@1145 2307 if (!java_dyn_MethodHandle::is_instance(mh())) {
jrose@1145 2308 THROW_NULL(vmSymbols::java_lang_IllegalArgumentException());
jrose@1145 2309 }
jrose@1145 2310 oop target = MethodHandles::encode_target(mh, format, CHECK_NULL);
jrose@1145 2311 return JNIHandles::make_local(THREAD, target);
jrose@1145 2312 }
jrose@1145 2313 JVM_END
jrose@1145 2314
jrose@1145 2315 JVM_ENTRY(jint, MHI_getConstant(JNIEnv *env, jobject igcls, jint which)) {
jrose@1145 2316 switch (which) {
jrose@1145 2317 case MethodHandles::GC_JVM_PUSH_LIMIT:
jrose@1145 2318 guarantee(MethodHandlePushLimit >= 2 && MethodHandlePushLimit <= 0xFF,
jrose@1145 2319 "MethodHandlePushLimit parameter must be in valid range");
jrose@1145 2320 return MethodHandlePushLimit;
jrose@1474 2321 case MethodHandles::GC_JVM_STACK_MOVE_UNIT:
jrose@1145 2322 // return number of words per slot, signed according to stack direction
jrose@1145 2323 return MethodHandles::stack_move_unit();
jrose@1862 2324 case MethodHandles::GC_CONV_OP_IMPLEMENTED_MASK:
jrose@1862 2325 return MethodHandles::adapter_conversion_ops_supported_mask();
jrose@1145 2326 }
jrose@1145 2327 return 0;
jrose@1145 2328 }
jrose@1145 2329 JVM_END
jrose@1145 2330
jrose@1145 2331 #ifndef PRODUCT
jrose@1145 2332 #define EACH_NAMED_CON(template) \
jrose@1145 2333 template(MethodHandles,GC_JVM_PUSH_LIMIT) \
jrose@1474 2334 template(MethodHandles,GC_JVM_STACK_MOVE_UNIT) \
jrose@1145 2335 template(MethodHandles,ETF_HANDLE_OR_METHOD_NAME) \
jrose@1145 2336 template(MethodHandles,ETF_DIRECT_HANDLE) \
jrose@1145 2337 template(MethodHandles,ETF_METHOD_NAME) \
jrose@1145 2338 template(MethodHandles,ETF_REFLECT_METHOD) \
jrose@1145 2339 template(sun_dyn_MemberName,MN_IS_METHOD) \
jrose@1145 2340 template(sun_dyn_MemberName,MN_IS_CONSTRUCTOR) \
jrose@1145 2341 template(sun_dyn_MemberName,MN_IS_FIELD) \
jrose@1145 2342 template(sun_dyn_MemberName,MN_IS_TYPE) \
jrose@1145 2343 template(sun_dyn_MemberName,MN_SEARCH_SUPERCLASSES) \
jrose@1145 2344 template(sun_dyn_MemberName,MN_SEARCH_INTERFACES) \
jrose@1145 2345 template(sun_dyn_MemberName,VM_INDEX_UNINITIALIZED) \
jrose@1145 2346 template(sun_dyn_AdapterMethodHandle,OP_RETYPE_ONLY) \
jrose@1474 2347 template(sun_dyn_AdapterMethodHandle,OP_RETYPE_RAW) \
jrose@1145 2348 template(sun_dyn_AdapterMethodHandle,OP_CHECK_CAST) \
jrose@1145 2349 template(sun_dyn_AdapterMethodHandle,OP_PRIM_TO_PRIM) \
jrose@1145 2350 template(sun_dyn_AdapterMethodHandle,OP_REF_TO_PRIM) \
jrose@1145 2351 template(sun_dyn_AdapterMethodHandle,OP_PRIM_TO_REF) \
jrose@1145 2352 template(sun_dyn_AdapterMethodHandle,OP_SWAP_ARGS) \
jrose@1145 2353 template(sun_dyn_AdapterMethodHandle,OP_ROT_ARGS) \
jrose@1145 2354 template(sun_dyn_AdapterMethodHandle,OP_DUP_ARGS) \
jrose@1145 2355 template(sun_dyn_AdapterMethodHandle,OP_DROP_ARGS) \
jrose@1145 2356 template(sun_dyn_AdapterMethodHandle,OP_COLLECT_ARGS) \
jrose@1145 2357 template(sun_dyn_AdapterMethodHandle,OP_SPREAD_ARGS) \
jrose@1145 2358 template(sun_dyn_AdapterMethodHandle,OP_FLYBY) \
jrose@1145 2359 template(sun_dyn_AdapterMethodHandle,OP_RICOCHET) \
jrose@1145 2360 template(sun_dyn_AdapterMethodHandle,CONV_OP_LIMIT) \
jrose@1145 2361 template(sun_dyn_AdapterMethodHandle,CONV_OP_MASK) \
jrose@1145 2362 template(sun_dyn_AdapterMethodHandle,CONV_VMINFO_MASK) \
jrose@1145 2363 template(sun_dyn_AdapterMethodHandle,CONV_VMINFO_SHIFT) \
jrose@1145 2364 template(sun_dyn_AdapterMethodHandle,CONV_OP_SHIFT) \
jrose@1145 2365 template(sun_dyn_AdapterMethodHandle,CONV_DEST_TYPE_SHIFT) \
jrose@1145 2366 template(sun_dyn_AdapterMethodHandle,CONV_SRC_TYPE_SHIFT) \
jrose@1145 2367 template(sun_dyn_AdapterMethodHandle,CONV_STACK_MOVE_SHIFT) \
jrose@1145 2368 template(sun_dyn_AdapterMethodHandle,CONV_STACK_MOVE_MASK) \
jrose@1145 2369 /*end*/
jrose@1145 2370
jrose@1145 2371 #define ONE_PLUS(scope,value) 1+
jrose@1145 2372 static const int con_value_count = EACH_NAMED_CON(ONE_PLUS) 0;
jrose@1145 2373 #define VALUE_COMMA(scope,value) scope::value,
jrose@1145 2374 static const int con_values[con_value_count+1] = { EACH_NAMED_CON(VALUE_COMMA) 0 };
jrose@1145 2375 #define STRING_NULL(scope,value) #value "\0"
jrose@1145 2376 static const char con_names[] = { EACH_NAMED_CON(STRING_NULL) };
jrose@1145 2377
jrose@1145 2378 #undef ONE_PLUS
jrose@1145 2379 #undef VALUE_COMMA
jrose@1145 2380 #undef STRING_NULL
jrose@1145 2381 #undef EACH_NAMED_CON
jrose@1145 2382 #endif
jrose@1145 2383
jrose@1145 2384 JVM_ENTRY(jint, MHI_getNamedCon(JNIEnv *env, jobject igcls, jint which, jobjectArray box_jh)) {
jrose@1145 2385 #ifndef PRODUCT
jrose@1145 2386 if (which >= 0 && which < con_value_count) {
jrose@1145 2387 int con = con_values[which];
jrose@1145 2388 objArrayOop box = (objArrayOop) JNIHandles::resolve(box_jh);
jrose@1145 2389 if (box != NULL && box->klass() == Universe::objectArrayKlassObj() && box->length() > 0) {
jrose@1145 2390 const char* str = &con_names[0];
jrose@1145 2391 for (int i = 0; i < which; i++)
jrose@1145 2392 str += strlen(str) + 1; // skip name and null
jrose@1145 2393 oop name = java_lang_String::create_oop_from_str(str, CHECK_0);
jrose@1145 2394 box->obj_at_put(0, name);
jrose@1145 2395 }
jrose@1145 2396 return con;
jrose@1145 2397 }
jrose@1145 2398 #endif
jrose@1145 2399 return 0;
jrose@1145 2400 }
jrose@1145 2401 JVM_END
jrose@1145 2402
jrose@1145 2403 // void init(MemberName self, AccessibleObject ref)
jrose@1145 2404 JVM_ENTRY(void, MHI_init_Mem(JNIEnv *env, jobject igcls, jobject mname_jh, jobject target_jh)) {
jrose@1145 2405 if (mname_jh == NULL || target_jh == NULL) { THROW(vmSymbols::java_lang_InternalError()); }
jrose@1145 2406 Handle mname(THREAD, JNIHandles::resolve_non_null(mname_jh));
jrose@1145 2407 oop target_oop = JNIHandles::resolve_non_null(target_jh);
jrose@1145 2408 MethodHandles::init_MemberName(mname(), target_oop);
jrose@1145 2409 }
jrose@1145 2410 JVM_END
jrose@1145 2411
jrose@1145 2412 // void expand(MemberName self)
jrose@1145 2413 JVM_ENTRY(void, MHI_expand_Mem(JNIEnv *env, jobject igcls, jobject mname_jh)) {
jrose@1145 2414 if (mname_jh == NULL) { THROW(vmSymbols::java_lang_InternalError()); }
jrose@1145 2415 Handle mname(THREAD, JNIHandles::resolve_non_null(mname_jh));
jrose@1145 2416 MethodHandles::expand_MemberName(mname, 0, CHECK);
jrose@1145 2417 }
jrose@1145 2418 JVM_END
jrose@1145 2419
jrose@1145 2420 // void resolve(MemberName self, Class<?> caller)
jrose@1145 2421 JVM_ENTRY(void, MHI_resolve_Mem(JNIEnv *env, jobject igcls, jobject mname_jh, jclass caller_jh)) {
jrose@1145 2422 if (mname_jh == NULL) { THROW(vmSymbols::java_lang_InternalError()); }
jrose@1145 2423 Handle mname(THREAD, JNIHandles::resolve_non_null(mname_jh));
jrose@1862 2424
jrose@1862 2425 // The trusted Java code that calls this method should already have performed
jrose@1862 2426 // access checks on behalf of the given caller. But, we can verify this.
jrose@1862 2427 if (VerifyMethodHandles && caller_jh != NULL) {
jrose@1862 2428 klassOop reference_klass = java_lang_Class::as_klassOop(sun_dyn_MemberName::clazz(mname()));
jrose@1862 2429 if (reference_klass != NULL) {
jrose@1862 2430 // Emulate LinkResolver::check_klass_accessability.
jrose@1862 2431 klassOop caller = java_lang_Class::as_klassOop(JNIHandles::resolve_non_null(caller_jh));
jrose@1862 2432 if (!Reflection::verify_class_access(caller,
jrose@1862 2433 reference_klass,
jrose@1862 2434 true)) {
jrose@1862 2435 THROW_MSG(vmSymbols::java_lang_InternalError(), Klass::cast(reference_klass)->external_name());
jrose@1862 2436 }
jrose@1862 2437 }
jrose@1862 2438 }
jrose@1862 2439
jrose@1145 2440 MethodHandles::resolve_MemberName(mname, CHECK);
jrose@1145 2441 }
jrose@1145 2442 JVM_END
jrose@1145 2443
jrose@1145 2444 // static native int getMembers(Class<?> defc, String matchName, String matchSig,
jrose@1145 2445 // int matchFlags, Class<?> caller, int skip, MemberName[] results);
jrose@1145 2446 JVM_ENTRY(jint, MHI_getMembers(JNIEnv *env, jobject igcls,
jrose@1145 2447 jclass clazz_jh, jstring name_jh, jstring sig_jh,
jrose@1145 2448 int mflags, jclass caller_jh, jint skip, jobjectArray results_jh)) {
jrose@1145 2449 if (clazz_jh == NULL || results_jh == NULL) return -1;
jrose@1145 2450 klassOop k_oop = java_lang_Class::as_klassOop(JNIHandles::resolve_non_null(clazz_jh));
jrose@1145 2451
jrose@1145 2452 objArrayOop results = (objArrayOop) JNIHandles::resolve(results_jh);
jrose@1145 2453 if (results == NULL || !results->is_objArray()) return -1;
jrose@1145 2454
jrose@1145 2455 symbolOop name = NULL, sig = NULL;
jrose@1145 2456 if (name_jh != NULL) {
jrose@1145 2457 name = java_lang_String::as_symbol_or_null(JNIHandles::resolve_non_null(name_jh));
jrose@1145 2458 if (name == NULL) return 0; // a match is not possible
jrose@1145 2459 }
jrose@1145 2460 if (sig_jh != NULL) {
jrose@1145 2461 sig = java_lang_String::as_symbol_or_null(JNIHandles::resolve_non_null(sig_jh));
jrose@1145 2462 if (sig == NULL) return 0; // a match is not possible
jrose@1145 2463 }
jrose@1145 2464
jrose@1145 2465 klassOop caller = NULL;
jrose@1145 2466 if (caller_jh != NULL) {
jrose@1145 2467 oop caller_oop = JNIHandles::resolve_non_null(caller_jh);
jrose@1145 2468 if (!java_lang_Class::is_instance(caller_oop)) return -1;
jrose@1145 2469 caller = java_lang_Class::as_klassOop(caller_oop);
jrose@1145 2470 }
jrose@1145 2471
jrose@1145 2472 if (name != NULL && sig != NULL && results != NULL) {
jrose@1145 2473 // try a direct resolve
jrose@1145 2474 // %%% TO DO
jrose@1145 2475 }
jrose@1145 2476
jrose@1145 2477 int res = MethodHandles::find_MemberNames(k_oop, name, sig, mflags,
jrose@1145 2478 caller, skip, results);
jrose@1145 2479 // TO DO: expand at least some of the MemberNames, to avoid massive callbacks
jrose@1145 2480 return res;
jrose@1145 2481 }
jrose@1145 2482 JVM_END
jrose@1145 2483
jrose@1862 2484 JVM_ENTRY(void, MHI_registerBootstrap(JNIEnv *env, jobject igcls, jclass caller_jh, jobject bsm_jh)) {
jrose@1862 2485 instanceKlassHandle ik = MethodHandles::resolve_instance_klass(caller_jh, THREAD);
jrose@2015 2486 if (!AllowTransitionalJSR292) {
jrose@2015 2487 THROW_MSG(vmSymbols::java_lang_IllegalArgumentException(),
jrose@2015 2488 "registerBootstrapMethod is only supported in JSR 292 EDR");
jrose@2015 2489 }
jrose@1862 2490 ik->link_class(CHECK);
jrose@1862 2491 if (!java_dyn_MethodHandle::is_instance(JNIHandles::resolve(bsm_jh))) {
jrose@1862 2492 THROW_MSG(vmSymbols::java_lang_IllegalArgumentException(), "method handle");
jrose@1862 2493 }
jrose@1862 2494 const char* err = NULL;
jrose@1862 2495 if (ik->is_initialized() || ik->is_in_error_state()) {
jrose@1862 2496 err = "too late: class is already initialized";
jrose@1862 2497 } else {
jrose@1862 2498 ObjectLocker ol(ik, THREAD); // note: this should be a recursive lock
jrose@1862 2499 if (ik->is_not_initialized() ||
jrose@1862 2500 (ik->is_being_initialized() && ik->is_reentrant_initialization(THREAD))) {
jrose@1862 2501 if (ik->bootstrap_method() != NULL) {
jrose@1862 2502 err = "class is already equipped with a bootstrap method";
jrose@1862 2503 } else {
jrose@1862 2504 ik->set_bootstrap_method(JNIHandles::resolve_non_null(bsm_jh));
jrose@1862 2505 err = NULL;
jrose@1862 2506 }
jrose@1862 2507 } else {
jrose@1862 2508 err = "class is already initialized";
jrose@1862 2509 if (ik->is_being_initialized())
jrose@1862 2510 err = "class is already being initialized in a different thread";
jrose@1862 2511 }
jrose@1862 2512 }
jrose@1862 2513 if (err != NULL) {
jrose@1862 2514 THROW_MSG(vmSymbols::java_lang_IllegalStateException(), err);
jrose@1862 2515 }
jrose@1862 2516 }
jrose@1862 2517 JVM_END
jrose@1145 2518
jrose@1862 2519 JVM_ENTRY(jobject, MHI_getBootstrap(JNIEnv *env, jobject igcls, jclass caller_jh)) {
jrose@1862 2520 instanceKlassHandle ik = MethodHandles::resolve_instance_klass(caller_jh, THREAD);
jrose@1862 2521 return JNIHandles::make_local(THREAD, ik->bootstrap_method());
jrose@1862 2522 }
jrose@1862 2523 JVM_END
jrose@1862 2524
jrose@1862 2525 JVM_ENTRY(void, MHI_setCallSiteTarget(JNIEnv *env, jobject igcls, jobject site_jh, jobject target_jh)) {
jrose@1161 2526 // No special action required, yet.
jrose@1161 2527 oop site_oop = JNIHandles::resolve(site_jh);
jrose@1862 2528 if (!java_dyn_CallSite::is_instance(site_oop))
jrose@1862 2529 THROW_MSG(vmSymbols::java_lang_IllegalArgumentException(), "not a CallSite");
jrose@1494 2530 java_dyn_CallSite::set_target(site_oop, JNIHandles::resolve(target_jh));
jrose@1161 2531 }
jrose@1161 2532 JVM_END
jrose@1161 2533
jrose@1161 2534
jrose@1145 2535 /// JVM_RegisterMethodHandleMethods
jrose@1145 2536
jrose@1145 2537 #define ADR "J"
jrose@1145 2538
jrose@1145 2539 #define LANG "Ljava/lang/"
jrose@1145 2540 #define JDYN "Ljava/dyn/"
jrose@1145 2541 #define IDYN "Lsun/dyn/"
jrose@1145 2542
jrose@1145 2543 #define OBJ LANG"Object;"
jrose@1145 2544 #define CLS LANG"Class;"
jrose@1145 2545 #define STRG LANG"String;"
jrose@1494 2546 #define CST JDYN"CallSite;"
jrose@1145 2547 #define MT JDYN"MethodType;"
jrose@1145 2548 #define MH JDYN"MethodHandle;"
jrose@1145 2549 #define MHI IDYN"MethodHandleImpl;"
jrose@1145 2550 #define MEM IDYN"MemberName;"
jrose@1145 2551 #define AMH IDYN"AdapterMethodHandle;"
jrose@1145 2552 #define BMH IDYN"BoundMethodHandle;"
jrose@1145 2553 #define DMH IDYN"DirectMethodHandle;"
jrose@1145 2554
jrose@1145 2555 #define CC (char*) /*cast a literal from (const char*)*/
jrose@1145 2556 #define FN_PTR(f) CAST_FROM_FN_PTR(void*, &f)
jrose@1145 2557
jrose@1145 2558 // These are the native methods on sun.dyn.MethodHandleNatives.
jrose@1145 2559 static JNINativeMethod methods[] = {
jrose@1145 2560 // void init(MemberName self, AccessibleObject ref)
jrose@1145 2561 {CC"init", CC"("AMH""MH"I)V", FN_PTR(MHI_init_AMH)},
jrose@1145 2562 {CC"init", CC"("BMH""OBJ"I)V", FN_PTR(MHI_init_BMH)},
jrose@1145 2563 {CC"init", CC"("DMH""OBJ"Z"CLS")V", FN_PTR(MHI_init_DMH)},
jrose@1145 2564 {CC"init", CC"("MT")V", FN_PTR(MHI_init_MT)},
jrose@1145 2565 {CC"init", CC"("MEM""OBJ")V", FN_PTR(MHI_init_Mem)},
jrose@1145 2566 {CC"expand", CC"("MEM")V", FN_PTR(MHI_expand_Mem)},
jrose@1145 2567 {CC"resolve", CC"("MEM""CLS")V", FN_PTR(MHI_resolve_Mem)},
jrose@1145 2568 {CC"getTarget", CC"("MH"I)"OBJ, FN_PTR(MHI_getTarget)},
jrose@1145 2569 {CC"getConstant", CC"(I)I", FN_PTR(MHI_getConstant)},
jrose@1145 2570 // static native int getNamedCon(int which, Object[] name)
jrose@1145 2571 {CC"getNamedCon", CC"(I["OBJ")I", FN_PTR(MHI_getNamedCon)},
jrose@1145 2572 // static native int getMembers(Class<?> defc, String matchName, String matchSig,
jrose@1145 2573 // int matchFlags, Class<?> caller, int skip, MemberName[] results);
jrose@1145 2574 {CC"getMembers", CC"("CLS""STRG""STRG"I"CLS"I["MEM")I", FN_PTR(MHI_getMembers)}
jrose@1145 2575 };
jrose@1145 2576
jrose@1161 2577 // More entry points specifically for EnableInvokeDynamic.
jrose@1161 2578 static JNINativeMethod methods2[] = {
jrose@1862 2579 {CC"registerBootstrap", CC"("CLS MH")V", FN_PTR(MHI_registerBootstrap)},
jrose@1862 2580 {CC"getBootstrap", CC"("CLS")"MH, FN_PTR(MHI_getBootstrap)},
jrose@1862 2581 {CC"setCallSiteTarget", CC"("CST MH")V", FN_PTR(MHI_setCallSiteTarget)}
jrose@1161 2582 };
jrose@1161 2583
jrose@1145 2584
jrose@1145 2585 // This one function is exported, used by NativeLookup.
jrose@1145 2586
jrose@1145 2587 JVM_ENTRY(void, JVM_RegisterMethodHandleMethods(JNIEnv *env, jclass MHN_class)) {
jrose@1145 2588 assert(MethodHandles::spot_check_entry_names(), "entry enum is OK");
jrose@1145 2589
jrose@1161 2590 // note: this explicit warning-producing stuff will be replaced by auto-detection of the JSR 292 classes
jrose@1161 2591
jrose@1145 2592 if (!EnableMethodHandles) {
jrose@1474 2593 warning("JSR 292 method handles are disabled in this JVM. Use -XX:+UnlockExperimentalVMOptions -XX:+EnableMethodHandles to enable.");
jrose@1145 2594 return; // bind nothing
jrose@1145 2595 }
jrose@1145 2596
jrose@1474 2597 bool enable_MH = true;
jrose@1474 2598
jrose@1145 2599 {
jrose@1145 2600 ThreadToNativeFromVM ttnfv(thread);
jrose@1145 2601
jrose@1145 2602 int status = env->RegisterNatives(MHN_class, methods, sizeof(methods)/sizeof(JNINativeMethod));
jrose@1145 2603 if (env->ExceptionOccurred()) {
jrose@1145 2604 MethodHandles::set_enabled(false);
jrose@1145 2605 warning("JSR 292 method handle code is mismatched to this JVM. Disabling support.");
jrose@1474 2606 enable_MH = false;
jrose@1145 2607 env->ExceptionClear();
jrose@1145 2608 }
jrose@1145 2609 }
jrose@1161 2610
jrose@1474 2611 if (enable_MH) {
jrose@1474 2612 KlassHandle MHI_klass = SystemDictionaryHandles::MethodHandleImpl_klass();
jrose@1474 2613 if (MHI_klass.not_null()) {
jrose@1474 2614 symbolHandle raiseException_name = oopFactory::new_symbol_handle("raiseException", CHECK);
jrose@1474 2615 symbolHandle raiseException_sig = oopFactory::new_symbol_handle("(ILjava/lang/Object;Ljava/lang/Object;)V", CHECK);
jrose@1474 2616 methodOop raiseException_method = instanceKlass::cast(MHI_klass->as_klassOop())
jrose@1474 2617 ->find_method(raiseException_name(), raiseException_sig());
jrose@1474 2618 if (raiseException_method != NULL && raiseException_method->is_static()) {
jrose@1474 2619 MethodHandles::set_raise_exception_method(raiseException_method);
jrose@1474 2620 } else {
jrose@1474 2621 warning("JSR 292 method handle code is mismatched to this JVM. Disabling support.");
jrose@1474 2622 enable_MH = false;
jrose@1474 2623 }
jrose@1474 2624 }
jrose@1474 2625 }
jrose@1474 2626
jrose@1474 2627 if (enable_MH) {
jrose@1474 2628 MethodHandles::set_enabled(true);
jrose@1474 2629 }
jrose@1474 2630
jrose@1161 2631 if (!EnableInvokeDynamic) {
jrose@1474 2632 warning("JSR 292 invokedynamic is disabled in this JVM. Use -XX:+UnlockExperimentalVMOptions -XX:+EnableInvokeDynamic to enable.");
jrose@1161 2633 return; // bind nothing
jrose@1161 2634 }
jrose@1161 2635
jrose@1161 2636 {
jrose@1161 2637 ThreadToNativeFromVM ttnfv(thread);
jrose@1161 2638
jrose@1161 2639 int status = env->RegisterNatives(MHN_class, methods2, sizeof(methods2)/sizeof(JNINativeMethod));
jrose@1161 2640 if (env->ExceptionOccurred()) {
jrose@1161 2641 MethodHandles::set_enabled(false);
jrose@1161 2642 warning("JSR 292 method handle code is mismatched to this JVM. Disabling support.");
jrose@1161 2643 env->ExceptionClear();
jrose@1161 2644 } else {
jrose@1161 2645 MethodHandles::set_enabled(true);
jrose@1161 2646 }
jrose@1161 2647 }
jrose@1145 2648 }
jrose@1145 2649 JVM_END

mercurial