1 /*
   2  * Copyright (c) 2008, 2017, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package java.lang.invoke;
  27 
  28 import sun.invoke.util.BytecodeDescriptor;
  29 import sun.invoke.util.VerifyAccess;
  30 
  31 import java.lang.reflect.Constructor;
  32 import java.lang.reflect.Field;
  33 import java.lang.reflect.Member;
  34 import java.lang.reflect.Method;
  35 import java.lang.reflect.Modifier;
  36 import java.util.ArrayList;
  37 import java.util.Collections;
  38 import java.util.Iterator;
  39 import java.util.List;
  40 import java.util.Objects;
  41 
  42 import static java.lang.invoke.MethodHandleNatives.Constants.*;
  43 import static java.lang.invoke.MethodHandleStatics.newIllegalArgumentException;
  44 import static java.lang.invoke.MethodHandleStatics.newInternalError;
  45 
  46 /**
  47  * A {@code MemberName} is a compact symbolic datum which fully characterizes
  48  * a method or field reference.
  49  * A member name refers to a field, method, constructor, or member type.
  50  * Every member name has a simple name (a string) and a type (either a Class or MethodType).
  51  * A member name may also have a non-null declaring class, or it may be simply
  52  * a naked name/type pair.
  53  * A member name may also have non-zero modifier flags.
  54  * Finally, a member name may be either resolved or unresolved.
  55  * If it is resolved, the existence of the named member has been determined by the JVM.
  56  * <p>
  57  * Whether resolved or not, a member name provides no access rights or
  58  * invocation capability to its possessor.  It is merely a compact
  59  * representation of all symbolic information necessary to link to
  60  * and properly use the named member.
  61  * <p>
  62  * When resolved, a member name's internal implementation may include references to JVM metadata.
  63  * This representation is stateless and only descriptive.
  64  * It provides no private information and no capability to use the member.
  65  * <p>
  66  * By contrast, a {@linkplain java.lang.reflect.Method} contains fuller information
  67  * about the internals of a method (except its bytecodes) and also
  68  * allows invocation.  A MemberName is much lighter than a Method,
  69  * since it contains about 7 fields to the 16 of Method (plus its sub-arrays),
  70  * and those seven fields omit much of the information in Method.
  71  * @author jrose
  72  */
  73 /*non-public*/ final class ResolvedMethodName {
  74     //@Injected JVM_Method* vmtarget;
  75     //@Injected Class<?>    vmholder;
  76 };
  77 
  78 /*non-public*/ final class MemberName implements Member, Cloneable {
  79     private Class<?> clazz;       // class in which the member is defined
  80     private String   name;        // may be null if not yet materialized
  81     private Object   type;        // may be null if not yet materialized
  82     private int      flags;       // modifier bits; see reflect.Modifier
  83     private ResolvedMethodName method;    // cached resolved method information
  84     //@Injected intptr_t       vmindex;   // vtable index or offset of resolved member
  85     Object   resolution;  // if null, this guy is resolved
  86 
  87     /** Return the declaring class of this member.
  88      *  In the case of a bare name and type, the declaring class will be null.
  89      */
  90     public Class<?> getDeclaringClass() {
  91         return clazz;
  92     }
  93 
  94     /** Utility method producing the class loader of the declaring class. */
  95     public ClassLoader getClassLoader() {
  96         return clazz.getClassLoader();
  97     }
  98 
  99     /** Return the simple name of this member.
 100      *  For a type, it is the same as {@link Class#getSimpleName}.
 101      *  For a method or field, it is the simple name of the member.
 102      *  For a constructor, it is always {@code "<init>"}.
 103      */
 104     public String getName() {
 105         if (name == null) {
 106             expandFromVM();
 107             if (name == null) {
 108                 return null;
 109             }
 110         }
 111         return name;
 112     }
 113 
 114     public MethodType getMethodOrFieldType() {
 115         if (isInvocable())
 116             return getMethodType();
 117         if (isGetter())
 118             return MethodType.methodType(getFieldType());
 119         if (isSetter())
 120             return MethodType.methodType(void.class, getFieldType());
 121         throw new InternalError("not a method or field: "+this);
 122     }
 123 
 124     /** Return the declared type of this member, which
 125      *  must be a method or constructor.
 126      */
 127     public MethodType getMethodType() {
 128         if (type == null) {
 129             expandFromVM();
 130             if (type == null) {
 131                 return null;
 132             }
 133         }
 134         if (!isInvocable()) {
 135             throw newIllegalArgumentException("not invocable, no method type");
 136         }
 137 
 138         {
 139             // Get a snapshot of type which doesn't get changed by racing threads.
 140             final Object type = this.type;
 141             if (type instanceof MethodType) {
 142                 return (MethodType) type;
 143             }
 144         }
 145 
 146         // type is not a MethodType yet.  Convert it thread-safely.
 147         synchronized (this) {
 148             if (type instanceof String) {
 149                 String sig = (String) type;
 150                 MethodType res = MethodType.fromDescriptor(sig, getClassLoader());
 151                 type = res;
 152             } else if (type instanceof Object[]) {
 153                 Object[] typeInfo = (Object[]) type;
 154                 Class<?>[] ptypes = (Class<?>[]) typeInfo[1];
 155                 Class<?> rtype = (Class<?>) typeInfo[0];
 156                 MethodType res = MethodType.makeImpl(rtype, ptypes, true);
 157                 type = res;
 158             }
 159             // Make sure type is a MethodType for racing threads.
 160             assert type instanceof MethodType : "bad method type " + type;
 161         }
 162         return (MethodType) type;
 163     }
 164 
 165     /** Return the descriptor of this member, which
 166      *  must be a method or constructor.
 167      */
 168     String getMethodDescriptor() {
 169         if (type == null) {
 170             expandFromVM();
 171             if (type == null) {
 172                 return null;
 173             }
 174         }
 175         if (!isInvocable()) {
 176             throw newIllegalArgumentException("not invocable, no method type");
 177         }
 178 
 179         // Get a snapshot of type which doesn't get changed by racing threads.
 180         final Object type = this.type;
 181         if (type instanceof String) {
 182             return (String) type;
 183         } else {
 184             return getMethodType().toMethodDescriptorString();
 185         }
 186     }
 187 
 188     /** Return the actual type under which this method or constructor must be invoked.
 189      *  For non-static methods or constructors, this is the type with a leading parameter,
 190      *  a reference to declaring class.  For static methods, it is the same as the declared type.
 191      */
 192     public MethodType getInvocationType() {
 193         MethodType itype = getMethodOrFieldType();
 194         if (isConstructor() && getReferenceKind() == REF_newInvokeSpecial)
 195             return itype.changeReturnType(clazz);
 196         if (!isStatic())
 197             return itype.insertParameterTypes(0, clazz);
 198         return itype;
 199     }
 200 
 201     /** Utility method producing the parameter types of the method type. */
 202     public Class<?>[] getParameterTypes() {
 203         return getMethodType().parameterArray();
 204     }
 205 
 206     /** Utility method producing the return type of the method type. */
 207     public Class<?> getReturnType() {
 208         return getMethodType().returnType();
 209     }
 210 
 211     /** Return the declared type of this member, which
 212      *  must be a field or type.
 213      *  If it is a type member, that type itself is returned.
 214      */
 215     public Class<?> getFieldType() {
 216         if (type == null) {
 217             expandFromVM();
 218             if (type == null) {
 219                 return null;
 220             }
 221         }
 222         if (isInvocable()) {
 223             throw newIllegalArgumentException("not a field or nested class, no simple type");
 224         }
 225 
 226         {
 227             // Get a snapshot of type which doesn't get changed by racing threads.
 228             final Object type = this.type;
 229             if (type instanceof Class<?>) {
 230                 return (Class<?>) type;
 231             }
 232         }
 233 
 234         // type is not a Class yet.  Convert it thread-safely.
 235         synchronized (this) {
 236             if (type instanceof String) {
 237                 String sig = (String) type;
 238                 MethodType mtype = MethodType.fromDescriptor("()"+sig, getClassLoader());
 239                 Class<?> res = mtype.returnType();
 240                 type = res;
 241             }
 242             // Make sure type is a Class for racing threads.
 243             assert type instanceof Class<?> : "bad field type " + type;
 244         }
 245         return (Class<?>) type;
 246     }
 247 
 248     /** Utility method to produce either the method type or field type of this member. */
 249     public Object getType() {
 250         return (isInvocable() ? getMethodType() : getFieldType());
 251     }
 252 
 253     /** Utility method to produce the signature of this member,
 254      *  used within the class file format to describe its type.
 255      */
 256     public String getSignature() {
 257         if (type == null) {
 258             expandFromVM();
 259             if (type == null) {
 260                 return null;
 261             }
 262         }
 263         if (isInvocable())
 264             return BytecodeDescriptor.unparse(getMethodType());
 265         else
 266             return BytecodeDescriptor.unparse(getFieldType());
 267     }
 268 
 269     /** Return the modifier flags of this member.
 270      *  @see java.lang.reflect.Modifier
 271      */
 272     public int getModifiers() {
 273         return (flags & RECOGNIZED_MODIFIERS);
 274     }
 275 
 276     /** Return the reference kind of this member, or zero if none.
 277      */
 278     public byte getReferenceKind() {
 279         return (byte) ((flags >>> MN_REFERENCE_KIND_SHIFT) & MN_REFERENCE_KIND_MASK);
 280     }
 281     private boolean referenceKindIsConsistent() {
 282         byte refKind = getReferenceKind();
 283         if (refKind == REF_NONE)  return isType();
 284         if (isField()) {
 285             assert(staticIsConsistent());
 286             assert(MethodHandleNatives.refKindIsField(refKind));
 287         } else if (isConstructor()) {
 288             assert(refKind == REF_newInvokeSpecial || refKind == REF_invokeSpecial);
 289         } else if (isMethod()) {
 290             assert(staticIsConsistent());
 291             assert(MethodHandleNatives.refKindIsMethod(refKind));
 292             if (clazz.isInterface())
 293                 assert(refKind == REF_invokeInterface ||
 294                        refKind == REF_invokeStatic    ||
 295                        refKind == REF_invokeSpecial   ||
 296                        refKind == REF_invokeVirtual && isObjectPublicMethod());
 297         } else {
 298             assert(false);
 299         }
 300         return true;
 301     }
 302     private boolean isObjectPublicMethod() {
 303         if (clazz == Object.class)  return true;
 304         MethodType mtype = getMethodType();
 305         if (name.equals("toString") && mtype.returnType() == String.class && mtype.parameterCount() == 0)
 306             return true;
 307         if (name.equals("hashCode") && mtype.returnType() == int.class && mtype.parameterCount() == 0)
 308             return true;
 309         if (name.equals("equals") && mtype.returnType() == boolean.class && mtype.parameterCount() == 1 && mtype.parameterType(0) == Object.class)
 310             return true;
 311         return false;
 312     }
 313     /*non-public*/ boolean referenceKindIsConsistentWith(int originalRefKind) {
 314         int refKind = getReferenceKind();
 315         if (refKind == originalRefKind)  return true;
 316         switch (originalRefKind) {
 317         case REF_invokeInterface:
 318             // Looking up an interface method, can get (e.g.) Object.hashCode
 319             assert(refKind == REF_invokeVirtual ||
 320                    refKind == REF_invokeSpecial) : this;
 321             return true;
 322         case REF_invokeVirtual:
 323         case REF_newInvokeSpecial:
 324             // Looked up a virtual, can get (e.g.) final String.hashCode.
 325             assert(refKind == REF_invokeSpecial) : this;
 326             return true;
 327         }
 328         assert(false) : this+" != "+MethodHandleNatives.refKindName((byte)originalRefKind);
 329         return true;
 330     }
 331     private boolean staticIsConsistent() {
 332         byte refKind = getReferenceKind();
 333         return MethodHandleNatives.refKindIsStatic(refKind) == isStatic() || getModifiers() == 0;
 334     }
 335     private boolean vminfoIsConsistent() {
 336         byte refKind = getReferenceKind();
 337         assert(isResolved());  // else don't call
 338         Object vminfo = MethodHandleNatives.getMemberVMInfo(this);
 339         assert(vminfo instanceof Object[]);
 340         long vmindex = (Long) ((Object[])vminfo)[0];
 341         Object vmtarget = ((Object[])vminfo)[1];
 342         if (MethodHandleNatives.refKindIsField(refKind)) {
 343             assert(vmindex >= 0) : vmindex + ":" + this;
 344             assert(vmtarget instanceof Class);
 345         } else {
 346             if (MethodHandleNatives.refKindDoesDispatch(refKind))
 347                 assert(vmindex >= 0) : vmindex + ":" + this;
 348             else
 349                 assert(vmindex < 0) : vmindex;
 350             assert(vmtarget instanceof MemberName) : vmtarget + " in " + this;
 351         }
 352         return true;
 353     }
 354 
 355     private MemberName changeReferenceKind(byte refKind, byte oldKind) {
 356         assert(getReferenceKind() == oldKind);
 357         assert(MethodHandleNatives.refKindIsValid(refKind));
 358         flags += (((int)refKind - oldKind) << MN_REFERENCE_KIND_SHIFT);
 359         return this;
 360     }
 361 
 362     private boolean testFlags(int mask, int value) {
 363         return (flags & mask) == value;
 364     }
 365     private boolean testAllFlags(int mask) {
 366         return testFlags(mask, mask);
 367     }
 368     private boolean testAnyFlags(int mask) {
 369         return !testFlags(mask, 0);
 370     }
 371 
 372     /** Utility method to query if this member is a method handle invocation (invoke or invokeExact).
 373      */
 374     public boolean isMethodHandleInvoke() {
 375         final int bits = MH_INVOKE_MODS &~ Modifier.PUBLIC;
 376         final int negs = Modifier.STATIC;
 377         if (testFlags(bits | negs, bits) &&
 378             clazz == MethodHandle.class) {
 379             return isMethodHandleInvokeName(name);
 380         }
 381         return false;
 382     }
 383     public static boolean isMethodHandleInvokeName(String name) {
 384         switch (name) {
 385         case "invoke":
 386         case "invokeExact":
 387             return true;
 388         default:
 389             return false;
 390         }
 391     }
 392     public boolean isVarHandleMethodInvoke() {
 393         final int bits = MH_INVOKE_MODS &~ Modifier.PUBLIC;
 394         final int negs = Modifier.STATIC;
 395         if (testFlags(bits | negs, bits) &&
 396             clazz == VarHandle.class) {
 397             return isVarHandleMethodInvokeName(name);
 398         }
 399         return false;
 400     }
 401     public static boolean isVarHandleMethodInvokeName(String name) {
 402         try {
 403             VarHandle.AccessMode.valueFromMethodName(name);
 404             return true;
 405         } catch (IllegalArgumentException e) {
 406             return false;
 407         }
 408     }
 409     private static final int MH_INVOKE_MODS = Modifier.NATIVE | Modifier.FINAL | Modifier.PUBLIC;
 410 
 411     /** Utility method to query the modifier flags of this member. */
 412     public boolean isStatic() {
 413         return Modifier.isStatic(flags);
 414     }
 415     /** Utility method to query the modifier flags of this member. */
 416     public boolean isPublic() {
 417         return Modifier.isPublic(flags);
 418     }
 419     /** Utility method to query the modifier flags of this member. */
 420     public boolean isPrivate() {
 421         return Modifier.isPrivate(flags);
 422     }
 423     /** Utility method to query the modifier flags of this member. */
 424     public boolean isProtected() {
 425         return Modifier.isProtected(flags);
 426     }
 427     /** Utility method to query the modifier flags of this member. */
 428     public boolean isFinal() {
 429         return Modifier.isFinal(flags);
 430     }
 431     /** Utility method to query whether this member or its defining class is final. */
 432     public boolean canBeStaticallyBound() {
 433         return Modifier.isFinal(flags | clazz.getModifiers());
 434     }
 435     /** Utility method to query the modifier flags of this member. */
 436     public boolean isVolatile() {
 437         return Modifier.isVolatile(flags);
 438     }
 439     /** Utility method to query the modifier flags of this member. */
 440     public boolean isAbstract() {
 441         return Modifier.isAbstract(flags);
 442     }
 443     /** Utility method to query the modifier flags of this member. */
 444     public boolean isNative() {
 445         return Modifier.isNative(flags);
 446     }
 447     // let the rest (native, volatile, transient, etc.) be tested via Modifier.isFoo
 448 
 449     // unofficial modifier flags, used by HotSpot:
 450     static final int BRIDGE      = 0x00000040;
 451     static final int VARARGS     = 0x00000080;
 452     static final int SYNTHETIC   = 0x00001000;
 453     static final int ANNOTATION  = 0x00002000;
 454     static final int ENUM        = 0x00004000;
 455     static final int FLATTENABLE = 0x00000100;
 456     static final int FLATTENED   = 0x00008000;
 457 
 458     /** Utility method to query the modifier flags of this member; returns false if the member is not a method. */
 459     public boolean isBridge() {
 460         return testAllFlags(IS_METHOD | BRIDGE);
 461     }
 462     /** Utility method to query the modifier flags of this member; returns false if the member is not a method. */
 463     public boolean isVarargs() {
 464         return testAllFlags(VARARGS) && isInvocable();
 465     }
 466     /** Utility method to query the modifier flags of this member; returns false if the member is not a method. */
 467     public boolean isSynthetic() {
 468         return testAllFlags(SYNTHETIC);
 469     }
 470 
 471     public boolean isFlattenable() { return (flags & FLATTENABLE) == FLATTENABLE; }
 472 
 473     public boolean isFlattened() { return (flags & FLATTENED) == FLATTENED; }
 474 
 475     public boolean isNullable()  { return !isFlattenable(); }
 476 
 477     public boolean isValue() { return clazz.isValue(); }
 478 
 479     static final String CONSTRUCTOR_NAME = "<init>";  // the ever-popular
 480 
 481     // modifiers exported by the JVM:
 482     static final int RECOGNIZED_MODIFIERS = 0xFFFF;
 483 
 484     // private flags, not part of RECOGNIZED_MODIFIERS:
 485     static final int
 486             IS_METHOD        = MN_IS_METHOD,        // method (not constructor)
 487             IS_CONSTRUCTOR   = MN_IS_CONSTRUCTOR,   // constructor
 488             IS_FIELD         = MN_IS_FIELD,         // field
 489             IS_TYPE          = MN_IS_TYPE,          // nested type
 490             CALLER_SENSITIVE = MN_CALLER_SENSITIVE; // @CallerSensitive annotation detected
 491 
 492     static final int ALL_ACCESS = Modifier.PUBLIC | Modifier.PRIVATE | Modifier.PROTECTED;
 493     static final int ALL_KINDS = IS_METHOD | IS_CONSTRUCTOR | IS_FIELD | IS_TYPE;
 494     static final int IS_INVOCABLE = IS_METHOD | IS_CONSTRUCTOR;
 495     static final int IS_FIELD_OR_METHOD = IS_METHOD | IS_FIELD;
 496     static final int SEARCH_ALL_SUPERS = MN_SEARCH_SUPERCLASSES | MN_SEARCH_INTERFACES;
 497 
 498     /** Utility method to query whether this member is a method or constructor. */
 499     public boolean isInvocable() {
 500         return testAnyFlags(IS_INVOCABLE);
 501     }
 502     /** Utility method to query whether this member is a method, constructor, or field. */
 503     public boolean isFieldOrMethod() {
 504         return testAnyFlags(IS_FIELD_OR_METHOD);
 505     }
 506     /** Query whether this member is a method. */
 507     public boolean isMethod() {
 508         return testAllFlags(IS_METHOD);
 509     }
 510     /** Query whether this member is a constructor. */
 511     public boolean isConstructor() {
 512         return testAllFlags(IS_CONSTRUCTOR);
 513     }
 514     /** Query whether this member is a field. */
 515     public boolean isField() {
 516         return testAllFlags(IS_FIELD);
 517     }
 518     /** Query whether this member is a type. */
 519     public boolean isType() {
 520         return testAllFlags(IS_TYPE);
 521     }
 522     /** Utility method to query whether this member is neither public, private, nor protected. */
 523     public boolean isPackage() {
 524         return !testAnyFlags(ALL_ACCESS);
 525     }
 526     /** Query whether this member has a CallerSensitive annotation. */
 527     public boolean isCallerSensitive() {
 528         return testAllFlags(CALLER_SENSITIVE);
 529     }
 530 
 531     /** Utility method to query whether this member is accessible from a given lookup class. */
 532     public boolean isAccessibleFrom(Class<?> lookupClass) {
 533         int mode = (ALL_ACCESS|MethodHandles.Lookup.PACKAGE|MethodHandles.Lookup.MODULE);
 534         return VerifyAccess.isMemberAccessible(this.getDeclaringClass(), this.getDeclaringClass(), flags,
 535                                                lookupClass, mode);
 536     }
 537 
 538     /**
 539      * Check if MemberName is a call to a method named {@code name} in class {@code declaredClass}.
 540      */
 541     public boolean refersTo(Class<?> declc, String n) {
 542         return clazz == declc && getName().equals(n);
 543     }
 544 
 545     /** Initialize a query.   It is not resolved. */
 546     private void init(Class<?> defClass, String name, Object type, int flags) {
 547         // defining class is allowed to be null (for a naked name/type pair)
 548         //name.toString();  // null check
 549         //type.equals(type);  // null check
 550         // fill in fields:
 551         this.clazz = defClass;
 552         this.name = name;
 553         this.type = type;
 554         this.flags = flags;
 555         assert(testAnyFlags(ALL_KINDS));
 556         assert(this.resolution == null);  // nobody should have touched this yet
 557         //assert(referenceKindIsConsistent());  // do this after resolution
 558     }
 559 
 560     /**
 561      * Calls down to the VM to fill in the fields.  This method is
 562      * synchronized to avoid racing calls.
 563      */
 564     private void expandFromVM() {
 565         if (type != null) {
 566             return;
 567         }
 568         if (!isResolved()) {
 569             return;
 570         }
 571         MethodHandleNatives.expand(this);
 572     }
 573 
 574     // Capturing information from the Core Reflection API:
 575     private static int flagsMods(int flags, int mods, byte refKind) {
 576         assert((flags & RECOGNIZED_MODIFIERS) == 0);
 577         assert((mods & ~RECOGNIZED_MODIFIERS) == 0);
 578         assert((refKind & ~MN_REFERENCE_KIND_MASK) == 0);
 579         return flags | mods | (refKind << MN_REFERENCE_KIND_SHIFT);
 580     }
 581     /** Create a name for the given reflected method.  The resulting name will be in a resolved state. */
 582     public MemberName(Method m) {
 583         this(m, false);
 584     }
 585     @SuppressWarnings("LeakingThisInConstructor")
 586     public MemberName(Method m, boolean wantSpecial) {
 587         Objects.requireNonNull(m);
 588         // fill in vmtarget, vmindex while we have m in hand:
 589         MethodHandleNatives.init(this, m);
 590         if (clazz == null) {  // MHN.init failed
 591             if (m.getDeclaringClass() == MethodHandle.class &&
 592                 isMethodHandleInvokeName(m.getName())) {
 593                 // The JVM did not reify this signature-polymorphic instance.
 594                 // Need a special case here.
 595                 // See comments on MethodHandleNatives.linkMethod.
 596                 MethodType type = MethodType.methodType(m.getReturnType(), m.getParameterTypes());
 597                 int flags = flagsMods(IS_METHOD, m.getModifiers(), REF_invokeVirtual);
 598                 init(MethodHandle.class, m.getName(), type, flags);
 599                 if (isMethodHandleInvoke())
 600                     return;
 601             }
 602             if (m.getDeclaringClass() == VarHandle.class &&
 603                 isVarHandleMethodInvokeName(m.getName())) {
 604                 // The JVM did not reify this signature-polymorphic instance.
 605                 // Need a special case here.
 606                 // See comments on MethodHandleNatives.linkMethod.
 607                 MethodType type = MethodType.methodType(m.getReturnType(), m.getParameterTypes());
 608                 int flags = flagsMods(IS_METHOD, m.getModifiers(), REF_invokeVirtual);
 609                 init(VarHandle.class, m.getName(), type, flags);
 610                 if (isVarHandleMethodInvoke())
 611                     return;
 612             }
 613             throw new LinkageError(m.toString());
 614         }
 615         assert(isResolved() && this.clazz != null);
 616         this.name = m.getName();
 617         if (this.type == null)
 618             this.type = new Object[] { m.getReturnType(), m.getParameterTypes() };
 619         if (wantSpecial) {
 620             if (isAbstract())
 621                 throw new AbstractMethodError(this.toString());
 622             if (getReferenceKind() == REF_invokeVirtual)
 623                 changeReferenceKind(REF_invokeSpecial, REF_invokeVirtual);
 624             else if (getReferenceKind() == REF_invokeInterface)
 625                 // invokeSpecial on a default method
 626                 changeReferenceKind(REF_invokeSpecial, REF_invokeInterface);
 627         }
 628     }
 629     public MemberName asSpecial() {
 630         switch (getReferenceKind()) {
 631         case REF_invokeSpecial:     return this;
 632         case REF_invokeVirtual:     return clone().changeReferenceKind(REF_invokeSpecial, REF_invokeVirtual);
 633         case REF_invokeInterface:   return clone().changeReferenceKind(REF_invokeSpecial, REF_invokeInterface);
 634         case REF_newInvokeSpecial:  return clone().changeReferenceKind(REF_invokeSpecial, REF_newInvokeSpecial);
 635         }
 636         throw new IllegalArgumentException(this.toString());
 637     }
 638     /** If this MN is not REF_newInvokeSpecial, return a clone with that ref. kind.
 639      *  In that case it must already be REF_invokeSpecial.
 640      */
 641     public MemberName asConstructor() {
 642         switch (getReferenceKind()) {
 643         case REF_invokeSpecial:     return clone().changeReferenceKind(REF_newInvokeSpecial, REF_invokeSpecial);
 644         case REF_newInvokeSpecial:  return this;
 645         }
 646         throw new IllegalArgumentException(this.toString());
 647     }
 648     /** If this MN is a REF_invokeSpecial, return a clone with the "normal" kind
 649      *  REF_invokeVirtual; also switch either to REF_invokeInterface if clazz.isInterface.
 650      *  The end result is to get a fully virtualized version of the MN.
 651      *  (Note that resolving in the JVM will sometimes devirtualize, changing
 652      *  REF_invokeVirtual of a final to REF_invokeSpecial, and REF_invokeInterface
 653      *  in some corner cases to either of the previous two; this transform
 654      *  undoes that change under the assumption that it occurred.)
 655      */
 656     public MemberName asNormalOriginal() {
 657         byte normalVirtual = clazz.isInterface() ? REF_invokeInterface : REF_invokeVirtual;
 658         byte refKind = getReferenceKind();
 659         byte newRefKind = refKind;
 660         MemberName result = this;
 661         switch (refKind) {
 662         case REF_invokeInterface:
 663         case REF_invokeVirtual:
 664         case REF_invokeSpecial:
 665             newRefKind = normalVirtual;
 666             break;
 667         }
 668         if (newRefKind == refKind)
 669             return this;
 670         result = clone().changeReferenceKind(newRefKind, refKind);
 671         assert(this.referenceKindIsConsistentWith(result.getReferenceKind()));
 672         return result;
 673     }
 674     /** Create a name for the given reflected constructor.  The resulting name will be in a resolved state. */
 675     @SuppressWarnings("LeakingThisInConstructor")
 676     public MemberName(Constructor<?> ctor) {
 677         Objects.requireNonNull(ctor);
 678         // fill in vmtarget, vmindex while we have ctor in hand:
 679         MethodHandleNatives.init(this, ctor);
 680         assert(isResolved() && this.clazz != null);
 681         this.name = CONSTRUCTOR_NAME;
 682         if (this.type == null)
 683             this.type = new Object[] { void.class, ctor.getParameterTypes() };
 684     }
 685     /** Create a name for the given reflected field.  The resulting name will be in a resolved state.
 686      */
 687     public MemberName(Field fld) {
 688         this(fld, false);
 689     }
 690     @SuppressWarnings("LeakingThisInConstructor")
 691     public MemberName(Field fld, boolean makeSetter) {
 692         Objects.requireNonNull(fld);
 693         // fill in vmtarget, vmindex while we have fld in hand:
 694         MethodHandleNatives.init(this, fld);
 695         assert(isResolved() && this.clazz != null);
 696         this.name = fld.getName();
 697         this.type = fld.getType();
 698         assert((REF_putStatic - REF_getStatic) == (REF_putField - REF_getField));
 699         byte refKind = this.getReferenceKind();
 700         assert(refKind == (isStatic() ? REF_getStatic : REF_getField));
 701         if (makeSetter) {
 702             changeReferenceKind((byte)(refKind + (REF_putStatic - REF_getStatic)), refKind);
 703         }
 704     }
 705     public boolean isGetter() {
 706         return MethodHandleNatives.refKindIsGetter(getReferenceKind());
 707     }
 708     public boolean isSetter() {
 709         return MethodHandleNatives.refKindIsSetter(getReferenceKind());
 710     }
 711     public MemberName asSetter() {
 712         byte refKind = getReferenceKind();
 713         assert(MethodHandleNatives.refKindIsGetter(refKind));
 714         assert((REF_putStatic - REF_getStatic) == (REF_putField - REF_getField));
 715         byte setterRefKind = (byte)(refKind + (REF_putField - REF_getField));
 716         return clone().changeReferenceKind(setterRefKind, refKind);
 717     }
 718     /** Create a name for the given class.  The resulting name will be in a resolved state. */
 719     public MemberName(Class<?> type) {
 720         init(type.getDeclaringClass(), type.getSimpleName(), type,
 721                 flagsMods(IS_TYPE, type.getModifiers(), REF_NONE));
 722         initResolved(true);
 723     }
 724 
 725     /**
 726      * Create a name for a signature-polymorphic invoker.
 727      * This is a placeholder for a signature-polymorphic instance
 728      * (of MH.invokeExact, etc.) that the JVM does not reify.
 729      * See comments on {@link MethodHandleNatives#linkMethod}.
 730      */
 731     static MemberName makeMethodHandleInvoke(String name, MethodType type) {
 732         return makeMethodHandleInvoke(name, type, MH_INVOKE_MODS | SYNTHETIC);
 733     }
 734     static MemberName makeMethodHandleInvoke(String name, MethodType type, int mods) {
 735         MemberName mem = new MemberName(MethodHandle.class, name, type, REF_invokeVirtual);
 736         mem.flags |= mods;  // it's not resolved, but add these modifiers anyway
 737         assert(mem.isMethodHandleInvoke()) : mem;
 738         return mem;
 739     }
 740 
 741     static MemberName makeVarHandleMethodInvoke(String name, MethodType type) {
 742         return makeVarHandleMethodInvoke(name, type, MH_INVOKE_MODS | SYNTHETIC);
 743     }
 744     static MemberName makeVarHandleMethodInvoke(String name, MethodType type, int mods) {
 745         MemberName mem = new MemberName(VarHandle.class, name, type, REF_invokeVirtual);
 746         mem.flags |= mods;  // it's not resolved, but add these modifiers anyway
 747         assert(mem.isVarHandleMethodInvoke()) : mem;
 748         return mem;
 749     }
 750 
 751     // bare-bones constructor; the JVM will fill it in
 752     MemberName() { }
 753 
 754     // locally useful cloner
 755     @Override protected MemberName clone() {
 756         try {
 757             return (MemberName) super.clone();
 758         } catch (CloneNotSupportedException ex) {
 759             throw newInternalError(ex);
 760         }
 761      }
 762 
 763     /** Get the definition of this member name.
 764      *  This may be in a super-class of the declaring class of this member.
 765      */
 766     public MemberName getDefinition() {
 767         if (!isResolved())  throw new IllegalStateException("must be resolved: "+this);
 768         if (isType())  return this;
 769         MemberName res = this.clone();
 770         res.clazz = null;
 771         res.type = null;
 772         res.name = null;
 773         res.resolution = res;
 774         res.expandFromVM();
 775         assert(res.getName().equals(this.getName()));
 776         return res;
 777     }
 778 
 779     @Override
 780     @SuppressWarnings("deprecation")
 781     public int hashCode() {
 782         // Avoid autoboxing getReferenceKind(), since this is used early and will force
 783         // early initialization of Byte$ByteCache
 784         return Objects.hash(clazz, new Byte(getReferenceKind()), name, getType());
 785     }
 786 
 787     @Override
 788     public boolean equals(Object that) {
 789         return (that instanceof MemberName && this.equals((MemberName)that));
 790     }
 791 
 792     /** Decide if two member names have exactly the same symbolic content.
 793      *  Does not take into account any actual class members, so even if
 794      *  two member names resolve to the same actual member, they may
 795      *  be distinct references.
 796      */
 797     public boolean equals(MemberName that) {
 798         if (this == that)  return true;
 799         if (that == null)  return false;
 800         return this.clazz == that.clazz
 801                 && this.getReferenceKind() == that.getReferenceKind()
 802                 && Objects.equals(this.name, that.name)
 803                 && Objects.equals(this.getType(), that.getType());
 804     }
 805 
 806     // Construction from symbolic parts, for queries:
 807     /** Create a field or type name from the given components:
 808      *  Declaring class, name, type, reference kind.
 809      *  The declaring class may be supplied as null if this is to be a bare name and type.
 810      *  The resulting name will in an unresolved state.
 811      */
 812     public MemberName(Class<?> defClass, String name, Class<?> type, byte refKind) {
 813         init(defClass, name, type, flagsMods(IS_FIELD, 0, refKind));
 814         initResolved(false);
 815     }
 816     /** Create a method or constructor name from the given components:
 817      *  Declaring class, name, type, reference kind.
 818      *  It will be a constructor if and only if the name is {@code "<init>"}.
 819      *  The declaring class may be supplied as null if this is to be a bare name and type.
 820      *  The last argument is optional, a boolean which requests REF_invokeSpecial.
 821      *  The resulting name will in an unresolved state.
 822      */
 823     public MemberName(Class<?> defClass, String name, MethodType type, byte refKind) {
 824         int initFlags = (name != null && name.equals(CONSTRUCTOR_NAME) ? IS_CONSTRUCTOR : IS_METHOD);
 825         init(defClass, name, type, flagsMods(initFlags, 0, refKind));
 826         initResolved(false);
 827     }
 828     /** Create a method, constructor, or field name from the given components:
 829      *  Reference kind, declaring class, name, type.
 830      */
 831     public MemberName(byte refKind, Class<?> defClass, String name, Object type) {
 832         int kindFlags;
 833         if (MethodHandleNatives.refKindIsField(refKind)) {
 834             kindFlags = IS_FIELD;
 835             if (!(type instanceof Class))
 836                 throw newIllegalArgumentException("not a field type");
 837         } else if (MethodHandleNatives.refKindIsMethod(refKind)) {
 838             kindFlags = IS_METHOD;
 839             if (!(type instanceof MethodType))
 840                 throw newIllegalArgumentException("not a method type");
 841         } else if (refKind == REF_newInvokeSpecial) {
 842             kindFlags = IS_CONSTRUCTOR;
 843             if (!(type instanceof MethodType) ||
 844                 !CONSTRUCTOR_NAME.equals(name))
 845                 throw newIllegalArgumentException("not a constructor type or name");
 846         } else {
 847             throw newIllegalArgumentException("bad reference kind "+refKind);
 848         }
 849         init(defClass, name, type, flagsMods(kindFlags, 0, refKind));
 850         initResolved(false);
 851     }
 852     /** Query whether this member name is resolved to a non-static, non-final method.
 853      */
 854     public boolean hasReceiverTypeDispatch() {
 855         return MethodHandleNatives.refKindDoesDispatch(getReferenceKind());
 856     }
 857 
 858     /** Query whether this member name is resolved.
 859      *  A resolved member name is one for which the JVM has found
 860      *  a method, constructor, field, or type binding corresponding exactly to the name.
 861      *  (Document?)
 862      */
 863     public boolean isResolved() {
 864         return resolution == null;
 865     }
 866 
 867     void initResolved(boolean isResolved) {
 868         assert(this.resolution == null);  // not initialized yet!
 869         if (!isResolved)
 870             this.resolution = this;
 871         assert(isResolved() == isResolved);
 872     }
 873 
 874     void checkForTypeAlias(Class<?> refc) {
 875         if (isInvocable()) {
 876             MethodType type;
 877             if (this.type instanceof MethodType)
 878                 type = (MethodType) this.type;
 879             else
 880                 this.type = type = getMethodType();
 881             if (type.erase() == type)  return;
 882             if (VerifyAccess.isTypeVisible(type, refc))  return;
 883             throw new LinkageError("bad method type alias: "+type+" not visible from "+refc);
 884         } else {
 885             Class<?> type;
 886             if (this.type instanceof Class<?>)
 887                 type = (Class<?>) this.type;
 888             else
 889                 this.type = type = getFieldType();
 890             if (VerifyAccess.isTypeVisible(type, refc))  return;
 891             throw new LinkageError("bad field type alias: "+type+" not visible from "+refc);
 892         }
 893     }
 894 
 895 
 896     /** Produce a string form of this member name.
 897      *  For types, it is simply the type's own string (as reported by {@code toString}).
 898      *  For fields, it is {@code "DeclaringClass.name/type"}.
 899      *  For methods and constructors, it is {@code "DeclaringClass.name(ptype...)rtype"}.
 900      *  If the declaring class is null, the prefix {@code "DeclaringClass."} is omitted.
 901      *  If the member is unresolved, a prefix {@code "*."} is prepended.
 902      */
 903     @SuppressWarnings("LocalVariableHidesMemberVariable")
 904     @Override
 905     public String toString() {
 906         if (isType())
 907             return type.toString();  // class java.lang.String
 908         // else it is a field, method, or constructor
 909         StringBuilder buf = new StringBuilder();
 910         if (getDeclaringClass() != null) {
 911             buf.append(getName(clazz));
 912             buf.append('.');
 913         }
 914         String name = this.name; // avoid expanding from VM
 915         buf.append(name == null ? "*" : name);
 916         Object type = this.type; // avoid expanding from VM
 917         if (!isInvocable()) {
 918             buf.append('/');
 919             buf.append(type == null ? "*" : getName(type));
 920         } else {
 921             buf.append(type == null ? "(*)*" : getName(type));
 922         }
 923         byte refKind = getReferenceKind();
 924         if (refKind != REF_NONE) {
 925             buf.append('/');
 926             buf.append(MethodHandleNatives.refKindName(refKind));
 927         }
 928         //buf.append("#").append(System.identityHashCode(this));
 929         return buf.toString();
 930     }
 931     private static String getName(Object obj) {
 932         if (obj instanceof Class<?>)
 933             return ((Class<?>)obj).getName();
 934         return String.valueOf(obj);
 935     }
 936 
 937     public IllegalAccessException makeAccessException(String message, Object from) {
 938         message = message + ": "+ toString();
 939         if (from != null)  {
 940             if (from == MethodHandles.publicLookup()) {
 941                 message += ", from public Lookup";
 942             } else {
 943                 Module m;
 944                 if (from instanceof MethodHandles.Lookup) {
 945                     MethodHandles.Lookup lookup = (MethodHandles.Lookup)from;
 946                     m = lookup.lookupClass().getModule();
 947                 } else {
 948                     m = from.getClass().getModule();
 949                 }
 950                 message += ", from " + from + " (" + m + ")";
 951             }
 952         }
 953         return new IllegalAccessException(message);
 954     }
 955     private String message() {
 956         if (isResolved())
 957             return "no access";
 958         else if (isConstructor())
 959             return "no such constructor";
 960         else if (isMethod())
 961             return "no such method";
 962         else
 963             return "no such field";
 964     }
 965     public ReflectiveOperationException makeAccessException() {
 966         String message = message() + ": "+ toString();
 967         ReflectiveOperationException ex;
 968         if (isResolved() || !(resolution instanceof NoSuchMethodError ||
 969                               resolution instanceof NoSuchFieldError))
 970             ex = new IllegalAccessException(message);
 971         else if (isConstructor())
 972             ex = new NoSuchMethodException(message);
 973         else if (isMethod())
 974             ex = new NoSuchMethodException(message);
 975         else
 976             ex = new NoSuchFieldException(message);
 977         if (resolution instanceof Throwable)
 978             ex.initCause((Throwable) resolution);
 979         return ex;
 980     }
 981 
 982     /** Actually making a query requires an access check. */
 983     /*non-public*/ static Factory getFactory() {
 984         return Factory.INSTANCE;
 985     }
 986     /** A factory type for resolving member names with the help of the VM.
 987      *  TBD: Define access-safe public constructors for this factory.
 988      */
 989     /*non-public*/ static class Factory {
 990         private Factory() { } // singleton pattern
 991         static Factory INSTANCE = new Factory();
 992 
 993         private static int ALLOWED_FLAGS = ALL_KINDS;
 994 
 995         /// Queries
 996         List<MemberName> getMembers(Class<?> defc,
 997                 String matchName, Object matchType,
 998                 int matchFlags, Class<?> lookupClass) {
 999             matchFlags &= ALLOWED_FLAGS;
1000             String matchSig = null;
1001             if (matchType != null) {
1002                 matchSig = BytecodeDescriptor.unparse(matchType);
1003                 if (matchSig.startsWith("("))
1004                     matchFlags &= ~(ALL_KINDS & ~IS_INVOCABLE);
1005                 else
1006                     matchFlags &= ~(ALL_KINDS & ~IS_FIELD);
1007             }
1008             final int BUF_MAX = 0x2000;
1009             int len1 = matchName == null ? 10 : matchType == null ? 4 : 1;
1010             MemberName[] buf = newMemberBuffer(len1);
1011             int totalCount = 0;
1012             ArrayList<MemberName[]> bufs = null;
1013             int bufCount = 0;
1014             for (;;) {
1015                 bufCount = MethodHandleNatives.getMembers(defc,
1016                         matchName, matchSig, matchFlags,
1017                         lookupClass,
1018                         totalCount, buf);
1019                 if (bufCount <= buf.length) {
1020                     if (bufCount < 0)  bufCount = 0;
1021                     totalCount += bufCount;
1022                     break;
1023                 }
1024                 // JVM returned to us with an intentional overflow!
1025                 totalCount += buf.length;
1026                 int excess = bufCount - buf.length;
1027                 if (bufs == null)  bufs = new ArrayList<>(1);
1028                 bufs.add(buf);
1029                 int len2 = buf.length;
1030                 len2 = Math.max(len2, excess);
1031                 len2 = Math.max(len2, totalCount / 4);
1032                 buf = newMemberBuffer(Math.min(BUF_MAX, len2));
1033             }
1034             ArrayList<MemberName> result = new ArrayList<>(totalCount);
1035             if (bufs != null) {
1036                 for (MemberName[] buf0 : bufs) {
1037                     Collections.addAll(result, buf0);
1038                 }
1039             }
1040             for (int i = 0; i < bufCount; i++) {
1041                 result.add(buf[i]);
1042             }
1043             // Signature matching is not the same as type matching, since
1044             // one signature might correspond to several types.
1045             // So if matchType is a Class or MethodType, refilter the results.
1046             if (matchType != null && matchType != matchSig) {
1047                 for (Iterator<MemberName> it = result.iterator(); it.hasNext();) {
1048                     MemberName m = it.next();
1049                     if (!matchType.equals(m.getType()))
1050                         it.remove();
1051                 }
1052             }
1053             return result;
1054         }
1055         /** Produce a resolved version of the given member.
1056          *  Super types are searched (for inherited members) if {@code searchSupers} is true.
1057          *  Access checking is performed on behalf of the given {@code lookupClass}.
1058          *  If lookup fails or access is not permitted, null is returned.
1059          *  Otherwise a fresh copy of the given member is returned, with modifier bits filled in.
1060          */
1061         private MemberName resolve(byte refKind, MemberName ref, Class<?> lookupClass,
1062                                    boolean speculativeResolve) {
1063             MemberName m = ref.clone();  // JVM will side-effect the ref
1064             assert(refKind == m.getReferenceKind());
1065             try {
1066                 // There are 4 entities in play here:
1067                 //   * LC: lookupClass
1068                 //   * REFC: symbolic reference class (MN.clazz before resolution);
1069                 //   * DEFC: resolved method holder (MN.clazz after resolution);
1070                 //   * PTYPES: parameter types (MN.type)
1071                 //
1072                 // What we care about when resolving a MemberName is consistency between DEFC and PTYPES.
1073                 // We do type alias (TA) checks on DEFC to ensure that. DEFC is not known until the JVM
1074                 // finishes the resolution, so do TA checks right after MHN.resolve() is over.
1075                 //
1076                 // All parameters passed by a caller are checked against MH type (PTYPES) on every invocation,
1077                 // so it is safe to call a MH from any context.
1078                 //
1079                 // REFC view on PTYPES doesn't matter, since it is used only as a starting point for resolution and doesn't
1080                 // participate in method selection.
1081                 m = MethodHandleNatives.resolve(m, lookupClass, speculativeResolve);
1082                 if (m == null && speculativeResolve) {
1083                     return null;
1084                 }
1085                 m.checkForTypeAlias(m.getDeclaringClass());
1086                 m.resolution = null;
1087             } catch (ClassNotFoundException | LinkageError ex) {
1088                 // JVM reports that the "bytecode behavior" would get an error
1089                 assert(!m.isResolved());
1090                 m.resolution = ex;
1091                 return m;
1092             }
1093             assert(m.referenceKindIsConsistent());
1094             m.initResolved(true);
1095             assert(m.vminfoIsConsistent());
1096             return m;
1097         }
1098         /** Produce a resolved version of the given member.
1099          *  Super types are searched (for inherited members) if {@code searchSupers} is true.
1100          *  Access checking is performed on behalf of the given {@code lookupClass}.
1101          *  If lookup fails or access is not permitted, a {@linkplain ReflectiveOperationException} is thrown.
1102          *  Otherwise a fresh copy of the given member is returned, with modifier bits filled in.
1103          */
1104         public
1105         <NoSuchMemberException extends ReflectiveOperationException>
1106         MemberName resolveOrFail(byte refKind, MemberName m, Class<?> lookupClass,
1107                                  Class<NoSuchMemberException> nsmClass)
1108                 throws IllegalAccessException, NoSuchMemberException {
1109             MemberName result = resolve(refKind, m, lookupClass, false);
1110             if (result.isResolved())
1111                 return result;
1112             ReflectiveOperationException ex = result.makeAccessException();
1113             if (ex instanceof IllegalAccessException)  throw (IllegalAccessException) ex;
1114             throw nsmClass.cast(ex);
1115         }
1116         /** Produce a resolved version of the given member.
1117          *  Super types are searched (for inherited members) if {@code searchSupers} is true.
1118          *  Access checking is performed on behalf of the given {@code lookupClass}.
1119          *  If lookup fails or access is not permitted, return null.
1120          *  Otherwise a fresh copy of the given member is returned, with modifier bits filled in.
1121          */
1122         public
1123         MemberName resolveOrNull(byte refKind, MemberName m, Class<?> lookupClass) {
1124             MemberName result = resolve(refKind, m, lookupClass, true);
1125             if (result != null && result.isResolved())
1126                 return result;
1127             return null;
1128         }
1129         /** Return a list of all methods defined by the given class.
1130          *  Super types are searched (for inherited members) if {@code searchSupers} is true.
1131          *  Access checking is performed on behalf of the given {@code lookupClass}.
1132          *  Inaccessible members are not added to the last.
1133          */
1134         public List<MemberName> getMethods(Class<?> defc, boolean searchSupers,
1135                 Class<?> lookupClass) {
1136             return getMethods(defc, searchSupers, null, null, lookupClass);
1137         }
1138         /** Return a list of matching methods defined by the given class.
1139          *  Super types are searched (for inherited members) if {@code searchSupers} is true.
1140          *  Returned methods will match the name (if not null) and the type (if not null).
1141          *  Access checking is performed on behalf of the given {@code lookupClass}.
1142          *  Inaccessible members are not added to the last.
1143          */
1144         public List<MemberName> getMethods(Class<?> defc, boolean searchSupers,
1145                 String name, MethodType type, Class<?> lookupClass) {
1146             int matchFlags = IS_METHOD | (searchSupers ? SEARCH_ALL_SUPERS : 0);
1147             return getMembers(defc, name, type, matchFlags, lookupClass);
1148         }
1149         /** Return a list of all constructors defined by the given class.
1150          *  Access checking is performed on behalf of the given {@code lookupClass}.
1151          *  Inaccessible members are not added to the last.
1152          */
1153         public List<MemberName> getConstructors(Class<?> defc, Class<?> lookupClass) {
1154             return getMembers(defc, null, null, IS_CONSTRUCTOR, lookupClass);
1155         }
1156         /** Return a list of all fields defined by the given class.
1157          *  Super types are searched (for inherited members) if {@code searchSupers} is true.
1158          *  Access checking is performed on behalf of the given {@code lookupClass}.
1159          *  Inaccessible members are not added to the last.
1160          */
1161         public List<MemberName> getFields(Class<?> defc, boolean searchSupers,
1162                 Class<?> lookupClass) {
1163             return getFields(defc, searchSupers, null, null, lookupClass);
1164         }
1165         /** Return a list of all fields defined by the given class.
1166          *  Super types are searched (for inherited members) if {@code searchSupers} is true.
1167          *  Returned fields will match the name (if not null) and the type (if not null).
1168          *  Access checking is performed on behalf of the given {@code lookupClass}.
1169          *  Inaccessible members are not added to the last.
1170          */
1171         public List<MemberName> getFields(Class<?> defc, boolean searchSupers,
1172                 String name, Class<?> type, Class<?> lookupClass) {
1173             int matchFlags = IS_FIELD | (searchSupers ? SEARCH_ALL_SUPERS : 0);
1174             return getMembers(defc, name, type, matchFlags, lookupClass);
1175         }
1176         /** Return a list of all nested types defined by the given class.
1177          *  Super types are searched (for inherited members) if {@code searchSupers} is true.
1178          *  Access checking is performed on behalf of the given {@code lookupClass}.
1179          *  Inaccessible members are not added to the last.
1180          */
1181         public List<MemberName> getNestedTypes(Class<?> defc, boolean searchSupers,
1182                 Class<?> lookupClass) {
1183             int matchFlags = IS_TYPE | (searchSupers ? SEARCH_ALL_SUPERS : 0);
1184             return getMembers(defc, null, null, matchFlags, lookupClass);
1185         }
1186         private static MemberName[] newMemberBuffer(int length) {
1187             MemberName[] buf = new MemberName[length];
1188             // fill the buffer with dummy structs for the JVM to fill in
1189             for (int i = 0; i < length; i++)
1190                 buf[i] = new MemberName();
1191             return buf;
1192         }
1193     }
1194 }