1 /*
   2  * Copyright (c) 2012, 2013, 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 java.io.*;
  29 import java.util.*;
  30 import java.lang.reflect.Modifier;
  31 
  32 import jdk.internal.org.objectweb.asm.*;
  33 
  34 import static java.lang.invoke.LambdaForm.*;
  35 import static java.lang.invoke.LambdaForm.BasicType.*;
  36 import static java.lang.invoke.MethodHandleStatics.*;
  37 import static java.lang.invoke.MethodHandleNatives.Constants.*;
  38 
  39 import sun.invoke.util.VerifyAccess;
  40 import sun.invoke.util.VerifyType;
  41 import sun.invoke.util.Wrapper;
  42 import sun.reflect.misc.ReflectUtil;
  43 
  44 /**
  45  * Code generation backend for LambdaForm.
  46  * <p>
  47  * @author John Rose, JSR 292 EG
  48  */
  49 class InvokerBytecodeGenerator {
  50     /** Define class names for convenience. */
  51     private static final String MH      = "java/lang/invoke/MethodHandle";
  52     private static final String MHI     = "java/lang/invoke/MethodHandleImpl";
  53     private static final String LF      = "java/lang/invoke/LambdaForm";
  54     private static final String LFN     = "java/lang/invoke/LambdaForm$Name";
  55     private static final String CLS     = "java/lang/Class";
  56     private static final String OBJ     = "java/lang/Object";
  57     private static final String OBJARY  = "[Ljava/lang/Object;";
  58 
  59     private static final String LF_SIG  = "L" + LF + ";";
  60     private static final String LFN_SIG = "L" + LFN + ";";
  61     private static final String LL_SIG  = "(L" + OBJ + ";)L" + OBJ + ";";
  62     private static final String CLL_SIG = "(L" + CLS + ";L" + OBJ + ";)L" + OBJ + ";";
  63 
  64     /** Name of its super class*/
  65     private static final String superName = OBJ;
  66 
  67     /** Name of new class */
  68     private final String className;
  69 
  70     /** Name of the source file (for stack trace printing). */
  71     private final String sourceFile;
  72 
  73     private final LambdaForm lambdaForm;
  74     private final String     invokerName;
  75     private final MethodType invokerType;
  76 
  77     /** Info about local variables in compiled lambda form */
  78     private final int[]       localsMap;    // index
  79     private final BasicType[] localTypes;   // basic type
  80     private final Class<?>[]  localClasses; // type
  81 
  82     /** ASM bytecode generation. */
  83     private ClassWriter cw;
  84     private MethodVisitor mv;
  85 
  86     private static final MemberName.Factory MEMBERNAME_FACTORY = MemberName.getFactory();
  87     private static final Class<?> HOST_CLASS = LambdaForm.class;
  88 
  89     /** Main constructor; other constructors delegate to this one. */
  90     private InvokerBytecodeGenerator(LambdaForm lambdaForm, int localsMapSize,
  91                                      String className, String invokerName, MethodType invokerType) {
  92         if (invokerName.contains(".")) {
  93             int p = invokerName.indexOf('.');
  94             className = invokerName.substring(0, p);
  95             invokerName = invokerName.substring(p+1);
  96         }
  97         if (DUMP_CLASS_FILES) {
  98             className = makeDumpableClassName(className);
  99         }
 100         this.className  = LF + "$" + className;
 101         this.sourceFile = "LambdaForm$" + className;
 102         this.lambdaForm = lambdaForm;
 103         this.invokerName = invokerName;
 104         this.invokerType = invokerType;
 105         this.localsMap = new int[localsMapSize+1];
 106         // last entry of localsMap is count of allocated local slots
 107         this.localTypes = new BasicType[localsMapSize+1];
 108         this.localClasses = new Class<?>[localsMapSize+1];
 109     }
 110 
 111     /** For generating LambdaForm interpreter entry points. */
 112     private InvokerBytecodeGenerator(String className, String invokerName, MethodType invokerType) {
 113         this(null, invokerType.parameterCount(),
 114              className, invokerName, invokerType);
 115         // Create an array to map name indexes to locals indexes.
 116         localTypes[localTypes.length - 1] = V_TYPE;
 117         for (int i = 0; i < localsMap.length; i++) {
 118             localsMap[i] = invokerType.parameterSlotCount() - invokerType.parameterSlotDepth(i);
 119             if (i < invokerType.parameterCount())
 120                 localTypes[i] = basicType(invokerType.parameterType(i));
 121         }
 122     }
 123 
 124     /** For generating customized code for a single LambdaForm. */
 125     private InvokerBytecodeGenerator(String className, LambdaForm form, MethodType invokerType) {
 126         this(form, form.names.length,
 127              className, form.debugName, invokerType);
 128         // Create an array to map name indexes to locals indexes.
 129         Name[] names = form.names;
 130         for (int i = 0, index = 0; i < localsMap.length; i++) {
 131             localsMap[i] = index;
 132             if (i < names.length) {
 133                 BasicType type = names[i].type();
 134                 index += type.basicTypeSlots();
 135                 localTypes[i] = type;
 136             }
 137         }
 138     }
 139 
 140 
 141     /** instance counters for dumped classes */
 142     private final static HashMap<String,Integer> DUMP_CLASS_FILES_COUNTERS;
 143     /** debugging flag for saving generated class files */
 144     private final static File DUMP_CLASS_FILES_DIR;
 145 
 146     static {
 147         if (DUMP_CLASS_FILES) {
 148             DUMP_CLASS_FILES_COUNTERS = new HashMap<>();
 149             try {
 150                 File dumpDir = new File("DUMP_CLASS_FILES");
 151                 if (!dumpDir.exists()) {
 152                     dumpDir.mkdirs();
 153                 }
 154                 DUMP_CLASS_FILES_DIR = dumpDir;
 155                 System.out.println("Dumping class files to "+DUMP_CLASS_FILES_DIR+"/...");
 156             } catch (Exception e) {
 157                 throw newInternalError(e);
 158             }
 159         } else {
 160             DUMP_CLASS_FILES_COUNTERS = null;
 161             DUMP_CLASS_FILES_DIR = null;
 162         }
 163     }
 164 
 165     static void maybeDump(final String className, final byte[] classFile) {
 166         if (DUMP_CLASS_FILES) {
 167             java.security.AccessController.doPrivileged(
 168             new java.security.PrivilegedAction<Void>() {
 169                 public Void run() {
 170                     try {
 171                         String dumpName = className;
 172                         //dumpName = dumpName.replace('/', '-');
 173                         File dumpFile = new File(DUMP_CLASS_FILES_DIR, dumpName+".class");
 174                         System.out.println("dump: " + dumpFile);
 175                         dumpFile.getParentFile().mkdirs();
 176                         FileOutputStream file = new FileOutputStream(dumpFile);
 177                         file.write(classFile);
 178                         file.close();
 179                         return null;
 180                     } catch (IOException ex) {
 181                         throw newInternalError(ex);
 182                     }
 183                 }
 184             });
 185         }
 186 
 187     }
 188 
 189     private static String makeDumpableClassName(String className) {
 190         Integer ctr;
 191         synchronized (DUMP_CLASS_FILES_COUNTERS) {
 192             ctr = DUMP_CLASS_FILES_COUNTERS.get(className);
 193             if (ctr == null)  ctr = 0;
 194             DUMP_CLASS_FILES_COUNTERS.put(className, ctr+1);
 195         }
 196         String sfx = ctr.toString();
 197         while (sfx.length() < 3)
 198             sfx = "0"+sfx;
 199         className += sfx;
 200         return className;
 201     }
 202 
 203     class CpPatch {
 204         final int index;
 205         final String placeholder;
 206         final Object value;
 207         CpPatch(int index, String placeholder, Object value) {
 208             this.index = index;
 209             this.placeholder = placeholder;
 210             this.value = value;
 211         }
 212         public String toString() {
 213             return "CpPatch/index="+index+",placeholder="+placeholder+",value="+value;
 214         }
 215     }
 216 
 217     Map<Object, CpPatch> cpPatches = new HashMap<>();
 218 
 219     int cph = 0;  // for counting constant placeholders
 220 
 221     String constantPlaceholder(Object arg) {
 222         String cpPlaceholder = "CONSTANT_PLACEHOLDER_" + cph++;
 223         if (DUMP_CLASS_FILES) cpPlaceholder += " <<" + debugString(arg) + ">>";  // debugging aid
 224         if (cpPatches.containsKey(cpPlaceholder)) {
 225             throw new InternalError("observed CP placeholder twice: " + cpPlaceholder);
 226         }
 227         // insert placeholder in CP and remember the patch
 228         int index = cw.newConst((Object) cpPlaceholder);  // TODO check if already in the constant pool
 229         cpPatches.put(cpPlaceholder, new CpPatch(index, cpPlaceholder, arg));
 230         return cpPlaceholder;
 231     }
 232 
 233     Object[] cpPatches(byte[] classFile) {
 234         int size = getConstantPoolSize(classFile);
 235         Object[] res = new Object[size];
 236         for (CpPatch p : cpPatches.values()) {
 237             if (p.index >= size)
 238                 throw new InternalError("in cpool["+size+"]: "+p+"\n"+Arrays.toString(Arrays.copyOf(classFile, 20)));
 239             res[p.index] = p.value;
 240         }
 241         return res;
 242     }
 243 
 244     private static String debugString(Object arg) {
 245         if (arg instanceof MethodHandle) {
 246             MethodHandle mh = (MethodHandle) arg;
 247             MemberName member = mh.internalMemberName();
 248             if (member != null)
 249                 return member.toString();
 250             return mh.debugString();
 251         }
 252         return arg.toString();
 253     }
 254 
 255     /**
 256      * Extract the number of constant pool entries from a given class file.
 257      *
 258      * @param classFile the bytes of the class file in question.
 259      * @return the number of entries in the constant pool.
 260      */
 261     private static int getConstantPoolSize(byte[] classFile) {
 262         // The first few bytes:
 263         // u4 magic;
 264         // u2 minor_version;
 265         // u2 major_version;
 266         // u2 constant_pool_count;
 267         return ((classFile[8] & 0xFF) << 8) | (classFile[9] & 0xFF);
 268     }
 269 
 270     /**
 271      * Extract the MemberName of a newly-defined method.
 272      */
 273     private MemberName loadMethod(byte[] classFile) {
 274         Class<?> invokerClass = loadAndInitializeInvokerClass(classFile, cpPatches(classFile));
 275         return resolveInvokerMember(invokerClass, invokerName, invokerType);
 276     }
 277 
 278     /**
 279      * Define a given class as anonymous class in the runtime system.
 280      */
 281     private static Class<?> loadAndInitializeInvokerClass(byte[] classBytes, Object[] patches) {
 282         Class<?> invokerClass = UNSAFE.defineAnonymousClass(HOST_CLASS, classBytes, patches);
 283         UNSAFE.ensureClassInitialized(invokerClass);  // Make sure the class is initialized; VM might complain.
 284         return invokerClass;
 285     }
 286 
 287     private static MemberName resolveInvokerMember(Class<?> invokerClass, String name, MethodType type) {
 288         MemberName member = new MemberName(invokerClass, name, type, REF_invokeStatic);
 289         //System.out.println("resolveInvokerMember => "+member);
 290         //for (Method m : invokerClass.getDeclaredMethods())  System.out.println("  "+m);
 291         try {
 292             member = MEMBERNAME_FACTORY.resolveOrFail(REF_invokeStatic, member, HOST_CLASS, ReflectiveOperationException.class);
 293         } catch (ReflectiveOperationException e) {
 294             throw newInternalError(e);
 295         }
 296         //System.out.println("resolveInvokerMember => "+member);
 297         return member;
 298     }
 299 
 300     /**
 301      * Set up class file generation.
 302      */
 303     private void classFilePrologue() {
 304         final int NOT_ACC_PUBLIC = 0;  // not ACC_PUBLIC
 305         cw = new ClassWriter(ClassWriter.COMPUTE_MAXS + ClassWriter.COMPUTE_FRAMES);
 306         cw.visit(Opcodes.V1_8, NOT_ACC_PUBLIC + Opcodes.ACC_FINAL + Opcodes.ACC_SUPER, className, null, superName, null);
 307         cw.visitSource(sourceFile, null);
 308 
 309         String invokerDesc = invokerType.toMethodDescriptorString();
 310         mv = cw.visitMethod(Opcodes.ACC_STATIC, invokerName, invokerDesc, null, null);
 311     }
 312 
 313     /**
 314      * Tear down class file generation.
 315      */
 316     private void classFileEpilogue() {
 317         mv.visitMaxs(0, 0);
 318         mv.visitEnd();
 319     }
 320 
 321     /*
 322      * Low-level emit helpers.
 323      */
 324     private void emitConst(Object con) {
 325         if (con == null) {
 326             mv.visitInsn(Opcodes.ACONST_NULL);
 327             return;
 328         }
 329         if (con instanceof Integer) {
 330             emitIconstInsn((int) con);
 331             return;
 332         }
 333         if (con instanceof Long) {
 334             long x = (long) con;
 335             if (x == (short) x) {
 336                 emitIconstInsn((int) x);
 337                 mv.visitInsn(Opcodes.I2L);
 338                 return;
 339             }
 340         }
 341         if (con instanceof Float) {
 342             float x = (float) con;
 343             if (x == (short) x) {
 344                 emitIconstInsn((int) x);
 345                 mv.visitInsn(Opcodes.I2F);
 346                 return;
 347             }
 348         }
 349         if (con instanceof Double) {
 350             double x = (double) con;
 351             if (x == (short) x) {
 352                 emitIconstInsn((int) x);
 353                 mv.visitInsn(Opcodes.I2D);
 354                 return;
 355             }
 356         }
 357         if (con instanceof Boolean) {
 358             emitIconstInsn((boolean) con ? 1 : 0);
 359             return;
 360         }
 361         // fall through:
 362         mv.visitLdcInsn(con);
 363     }
 364 
 365     private void emitIconstInsn(int i) {
 366         int opcode;
 367         switch (i) {
 368         case 0:  opcode = Opcodes.ICONST_0;  break;
 369         case 1:  opcode = Opcodes.ICONST_1;  break;
 370         case 2:  opcode = Opcodes.ICONST_2;  break;
 371         case 3:  opcode = Opcodes.ICONST_3;  break;
 372         case 4:  opcode = Opcodes.ICONST_4;  break;
 373         case 5:  opcode = Opcodes.ICONST_5;  break;
 374         default:
 375             if (i == (byte) i) {
 376                 mv.visitIntInsn(Opcodes.BIPUSH, i & 0xFF);
 377             } else if (i == (short) i) {
 378                 mv.visitIntInsn(Opcodes.SIPUSH, (char) i);
 379             } else {
 380                 mv.visitLdcInsn(i);
 381             }
 382             return;
 383         }
 384         mv.visitInsn(opcode);
 385     }
 386 
 387     /*
 388      * NOTE: These load/store methods use the localsMap to find the correct index!
 389      */
 390     private void emitLoadInsn(BasicType type, int index) {
 391         int opcode = loadInsnOpcode(type);
 392         mv.visitVarInsn(opcode, localsMap[index]);
 393     }
 394 
 395     private int loadInsnOpcode(BasicType type) throws InternalError {
 396         switch (type) {
 397             case I_TYPE: return Opcodes.ILOAD;
 398             case J_TYPE: return Opcodes.LLOAD;
 399             case F_TYPE: return Opcodes.FLOAD;
 400             case D_TYPE: return Opcodes.DLOAD;
 401             case L_TYPE: return Opcodes.ALOAD;
 402             default:
 403                 throw new InternalError("unknown type: " + type);
 404         }
 405     }
 406     private void emitAloadInsn(int index) {
 407         emitLoadInsn(L_TYPE, index);
 408     }
 409 
 410     private void emitStoreInsn(BasicType type, int index) {
 411         int opcode = storeInsnOpcode(type);
 412         mv.visitVarInsn(opcode, localsMap[index]);
 413     }
 414 
 415     private int storeInsnOpcode(BasicType type) throws InternalError {
 416         switch (type) {
 417             case I_TYPE: return Opcodes.ISTORE;
 418             case J_TYPE: return Opcodes.LSTORE;
 419             case F_TYPE: return Opcodes.FSTORE;
 420             case D_TYPE: return Opcodes.DSTORE;
 421             case L_TYPE: return Opcodes.ASTORE;
 422             default:
 423                 throw new InternalError("unknown type: " + type);
 424         }
 425     }
 426     private void emitAstoreInsn(int index) {
 427         emitStoreInsn(L_TYPE, index);
 428     }
 429 
 430     private byte arrayTypeCode(Wrapper elementType) {
 431         switch (elementType) {
 432             case BOOLEAN: return Opcodes.T_BOOLEAN;
 433             case BYTE:    return Opcodes.T_BYTE;
 434             case CHAR:    return Opcodes.T_CHAR;
 435             case SHORT:   return Opcodes.T_SHORT;
 436             case INT:     return Opcodes.T_INT;
 437             case LONG:    return Opcodes.T_LONG;
 438             case FLOAT:   return Opcodes.T_FLOAT;
 439             case DOUBLE:  return Opcodes.T_DOUBLE;
 440             case OBJECT:  return 0; // in place of Opcodes.T_OBJECT
 441             default:      throw new InternalError();
 442         }
 443     }
 444 
 445     private int arrayInsnOpcode(byte tcode, int aaop) throws InternalError {
 446         assert(aaop == Opcodes.AASTORE || aaop == Opcodes.AALOAD);
 447         int xas;
 448         switch (tcode) {
 449             case Opcodes.T_BOOLEAN: xas = Opcodes.BASTORE; break;
 450             case Opcodes.T_BYTE:    xas = Opcodes.BASTORE; break;
 451             case Opcodes.T_CHAR:    xas = Opcodes.CASTORE; break;
 452             case Opcodes.T_SHORT:   xas = Opcodes.SASTORE; break;
 453             case Opcodes.T_INT:     xas = Opcodes.IASTORE; break;
 454             case Opcodes.T_LONG:    xas = Opcodes.LASTORE; break;
 455             case Opcodes.T_FLOAT:   xas = Opcodes.FASTORE; break;
 456             case Opcodes.T_DOUBLE:  xas = Opcodes.DASTORE; break;
 457             case 0:                 xas = Opcodes.AASTORE; break;
 458             default:      throw new InternalError();
 459         }
 460         return xas - Opcodes.AASTORE + aaop;
 461     }
 462 
 463 
 464     private void freeFrameLocal(int oldFrameLocal) {
 465         int i = indexForFrameLocal(oldFrameLocal);
 466         if (i < 0)  return;
 467         BasicType type = localTypes[i];
 468         int newFrameLocal = makeLocalTemp(type);
 469         mv.visitVarInsn(loadInsnOpcode(type), oldFrameLocal);
 470         mv.visitVarInsn(storeInsnOpcode(type), newFrameLocal);
 471         assert(localsMap[i] == oldFrameLocal);
 472         localsMap[i] = newFrameLocal;
 473         assert(indexForFrameLocal(oldFrameLocal) < 0);
 474     }
 475     private int indexForFrameLocal(int frameLocal) {
 476         for (int i = 0; i < localsMap.length; i++) {
 477             if (localsMap[i] == frameLocal && localTypes[i] != V_TYPE)
 478                 return i;
 479         }
 480         return -1;
 481     }
 482     private int makeLocalTemp(BasicType type) {
 483         int frameLocal = localsMap[localsMap.length - 1];
 484         localsMap[localsMap.length - 1] = frameLocal + type.basicTypeSlots();
 485         return frameLocal;
 486     }
 487 
 488     /**
 489      * Emit a boxing call.
 490      *
 491      * @param wrapper primitive type class to box.
 492      */
 493     private void emitBoxing(Wrapper wrapper) {
 494         String owner = "java/lang/" + wrapper.wrapperType().getSimpleName();
 495         String name  = "valueOf";
 496         String desc  = "(" + wrapper.basicTypeChar() + ")L" + owner + ";";
 497         mv.visitMethodInsn(Opcodes.INVOKESTATIC, owner, name, desc, false);
 498     }
 499 
 500     /**
 501      * Emit an unboxing call (plus preceding checkcast).
 502      *
 503      * @param wrapper wrapper type class to unbox.
 504      */
 505     private void emitUnboxing(Wrapper wrapper) {
 506         String owner = "java/lang/" + wrapper.wrapperType().getSimpleName();
 507         String name  = wrapper.primitiveSimpleName() + "Value";
 508         String desc  = "()" + wrapper.basicTypeChar();
 509         emitReferenceCast(wrapper.wrapperType(), null);
 510         mv.visitMethodInsn(Opcodes.INVOKEVIRTUAL, owner, name, desc, false);
 511     }
 512 
 513     /**
 514      * Emit an implicit conversion for an argument which must be of the given pclass.
 515      * This is usually a no-op, except when pclass is a subword type or a reference other than Object or an interface.
 516      *
 517      * @param ptype type of value present on stack
 518      * @param pclass type of value required on stack
 519      * @param arg compile-time representation of value on stack (Node, constant) or null if none
 520      */
 521     private void emitImplicitConversion(BasicType ptype, Class<?> pclass, Object arg) {
 522         assert(basicType(pclass) == ptype);  // boxing/unboxing handled by caller
 523         if (pclass == ptype.basicTypeClass() && ptype != L_TYPE)
 524             return;   // nothing to do
 525         switch (ptype) {
 526             case L_TYPE:
 527                 if (VerifyType.isNullConversion(Object.class, pclass, false)) {
 528                     if (PROFILE_LEVEL > 0)
 529                         emitReferenceCast(Object.class, arg);
 530                     return;
 531                 }
 532                 emitReferenceCast(pclass, arg);
 533                 return;
 534             case I_TYPE:
 535                 if (!VerifyType.isNullConversion(int.class, pclass, false))
 536                     emitPrimCast(ptype.basicTypeWrapper(), Wrapper.forPrimitiveType(pclass));
 537                 return;
 538         }
 539         throw newInternalError("bad implicit conversion: tc="+ptype+": "+pclass);
 540     }
 541 
 542     /** Update localClasses type map.  Return true if the information is already present. */
 543     private boolean assertStaticType(Class<?> cls, Name n) {
 544         int local = n.index();
 545         Class<?> aclass = localClasses[local];
 546         if (aclass != null && (aclass == cls || cls.isAssignableFrom(aclass))) {
 547             return true;  // type info is already present
 548         } else if (aclass == null || aclass.isAssignableFrom(cls)) {
 549             localClasses[local] = cls;  // type info can be improved
 550         }
 551         return false;
 552     }
 553 
 554     private void emitReferenceCast(Class<?> cls, Object arg) {
 555         Name writeBack = null;  // local to write back result
 556         if (arg instanceof Name) {
 557             Name n = (Name) arg;
 558             if (assertStaticType(cls, n))
 559                 return;  // this cast was already performed
 560             if (lambdaForm.useCount(n) > 1) {
 561                 // This guy gets used more than once.
 562                 writeBack = n;
 563             }
 564         }
 565         if (isStaticallyNameable(cls)) {
 566             String sig = getInternalName(cls);
 567             mv.visitTypeInsn(Opcodes.CHECKCAST, sig);
 568         } else {
 569             mv.visitLdcInsn(constantPlaceholder(cls));
 570             mv.visitTypeInsn(Opcodes.CHECKCAST, CLS);
 571             mv.visitInsn(Opcodes.SWAP);
 572             mv.visitMethodInsn(Opcodes.INVOKESTATIC, MHI, "castReference", CLL_SIG, false);
 573             if (Object[].class.isAssignableFrom(cls))
 574                 mv.visitTypeInsn(Opcodes.CHECKCAST, OBJARY);
 575             else if (PROFILE_LEVEL > 0)
 576                 mv.visitTypeInsn(Opcodes.CHECKCAST, OBJ);
 577         }
 578         if (writeBack != null) {
 579             mv.visitInsn(Opcodes.DUP);
 580             emitAstoreInsn(writeBack.index());
 581         }
 582     }
 583 
 584     /**
 585      * Emits an actual return instruction conforming to the given return type.
 586      */
 587     private void emitReturnInsn(BasicType type) {
 588         int opcode;
 589         switch (type) {
 590         case I_TYPE:  opcode = Opcodes.IRETURN;  break;
 591         case J_TYPE:  opcode = Opcodes.LRETURN;  break;
 592         case F_TYPE:  opcode = Opcodes.FRETURN;  break;
 593         case D_TYPE:  opcode = Opcodes.DRETURN;  break;
 594         case L_TYPE:  opcode = Opcodes.ARETURN;  break;
 595         case V_TYPE:  opcode = Opcodes.RETURN;   break;
 596         default:
 597             throw new InternalError("unknown return type: " + type);
 598         }
 599         mv.visitInsn(opcode);
 600     }
 601 
 602     private static String getInternalName(Class<?> c) {
 603         if (c == Object.class)             return OBJ;
 604         else if (c == Object[].class)      return OBJARY;
 605         else if (c == Class.class)         return CLS;
 606         else if (c == MethodHandle.class)  return MH;
 607         assert(VerifyAccess.isTypeVisible(c, Object.class)) : c.getName();
 608         return c.getName().replace('.', '/');
 609     }
 610 
 611     /**
 612      * Generate customized bytecode for a given LambdaForm.
 613      */
 614     static MemberName generateCustomizedCode(LambdaForm form, MethodType invokerType) {
 615         InvokerBytecodeGenerator g = new InvokerBytecodeGenerator("MH", form, invokerType);
 616         return g.loadMethod(g.generateCustomizedCodeBytes());
 617     }
 618 
 619     /**
 620      * Generate an invoker method for the passed {@link LambdaForm}.
 621      */
 622     private byte[] generateCustomizedCodeBytes() {
 623         classFilePrologue();
 624 
 625         // Suppress this method in backtraces displayed to the user.
 626         mv.visitAnnotation("Ljava/lang/invoke/LambdaForm$Hidden;", true);
 627 
 628         // Mark this method as a compiled LambdaForm
 629         mv.visitAnnotation("Ljava/lang/invoke/LambdaForm$Compiled;", true);
 630 
 631         // Force inlining of this invoker method.
 632         mv.visitAnnotation("Ljava/lang/invoke/ForceInline;", true);
 633 
 634         // iterate over the form's names, generating bytecode instructions for each
 635         // start iterating at the first name following the arguments
 636         Name onStack = null;
 637         for (int i = lambdaForm.arity; i < lambdaForm.names.length; i++) {
 638             Name name = lambdaForm.names[i];
 639 
 640             emitStoreResult(onStack);
 641             onStack = name;  // unless otherwise modified below
 642             MethodHandleImpl.Intrinsic intr = name.function.intrinsicName();
 643             switch (intr) {
 644                 case SELECT_ALTERNATIVE:
 645                     assert isSelectAlternative(i);
 646                     onStack = emitSelectAlternative(name, lambdaForm.names[i+1]);
 647                     i++;  // skip MH.invokeBasic of the selectAlternative result
 648                     continue;
 649                 case GUARD_WITH_CATCH:
 650                     assert isGuardWithCatch(i);
 651                     onStack = emitGuardWithCatch(i);
 652                     i = i+2; // Jump to the end of GWC idiom
 653                     continue;
 654                 case NEW_ARRAY:
 655                     Class<?> rtype = name.function.methodType().returnType();
 656                     if (isStaticallyNameable(rtype)) {
 657                         emitNewArray(name);
 658                         continue;
 659                     }
 660                     break;
 661                 case ARRAY_LOAD:
 662                     emitArrayLoad(name);
 663                     continue;
 664                 case ARRAY_STORE:
 665                     emitArrayStore(name);
 666                     continue;
 667                 case IDENTITY:
 668                     assert(name.arguments.length == 1);
 669                     emitPushArguments(name);
 670                     continue;
 671                 case ZERO:
 672                     assert(name.arguments.length == 0);
 673                     emitConst(name.type.basicTypeWrapper().zero());
 674                     continue;
 675                 case NONE:
 676                     // no intrinsic associated
 677                     break;
 678                 default:
 679                     throw newInternalError("Unknown intrinsic: "+intr);
 680             }
 681 
 682             MemberName member = name.function.member();
 683             if (isStaticallyInvocable(member)) {
 684                 emitStaticInvoke(member, name);
 685             } else {
 686                 emitInvoke(name);
 687             }
 688         }
 689 
 690         // return statement
 691         emitReturn(onStack);
 692 
 693         classFileEpilogue();
 694         bogusMethod(lambdaForm);
 695 
 696         final byte[] classFile = cw.toByteArray();
 697         maybeDump(className, classFile);
 698         return classFile;
 699     }
 700 
 701     void emitArrayLoad(Name name)  { emitArrayOp(name, Opcodes.AALOAD);  }
 702     void emitArrayStore(Name name) { emitArrayOp(name, Opcodes.AASTORE); }
 703 
 704     void emitArrayOp(Name name, int arrayOpcode) {
 705         assert arrayOpcode == Opcodes.AALOAD || arrayOpcode == Opcodes.AASTORE;
 706         Class<?> elementType = name.function.methodType().parameterType(0).getComponentType();
 707         assert elementType != null;
 708         emitPushArguments(name);
 709         if (elementType.isPrimitive()) {
 710             Wrapper w = Wrapper.forPrimitiveType(elementType);
 711             arrayOpcode = arrayInsnOpcode(arrayTypeCode(w), arrayOpcode);
 712         }
 713         mv.visitInsn(arrayOpcode);
 714     }
 715 
 716     /**
 717      * Emit an invoke for the given name.
 718      */
 719     void emitInvoke(Name name) {
 720         assert(!isLinkerMethodInvoke(name));  // should use the static path for these
 721         if (true) {
 722             // push receiver
 723             MethodHandle target = name.function.resolvedHandle;
 724             assert(target != null) : name.exprString();
 725             mv.visitLdcInsn(constantPlaceholder(target));
 726             emitReferenceCast(MethodHandle.class, target);
 727         } else {
 728             // load receiver
 729             emitAloadInsn(0);
 730             emitReferenceCast(MethodHandle.class, null);
 731             mv.visitFieldInsn(Opcodes.GETFIELD, MH, "form", LF_SIG);
 732             mv.visitFieldInsn(Opcodes.GETFIELD, LF, "names", LFN_SIG);
 733             // TODO more to come
 734         }
 735 
 736         // push arguments
 737         emitPushArguments(name);
 738 
 739         // invocation
 740         MethodType type = name.function.methodType();
 741         mv.visitMethodInsn(Opcodes.INVOKEVIRTUAL, MH, "invokeBasic", type.basicType().toMethodDescriptorString(), false);
 742     }
 743 
 744     static private Class<?>[] STATICALLY_INVOCABLE_PACKAGES = {
 745         // Sample classes from each package we are willing to bind to statically:
 746         java.lang.Object.class,
 747         java.util.Arrays.class,
 748         sun.misc.Unsafe.class
 749         //MethodHandle.class already covered
 750     };
 751 
 752     static boolean isStaticallyInvocable(Name name) {
 753         return isStaticallyInvocable(name.function.member());
 754     }
 755 
 756     static boolean isStaticallyInvocable(MemberName member) {
 757         if (member == null)  return false;
 758         if (member.isConstructor())  return false;
 759         Class<?> cls = member.getDeclaringClass();
 760         if (cls.isArray() || cls.isPrimitive())
 761             return false;  // FIXME
 762         if (cls.isAnonymousClass() || cls.isLocalClass())
 763             return false;  // inner class of some sort
 764         if (cls.getClassLoader() != MethodHandle.class.getClassLoader())
 765             return false;  // not on BCP
 766         if (ReflectUtil.isVMAnonymousClass(cls)) // FIXME: switch to supported API once it is added
 767             return false;
 768         MethodType mtype = member.getMethodOrFieldType();
 769         if (!isStaticallyNameable(mtype.returnType()))
 770             return false;
 771         for (Class<?> ptype : mtype.parameterArray())
 772             if (!isStaticallyNameable(ptype))
 773                 return false;
 774         if (!member.isPrivate() && VerifyAccess.isSamePackage(MethodHandle.class, cls))
 775             return true;   // in java.lang.invoke package
 776         if (member.isPublic() && isStaticallyNameable(cls))
 777             return true;
 778         return false;
 779     }
 780 
 781     static boolean isStaticallyNameable(Class<?> cls) {
 782         if (cls == Object.class)
 783             return true;
 784         while (cls.isArray())
 785             cls = cls.getComponentType();
 786         if (cls.isPrimitive())
 787             return true;  // int[].class, for example
 788         if (ReflectUtil.isVMAnonymousClass(cls)) // FIXME: switch to supported API once it is added
 789             return false;
 790         // could use VerifyAccess.isClassAccessible but the following is a safe approximation
 791         if (cls.getClassLoader() != Object.class.getClassLoader())
 792             return false;
 793         if (VerifyAccess.isSamePackage(MethodHandle.class, cls))
 794             return true;
 795         if (!Modifier.isPublic(cls.getModifiers()))
 796             return false;
 797         for (Class<?> pkgcls : STATICALLY_INVOCABLE_PACKAGES) {
 798             if (VerifyAccess.isSamePackage(pkgcls, cls))
 799                 return true;
 800         }
 801         return false;
 802     }
 803 
 804     void emitStaticInvoke(Name name) {
 805         emitStaticInvoke(name.function.member(), name);
 806     }
 807 
 808     /**
 809      * Emit an invoke for the given name, using the MemberName directly.
 810      */
 811     void emitStaticInvoke(MemberName member, Name name) {
 812         assert(member.equals(name.function.member()));
 813         Class<?> defc = member.getDeclaringClass();
 814         String cname = getInternalName(defc);
 815         String mname = member.getName();
 816         String mtype;
 817         byte refKind = member.getReferenceKind();
 818         if (refKind == REF_invokeSpecial) {
 819             // in order to pass the verifier, we need to convert this to invokevirtual in all cases
 820             assert(member.canBeStaticallyBound()) : member;
 821             refKind = REF_invokeVirtual;
 822         }
 823 
 824         if (member.getDeclaringClass().isInterface() && refKind == REF_invokeVirtual) {
 825             // Methods from Object declared in an interface can be resolved by JVM to invokevirtual kind.
 826             // Need to convert it back to invokeinterface to pass verification and make the invocation works as expected.
 827             refKind = REF_invokeInterface;
 828         }
 829 
 830         // push arguments
 831         emitPushArguments(name);
 832 
 833         // invocation
 834         if (member.isMethod()) {
 835             mtype = member.getMethodType().toMethodDescriptorString();
 836             mv.visitMethodInsn(refKindOpcode(refKind), cname, mname, mtype,
 837                                member.getDeclaringClass().isInterface());
 838         } else {
 839             mtype = MethodType.toFieldDescriptorString(member.getFieldType());
 840             mv.visitFieldInsn(refKindOpcode(refKind), cname, mname, mtype);
 841         }
 842         // Issue a type assertion for the result, so we can avoid casts later.
 843         if (name.type == L_TYPE) {
 844             Class<?> rtype = member.getInvocationType().returnType();
 845             assert(!rtype.isPrimitive());
 846             if (rtype != Object.class && !rtype.isInterface()) {
 847                 assertStaticType(rtype, name);
 848             }
 849         }
 850     }
 851 
 852     void emitNewArray(Name name) throws InternalError {
 853         Class<?> rtype = name.function.methodType().returnType();
 854         if (name.arguments.length == 0) {
 855             // The array will be a constant.
 856             Object emptyArray;
 857             try {
 858                 emptyArray = name.function.resolvedHandle.invoke();
 859             } catch (Throwable ex) {
 860                 throw newInternalError(ex);
 861             }
 862             assert(java.lang.reflect.Array.getLength(emptyArray) == 0);
 863             assert(emptyArray.getClass() == rtype);  // exact typing
 864             mv.visitLdcInsn(constantPlaceholder(emptyArray));
 865             emitReferenceCast(rtype, emptyArray);
 866             return;
 867         }
 868         Class<?> arrayElementType = rtype.getComponentType();
 869         assert(arrayElementType != null);
 870         emitIconstInsn(name.arguments.length);
 871         int xas = Opcodes.AASTORE;
 872         if (!arrayElementType.isPrimitive()) {
 873             mv.visitTypeInsn(Opcodes.ANEWARRAY, getInternalName(arrayElementType));
 874         } else {
 875             byte tc = arrayTypeCode(Wrapper.forPrimitiveType(arrayElementType));
 876             xas = arrayInsnOpcode(tc, xas);
 877             mv.visitIntInsn(Opcodes.NEWARRAY, tc);
 878         }
 879         // store arguments
 880         for (int i = 0; i < name.arguments.length; i++) {
 881             mv.visitInsn(Opcodes.DUP);
 882             emitIconstInsn(i);
 883             emitPushArgument(name, i);
 884             mv.visitInsn(xas);
 885         }
 886         // the array is left on the stack
 887         assertStaticType(rtype, name);
 888     }
 889     int refKindOpcode(byte refKind) {
 890         switch (refKind) {
 891         case REF_invokeVirtual:      return Opcodes.INVOKEVIRTUAL;
 892         case REF_invokeStatic:       return Opcodes.INVOKESTATIC;
 893         case REF_invokeSpecial:      return Opcodes.INVOKESPECIAL;
 894         case REF_invokeInterface:    return Opcodes.INVOKEINTERFACE;
 895         case REF_getField:           return Opcodes.GETFIELD;
 896         case REF_putField:           return Opcodes.PUTFIELD;
 897         case REF_getStatic:          return Opcodes.GETSTATIC;
 898         case REF_putStatic:          return Opcodes.PUTSTATIC;
 899         }
 900         throw new InternalError("refKind="+refKind);
 901     }
 902 
 903     /**
 904      * Check if MemberName is a call to a method named {@code name} in class {@code declaredClass}.
 905      */
 906     private boolean memberRefersTo(MemberName member, Class<?> declaringClass, String name) {
 907         return member != null &&
 908                member.getDeclaringClass() == declaringClass &&
 909                member.getName().equals(name);
 910     }
 911     private boolean nameRefersTo(Name name, Class<?> declaringClass, String methodName) {
 912         return name.function != null &&
 913                memberRefersTo(name.function.member(), declaringClass, methodName);
 914     }
 915 
 916     /**
 917      * Check if MemberName is a call to MethodHandle.invokeBasic.
 918      */
 919     private boolean isInvokeBasic(Name name) {
 920         if (name.function == null)
 921             return false;
 922         if (name.arguments.length < 1)
 923             return false;  // must have MH argument
 924         MemberName member = name.function.member();
 925         return memberRefersTo(member, MethodHandle.class, "invokeBasic") &&
 926                !member.isPublic() && !member.isStatic();
 927     }
 928 
 929     /**
 930      * Check if MemberName is a call to MethodHandle.linkToStatic, etc.
 931      */
 932     private boolean isLinkerMethodInvoke(Name name) {
 933         if (name.function == null)
 934             return false;
 935         if (name.arguments.length < 1)
 936             return false;  // must have MH argument
 937         MemberName member = name.function.member();
 938         return member != null &&
 939                member.getDeclaringClass() == MethodHandle.class &&
 940                !member.isPublic() && member.isStatic() &&
 941                member.getName().startsWith("linkTo");
 942     }
 943 
 944     /**
 945      * Check if i-th name is a call to MethodHandleImpl.selectAlternative.
 946      */
 947     private boolean isSelectAlternative(int pos) {
 948         // selectAlternative idiom:
 949         //   t_{n}:L=MethodHandleImpl.selectAlternative(...)
 950         //   t_{n+1}:?=MethodHandle.invokeBasic(t_{n}, ...)
 951         if (pos+1 >= lambdaForm.names.length)  return false;
 952         Name name0 = lambdaForm.names[pos];
 953         Name name1 = lambdaForm.names[pos+1];
 954         return nameRefersTo(name0, MethodHandleImpl.class, "selectAlternative") &&
 955                isInvokeBasic(name1) &&
 956                name1.lastUseIndex(name0) == 0 &&        // t_{n+1}:?=MethodHandle.invokeBasic(t_{n}, ...)
 957                lambdaForm.lastUseIndex(name0) == pos+1; // t_{n} is local: used only in t_{n+1}
 958     }
 959 
 960     /**
 961      * Check if i-th name is a start of GuardWithCatch idiom.
 962      */
 963     private boolean isGuardWithCatch(int pos) {
 964         // GuardWithCatch idiom:
 965         //   t_{n}:L=MethodHandle.invokeBasic(...)
 966         //   t_{n+1}:L=MethodHandleImpl.guardWithCatch(*, *, *, t_{n});
 967         //   t_{n+2}:?=MethodHandle.invokeBasic(t_{n+1})
 968         if (pos+2 >= lambdaForm.names.length)  return false;
 969         Name name0 = lambdaForm.names[pos];
 970         Name name1 = lambdaForm.names[pos+1];
 971         Name name2 = lambdaForm.names[pos+2];
 972         return nameRefersTo(name1, MethodHandleImpl.class, "guardWithCatch") &&
 973                isInvokeBasic(name0) &&
 974                isInvokeBasic(name2) &&
 975                name1.lastUseIndex(name0) == 3 &&          // t_{n+1}:L=MethodHandleImpl.guardWithCatch(*, *, *, t_{n});
 976                lambdaForm.lastUseIndex(name0) == pos+1 && // t_{n} is local: used only in t_{n+1}
 977                name2.lastUseIndex(name1) == 1 &&          // t_{n+2}:?=MethodHandle.invokeBasic(t_{n+1})
 978                lambdaForm.lastUseIndex(name1) == pos+2;   // t_{n+1} is local: used only in t_{n+2}
 979     }
 980 
 981     /**
 982      * Emit bytecode for the selectAlternative idiom.
 983      *
 984      * The pattern looks like (Cf. MethodHandleImpl.makeGuardWithTest):
 985      * <blockquote><pre>{@code
 986      *   Lambda(a0:L,a1:I)=>{
 987      *     t2:I=foo.test(a1:I);
 988      *     t3:L=MethodHandleImpl.selectAlternative(t2:I,(MethodHandle(int)int),(MethodHandle(int)int));
 989      *     t4:I=MethodHandle.invokeBasic(t3:L,a1:I);t4:I}
 990      * }</pre></blockquote>
 991      */
 992     private Name emitSelectAlternative(Name selectAlternativeName, Name invokeBasicName) {
 993         assert isStaticallyInvocable(invokeBasicName);
 994 
 995         Name receiver = (Name) invokeBasicName.arguments[0];
 996 
 997         Label L_fallback = new Label();
 998         Label L_done     = new Label();
 999 
1000         // load test result
1001         emitPushArgument(selectAlternativeName, 0);
1002 
1003         // if_icmpne L_fallback
1004         mv.visitJumpInsn(Opcodes.IFEQ, L_fallback);
1005 
1006         // invoke selectAlternativeName.arguments[1]
1007         Class<?>[] preForkClasses = localClasses.clone();
1008         emitPushArgument(selectAlternativeName, 1);  // get 2nd argument of selectAlternative
1009         emitAstoreInsn(receiver.index());  // store the MH in the receiver slot
1010         emitStaticInvoke(invokeBasicName);
1011 
1012         // goto L_done
1013         mv.visitJumpInsn(Opcodes.GOTO, L_done);
1014 
1015         // L_fallback:
1016         mv.visitLabel(L_fallback);
1017 
1018         // invoke selectAlternativeName.arguments[2]
1019         System.arraycopy(preForkClasses, 0, localClasses, 0, preForkClasses.length);
1020         emitPushArgument(selectAlternativeName, 2);  // get 3rd argument of selectAlternative
1021         emitAstoreInsn(receiver.index());  // store the MH in the receiver slot
1022         emitStaticInvoke(invokeBasicName);
1023 
1024         // L_done:
1025         mv.visitLabel(L_done);
1026         // for now do not bother to merge typestate; just reset to the dominator state
1027         System.arraycopy(preForkClasses, 0, localClasses, 0, preForkClasses.length);
1028 
1029         return invokeBasicName;  // return what's on stack
1030     }
1031 
1032     /**
1033       * Emit bytecode for the guardWithCatch idiom.
1034       *
1035       * The pattern looks like (Cf. MethodHandleImpl.makeGuardWithCatch):
1036       * <blockquote><pre>{@code
1037       *  guardWithCatch=Lambda(a0:L,a1:L,a2:L,a3:L,a4:L,a5:L,a6:L,a7:L)=>{
1038       *    t8:L=MethodHandle.invokeBasic(a4:L,a6:L,a7:L);
1039       *    t9:L=MethodHandleImpl.guardWithCatch(a1:L,a2:L,a3:L,t8:L);
1040       *   t10:I=MethodHandle.invokeBasic(a5:L,t9:L);t10:I}
1041       * }</pre></blockquote>
1042       *
1043       * It is compiled into bytecode equivalent of the following code:
1044       * <blockquote><pre>{@code
1045       *  try {
1046       *      return a1.invokeBasic(a6, a7);
1047       *  } catch (Throwable e) {
1048       *      if (!a2.isInstance(e)) throw e;
1049       *      return a3.invokeBasic(ex, a6, a7);
1050       *  }}
1051       */
1052     private Name emitGuardWithCatch(int pos) {
1053         Name args    = lambdaForm.names[pos];
1054         Name invoker = lambdaForm.names[pos+1];
1055         Name result  = lambdaForm.names[pos+2];
1056 
1057         Label L_startBlock = new Label();
1058         Label L_endBlock = new Label();
1059         Label L_handler = new Label();
1060         Label L_done = new Label();
1061 
1062         Class<?> returnType = result.function.resolvedHandle.type().returnType();
1063         MethodType type = args.function.resolvedHandle.type()
1064                               .dropParameterTypes(0,1)
1065                               .changeReturnType(returnType);
1066 
1067         mv.visitTryCatchBlock(L_startBlock, L_endBlock, L_handler, "java/lang/Throwable");
1068 
1069         // Normal case
1070         mv.visitLabel(L_startBlock);
1071         // load target
1072         emitPushArgument(invoker, 0);
1073         emitPushArguments(args, 1); // skip 1st argument: method handle
1074         mv.visitMethodInsn(Opcodes.INVOKEVIRTUAL, MH, "invokeBasic", type.basicType().toMethodDescriptorString(), false);
1075         mv.visitLabel(L_endBlock);
1076         mv.visitJumpInsn(Opcodes.GOTO, L_done);
1077 
1078         // Exceptional case
1079         mv.visitLabel(L_handler);
1080 
1081         // Check exception's type
1082         mv.visitInsn(Opcodes.DUP);
1083         // load exception class
1084         emitPushArgument(invoker, 1);
1085         mv.visitInsn(Opcodes.SWAP);
1086         mv.visitMethodInsn(Opcodes.INVOKEVIRTUAL, "java/lang/Class", "isInstance", "(Ljava/lang/Object;)Z", false);
1087         Label L_rethrow = new Label();
1088         mv.visitJumpInsn(Opcodes.IFEQ, L_rethrow);
1089 
1090         // Invoke catcher
1091         // load catcher
1092         emitPushArgument(invoker, 2);
1093         mv.visitInsn(Opcodes.SWAP);
1094         emitPushArguments(args, 1); // skip 1st argument: method handle
1095         MethodType catcherType = type.insertParameterTypes(0, Throwable.class);
1096         mv.visitMethodInsn(Opcodes.INVOKEVIRTUAL, MH, "invokeBasic", catcherType.basicType().toMethodDescriptorString(), false);
1097         mv.visitJumpInsn(Opcodes.GOTO, L_done);
1098 
1099         mv.visitLabel(L_rethrow);
1100         mv.visitInsn(Opcodes.ATHROW);
1101 
1102         mv.visitLabel(L_done);
1103 
1104         return result;
1105     }
1106 
1107     private void emitPushArguments(Name args) {
1108         emitPushArguments(args, 0);
1109     }
1110 
1111     private void emitPushArguments(Name args, int start) {
1112         for (int i = start; i < args.arguments.length; i++) {
1113             emitPushArgument(args, i);
1114         }
1115     }
1116 
1117     private void emitPushArgument(Name name, int paramIndex) {
1118         Object arg = name.arguments[paramIndex];
1119         Class<?> ptype = name.function.methodType().parameterType(paramIndex);
1120         emitPushArgument(ptype, arg);
1121     }
1122 
1123     private void emitPushArgument(Class<?> ptype, Object arg) {
1124         BasicType bptype = basicType(ptype);
1125         if (arg instanceof Name) {
1126             Name n = (Name) arg;
1127             emitLoadInsn(n.type, n.index());
1128             emitImplicitConversion(n.type, ptype, n);
1129         } else if ((arg == null || arg instanceof String) && bptype == L_TYPE) {
1130             emitConst(arg);
1131         } else {
1132             if (Wrapper.isWrapperType(arg.getClass()) && bptype != L_TYPE) {
1133                 emitConst(arg);
1134             } else {
1135                 mv.visitLdcInsn(constantPlaceholder(arg));
1136                 emitImplicitConversion(L_TYPE, ptype, arg);
1137             }
1138         }
1139     }
1140 
1141     /**
1142      * Store the name to its local, if necessary.
1143      */
1144     private void emitStoreResult(Name name) {
1145         if (name != null && name.type != V_TYPE) {
1146             // non-void: actually assign
1147             emitStoreInsn(name.type, name.index());
1148         }
1149     }
1150 
1151     /**
1152      * Emits a return statement from a LF invoker. If required, the result type is cast to the correct return type.
1153      */
1154     private void emitReturn(Name onStack) {
1155         // return statement
1156         Class<?> rclass = invokerType.returnType();
1157         BasicType rtype = lambdaForm.returnType();
1158         assert(rtype == basicType(rclass));  // must agree
1159         if (rtype == V_TYPE) {
1160             // void
1161             mv.visitInsn(Opcodes.RETURN);
1162             // it doesn't matter what rclass is; the JVM will discard any value
1163         } else {
1164             LambdaForm.Name rn = lambdaForm.names[lambdaForm.result];
1165 
1166             // put return value on the stack if it is not already there
1167             if (rn != onStack) {
1168                 emitLoadInsn(rtype, lambdaForm.result);
1169             }
1170 
1171             emitImplicitConversion(rtype, rclass, rn);
1172 
1173             // generate actual return statement
1174             emitReturnInsn(rtype);
1175         }
1176     }
1177 
1178     /**
1179      * Emit a type conversion bytecode casting from "from" to "to".
1180      */
1181     private void emitPrimCast(Wrapper from, Wrapper to) {
1182         // Here's how.
1183         // -   indicates forbidden
1184         // <-> indicates implicit
1185         //      to ----> boolean  byte     short    char     int      long     float    double
1186         // from boolean    <->        -        -        -        -        -        -        -
1187         //      byte        -       <->       i2s      i2c      <->      i2l      i2f      i2d
1188         //      short       -       i2b       <->      i2c      <->      i2l      i2f      i2d
1189         //      char        -       i2b       i2s      <->      <->      i2l      i2f      i2d
1190         //      int         -       i2b       i2s      i2c      <->      i2l      i2f      i2d
1191         //      long        -     l2i,i2b   l2i,i2s  l2i,i2c    l2i      <->      l2f      l2d
1192         //      float       -     f2i,i2b   f2i,i2s  f2i,i2c    f2i      f2l      <->      f2d
1193         //      double      -     d2i,i2b   d2i,i2s  d2i,i2c    d2i      d2l      d2f      <->
1194         if (from == to) {
1195             // no cast required, should be dead code anyway
1196             return;
1197         }
1198         if (from.isSubwordOrInt()) {
1199             // cast from {byte,short,char,int} to anything
1200             emitI2X(to);
1201         } else {
1202             // cast from {long,float,double} to anything
1203             if (to.isSubwordOrInt()) {
1204                 // cast to {byte,short,char,int}
1205                 emitX2I(from);
1206                 if (to.bitWidth() < 32) {
1207                     // targets other than int require another conversion
1208                     emitI2X(to);
1209                 }
1210             } else {
1211                 // cast to {long,float,double} - this is verbose
1212                 boolean error = false;
1213                 switch (from) {
1214                 case LONG:
1215                     switch (to) {
1216                     case FLOAT:   mv.visitInsn(Opcodes.L2F);  break;
1217                     case DOUBLE:  mv.visitInsn(Opcodes.L2D);  break;
1218                     default:      error = true;               break;
1219                     }
1220                     break;
1221                 case FLOAT:
1222                     switch (to) {
1223                     case LONG :   mv.visitInsn(Opcodes.F2L);  break;
1224                     case DOUBLE:  mv.visitInsn(Opcodes.F2D);  break;
1225                     default:      error = true;               break;
1226                     }
1227                     break;
1228                 case DOUBLE:
1229                     switch (to) {
1230                     case LONG :   mv.visitInsn(Opcodes.D2L);  break;
1231                     case FLOAT:   mv.visitInsn(Opcodes.D2F);  break;
1232                     default:      error = true;               break;
1233                     }
1234                     break;
1235                 default:
1236                     error = true;
1237                     break;
1238                 }
1239                 if (error) {
1240                     throw new IllegalStateException("unhandled prim cast: " + from + "2" + to);
1241                 }
1242             }
1243         }
1244     }
1245 
1246     private void emitI2X(Wrapper type) {
1247         switch (type) {
1248         case BYTE:    mv.visitInsn(Opcodes.I2B);  break;
1249         case SHORT:   mv.visitInsn(Opcodes.I2S);  break;
1250         case CHAR:    mv.visitInsn(Opcodes.I2C);  break;
1251         case INT:     /* naught */                break;
1252         case LONG:    mv.visitInsn(Opcodes.I2L);  break;
1253         case FLOAT:   mv.visitInsn(Opcodes.I2F);  break;
1254         case DOUBLE:  mv.visitInsn(Opcodes.I2D);  break;
1255         case BOOLEAN:
1256             // For compatibility with ValueConversions and explicitCastArguments:
1257             mv.visitInsn(Opcodes.ICONST_1);
1258             mv.visitInsn(Opcodes.IAND);
1259             break;
1260         default:   throw new InternalError("unknown type: " + type);
1261         }
1262     }
1263 
1264     private void emitX2I(Wrapper type) {
1265         switch (type) {
1266         case LONG:    mv.visitInsn(Opcodes.L2I);  break;
1267         case FLOAT:   mv.visitInsn(Opcodes.F2I);  break;
1268         case DOUBLE:  mv.visitInsn(Opcodes.D2I);  break;
1269         default:      throw new InternalError("unknown type: " + type);
1270         }
1271     }
1272 
1273     /**
1274      * Generate bytecode for a LambdaForm.vmentry which calls interpretWithArguments.
1275      */
1276     static MemberName generateLambdaFormInterpreterEntryPoint(String sig) {
1277         assert(isValidSignature(sig));
1278         String name = "interpret_"+signatureReturn(sig).basicTypeChar();
1279         MethodType type = signatureType(sig);  // sig includes leading argument
1280         type = type.changeParameterType(0, MethodHandle.class);
1281         InvokerBytecodeGenerator g = new InvokerBytecodeGenerator("LFI", name, type);
1282         return g.loadMethod(g.generateLambdaFormInterpreterEntryPointBytes());
1283     }
1284 
1285     private byte[] generateLambdaFormInterpreterEntryPointBytes() {
1286         classFilePrologue();
1287 
1288         // Suppress this method in backtraces displayed to the user.
1289         mv.visitAnnotation("Ljava/lang/invoke/LambdaForm$Hidden;", true);
1290 
1291         // Don't inline the interpreter entry.
1292         mv.visitAnnotation("Ljava/lang/invoke/DontInline;", true);
1293 
1294         // create parameter array
1295         emitIconstInsn(invokerType.parameterCount());
1296         mv.visitTypeInsn(Opcodes.ANEWARRAY, "java/lang/Object");
1297 
1298         // fill parameter array
1299         for (int i = 0; i < invokerType.parameterCount(); i++) {
1300             Class<?> ptype = invokerType.parameterType(i);
1301             mv.visitInsn(Opcodes.DUP);
1302             emitIconstInsn(i);
1303             emitLoadInsn(basicType(ptype), i);
1304             // box if primitive type
1305             if (ptype.isPrimitive()) {
1306                 emitBoxing(Wrapper.forPrimitiveType(ptype));
1307             }
1308             mv.visitInsn(Opcodes.AASTORE);
1309         }
1310         // invoke
1311         emitAloadInsn(0);
1312         mv.visitFieldInsn(Opcodes.GETFIELD, MH, "form", "Ljava/lang/invoke/LambdaForm;");
1313         mv.visitInsn(Opcodes.SWAP);  // swap form and array; avoid local variable
1314         mv.visitMethodInsn(Opcodes.INVOKEVIRTUAL, LF, "interpretWithArguments", "([Ljava/lang/Object;)Ljava/lang/Object;", false);
1315 
1316         // maybe unbox
1317         Class<?> rtype = invokerType.returnType();
1318         if (rtype.isPrimitive() && rtype != void.class) {
1319             emitUnboxing(Wrapper.forPrimitiveType(rtype));
1320         }
1321 
1322         // return statement
1323         emitReturnInsn(basicType(rtype));
1324 
1325         classFileEpilogue();
1326         bogusMethod(invokerType);
1327 
1328         final byte[] classFile = cw.toByteArray();
1329         maybeDump(className, classFile);
1330         return classFile;
1331     }
1332 
1333     /**
1334      * Generate bytecode for a NamedFunction invoker.
1335      */
1336     static MemberName generateNamedFunctionInvoker(MethodTypeForm typeForm) {
1337         MethodType invokerType = NamedFunction.INVOKER_METHOD_TYPE;
1338         String invokerName = "invoke_" + shortenSignature(basicTypeSignature(typeForm.erasedType()));
1339         InvokerBytecodeGenerator g = new InvokerBytecodeGenerator("NFI", invokerName, invokerType);
1340         return g.loadMethod(g.generateNamedFunctionInvokerImpl(typeForm));
1341     }
1342 
1343     private byte[] generateNamedFunctionInvokerImpl(MethodTypeForm typeForm) {
1344         MethodType dstType = typeForm.erasedType();
1345         classFilePrologue();
1346 
1347         // Suppress this method in backtraces displayed to the user.
1348         mv.visitAnnotation("Ljava/lang/invoke/LambdaForm$Hidden;", true);
1349 
1350         // Force inlining of this invoker method.
1351         mv.visitAnnotation("Ljava/lang/invoke/ForceInline;", true);
1352 
1353         // Load receiver
1354         emitAloadInsn(0);
1355 
1356         // Load arguments from array
1357         for (int i = 0; i < dstType.parameterCount(); i++) {
1358             emitAloadInsn(1);
1359             emitIconstInsn(i);
1360             mv.visitInsn(Opcodes.AALOAD);
1361 
1362             // Maybe unbox
1363             Class<?> dptype = dstType.parameterType(i);
1364             if (dptype.isPrimitive()) {
1365                 Class<?> sptype = dstType.basicType().wrap().parameterType(i);
1366                 Wrapper dstWrapper = Wrapper.forBasicType(dptype);
1367                 Wrapper srcWrapper = dstWrapper.isSubwordOrInt() ? Wrapper.INT : dstWrapper;  // narrow subword from int
1368                 emitUnboxing(srcWrapper);
1369                 emitPrimCast(srcWrapper, dstWrapper);
1370             }
1371         }
1372 
1373         // Invoke
1374         String targetDesc = dstType.basicType().toMethodDescriptorString();
1375         mv.visitMethodInsn(Opcodes.INVOKEVIRTUAL, MH, "invokeBasic", targetDesc, false);
1376 
1377         // Box primitive types
1378         Class<?> rtype = dstType.returnType();
1379         if (rtype != void.class && rtype.isPrimitive()) {
1380             Wrapper srcWrapper = Wrapper.forBasicType(rtype);
1381             Wrapper dstWrapper = srcWrapper.isSubwordOrInt() ? Wrapper.INT : srcWrapper;  // widen subword to int
1382             // boolean casts not allowed
1383             emitPrimCast(srcWrapper, dstWrapper);
1384             emitBoxing(dstWrapper);
1385         }
1386 
1387         // If the return type is void we return a null reference.
1388         if (rtype == void.class) {
1389             mv.visitInsn(Opcodes.ACONST_NULL);
1390         }
1391         emitReturnInsn(L_TYPE);  // NOTE: NamedFunction invokers always return a reference value.
1392 
1393         classFileEpilogue();
1394         bogusMethod(dstType);
1395 
1396         final byte[] classFile = cw.toByteArray();
1397         maybeDump(className, classFile);
1398         return classFile;
1399     }
1400 
1401     /**
1402      * Emit a bogus method that just loads some string constants. This is to get the constants into the constant pool
1403      * for debugging purposes.
1404      */
1405     private void bogusMethod(Object... os) {
1406         if (DUMP_CLASS_FILES) {
1407             mv = cw.visitMethod(Opcodes.ACC_STATIC, "dummy", "()V", null, null);
1408             for (Object o : os) {
1409                 mv.visitLdcInsn(o.toString());
1410                 mv.visitInsn(Opcodes.POP);
1411             }
1412             mv.visitInsn(Opcodes.RETURN);
1413             mv.visitMaxs(0, 0);
1414             mv.visitEnd();
1415         }
1416     }
1417 }