nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/codegen/MethodEmitter.java
author lagergren
Fri, 26 Sep 2014 18:47:20 +0200
changeset 26886 18c744ab4df2
parent 26768 751b0f427090
child 26887 f7e8b7f8f554
permissions -rw-r--r--
8059211: Changed ArrayData.length accessor to use the protected field and fixed javadoc warnings related to this Reviewed-by: attila, hannesw
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
     1
/*
16151
97c1e756ae1e 8005663: Update copyright year to 2013
jlaskey
parents: 16147
diff changeset
     2
 * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
     4
 *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    10
 *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    15
 * accompanied this code).
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    16
 *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    20
 *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    23
 * questions.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    24
 */
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    25
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    26
package jdk.nashorn.internal.codegen;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    27
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    28
import static jdk.internal.org.objectweb.asm.Opcodes.ATHROW;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    29
import static jdk.internal.org.objectweb.asm.Opcodes.CHECKCAST;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    30
import static jdk.internal.org.objectweb.asm.Opcodes.DUP2;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    31
import static jdk.internal.org.objectweb.asm.Opcodes.GETFIELD;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    32
import static jdk.internal.org.objectweb.asm.Opcodes.GETSTATIC;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    33
import static jdk.internal.org.objectweb.asm.Opcodes.GOTO;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    34
import static jdk.internal.org.objectweb.asm.Opcodes.H_INVOKESTATIC;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    35
import static jdk.internal.org.objectweb.asm.Opcodes.IFEQ;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    36
import static jdk.internal.org.objectweb.asm.Opcodes.IFGE;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    37
import static jdk.internal.org.objectweb.asm.Opcodes.IFGT;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    38
import static jdk.internal.org.objectweb.asm.Opcodes.IFLE;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    39
import static jdk.internal.org.objectweb.asm.Opcodes.IFLT;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    40
import static jdk.internal.org.objectweb.asm.Opcodes.IFNE;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    41
import static jdk.internal.org.objectweb.asm.Opcodes.IFNONNULL;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    42
import static jdk.internal.org.objectweb.asm.Opcodes.IFNULL;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    43
import static jdk.internal.org.objectweb.asm.Opcodes.IF_ACMPEQ;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    44
import static jdk.internal.org.objectweb.asm.Opcodes.IF_ACMPNE;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    45
import static jdk.internal.org.objectweb.asm.Opcodes.IF_ICMPEQ;
24725
7bb1f687a852 8033334: Make sure that scope depth information is maintained in the RecompilableScriptFunctionDatas, to avoid unnecessary slow proto linkage when doing on demand compilation
lagergren
parents: 24719
diff changeset
    46
import static jdk.internal.org.objectweb.asm.Opcodes.IF_ICMPGE;
7bb1f687a852 8033334: Make sure that scope depth information is maintained in the RecompilableScriptFunctionDatas, to avoid unnecessary slow proto linkage when doing on demand compilation
lagergren
parents: 24719
diff changeset
    47
import static jdk.internal.org.objectweb.asm.Opcodes.IF_ICMPGT;
7bb1f687a852 8033334: Make sure that scope depth information is maintained in the RecompilableScriptFunctionDatas, to avoid unnecessary slow proto linkage when doing on demand compilation
lagergren
parents: 24719
diff changeset
    48
import static jdk.internal.org.objectweb.asm.Opcodes.IF_ICMPLE;
7bb1f687a852 8033334: Make sure that scope depth information is maintained in the RecompilableScriptFunctionDatas, to avoid unnecessary slow proto linkage when doing on demand compilation
lagergren
parents: 24719
diff changeset
    49
import static jdk.internal.org.objectweb.asm.Opcodes.IF_ICMPLT;
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
    50
import static jdk.internal.org.objectweb.asm.Opcodes.IF_ICMPNE;
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    51
import static jdk.internal.org.objectweb.asm.Opcodes.INSTANCEOF;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    52
import static jdk.internal.org.objectweb.asm.Opcodes.INVOKEINTERFACE;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    53
import static jdk.internal.org.objectweb.asm.Opcodes.INVOKESPECIAL;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    54
import static jdk.internal.org.objectweb.asm.Opcodes.INVOKESTATIC;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    55
import static jdk.internal.org.objectweb.asm.Opcodes.INVOKEVIRTUAL;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    56
import static jdk.internal.org.objectweb.asm.Opcodes.NEW;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    57
import static jdk.internal.org.objectweb.asm.Opcodes.PUTFIELD;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    58
import static jdk.internal.org.objectweb.asm.Opcodes.PUTSTATIC;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    59
import static jdk.internal.org.objectweb.asm.Opcodes.RETURN;
17233
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents: 16530
diff changeset
    60
import static jdk.nashorn.internal.codegen.CompilerConstants.ARGUMENTS;
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    61
import static jdk.nashorn.internal.codegen.CompilerConstants.CONSTANTS;
17233
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents: 16530
diff changeset
    62
import static jdk.nashorn.internal.codegen.CompilerConstants.SCOPE;
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    63
import static jdk.nashorn.internal.codegen.CompilerConstants.THIS;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    64
import static jdk.nashorn.internal.codegen.CompilerConstants.THIS_DEBUGGER;
17233
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents: 16530
diff changeset
    65
import static jdk.nashorn.internal.codegen.CompilerConstants.VARARGS;
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    66
import static jdk.nashorn.internal.codegen.CompilerConstants.className;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    67
import static jdk.nashorn.internal.codegen.CompilerConstants.constructorNoLookup;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    68
import static jdk.nashorn.internal.codegen.CompilerConstants.methodDescriptor;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    69
import static jdk.nashorn.internal.codegen.CompilerConstants.staticField;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    70
import static jdk.nashorn.internal.codegen.CompilerConstants.virtualCallNoLookup;
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
    71
import static jdk.nashorn.internal.codegen.ObjectClassGenerator.PRIMITIVE_FIELD_TYPE;
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
    72
import static jdk.nashorn.internal.runtime.linker.NashornCallSiteDescriptor.CALLSITE_OPTIMISTIC;
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
    73
import static jdk.nashorn.internal.runtime.linker.NashornCallSiteDescriptor.CALLSITE_PROGRAM_POINT_SHIFT;
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    74
import java.io.PrintStream;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    75
import java.lang.reflect.Array;
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
    76
import java.util.Collection;
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    77
import java.util.EnumSet;
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
    78
import java.util.IdentityHashMap;
17233
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents: 16530
diff changeset
    79
import java.util.List;
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
    80
import java.util.Map;
16234
86cb162cec6c 8008085: Integrate Dynalink source code into Nashorn codebase
attila
parents: 16225
diff changeset
    81
import jdk.internal.dynalink.support.NameCodec;
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    82
import jdk.internal.org.objectweb.asm.Handle;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    83
import jdk.internal.org.objectweb.asm.MethodVisitor;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    84
import jdk.nashorn.internal.codegen.ClassEmitter.Flag;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    85
import jdk.nashorn.internal.codegen.CompilerConstants.Call;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    86
import jdk.nashorn.internal.codegen.CompilerConstants.FieldAccess;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    87
import jdk.nashorn.internal.codegen.types.ArrayType;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    88
import jdk.nashorn.internal.codegen.types.BitwiseType;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    89
import jdk.nashorn.internal.codegen.types.NumericType;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    90
import jdk.nashorn.internal.codegen.types.Type;
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
    91
import jdk.nashorn.internal.ir.BreakableNode;
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    92
import jdk.nashorn.internal.ir.FunctionNode;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    93
import jdk.nashorn.internal.ir.IdentNode;
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
    94
import jdk.nashorn.internal.ir.JoinPredecessor;
17233
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents: 16530
diff changeset
    95
import jdk.nashorn.internal.ir.LexicalContext;
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    96
import jdk.nashorn.internal.ir.LiteralNode;
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
    97
import jdk.nashorn.internal.ir.LocalVariableConversion;
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    98
import jdk.nashorn.internal.ir.RuntimeNode;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    99
import jdk.nashorn.internal.ir.Symbol;
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   100
import jdk.nashorn.internal.ir.TryNode;
16206
83069fa0935b 8006529: Methods always get callee - it should be conditional
attila
parents: 16201
diff changeset
   101
import jdk.nashorn.internal.runtime.ArgumentSetter;
24745
3a6e1477362b 8041434: Add synchronization to the common global constants structure
lagergren
parents: 24744
diff changeset
   102
import jdk.nashorn.internal.runtime.Context;
17233
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents: 16530
diff changeset
   103
import jdk.nashorn.internal.runtime.Debug;
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   104
import jdk.nashorn.internal.runtime.JSType;
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   105
import jdk.nashorn.internal.runtime.RewriteException;
16206
83069fa0935b 8006529: Methods always get callee - it should be conditional
attila
parents: 16201
diff changeset
   106
import jdk.nashorn.internal.runtime.ScriptObject;
26768
751b0f427090 8025435: Optimistic builtins support, implemented initial optimistic versions of push, pop, and charCodeAt
lagergren
parents: 26377
diff changeset
   107
import jdk.nashorn.internal.runtime.ScriptRuntime;
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   108
import jdk.nashorn.internal.runtime.UnwarrantedOptimismException;
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   109
import jdk.nashorn.internal.runtime.linker.Bootstrap;
24744
5290da85fc3d 8038426: Move all loggers from process wide scope into Global scope
lagergren
parents: 24738
diff changeset
   110
import jdk.nashorn.internal.runtime.logging.DebugLogger;
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   111
import jdk.nashorn.internal.runtime.options.Options;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   112
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   113
/**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   114
 * This is the main function responsible for emitting method code
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   115
 * in a class. It maintains a type stack and keeps track of control
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   116
 * flow to make sure that the registered instructions don't violate
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   117
 * byte code verification.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   118
 *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   119
 * Running Nashorn with -ea will assert as soon as a type stack
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   120
 * becomes corrupt, for easier debugging
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   121
 *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   122
 * Running Nashorn with -Dnashorn.codegen.debug=true will print
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   123
 * all generated bytecode and labels to stderr, for easier debugging,
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   124
 * including bytecode stack contents
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   125
 */
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   126
public class MethodEmitter implements Emitter {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   127
    /** The ASM MethodVisitor we are plugged into */
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   128
    private final MethodVisitor method;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   129
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   130
    /** Parent classEmitter representing the class of this method */
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   131
    private final ClassEmitter classEmitter;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   132
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   133
    /** FunctionNode representing this method, or null if none exists */
17233
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents: 16530
diff changeset
   134
    protected FunctionNode functionNode;
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   135
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   136
    /** Current type stack for current evaluation */
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   137
    private Label.Stack stack;
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   138
17233
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents: 16530
diff changeset
   139
    /** Check whether this emitter ever has a function return point */
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents: 16530
diff changeset
   140
    private boolean hasReturn;
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   141
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   142
    private boolean preventUndefinedLoad;
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   143
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   144
    /**
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   145
     * Map of live local variable definitions.
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   146
     */
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   147
    private final Map<Symbol, LocalVariableDef> localVariableDefs = new IdentityHashMap<>();
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   148
24745
3a6e1477362b 8041434: Add synchronization to the common global constants structure
lagergren
parents: 24744
diff changeset
   149
    /** The context */
3a6e1477362b 8041434: Add synchronization to the common global constants structure
lagergren
parents: 24744
diff changeset
   150
    private final Context context;
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   151
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   152
    /** Threshold in chars for when string constants should be split */
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   153
    static final int LARGE_STRING_THRESHOLD = 32 * 1024;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   154
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   155
    /** Debug flag, should we dump all generated bytecode along with stacks? */
24745
3a6e1477362b 8041434: Add synchronization to the common global constants structure
lagergren
parents: 24744
diff changeset
   156
    private final DebugLogger log;
3a6e1477362b 8041434: Add synchronization to the common global constants structure
lagergren
parents: 24744
diff changeset
   157
    private final boolean     debug;
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   158
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   159
    /** dump stack on a particular line, or -1 if disabled */
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   160
    private static final int DEBUG_TRACE_LINE;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   161
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   162
    static {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   163
        final String tl = Options.getStringProperty("nashorn.codegen.debug.trace", "-1");
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   164
        int line = -1;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   165
        try {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   166
            line = Integer.parseInt(tl);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   167
        } catch (final NumberFormatException e) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   168
            //fallthru
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   169
        }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   170
        DEBUG_TRACE_LINE = line;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   171
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   172
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   173
    /** Bootstrap for normal indy:s */
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   174
    private static final Handle LINKERBOOTSTRAP  = new Handle(H_INVOKESTATIC, Bootstrap.BOOTSTRAP.className(), Bootstrap.BOOTSTRAP.name(), Bootstrap.BOOTSTRAP.descriptor());
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   175
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   176
    /** Bootstrap for runtime node indy:s */
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   177
    private static final Handle RUNTIMEBOOTSTRAP = new Handle(H_INVOKESTATIC, RuntimeCallSite.BOOTSTRAP.className(), RuntimeCallSite.BOOTSTRAP.name(), RuntimeCallSite.BOOTSTRAP.descriptor());
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   178
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   179
    /** Bootstrap for array populators */
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   180
    private static final Handle POPULATE_ARRAY_BOOTSTRAP = new Handle(H_INVOKESTATIC, RewriteException.BOOTSTRAP.className(), RewriteException.BOOTSTRAP.name(), RewriteException.BOOTSTRAP.descriptor());
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   181
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   182
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   183
     * Constructor - internal use from ClassEmitter only
16154
de44634fa4ec 8005782: get rid of javadoc errors, warnings in nashorn build
sundar
parents: 16151
diff changeset
   184
     * @see ClassEmitter#method
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   185
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   186
     * @param classEmitter the class emitter weaving the class this method is in
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   187
     * @param method       a method visitor
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   188
     */
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   189
    MethodEmitter(final ClassEmitter classEmitter, final MethodVisitor method) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   190
        this(classEmitter, method, null);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   191
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   192
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   193
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   194
     * Constructor - internal use from ClassEmitter only
16154
de44634fa4ec 8005782: get rid of javadoc errors, warnings in nashorn build
sundar
parents: 16151
diff changeset
   195
     * @see ClassEmitter#method
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   196
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   197
     * @param classEmitter the class emitter weaving the class this method is in
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   198
     * @param method       a method visitor
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   199
     * @param functionNode a function node representing this method
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   200
     */
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   201
    MethodEmitter(final ClassEmitter classEmitter, final MethodVisitor method, final FunctionNode functionNode) {
24745
3a6e1477362b 8041434: Add synchronization to the common global constants structure
lagergren
parents: 24744
diff changeset
   202
        this.context      = classEmitter.getContext();
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   203
        this.classEmitter = classEmitter;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   204
        this.method       = method;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   205
        this.functionNode = functionNode;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   206
        this.stack        = null;
24745
3a6e1477362b 8041434: Add synchronization to the common global constants structure
lagergren
parents: 24744
diff changeset
   207
        this.log          = context.getLogger(CodeGenerator.class);
3a6e1477362b 8041434: Add synchronization to the common global constants structure
lagergren
parents: 24744
diff changeset
   208
        this.debug        = log.isEnabled();
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   209
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   210
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   211
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   212
     * Begin a method
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   213
     * @see Emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   214
     */
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   215
    @Override
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   216
    public void begin() {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   217
        classEmitter.beginMethod(this);
17524
703643aeb0d6 8013914: Removed explicit LineNumberNodes that were too brittle when code moves around, and also introduced unnecessary footprint. Introduced the Statement node and fixed dead code elimination issues that were discovered by the absense of labels for LineNumberNodes.
lagergren
parents: 17255
diff changeset
   218
        newStack();
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   219
        method.visitCode();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   220
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   221
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   222
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   223
     * End a method
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   224
     * @see Emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   225
     */
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   226
    @Override
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   227
    public void end() {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   228
        method.visitMaxs(0, 0);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   229
        method.visitEnd();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   230
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   231
        classEmitter.endMethod(this);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   232
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   233
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   234
    boolean isReachable() {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   235
        return stack != null;
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   236
    }
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   237
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   238
    private void doesNotContinueSequentially() {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   239
        stack = null;
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   240
    }
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   241
17524
703643aeb0d6 8013914: Removed explicit LineNumberNodes that were too brittle when code moves around, and also introduced unnecessary footprint. Introduced the Statement node and fixed dead code elimination issues that were discovered by the absense of labels for LineNumberNodes.
lagergren
parents: 17255
diff changeset
   242
    private void newStack() {
17527
6e45d9c2328c 8014329: Slim down the label stack structure in CodeGenerator
lagergren
parents: 17524
diff changeset
   243
        stack = new Label.Stack();
17524
703643aeb0d6 8013914: Removed explicit LineNumberNodes that were too brittle when code moves around, and also introduced unnecessary footprint. Introduced the Statement node and fixed dead code elimination issues that were discovered by the absense of labels for LineNumberNodes.
lagergren
parents: 17255
diff changeset
   244
    }
703643aeb0d6 8013914: Removed explicit LineNumberNodes that were too brittle when code moves around, and also introduced unnecessary footprint. Introduced the Statement node and fixed dead code elimination issues that were discovered by the absense of labels for LineNumberNodes.
lagergren
parents: 17255
diff changeset
   245
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   246
    @Override
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   247
    public String toString() {
17233
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents: 16530
diff changeset
   248
        return "methodEmitter: " + (functionNode == null ? method : functionNode.getName()).toString() + ' ' + Debug.id(this);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   249
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   250
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   251
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   252
     * Push a type to the existing stack
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   253
     * @param type the type
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   254
     */
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   255
    void pushType(final Type type) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   256
        if (type != null) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   257
            stack.push(type);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   258
        }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   259
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   260
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   261
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   262
     * Pop a type from the existing stack
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   263
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   264
     * @param expected expected type - will assert if wrong
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   265
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   266
     * @return the type that was retrieved
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   267
     */
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   268
    private Type popType(final Type expected) {
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   269
        final Type type = popType();
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   270
        assert type.isObject() && expected.isObject() ||
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   271
            type.isEquivalentTo(expected) : type + " is not compatible with " + expected;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   272
        return type;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   273
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   274
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   275
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   276
     * Pop a type from the existing stack, no matter what it is.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   277
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   278
     * @return the type
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   279
     */
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   280
    private Type popType() {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   281
        return stack.pop();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   282
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   283
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   284
    /**
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   285
     * Pop a type from the existing stack, ensuring that it is numeric. Boolean type is popped as int type.
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   286
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   287
     * @return the type
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   288
     */
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   289
    private NumericType popNumeric() {
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   290
        final Type type = popType();
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   291
        if(type.isBoolean()) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   292
            // Booleans are treated as int for purposes of arithmetic operations
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   293
            return Type.INT;
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   294
        }
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   295
        assert type.isNumeric();
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   296
        return (NumericType)type;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   297
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   298
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   299
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   300
     * Pop a type from the existing stack, ensuring that it is an integer type
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   301
     * (integer or long). Boolean type is popped as int type.
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   302
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   303
     * @return the type
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   304
     */
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   305
    private BitwiseType popBitwise() {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   306
        final Type type = popType();
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   307
        if(type == Type.BOOLEAN) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   308
            return Type.INT;
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   309
        }
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   310
        return (BitwiseType)type;
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   311
    }
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   312
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   313
    private BitwiseType popInteger() {
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   314
        final Type type = popType();
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   315
        if(type == Type.BOOLEAN) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   316
            return Type.INT;
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   317
        }
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   318
        assert type == Type.INT;
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   319
        return (BitwiseType)type;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   320
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   321
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   322
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   323
     * Pop a type from the existing stack, ensuring that it is an array type,
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   324
     * assert if not
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   325
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   326
     * @return the type
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   327
     */
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   328
    private ArrayType popArray() {
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   329
        final Type type = popType();
16206
83069fa0935b 8006529: Methods always get callee - it should be conditional
attila
parents: 16201
diff changeset
   330
        assert type.isArray() : type;
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   331
        return (ArrayType)type;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   332
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   333
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   334
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   335
     * Peek a given number of slots from the top of the stack and return the
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   336
     * type in that slot
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   337
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   338
     * @param pos the number of positions from the top, 0 is the top element
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   339
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   340
     * @return the type at position "pos" on the stack
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   341
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
   342
    final Type peekType(final int pos) {
17527
6e45d9c2328c 8014329: Slim down the label stack structure in CodeGenerator
lagergren
parents: 17524
diff changeset
   343
        return stack.peek(pos);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   344
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   345
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   346
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   347
     * Peek at the type at the top of the stack
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   348
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   349
     * @return the type at the top of the stack
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   350
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
   351
    final Type peekType() {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   352
        return stack.peek();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   353
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   354
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   355
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   356
     * Generate code a for instantiating a new object and push the
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   357
     * object type on the stack
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   358
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   359
     * @param classDescriptor class descriptor for the object type
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   360
     * @param type the type of the new object
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   361
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   362
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   363
     */
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   364
    MethodEmitter _new(final String classDescriptor, final Type type) {
16206
83069fa0935b 8006529: Methods always get callee - it should be conditional
attila
parents: 16201
diff changeset
   365
        debug("new", classDescriptor);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   366
        method.visitTypeInsn(NEW, classDescriptor);
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   367
        pushType(type);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   368
        return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   369
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   370
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   371
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   372
     * Generate code a for instantiating a new object and push the
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   373
     * object type on the stack
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   374
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   375
     * @param clazz class type to instatiate
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   376
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   377
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   378
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
   379
    MethodEmitter _new(final Class<?> clazz) {
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   380
        return _new(className(clazz), Type.typeFor(clazz));
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   381
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   382
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   383
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   384
     * Generate code to call the empty constructor for a class
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   385
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   386
     * @param clazz class type to instatiate
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   387
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   388
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   389
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
   390
    MethodEmitter newInstance(final Class<?> clazz) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   391
        return invoke(constructorNoLookup(clazz));
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   392
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   393
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   394
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   395
     * Perform a dup, that is, duplicate the top element and
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   396
     * push the duplicate down a given number of positions
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   397
     * on the stack. This is totally type agnostic.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   398
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   399
     * @param depth the depth on which to put the copy
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   400
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   401
     * @return the method emitter, or null if depth is illegal and
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   402
     *  has no instruction equivalent.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   403
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
   404
    MethodEmitter dup(final int depth) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   405
        if (peekType().dup(method, depth) == null) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   406
            return null;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   407
        }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   408
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   409
        debug("dup", depth);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   410
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   411
        switch (depth) {
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   412
        case 0: {
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   413
            final int l0 = stack.getTopLocalLoad();
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   414
            pushType(peekType());
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   415
            stack.markLocalLoad(l0);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   416
            break;
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   417
        }
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   418
        case 1: {
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   419
            final int l0 = stack.getTopLocalLoad();
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   420
            final Type p0 = popType();
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   421
            final int l1 = stack.getTopLocalLoad();
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   422
            final Type p1 = popType();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   423
            pushType(p0);
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   424
            stack.markLocalLoad(l0);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   425
            pushType(p1);
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   426
            stack.markLocalLoad(l1);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   427
            pushType(p0);
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   428
            stack.markLocalLoad(l0);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   429
            break;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   430
        }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   431
        case 2: {
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   432
            final int l0 = stack.getTopLocalLoad();
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   433
            final Type p0 = popType();
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   434
            final int l1 = stack.getTopLocalLoad();
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   435
            final Type p1 = popType();
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   436
            final int l2 = stack.getTopLocalLoad();
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   437
            final Type p2 = popType();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   438
            pushType(p0);
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   439
            stack.markLocalLoad(l0);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   440
            pushType(p2);
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   441
            stack.markLocalLoad(l2);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   442
            pushType(p1);
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   443
            stack.markLocalLoad(l1);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   444
            pushType(p0);
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   445
            stack.markLocalLoad(l0);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   446
            break;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   447
        }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   448
        default:
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   449
            assert false : "illegal dup depth = " + depth;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   450
            return null;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   451
        }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   452
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   453
        return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   454
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   455
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   456
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   457
     * Perform a dup2, that is, duplicate the top element if it
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   458
     * is a category 2 type, or two top elements if they are category
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   459
     * 1 types, and push them on top of the stack
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   460
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   461
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   462
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
   463
    MethodEmitter dup2() {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   464
        debug("dup2");
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   465
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   466
        if (peekType().isCategory2()) {
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   467
            final int l0 = stack.getTopLocalLoad();
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   468
            pushType(peekType());
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   469
            stack.markLocalLoad(l0);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   470
        } else {
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   471
            final int l0 = stack.getTopLocalLoad();
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   472
            final Type p0 = popType();
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   473
            final int l1 = stack.getTopLocalLoad();
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   474
            final Type p1 = popType();
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   475
            pushType(p0);
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   476
            stack.markLocalLoad(l0);
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   477
            pushType(p1);
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   478
            stack.markLocalLoad(l1);
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   479
            pushType(p0);
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   480
            stack.markLocalLoad(l0);
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   481
            pushType(p1);
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   482
            stack.markLocalLoad(l1);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   483
        }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   484
        method.visitInsn(DUP2);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   485
        return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   486
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   487
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   488
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   489
     * Duplicate the top element on the stack and push it
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   490
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   491
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   492
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
   493
    MethodEmitter dup() {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   494
        return dup(0);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   495
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   496
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   497
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   498
     * Pop the top element of the stack and throw it away
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   499
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   500
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   501
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
   502
    MethodEmitter pop() {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   503
        debug("pop", peekType());
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   504
        popType().pop(method);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   505
        return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   506
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   507
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   508
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   509
     * Pop the top element of the stack if category 2 type, or the two
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   510
     * top elements of the stack if category 1 types
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   511
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   512
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   513
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
   514
    MethodEmitter pop2() {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   515
        if (peekType().isCategory2()) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   516
            popType();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   517
        } else {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   518
            get2n();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   519
        }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   520
        return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   521
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   522
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   523
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   524
     * Swap the top two elements of the stack. This is totally
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   525
     * type agnostic and works for all types
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   526
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   527
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   528
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
   529
    MethodEmitter swap() {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   530
        debug("swap");
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   531
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   532
        final int l0 = stack.getTopLocalLoad();
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   533
        final Type p0 = popType();
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   534
        final int l1 = stack.getTopLocalLoad();
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   535
        final Type p1 = popType();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   536
        p0.swap(method, p1);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   537
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   538
        pushType(p0);
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   539
        stack.markLocalLoad(l0);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   540
        pushType(p1);
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   541
        stack.markLocalLoad(l1);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   542
        return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   543
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   544
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   545
    void pack() {
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   546
        final Type type = peekType();
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   547
        if (type.isInteger()) {
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   548
            convert(PRIMITIVE_FIELD_TYPE);
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   549
        } else if (type.isLong()) {
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   550
            //nop
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   551
        } else if (type.isNumber()) {
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   552
            invokestatic("java/lang/Double", "doubleToRawLongBits", "(D)J");
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   553
        } else {
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   554
            assert false : type + " cannot be packed!";
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   555
        }
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   556
        //all others are nops, objects aren't packed
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   557
    }
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   558
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   559
    /**
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   560
     * Initializes a bytecode method parameter
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   561
     * @param symbol the symbol for the parameter
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   562
     * @param type the type of the parameter
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   563
     * @param start the label for the start of the method
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   564
     */
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   565
    void initializeMethodParameter(final Symbol symbol, final Type type, final Label start) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   566
        assert symbol.isBytecodeLocal();
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   567
        localVariableDefs.put(symbol, new LocalVariableDef(start.getLabel(), type));
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   568
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   569
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   570
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   571
     * Create a new string builder, call the constructor and push the instance to the stack.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   572
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   573
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   574
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
   575
    MethodEmitter newStringBuilder() {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   576
        return invoke(constructorNoLookup(StringBuilder.class)).dup();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   577
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   578
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   579
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   580
     * Pop a string and a StringBuilder from the top of the stack and call the append
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   581
     * function of the StringBuilder, appending the string. Pushes the StringBuilder to
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   582
     * the stack when finished.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   583
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   584
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   585
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
   586
    MethodEmitter stringBuilderAppend() {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   587
        convert(Type.STRING);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   588
        return invoke(virtualCallNoLookup(StringBuilder.class, "append", StringBuilder.class, String.class));
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   589
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   590
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   591
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   592
     * Pops two integer types from the stack, performs a bitwise and and pushes
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   593
     * the result
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   594
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   595
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   596
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
   597
    MethodEmitter and() {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   598
        debug("and");
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   599
        pushType(get2i().and(method));
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   600
        return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   601
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   602
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   603
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   604
     * Pops two integer types from the stack, performs a bitwise or and pushes
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   605
     * the result
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   606
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   607
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   608
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
   609
    MethodEmitter or() {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   610
        debug("or");
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   611
        pushType(get2i().or(method));
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   612
        return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   613
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   614
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   615
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   616
     * Pops two integer types from the stack, performs a bitwise xor and pushes
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   617
     * the result
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   618
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   619
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   620
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
   621
    MethodEmitter xor() {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   622
        debug("xor");
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   623
        pushType(get2i().xor(method));
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   624
        return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   625
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   626
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   627
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   628
     * Pops two integer types from the stack, performs a bitwise logic shift right and pushes
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   629
     * the result. The shift count, the first element, must be INT.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   630
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   631
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   632
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
   633
    MethodEmitter shr() {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   634
        debug("shr");
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   635
        popInteger();
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   636
        pushType(popBitwise().shr(method));
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   637
        return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   638
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   639
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   640
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   641
     * Pops two integer types from the stack, performs a bitwise shift left and and pushes
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   642
     * the result. The shift count, the first element, must be INT.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   643
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   644
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   645
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
   646
    MethodEmitter shl() {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   647
        debug("shl");
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   648
        popInteger();
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   649
        pushType(popBitwise().shl(method));
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   650
        return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   651
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   652
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   653
    /**
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   654
     * Pops two integer types from the stack, performs a bitwise arithmetic shift right and pushes
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   655
     * the result. The shift count, the first element, must be INT.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   656
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   657
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   658
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
   659
    MethodEmitter sar() {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   660
        debug("sar");
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   661
        popInteger();
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   662
        pushType(popBitwise().sar(method));
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   663
        return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   664
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   665
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   666
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   667
     * Pops a numeric type from the stack, negates it and pushes the result
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   668
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   669
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   670
     */
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   671
    MethodEmitter neg(final int programPoint) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   672
        debug("neg");
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   673
        pushType(popNumeric().neg(method, programPoint));
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   674
        return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   675
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   676
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   677
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   678
     * Add label for the start of a catch block and push the exception to the
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   679
     * stack
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   680
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   681
     * @param recovery label pointing to start of catch block
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   682
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
   683
    void _catch(final Label recovery) {
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   684
        // While in JVM a catch block can be reached through normal control flow, our code generator never does this,
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   685
        // so we might as well presume there's no stack on entry.
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   686
        assert stack == null;
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   687
        recovery.onCatch();
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   688
        label(recovery);
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   689
        beginCatchBlock();
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   690
    }
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   691
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   692
    /**
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   693
     * Add any number of labels for the start of a catch block and push the exception to the
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   694
     * stack
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   695
     *
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   696
     * @param recoveries labels pointing to start of catch block
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   697
     */
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   698
    void _catch(final Collection<Label> recoveries) {
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   699
        assert stack == null;
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   700
        for(final Label l: recoveries) {
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   701
            label(l);
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   702
        }
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   703
        beginCatchBlock();
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   704
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   705
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   706
    private void beginCatchBlock() {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   707
        // It can happen that the catch label wasn't marked as reachable. They are marked as reachable if there's an
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   708
        // assignment in the try block, but it's possible that there was none.
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   709
        if(!isReachable()) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   710
            newStack();
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   711
        }
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   712
        pushType(Type.typeFor(Throwable.class));
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   713
    }
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   714
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   715
     * Start a try/catch block.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   716
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   717
     * @param entry          start label for try
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   718
     * @param exit           end label for try
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   719
     * @param recovery       start label for catch
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   720
     * @param typeDescriptor type descriptor for exception
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   721
     * @param isOptimismHandler true if this is a hander for {@code UnwarrantedOptimismException}. Normally joining on a
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   722
     * catch handler kills temporary variables, but optimism handlers are an exception, as they need to capture
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   723
     * temporaries as well, so they must remain live.
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   724
     */
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   725
    private void _try(final Label entry, final Label exit, final Label recovery, final String typeDescriptor, final boolean isOptimismHandler) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   726
        recovery.joinFromTry(entry.getStack(), isOptimismHandler);
17524
703643aeb0d6 8013914: Removed explicit LineNumberNodes that were too brittle when code moves around, and also introduced unnecessary footprint. Introduced the Statement node and fixed dead code elimination issues that were discovered by the absense of labels for LineNumberNodes.
lagergren
parents: 17255
diff changeset
   727
        method.visitTryCatchBlock(entry.getLabel(), exit.getLabel(), recovery.getLabel(), typeDescriptor);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   728
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   729
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   730
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   731
     * Start a try/catch block.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   732
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   733
     * @param entry    start label for try
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   734
     * @param exit     end label for try
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   735
     * @param recovery start label for catch
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   736
     * @param clazz    exception class
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   737
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
   738
    void _try(final Label entry, final Label exit, final Label recovery, final Class<?> clazz) {
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   739
        _try(entry, exit, recovery, CompilerConstants.className(clazz), clazz == UnwarrantedOptimismException.class);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   740
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   741
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   742
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   743
     * Start a try/catch block. The catch is "Throwable" - i.e. catch-all
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   744
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   745
     * @param entry    start label for try
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   746
     * @param exit     end label for try
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   747
     * @param recovery start label for catch
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   748
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
   749
    void _try(final Label entry, final Label exit, final Label recovery) {
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   750
        _try(entry, exit, recovery, (String)null, false);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   751
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   752
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   753
    void markLabelAsOptimisticCatchHandler(final Label label, final int liveLocalCount) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   754
        label.markAsOptimisticCatchHandler(stack, liveLocalCount);
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   755
    }
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   756
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   757
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   758
     * Load the constants array
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   759
     * @return this method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   760
     */
16530
201d682e75f4 8010652: Eliminate non-child references in Block/FunctionNode, and make few node types immutable
attila
parents: 16262
diff changeset
   761
    MethodEmitter loadConstants() {
17233
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents: 16530
diff changeset
   762
        getStatic(classEmitter.getUnitClassName(), CONSTANTS.symbolName(), CONSTANTS.descriptor());
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   763
        assert peekType().isArray() : peekType();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   764
        return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   765
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   766
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   767
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   768
     * Push the undefined value for the given type, i.e.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   769
     * UNDEFINED or UNDEFINEDNUMBER. Currently we have no way of
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   770
     * representing UNDEFINED for INTs and LONGs, so they are not
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   771
     * allowed to be local variables (yet)
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   772
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   773
     * @param type the type for which to push UNDEFINED
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   774
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   775
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
   776
    MethodEmitter loadUndefined(final Type type) {
17246
a1bcf4d2bff1 8013203: A collection of smaller speedups to compilation pipeline
attila
parents: 17233
diff changeset
   777
        debug("load undefined ", type);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   778
        pushType(type.loadUndefined(method));
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   779
        return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   780
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   781
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   782
    MethodEmitter loadForcedInitializer(final Type type) {
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   783
        debug("load forced initializer ", type);
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   784
        pushType(type.loadForcedInitializer(method));
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   785
        return this;
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   786
    }
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   787
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   788
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   789
     * Push the empty value for the given type, i.e. EMPTY.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   790
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   791
     * @param type the type
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   792
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   793
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
   794
    MethodEmitter loadEmpty(final Type type) {
17246
a1bcf4d2bff1 8013203: A collection of smaller speedups to compilation pipeline
attila
parents: 17233
diff changeset
   795
        debug("load empty ", type);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   796
        pushType(type.loadEmpty(method));
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   797
        return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   798
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   799
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   800
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   801
     * Push null to stack
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   802
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   803
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   804
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
   805
    MethodEmitter loadNull() {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   806
        debug("aconst_null");
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   807
        pushType(Type.OBJECT.ldc(method, null));
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   808
        return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   809
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   810
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   811
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   812
     * Push a handle representing this class top stack
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   813
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   814
     * @param className name of the class
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   815
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   816
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   817
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
   818
    MethodEmitter loadType(final String className) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   819
        debug("load type", className);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   820
        method.visitLdcInsn(jdk.internal.org.objectweb.asm.Type.getObjectType(className));
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   821
        pushType(Type.OBJECT);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   822
        return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   823
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   824
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   825
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   826
     * Push a boolean constant to the stack.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   827
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   828
     * @param b value of boolean
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   829
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   830
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   831
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
   832
    MethodEmitter load(final boolean b) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   833
        debug("load boolean", b);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   834
        pushType(Type.BOOLEAN.ldc(method, b));
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   835
        return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   836
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   837
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   838
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   839
     * Push an int constant to the stack
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   840
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   841
     * @param i value of the int
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   842
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   843
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   844
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
   845
    MethodEmitter load(final int i) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   846
        debug("load int", i);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   847
        pushType(Type.INT.ldc(method, i));
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   848
        return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   849
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   850
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   851
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   852
     * Push a double constant to the stack
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   853
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   854
     * @param d value of the double
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   855
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   856
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   857
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
   858
    MethodEmitter load(final double d) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   859
        debug("load double", d);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   860
        pushType(Type.NUMBER.ldc(method, d));
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   861
        return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   862
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   863
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   864
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   865
     * Push an long constant to the stack
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   866
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   867
     * @param l value of the long
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   868
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   869
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   870
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
   871
    MethodEmitter load(final long l) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   872
        debug("load long", l);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   873
        pushType(Type.LONG.ldc(method, l));
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   874
        return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   875
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   876
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   877
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   878
     * Fetch the length of an array.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   879
     * @return Array length.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   880
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
   881
    MethodEmitter arraylength() {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   882
        debug("arraylength");
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   883
        popType(Type.OBJECT);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   884
        pushType(Type.OBJECT_ARRAY.arraylength(method));
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   885
        return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   886
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   887
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   888
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   889
     * Push a String constant to the stack
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   890
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   891
     * @param s value of the String
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   892
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   893
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   894
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
   895
    MethodEmitter load(final String s) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   896
        debug("load string", s);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   897
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   898
        if (s == null) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   899
            loadNull();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   900
            return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   901
        }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   902
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   903
        //NASHORN-142 - split too large string
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   904
        final int length = s.length();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   905
        if (length > LARGE_STRING_THRESHOLD) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   906
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   907
            _new(StringBuilder.class);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   908
            dup();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   909
            load(length);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   910
            invoke(constructorNoLookup(StringBuilder.class, int.class));
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   911
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   912
            for (int n = 0; n < length; n += LARGE_STRING_THRESHOLD) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   913
                final String part = s.substring(n, Math.min(n + LARGE_STRING_THRESHOLD, length));
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   914
                load(part);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   915
                stringBuilderAppend();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   916
            }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   917
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   918
            invoke(virtualCallNoLookup(StringBuilder.class, "toString", String.class));
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   919
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   920
            return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   921
        }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   922
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   923
        pushType(Type.OBJECT.ldc(method, s));
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   924
        return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   925
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   926
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   927
    /**
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   928
     * Pushes the value of an identifier to the stack. If the identifier does not represent a local variable or a
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   929
     * parameter, this will be a no-op.
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   930
     *
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   931
     * @param ident the identifier for the variable being loaded.
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   932
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   933
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   934
     */
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   935
    MethodEmitter load(final IdentNode ident) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   936
        return load(ident.getSymbol(), ident.getType());
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   937
    }
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   938
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   939
    /**
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   940
     * Pushes the value of the symbol to the stack with the specified type. No type conversion is being performed, and
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   941
     * the type is only being used if the symbol addresses a local variable slot. The value of the symbol is loaded if
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   942
     * it addresses a local variable slot, or it is a parameter (in which case it can also be loaded from a vararg array
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   943
     * or the arguments object). If it is neither, the operation is a no-op.
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   944
     *
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   945
     * @param symbol the symbol addressing the value being loaded
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   946
     * @param type the presumed type of the value when it is loaded from a local variable slot
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   947
     * @return the method emitter
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   948
     */
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   949
    MethodEmitter load(final Symbol symbol, final Type type) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   950
        assert symbol != null;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   951
        if (symbol.hasSlot()) {
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   952
            final int slot = symbol.getSlot(type);
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   953
            debug("load symbol", symbol.getName(), " slot=", slot, "type=", type);
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   954
            load(type, slot);
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   955
           // _try(new Label("dummy"), new Label("dummy2"), recovery);
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   956
           // method.visitTryCatchBlock(new Label(), arg1, arg2, arg3);
16209
18e55b352d56 8007460: var assignment to a parameter in a varargs method causes compilation error
attila
parents: 16206
diff changeset
   957
        } else if (symbol.isParam()) {
18e55b352d56 8007460: var assignment to a parameter in a varargs method causes compilation error
attila
parents: 16206
diff changeset
   958
            assert functionNode.isVarArg() : "Non-vararg functions have slotted parameters";
18e55b352d56 8007460: var assignment to a parameter in a varargs method causes compilation error
attila
parents: 16206
diff changeset
   959
            final int index = symbol.getFieldIndex();
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
   960
            if (functionNode.needsArguments()) {
16209
18e55b352d56 8007460: var assignment to a parameter in a varargs method causes compilation error
attila
parents: 16206
diff changeset
   961
                // ScriptObject.getArgument(int) on arguments
18e55b352d56 8007460: var assignment to a parameter in a varargs method causes compilation error
attila
parents: 16206
diff changeset
   962
                debug("load symbol", symbol.getName(), " arguments index=", index);
17233
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents: 16530
diff changeset
   963
                loadCompilerConstant(ARGUMENTS);
16209
18e55b352d56 8007460: var assignment to a parameter in a varargs method causes compilation error
attila
parents: 16206
diff changeset
   964
                load(index);
18e55b352d56 8007460: var assignment to a parameter in a varargs method causes compilation error
attila
parents: 16206
diff changeset
   965
                ScriptObject.GET_ARGUMENT.invoke(this);
18e55b352d56 8007460: var assignment to a parameter in a varargs method causes compilation error
attila
parents: 16206
diff changeset
   966
            } else {
18e55b352d56 8007460: var assignment to a parameter in a varargs method causes compilation error
attila
parents: 16206
diff changeset
   967
                // array load from __varargs__
18e55b352d56 8007460: var assignment to a parameter in a varargs method causes compilation error
attila
parents: 16206
diff changeset
   968
                debug("load symbol", symbol.getName(), " array index=", index);
17233
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents: 16530
diff changeset
   969
                loadCompilerConstant(VARARGS);
16209
18e55b352d56 8007460: var assignment to a parameter in a varargs method causes compilation error
attila
parents: 16206
diff changeset
   970
                load(symbol.getFieldIndex());
18e55b352d56 8007460: var assignment to a parameter in a varargs method causes compilation error
attila
parents: 16206
diff changeset
   971
                arrayload();
18e55b352d56 8007460: var assignment to a parameter in a varargs method causes compilation error
attila
parents: 16206
diff changeset
   972
            }
16206
83069fa0935b 8006529: Methods always get callee - it should be conditional
attila
parents: 16201
diff changeset
   973
        }
83069fa0935b 8006529: Methods always get callee - it should be conditional
attila
parents: 16201
diff changeset
   974
        return this;
83069fa0935b 8006529: Methods always get callee - it should be conditional
attila
parents: 16201
diff changeset
   975
    }
83069fa0935b 8006529: Methods always get callee - it should be conditional
attila
parents: 16201
diff changeset
   976
83069fa0935b 8006529: Methods always get callee - it should be conditional
attila
parents: 16201
diff changeset
   977
    /**
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   978
     * Push a local variable to the stack, given an explicit bytecode slot.
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   979
     * This is used e.g. for stub generation where we know where items like
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   980
     * "this" and "scope" reside.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   981
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   982
     * @param type  the type of the variable
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   983
     * @param slot  the slot the variable is in
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   984
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   985
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   986
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
   987
    MethodEmitter load(final Type type, final int slot) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   988
        debug("explicit load", type, slot);
16225
81d58c2b9fcf 8006943: Fix order of function method arguments to be (callee, thisObject)
attila
parents: 16210
diff changeset
   989
        final Type loadType = type.load(method, slot);
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   990
        assert loadType != null;
16225
81d58c2b9fcf 8006943: Fix order of function method arguments to be (callee, thisObject)
attila
parents: 16210
diff changeset
   991
        pushType(loadType == Type.OBJECT && isThisSlot(slot) ? Type.THIS : loadType);
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   992
        assert !preventUndefinedLoad || (slot < stack.localVariableTypes.size() && stack.localVariableTypes.get(slot) != Type.UNKNOWN)
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
   993
            : "Attempted load of uninitialized slot " + slot + " (as type " + type + ")";
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
   994
        stack.markLocalLoad(slot);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   995
        return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   996
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   997
16225
81d58c2b9fcf 8006943: Fix order of function method arguments to be (callee, thisObject)
attila
parents: 16210
diff changeset
   998
    private boolean isThisSlot(final int slot) {
17527
6e45d9c2328c 8014329: Slim down the label stack structure in CodeGenerator
lagergren
parents: 17524
diff changeset
   999
        if (functionNode == null) {
16225
81d58c2b9fcf 8006943: Fix order of function method arguments to be (callee, thisObject)
attila
parents: 16210
diff changeset
  1000
            return slot == CompilerConstants.JAVA_THIS.slot();
81d58c2b9fcf 8006943: Fix order of function method arguments to be (callee, thisObject)
attila
parents: 16210
diff changeset
  1001
        }
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1002
        final int thisSlot = getCompilerConstantSymbol(THIS).getSlot(Type.OBJECT);
16225
81d58c2b9fcf 8006943: Fix order of function method arguments to be (callee, thisObject)
attila
parents: 16210
diff changeset
  1003
        assert !functionNode.needsCallee() || thisSlot == 1; // needsCallee -> thisSlot == 1
81d58c2b9fcf 8006943: Fix order of function method arguments to be (callee, thisObject)
attila
parents: 16210
diff changeset
  1004
        assert functionNode.needsCallee() || thisSlot == 0; // !needsCallee -> thisSlot == 0
81d58c2b9fcf 8006943: Fix order of function method arguments to be (callee, thisObject)
attila
parents: 16210
diff changeset
  1005
        return slot == thisSlot;
81d58c2b9fcf 8006943: Fix order of function method arguments to be (callee, thisObject)
attila
parents: 16210
diff changeset
  1006
    }
81d58c2b9fcf 8006943: Fix order of function method arguments to be (callee, thisObject)
attila
parents: 16210
diff changeset
  1007
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1008
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1009
     * Push a method handle to the stack
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1010
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1011
     * @param className  class name
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1012
     * @param methodName method name
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1013
     * @param descName   descriptor
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1014
     * @param flags      flags that describe this handle, e.g. invokespecial new, or invoke virtual
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1015
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1016
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1017
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  1018
    MethodEmitter loadHandle(final String className, final String methodName, final String descName, final EnumSet<Flag> flags) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1019
        debug("load handle ");
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1020
        pushType(Type.OBJECT.ldc(method, new Handle(Flag.getValue(flags), className, methodName, descName)));
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1021
        return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1022
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1023
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1024
    private Symbol getCompilerConstantSymbol(final CompilerConstants cc) {
17233
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents: 16530
diff changeset
  1025
        return functionNode.getBody().getExistingSymbol(cc.symbolName());
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1026
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1027
17255
aa61d23e36e5 8013419: Streamline handling of with and eval
attila
parents: 17246
diff changeset
  1028
    /**
aa61d23e36e5 8013419: Streamline handling of with and eval
attila
parents: 17246
diff changeset
  1029
     * True if this method has a slot allocated for the scope variable (meaning, something in the method actually needs
aa61d23e36e5 8013419: Streamline handling of with and eval
attila
parents: 17246
diff changeset
  1030
     * the scope).
aa61d23e36e5 8013419: Streamline handling of with and eval
attila
parents: 17246
diff changeset
  1031
     * @return if this method has a slot allocated for the scope variable.
aa61d23e36e5 8013419: Streamline handling of with and eval
attila
parents: 17246
diff changeset
  1032
     */
aa61d23e36e5 8013419: Streamline handling of with and eval
attila
parents: 17246
diff changeset
  1033
    boolean hasScope() {
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1034
        return getCompilerConstantSymbol(SCOPE).hasSlot();
17255
aa61d23e36e5 8013419: Streamline handling of with and eval
attila
parents: 17246
diff changeset
  1035
    }
aa61d23e36e5 8013419: Streamline handling of with and eval
attila
parents: 17246
diff changeset
  1036
17233
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents: 16530
diff changeset
  1037
    MethodEmitter loadCompilerConstant(final CompilerConstants cc) {
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1038
        return loadCompilerConstant(cc, null);
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1039
    }
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1040
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1041
    MethodEmitter loadCompilerConstant(final CompilerConstants cc, final Type type) {
17233
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents: 16530
diff changeset
  1042
        if (cc == SCOPE && peekType() == Type.SCOPE) {
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents: 16530
diff changeset
  1043
            dup();
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents: 16530
diff changeset
  1044
            return this;
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents: 16530
diff changeset
  1045
        }
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1046
        return load(getCompilerConstantSymbol(cc), type != null ? type : getCompilerConstantType(cc));
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1047
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1048
17233
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents: 16530
diff changeset
  1049
    void storeCompilerConstant(final CompilerConstants cc) {
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1050
        storeCompilerConstant(cc, null);
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1051
    }
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1052
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1053
    void storeCompilerConstant(final CompilerConstants cc, final Type type) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1054
        final Symbol symbol = getCompilerConstantSymbol(cc);
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1055
        if(!symbol.hasSlot()) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1056
            return;
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1057
        }
17233
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents: 16530
diff changeset
  1058
        debug("store compiler constant ", symbol);
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1059
        store(symbol, type != null ? type : getCompilerConstantType(cc));
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1060
    }
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1061
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1062
    private static Type getCompilerConstantType(final CompilerConstants cc) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1063
        final Class<?> constantType = cc.type();
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1064
        assert constantType != null;
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1065
        return Type.typeFor(constantType);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1066
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1067
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1068
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1069
     * Load an element from an array, determining type automatically
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1070
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1071
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  1072
    MethodEmitter arrayload() {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1073
        debug("Xaload");
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1074
        popType(Type.INT);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1075
        pushType(popArray().aload(method));
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1076
        return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1077
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1078
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1079
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1080
     * Pop a value, an index and an array from the stack and store
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1081
     * the value at the given index in the array.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1082
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  1083
    void arraystore() {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1084
        debug("Xastore");
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1085
        final Type value = popType();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1086
        final Type index = popType(Type.INT);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1087
        assert index.isInteger() : "array index is not integer, but " + index;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1088
        final ArrayType array = popArray();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1089
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1090
        assert value.isEquivalentTo(array.getElementType()) : "Storing "+value+" into "+array;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1091
        assert array.isObject();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1092
        array.astore(method);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1093
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1094
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1095
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1096
     * Pop a value from the stack and store it in a local variable represented
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1097
     * by the given identifier. If the symbol has no slot, this is a NOP
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1098
     *
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1099
     * @param ident identifier to store stack to
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1100
     */
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1101
    void store(final IdentNode ident) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1102
        final Type type = ident.getType();
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1103
        final Symbol symbol = ident.getSymbol();
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1104
        if(type == Type.UNDEFINED) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1105
            assert peekType() == Type.UNDEFINED;
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1106
            store(symbol, Type.OBJECT);
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1107
        } else {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1108
            store(symbol, type);
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1109
        }
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1110
    }
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1111
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1112
    /**
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1113
     * Represents a definition of a local variable with a type. Used for local variable table building.
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1114
     */
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1115
    private static class LocalVariableDef {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1116
        // The start label from where this definition lives.
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1117
        private final jdk.internal.org.objectweb.asm.Label label;
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1118
        // The currently live type of the local variable.
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1119
        private final Type type;
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1120
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1121
        LocalVariableDef(final jdk.internal.org.objectweb.asm.Label label, final Type type) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1122
            this.label = label;
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1123
            this.type = type;
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1124
        }
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1125
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1126
    }
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1127
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1128
    void closeLocalVariable(final Symbol symbol, final Label label) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1129
        final LocalVariableDef def = localVariableDefs.get(symbol);
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1130
        if(def != null) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1131
            endLocalValueDef(symbol, def, label.getLabel());
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1132
        }
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1133
        if(isReachable()) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1134
            markDeadLocalVariable(symbol);
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1135
        }
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1136
    }
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1137
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1138
    void markDeadLocalVariable(final Symbol symbol) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1139
        if(!symbol.isDead()) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1140
            markDeadSlots(symbol.getFirstSlot(), symbol.slotCount());
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1141
        }
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1142
    }
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1143
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1144
    void markDeadSlots(final int firstSlot, final int slotCount) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1145
        stack.markDeadLocalVariables(firstSlot, slotCount);
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1146
    }
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1147
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1148
    private void endLocalValueDef(final Symbol symbol, final LocalVariableDef def, final jdk.internal.org.objectweb.asm.Label label) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1149
        String name = symbol.getName();
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1150
        if (name.equals(THIS.symbolName())) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1151
            name = THIS_DEBUGGER.symbolName();
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1152
        }
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1153
        method.visitLocalVariable(name, def.type.getDescriptor(), null, def.label, label, symbol.getSlot(def.type));
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1154
    }
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1155
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1156
    void store(final Symbol symbol, final Type type) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1157
        store(symbol, type, true);
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1158
    }
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1159
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1160
    /**
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1161
     * Pop a value from the stack and store it in a variable denoted by the given symbol. The variable should be either
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1162
     * a local variable, or a function parameter (and not a scoped variable). For local variables, this method will also
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1163
     * do the bookeeping of the local variable table as well as mark values in all alternative slots for the symbol as
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1164
     * dead. In this regard it differs from {@link #storeHidden(Type, int)}.
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1165
     *
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1166
     * @param symbol the symbol to store into.
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1167
     * @param type the type to store
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1168
     * @param onlySymbolLiveValue if true, this is the sole live value for the symbol. If false, currently live values should
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1169
     * be kept live.
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1170
     */
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1171
    void store(final Symbol symbol, final Type type, final boolean onlySymbolLiveValue) {
16201
889ddb179cdf 8007062: Split Lower up into Lower/Attr/FinalizeTypes. Integrate AccessSpecalizer into FinalizeTypes.
lagergren
parents: 16154
diff changeset
  1172
        assert symbol != null : "No symbol to store";
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1173
        if (symbol.hasSlot()) {
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1174
            final boolean isLiveType = symbol.hasSlotFor(type);
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1175
            final LocalVariableDef existingDef = localVariableDefs.get(symbol);
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1176
            if(existingDef == null || existingDef.type != type) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1177
                final jdk.internal.org.objectweb.asm.Label here = new jdk.internal.org.objectweb.asm.Label();
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1178
                if(isLiveType) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1179
                    final LocalVariableDef newDef = new LocalVariableDef(here, type);
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1180
                    localVariableDefs.put(symbol, newDef);
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1181
                }
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1182
                method.visitLabel(here);
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1183
                if(existingDef != null) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1184
                    endLocalValueDef(symbol, existingDef, here);
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1185
                }
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1186
            }
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1187
            if(isLiveType) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1188
                final int slot = symbol.getSlot(type);
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1189
                debug("store symbol", symbol.getName(), " type=", type, " slot=", slot);
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1190
                storeHidden(type, slot, onlySymbolLiveValue);
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1191
            } else {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1192
                if(onlySymbolLiveValue) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1193
                    markDeadLocalVariable(symbol);
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1194
                }
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1195
                debug("dead store symbol ", symbol.getName(), " type=", type);
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1196
                pop();
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1197
            }
16209
18e55b352d56 8007460: var assignment to a parameter in a varargs method causes compilation error
attila
parents: 16206
diff changeset
  1198
        } else if (symbol.isParam()) {
18e55b352d56 8007460: var assignment to a parameter in a varargs method causes compilation error
attila
parents: 16206
diff changeset
  1199
            assert !symbol.isScope();
18e55b352d56 8007460: var assignment to a parameter in a varargs method causes compilation error
attila
parents: 16206
diff changeset
  1200
            assert functionNode.isVarArg() : "Non-vararg functions have slotted parameters";
18e55b352d56 8007460: var assignment to a parameter in a varargs method causes compilation error
attila
parents: 16206
diff changeset
  1201
            final int index = symbol.getFieldIndex();
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  1202
            if (functionNode.needsArguments()) {
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1203
                convert(Type.OBJECT);
16209
18e55b352d56 8007460: var assignment to a parameter in a varargs method causes compilation error
attila
parents: 16206
diff changeset
  1204
                debug("store symbol", symbol.getName(), " arguments index=", index);
17233
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents: 16530
diff changeset
  1205
                loadCompilerConstant(ARGUMENTS);
16209
18e55b352d56 8007460: var assignment to a parameter in a varargs method causes compilation error
attila
parents: 16206
diff changeset
  1206
                load(index);
18e55b352d56 8007460: var assignment to a parameter in a varargs method causes compilation error
attila
parents: 16206
diff changeset
  1207
                ArgumentSetter.SET_ARGUMENT.invoke(this);
18e55b352d56 8007460: var assignment to a parameter in a varargs method causes compilation error
attila
parents: 16206
diff changeset
  1208
            } else {
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1209
                convert(Type.OBJECT);
16209
18e55b352d56 8007460: var assignment to a parameter in a varargs method causes compilation error
attila
parents: 16206
diff changeset
  1210
                // varargs without arguments object - just do array store to __varargs__
18e55b352d56 8007460: var assignment to a parameter in a varargs method causes compilation error
attila
parents: 16206
diff changeset
  1211
                debug("store symbol", symbol.getName(), " array index=", index);
17233
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents: 16530
diff changeset
  1212
                loadCompilerConstant(VARARGS);
16209
18e55b352d56 8007460: var assignment to a parameter in a varargs method causes compilation error
attila
parents: 16206
diff changeset
  1213
                load(index);
18e55b352d56 8007460: var assignment to a parameter in a varargs method causes compilation error
attila
parents: 16206
diff changeset
  1214
                ArgumentSetter.SET_ARRAY_ELEMENT.invoke(this);
18e55b352d56 8007460: var assignment to a parameter in a varargs method causes compilation error
attila
parents: 16206
diff changeset
  1215
            }
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1216
        } else {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1217
            debug("dead store symbol ", symbol.getName(), " type=", type);
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1218
            pop();
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1219
        }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1220
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1221
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1222
    /**
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1223
     * Pop a value from the stack and store it in a local variable slot. Note that in contrast with
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1224
     * {@link #store(Symbol, Type)}, this method does not adjust the local variable table, nor marks slots for
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1225
     * alternative value types for the symbol as being dead. For that reason, this method is usually not called
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1226
     * directly. Notable exceptions are temporary internal locals (e.g. quick store, last-catch-condition, etc.) that
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1227
     * are not desired to show up in the local variable table.
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1228
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1229
     * @param type the type to pop
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1230
     * @param slot the slot
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1231
     */
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1232
    void storeHidden(final Type type, final int slot) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1233
        storeHidden(type, slot, true);
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1234
    }
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1235
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1236
    void storeHidden(final Type type, final int slot, final boolean onlyLiveSymbolValue) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1237
        explicitStore(type, slot);
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1238
        stack.onLocalStore(type, slot, onlyLiveSymbolValue);
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1239
    }
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1240
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1241
    void storeTemp(final Type type, final int slot) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1242
        explicitStore(type, slot);
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1243
        defineTemporaryLocalVariable(slot, slot + type.getSlots());
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1244
        onLocalStore(type, slot);
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1245
    }
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1246
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1247
    void onLocalStore(final Type type, final int slot) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1248
        stack.onLocalStore(type, slot, true);
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1249
    }
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1250
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1251
    private void explicitStore(final Type type, final int slot) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1252
        assert slot != -1;
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  1253
        debug("explicit store", type, slot);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1254
        popType(type);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1255
        type.store(method, slot);
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1256
    }
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1257
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1258
    /**
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1259
     * Marks a range of slots as belonging to a defined local variable. The slots will start out with no live value
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1260
     * in them.
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1261
     * @param fromSlot first slot, inclusive.
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1262
     * @param toSlot last slot, exclusive.
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1263
     */
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1264
    void defineBlockLocalVariable(final int fromSlot, final int toSlot) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1265
        stack.defineBlockLocalVariable(fromSlot, toSlot);
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  1266
    }
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  1267
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1268
    /**
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1269
     * Marks a range of slots as belonging to a defined temporary local variable. The slots will start out with no
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1270
     * live value in them.
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1271
     * @param fromSlot first slot, inclusive.
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1272
     * @param toSlot last slot, exclusive.
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1273
     */
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1274
    void defineTemporaryLocalVariable(final int fromSlot, final int toSlot) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1275
        stack.defineTemporaryLocalVariable(fromSlot, toSlot);
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1276
    }
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1277
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1278
    /**
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1279
     * Defines a new temporary local variable and returns its allocated index.
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1280
     * @param width the required width (in slots) for the new variable.
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1281
     * @return the bytecode slot index where the newly allocated local begins.
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1282
     */
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1283
    int defineTemporaryLocalVariable(final int width) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1284
        return stack.defineTemporaryLocalVariable(width);
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1285
    }
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1286
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1287
    void undefineLocalVariables(final int fromSlot, final boolean canTruncateSymbol) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1288
        if(isReachable()) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1289
            stack.undefineLocalVariables(fromSlot, canTruncateSymbol);
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  1290
        }
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  1291
    }
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  1292
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  1293
    List<Type> getLocalVariableTypes() {
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1294
        return stack.localVariableTypes;
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  1295
    }
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  1296
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1297
    List<Type> getWidestLiveLocals(final List<Type> localTypes) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1298
        return stack.getWidestLiveLocals(localTypes);
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1299
    }
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1300
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1301
    String markSymbolBoundariesInLvarTypesDescriptor(final String lvarDescriptor) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1302
        return stack.markSymbolBoundariesInLvarTypesDescriptor(lvarDescriptor);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1303
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1304
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1305
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1306
     * Increment/Decrement a local integer by the given value.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1307
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1308
     * @param slot the int slot
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1309
     * @param increment the amount to increment
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1310
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  1311
    void iinc(final int slot, final int increment) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1312
        debug("iinc");
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1313
        method.visitIincInsn(slot, increment);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1314
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1315
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1316
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1317
     * Pop an exception object from the stack and generate code
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1318
     * for throwing it
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1319
     */
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1320
    public void athrow() {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1321
        debug("athrow");
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1322
        final Type receiver = popType(Type.OBJECT);
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  1323
        assert Throwable.class.isAssignableFrom(receiver.getTypeClass()) : receiver.getTypeClass();
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1324
        method.visitInsn(ATHROW);
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1325
        doesNotContinueSequentially();
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1326
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1327
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1328
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1329
     * Pop an object from the stack and perform an instanceof
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1330
     * operation, given a classDescriptor to compare it to.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1331
     * Push the boolean result 1/0 as an int to the stack
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1332
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1333
     * @param classDescriptor descriptor of the class to type check against
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1334
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1335
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1336
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  1337
    MethodEmitter _instanceof(final String classDescriptor) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1338
        debug("instanceof", classDescriptor);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1339
        popType(Type.OBJECT);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1340
        method.visitTypeInsn(INSTANCEOF, classDescriptor);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1341
        pushType(Type.INT);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1342
        return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1343
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1344
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1345
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1346
     * Pop an object from the stack and perform an instanceof
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1347
     * operation, given a classDescriptor to compare it to.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1348
     * Push the boolean result 1/0 as an int to the stack
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1349
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1350
     * @param clazz the type to check instanceof against
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1351
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1352
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1353
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  1354
    MethodEmitter _instanceof(final Class<?> clazz) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1355
        return _instanceof(CompilerConstants.className(clazz));
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1356
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1357
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1358
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1359
     * Perform a checkcast operation on the object at the top of the
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1360
     * stack.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1361
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1362
     * @param classDescriptor descriptor of the class to type check against
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1363
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1364
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1365
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  1366
    MethodEmitter checkcast(final String classDescriptor) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1367
        debug("checkcast", classDescriptor);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1368
        assert peekType().isObject();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1369
        method.visitTypeInsn(CHECKCAST, classDescriptor);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1370
        return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1371
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1372
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1373
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1374
     * Perform a checkcast operation on the object at the top of the
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1375
     * stack.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1376
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1377
     * @param clazz class to checkcast against
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1378
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1379
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1380
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  1381
    MethodEmitter checkcast(final Class<?> clazz) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1382
        return checkcast(CompilerConstants.className(clazz));
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1383
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1384
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1385
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1386
     * Instantiate a new array given a length that is popped
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1387
     * from the stack and the array type
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1388
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1389
     * @param arrayType the type of the array
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1390
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1391
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1392
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  1393
    MethodEmitter newarray(final ArrayType arrayType) {
17246
a1bcf4d2bff1 8013203: A collection of smaller speedups to compilation pipeline
attila
parents: 17233
diff changeset
  1394
        debug("newarray ", "arrayType=", arrayType);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1395
        popType(Type.INT); //LENGTH
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1396
        pushType(arrayType.newarray(method));
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1397
        return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1398
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1399
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1400
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1401
     * Instantiate a multidimensional array with a given number of dimensions.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1402
     * On the stack are dim lengths of the sub arrays.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1403
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1404
     * @param arrayType type of the array
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1405
     * @param dims      number of dimensions
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1406
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1407
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1408
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  1409
    MethodEmitter multinewarray(final ArrayType arrayType, final int dims) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1410
        debug("multianewarray ", arrayType, dims);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1411
        for (int i = 0; i < dims; i++) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1412
            popType(Type.INT); //LENGTH
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1413
        }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1414
        pushType(arrayType.newarray(method, dims));
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1415
        return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1416
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1417
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1418
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1419
     * Helper function to pop and type check the appropriate arguments
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1420
     * from the stack given a method signature
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1421
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1422
     * @param signature method signature
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1423
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1424
     * @return return type of method
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1425
     */
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1426
    private Type fixParamStack(final String signature) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1427
        final Type[] params = Type.getMethodArguments(signature);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1428
        for (int i = params.length - 1; i >= 0; i--) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1429
            popType(params[i]);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1430
        }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1431
        final Type returnType = Type.getMethodReturnType(signature);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1432
        return returnType;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1433
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1434
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1435
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1436
     * Generate an invocation to a Call structure
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1437
     * @see CompilerConstants
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1438
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1439
     * @param call the call object
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1440
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1441
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1442
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  1443
    MethodEmitter invoke(final Call call) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1444
        return call.invoke(this);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1445
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1446
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1447
    private MethodEmitter invoke(final int opcode, final String className, final String methodName, final String methodDescriptor, final boolean hasReceiver) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1448
        final Type returnType = fixParamStack(methodDescriptor);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1449
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1450
        if (hasReceiver) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1451
            popType(Type.OBJECT);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1452
        }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1453
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  1454
        method.visitMethodInsn(opcode, className, methodName, methodDescriptor, opcode == INVOKEINTERFACE);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1455
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1456
        if (returnType != null) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1457
            pushType(returnType);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1458
        }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1459
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1460
        return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1461
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1462
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1463
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1464
     * Pop receiver from stack, perform an invoke special
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1465
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1466
     * @param className        class name
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1467
     * @param methodName       method name
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1468
     * @param methodDescriptor descriptor
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1469
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1470
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1471
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  1472
    MethodEmitter invokespecial(final String className, final String methodName, final String methodDescriptor) {
17246
a1bcf4d2bff1 8013203: A collection of smaller speedups to compilation pipeline
attila
parents: 17233
diff changeset
  1473
        debug("invokespecial", className, ".", methodName, methodDescriptor);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1474
        return invoke(INVOKESPECIAL, className, methodName, methodDescriptor, true);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1475
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1476
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1477
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1478
     * Pop receiver from stack, perform an invoke virtual, push return value if any
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1479
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1480
     * @param className        class name
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1481
     * @param methodName       method name
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1482
     * @param methodDescriptor descriptor
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1483
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1484
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1485
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  1486
    MethodEmitter invokevirtual(final String className, final String methodName, final String methodDescriptor) {
17246
a1bcf4d2bff1 8013203: A collection of smaller speedups to compilation pipeline
attila
parents: 17233
diff changeset
  1487
        debug("invokevirtual", className, ".", methodName, methodDescriptor, " ", stack);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1488
        return invoke(INVOKEVIRTUAL, className, methodName, methodDescriptor, true);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1489
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1490
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1491
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1492
     * Perform an invoke static and push the return value if any
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1493
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1494
     * @param className        class name
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1495
     * @param methodName       method name
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1496
     * @param methodDescriptor descriptor
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1497
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1498
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1499
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  1500
    MethodEmitter invokestatic(final String className, final String methodName, final String methodDescriptor) {
17246
a1bcf4d2bff1 8013203: A collection of smaller speedups to compilation pipeline
attila
parents: 17233
diff changeset
  1501
        debug("invokestatic", className, ".", methodName, methodDescriptor);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1502
        invoke(INVOKESTATIC, className, methodName, methodDescriptor, false);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1503
        return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1504
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1505
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1506
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1507
     * Perform an invoke static and replace the return type if we know better, e.g. Global.allocate
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1508
     * that allocates an array should return an ObjectArray type as a NativeArray counts as that
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1509
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1510
     * @param className        class name
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1511
     * @param methodName       method name
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1512
     * @param methodDescriptor descriptor
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1513
     * @param returnType       return type override
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1514
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1515
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1516
     */
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  1517
    MethodEmitter invokestatic(final String className, final String methodName, final String methodDescriptor, final Type returnType) {
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  1518
        invokestatic(className, methodName, methodDescriptor);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1519
        popType();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1520
        pushType(returnType);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1521
        return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1522
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1523
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1524
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1525
     * Pop receiver from stack, perform an invoke interface and push return value if any
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1526
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1527
     * @param className        class name
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1528
     * @param methodName       method name
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1529
     * @param methodDescriptor descriptor
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1530
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1531
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1532
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  1533
    MethodEmitter invokeinterface(final String className, final String methodName, final String methodDescriptor) {
17246
a1bcf4d2bff1 8013203: A collection of smaller speedups to compilation pipeline
attila
parents: 17233
diff changeset
  1534
        debug("invokeinterface", className, ".", methodName, methodDescriptor);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1535
        return invoke(INVOKEINTERFACE, className, methodName, methodDescriptor, true);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1536
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1537
17524
703643aeb0d6 8013914: Removed explicit LineNumberNodes that were too brittle when code moves around, and also introduced unnecessary footprint. Introduced the Statement node and fixed dead code elimination issues that were discovered by the absense of labels for LineNumberNodes.
lagergren
parents: 17255
diff changeset
  1538
    static jdk.internal.org.objectweb.asm.Label[] getLabels(final Label... table) {
703643aeb0d6 8013914: Removed explicit LineNumberNodes that were too brittle when code moves around, and also introduced unnecessary footprint. Introduced the Statement node and fixed dead code elimination issues that were discovered by the absense of labels for LineNumberNodes.
lagergren
parents: 17255
diff changeset
  1539
        final jdk.internal.org.objectweb.asm.Label[] internalLabels = new jdk.internal.org.objectweb.asm.Label[table.length];
703643aeb0d6 8013914: Removed explicit LineNumberNodes that were too brittle when code moves around, and also introduced unnecessary footprint. Introduced the Statement node and fixed dead code elimination issues that were discovered by the absense of labels for LineNumberNodes.
lagergren
parents: 17255
diff changeset
  1540
        for (int i = 0; i < table.length; i++) {
703643aeb0d6 8013914: Removed explicit LineNumberNodes that were too brittle when code moves around, and also introduced unnecessary footprint. Introduced the Statement node and fixed dead code elimination issues that were discovered by the absense of labels for LineNumberNodes.
lagergren
parents: 17255
diff changeset
  1541
            internalLabels[i] = table[i].getLabel();
703643aeb0d6 8013914: Removed explicit LineNumberNodes that were too brittle when code moves around, and also introduced unnecessary footprint. Introduced the Statement node and fixed dead code elimination issues that were discovered by the absense of labels for LineNumberNodes.
lagergren
parents: 17255
diff changeset
  1542
        }
703643aeb0d6 8013914: Removed explicit LineNumberNodes that were too brittle when code moves around, and also introduced unnecessary footprint. Introduced the Statement node and fixed dead code elimination issues that were discovered by the absense of labels for LineNumberNodes.
lagergren
parents: 17255
diff changeset
  1543
        return internalLabels;
703643aeb0d6 8013914: Removed explicit LineNumberNodes that were too brittle when code moves around, and also introduced unnecessary footprint. Introduced the Statement node and fixed dead code elimination issues that were discovered by the absense of labels for LineNumberNodes.
lagergren
parents: 17255
diff changeset
  1544
    }
703643aeb0d6 8013914: Removed explicit LineNumberNodes that were too brittle when code moves around, and also introduced unnecessary footprint. Introduced the Statement node and fixed dead code elimination issues that were discovered by the absense of labels for LineNumberNodes.
lagergren
parents: 17255
diff changeset
  1545
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1546
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1547
     * Generate a lookup switch, popping the switch value from the stack
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1548
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1549
     * @param defaultLabel default label
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1550
     * @param values       case values for the table
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1551
     * @param table        default label
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1552
     */
17524
703643aeb0d6 8013914: Removed explicit LineNumberNodes that were too brittle when code moves around, and also introduced unnecessary footprint. Introduced the Statement node and fixed dead code elimination issues that were discovered by the absense of labels for LineNumberNodes.
lagergren
parents: 17255
diff changeset
  1553
    void lookupswitch(final Label defaultLabel, final int[] values, final Label... table) {//Collection<Label> table) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1554
        debug("lookupswitch", peekType());
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  1555
        adjustStackForSwitch(defaultLabel, table);
17524
703643aeb0d6 8013914: Removed explicit LineNumberNodes that were too brittle when code moves around, and also introduced unnecessary footprint. Introduced the Statement node and fixed dead code elimination issues that were discovered by the absense of labels for LineNumberNodes.
lagergren
parents: 17255
diff changeset
  1556
        method.visitLookupSwitchInsn(defaultLabel.getLabel(), values, getLabels(table));
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1557
        doesNotContinueSequentially();
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1558
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1559
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1560
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1561
     * Generate a table switch
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1562
     * @param lo            low value
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1563
     * @param hi            high value
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1564
     * @param defaultLabel  default label
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1565
     * @param table         label table
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1566
     */
17524
703643aeb0d6 8013914: Removed explicit LineNumberNodes that were too brittle when code moves around, and also introduced unnecessary footprint. Introduced the Statement node and fixed dead code elimination issues that were discovered by the absense of labels for LineNumberNodes.
lagergren
parents: 17255
diff changeset
  1567
    void tableswitch(final int lo, final int hi, final Label defaultLabel, final Label... table) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1568
        debug("tableswitch", peekType());
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  1569
        adjustStackForSwitch(defaultLabel, table);
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  1570
        method.visitTableSwitchInsn(lo, hi, defaultLabel.getLabel(), getLabels(table));
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1571
        doesNotContinueSequentially();
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  1572
    }
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  1573
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  1574
    private void adjustStackForSwitch(final Label defaultLabel, final Label... table) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1575
        popType(Type.INT);
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1576
        joinTo(defaultLabel);
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  1577
        for(final Label label: table) {
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1578
            joinTo(label);
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  1579
        }
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1580
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1581
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1582
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1583
     * Abstraction for performing a conditional jump of any type
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1584
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1585
     * @see MethodEmitter.Condition
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1586
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1587
     * @param cond      the condition to test
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1588
     * @param trueLabel the destination label is condition is true
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1589
     */
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1590
    void conditionalJump(final Condition cond, final Label trueLabel) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1591
        conditionalJump(cond, cond != Condition.GT && cond != Condition.GE, trueLabel);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1592
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1593
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1594
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1595
     * Abstraction for performing a conditional jump of any type,
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1596
     * including a dcmpg/dcmpl semantic for doubles.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1597
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1598
     * @param cond      the condition to test
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1599
     * @param isCmpG    is this a dcmpg for numbers, false if it's a dcmpl
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1600
     * @param trueLabel the destination label if condition is true
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1601
     */
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1602
    void conditionalJump(final Condition cond, final boolean isCmpG, final Label trueLabel) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1603
        if (peekType().isCategory2()) {
17246
a1bcf4d2bff1 8013203: A collection of smaller speedups to compilation pipeline
attila
parents: 17233
diff changeset
  1604
            debug("[ld]cmp isCmpG=", isCmpG);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1605
            pushType(get2n().cmp(method, isCmpG));
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1606
            jump(Condition.toUnary(cond), trueLabel, 1);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1607
        } else {
17246
a1bcf4d2bff1 8013203: A collection of smaller speedups to compilation pipeline
attila
parents: 17233
diff changeset
  1608
            debug("if", cond);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1609
            jump(Condition.toBinary(cond, peekType().isObject()), trueLabel, 2);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1610
        }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1611
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1612
17233
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents: 16530
diff changeset
  1613
    MethodEmitter registerReturn() {
19095
0b215bda525d 8020718: RETURN symbol has wrong type in split functions
hannesw
parents: 17756
diff changeset
  1614
        setHasReturn();
0b215bda525d 8020718: RETURN symbol has wrong type in split functions
hannesw
parents: 17756
diff changeset
  1615
        return this;
0b215bda525d 8020718: RETURN symbol has wrong type in split functions
hannesw
parents: 17756
diff changeset
  1616
    }
0b215bda525d 8020718: RETURN symbol has wrong type in split functions
hannesw
parents: 17756
diff changeset
  1617
0b215bda525d 8020718: RETURN symbol has wrong type in split functions
hannesw
parents: 17756
diff changeset
  1618
    void setHasReturn() {
17233
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents: 16530
diff changeset
  1619
        this.hasReturn = true;
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents: 16530
diff changeset
  1620
    }
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents: 16530
diff changeset
  1621
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1622
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1623
     * Perform a non void return, popping the type from the stack
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1624
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1625
     * @param type the type for the return
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1626
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  1627
    void _return(final Type type) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1628
        debug("return", type);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1629
        assert stack.size() == 1 : "Only return value on stack allowed at return point - depth=" + stack.size() + " stack = " + stack;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1630
        final Type stackType = peekType();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1631
        if (!Type.areEquivalent(type, stackType)) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1632
            convert(type);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1633
        }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1634
        popType(type)._return(method);
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1635
        doesNotContinueSequentially();
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1636
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1637
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1638
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1639
     * Perform a return using the stack top value as the guide for the type
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1640
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  1641
    void _return() {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1642
        _return(peekType());
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1643
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1644
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1645
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1646
     * Perform a void return.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1647
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  1648
    void returnVoid() {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1649
        debug("return [void]");
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1650
        assert stack.isEmpty() : stack;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1651
        method.visitInsn(RETURN);
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1652
        doesNotContinueSequentially();
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1653
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1654
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1655
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1656
     * Goto, possibly when splitting is taking place. If
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1657
     * a splitNode exists, we need to handle the case that the
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1658
     * jump target is another method
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1659
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1660
     * @param label destination label
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1661
     * @param targetNode the node to which the destination label belongs (the label is normally a break or continue
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1662
     * label)
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1663
     */
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1664
    void splitAwareGoto(final LexicalContext lc, final Label label, final BreakableNode targetNode) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1665
        _goto(label);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1666
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1667
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1668
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1669
     * Perform a comparison of two number types that are popped from the stack
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1670
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1671
     * @param isCmpG is this a dcmpg semantic, false if it's a dcmpl semantic
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1672
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1673
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1674
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  1675
    MethodEmitter cmp(final boolean isCmpG) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1676
        pushType(get2n().cmp(method, isCmpG));
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1677
        return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1678
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1679
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1680
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1681
     * Helper function for jumps, conditional or not
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1682
     * @param opcode  opcode for jump
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1683
     * @param label   destination
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1684
     * @param n       elements on stack to compare, 0-2
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1685
     */
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1686
    private void jump(final int opcode, final Label label, final int n) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1687
        for (int i = 0; i < n; i++) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1688
            assert peekType().isInteger() || peekType().isBoolean() || peekType().isObject() : "expecting integer type or object for jump, but found " + peekType();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1689
            popType();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1690
        }
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1691
        joinTo(label);
17524
703643aeb0d6 8013914: Removed explicit LineNumberNodes that were too brittle when code moves around, and also introduced unnecessary footprint. Introduced the Statement node and fixed dead code elimination issues that were discovered by the absense of labels for LineNumberNodes.
lagergren
parents: 17255
diff changeset
  1692
        method.visitJumpInsn(opcode, label.getLabel());
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1693
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1694
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1695
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1696
     * Generate an if_acmpeq
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1697
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1698
     * @param label label to true case
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1699
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  1700
    void if_acmpeq(final Label label) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1701
        debug("if_acmpeq", label);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1702
        jump(IF_ACMPEQ, label, 2);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1703
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1704
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1705
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1706
     * Generate an if_acmpne
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1707
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1708
     * @param label label to true case
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1709
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  1710
    void if_acmpne(final Label label) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1711
        debug("if_acmpne", label);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1712
        jump(IF_ACMPNE, label, 2);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1713
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1714
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1715
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1716
     * Generate an ifnull
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1717
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1718
     * @param label label to true case
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1719
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  1720
    void ifnull(final Label label) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1721
        debug("ifnull", label);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1722
        jump(IFNULL, label, 1);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1723
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1724
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1725
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1726
     * Generate an ifnonnull
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1727
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1728
     * @param label label to true case
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1729
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  1730
    void ifnonnull(final Label label) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1731
        debug("ifnonnull", label);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1732
        jump(IFNONNULL, label, 1);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1733
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1734
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1735
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1736
     * Generate an ifeq
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1737
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1738
     * @param label label to true case
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1739
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  1740
    void ifeq(final Label label) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1741
        debug("ifeq ", label);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1742
        jump(IFEQ, label, 1);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1743
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1744
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1745
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1746
     * Generate an if_icmpeq
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1747
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1748
     * @param label label to true case
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1749
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  1750
    void if_icmpeq(final Label label) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1751
        debug("if_icmpeq", label);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1752
        jump(IF_ICMPEQ, label, 2);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1753
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1754
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1755
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1756
     * Generate an if_ne
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1757
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1758
     * @param label label to true case
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1759
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  1760
    void ifne(final Label label) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1761
        debug("ifne", label);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1762
        jump(IFNE, label, 1);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1763
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1764
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1765
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1766
     * Generate an if_icmpne
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1767
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1768
     * @param label label to true case
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1769
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  1770
    void if_icmpne(final Label label) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1771
        debug("if_icmpne", label);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1772
        jump(IF_ICMPNE, label, 2);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1773
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1774
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1775
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1776
     * Generate an iflt
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1777
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1778
     * @param label label to true case
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1779
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  1780
    void iflt(final Label label) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1781
        debug("iflt", label);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1782
        jump(IFLT, label, 1);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1783
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1784
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1785
    /**
24725
7bb1f687a852 8033334: Make sure that scope depth information is maintained in the RecompilableScriptFunctionDatas, to avoid unnecessary slow proto linkage when doing on demand compilation
lagergren
parents: 24719
diff changeset
  1786
     * Generate an if_icmplt
7bb1f687a852 8033334: Make sure that scope depth information is maintained in the RecompilableScriptFunctionDatas, to avoid unnecessary slow proto linkage when doing on demand compilation
lagergren
parents: 24719
diff changeset
  1787
     *
7bb1f687a852 8033334: Make sure that scope depth information is maintained in the RecompilableScriptFunctionDatas, to avoid unnecessary slow proto linkage when doing on demand compilation
lagergren
parents: 24719
diff changeset
  1788
     * @param label label to true case
7bb1f687a852 8033334: Make sure that scope depth information is maintained in the RecompilableScriptFunctionDatas, to avoid unnecessary slow proto linkage when doing on demand compilation
lagergren
parents: 24719
diff changeset
  1789
     */
7bb1f687a852 8033334: Make sure that scope depth information is maintained in the RecompilableScriptFunctionDatas, to avoid unnecessary slow proto linkage when doing on demand compilation
lagergren
parents: 24719
diff changeset
  1790
    void if_icmplt(final Label label) {
7bb1f687a852 8033334: Make sure that scope depth information is maintained in the RecompilableScriptFunctionDatas, to avoid unnecessary slow proto linkage when doing on demand compilation
lagergren
parents: 24719
diff changeset
  1791
        debug("if_icmplt", label);
7bb1f687a852 8033334: Make sure that scope depth information is maintained in the RecompilableScriptFunctionDatas, to avoid unnecessary slow proto linkage when doing on demand compilation
lagergren
parents: 24719
diff changeset
  1792
        jump(IF_ICMPLT, label, 2);
7bb1f687a852 8033334: Make sure that scope depth information is maintained in the RecompilableScriptFunctionDatas, to avoid unnecessary slow proto linkage when doing on demand compilation
lagergren
parents: 24719
diff changeset
  1793
    }
7bb1f687a852 8033334: Make sure that scope depth information is maintained in the RecompilableScriptFunctionDatas, to avoid unnecessary slow proto linkage when doing on demand compilation
lagergren
parents: 24719
diff changeset
  1794
7bb1f687a852 8033334: Make sure that scope depth information is maintained in the RecompilableScriptFunctionDatas, to avoid unnecessary slow proto linkage when doing on demand compilation
lagergren
parents: 24719
diff changeset
  1795
    /**
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1796
     * Generate an ifle
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1797
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1798
     * @param label label to true case
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1799
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  1800
    void ifle(final Label label) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1801
        debug("ifle", label);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1802
        jump(IFLE, label, 1);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1803
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1804
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1805
    /**
24725
7bb1f687a852 8033334: Make sure that scope depth information is maintained in the RecompilableScriptFunctionDatas, to avoid unnecessary slow proto linkage when doing on demand compilation
lagergren
parents: 24719
diff changeset
  1806
     * Generate an if_icmple
7bb1f687a852 8033334: Make sure that scope depth information is maintained in the RecompilableScriptFunctionDatas, to avoid unnecessary slow proto linkage when doing on demand compilation
lagergren
parents: 24719
diff changeset
  1807
     *
7bb1f687a852 8033334: Make sure that scope depth information is maintained in the RecompilableScriptFunctionDatas, to avoid unnecessary slow proto linkage when doing on demand compilation
lagergren
parents: 24719
diff changeset
  1808
     * @param label label to true case
7bb1f687a852 8033334: Make sure that scope depth information is maintained in the RecompilableScriptFunctionDatas, to avoid unnecessary slow proto linkage when doing on demand compilation
lagergren
parents: 24719
diff changeset
  1809
     */
7bb1f687a852 8033334: Make sure that scope depth information is maintained in the RecompilableScriptFunctionDatas, to avoid unnecessary slow proto linkage when doing on demand compilation
lagergren
parents: 24719
diff changeset
  1810
    void if_icmple(final Label label) {
7bb1f687a852 8033334: Make sure that scope depth information is maintained in the RecompilableScriptFunctionDatas, to avoid unnecessary slow proto linkage when doing on demand compilation
lagergren
parents: 24719
diff changeset
  1811
        debug("if_icmple", label);
7bb1f687a852 8033334: Make sure that scope depth information is maintained in the RecompilableScriptFunctionDatas, to avoid unnecessary slow proto linkage when doing on demand compilation
lagergren
parents: 24719
diff changeset
  1812
        jump(IF_ICMPLE, label, 2);
7bb1f687a852 8033334: Make sure that scope depth information is maintained in the RecompilableScriptFunctionDatas, to avoid unnecessary slow proto linkage when doing on demand compilation
lagergren
parents: 24719
diff changeset
  1813
    }
7bb1f687a852 8033334: Make sure that scope depth information is maintained in the RecompilableScriptFunctionDatas, to avoid unnecessary slow proto linkage when doing on demand compilation
lagergren
parents: 24719
diff changeset
  1814
7bb1f687a852 8033334: Make sure that scope depth information is maintained in the RecompilableScriptFunctionDatas, to avoid unnecessary slow proto linkage when doing on demand compilation
lagergren
parents: 24719
diff changeset
  1815
    /**
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1816
     * Generate an ifgt
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1817
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1818
     * @param label label to true case
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1819
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  1820
    void ifgt(final Label label) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1821
        debug("ifgt", label);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1822
        jump(IFGT, label, 1);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1823
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1824
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1825
    /**
24725
7bb1f687a852 8033334: Make sure that scope depth information is maintained in the RecompilableScriptFunctionDatas, to avoid unnecessary slow proto linkage when doing on demand compilation
lagergren
parents: 24719
diff changeset
  1826
     * Generate an if_icmpgt
7bb1f687a852 8033334: Make sure that scope depth information is maintained in the RecompilableScriptFunctionDatas, to avoid unnecessary slow proto linkage when doing on demand compilation
lagergren
parents: 24719
diff changeset
  1827
     *
7bb1f687a852 8033334: Make sure that scope depth information is maintained in the RecompilableScriptFunctionDatas, to avoid unnecessary slow proto linkage when doing on demand compilation
lagergren
parents: 24719
diff changeset
  1828
     * @param label label to true case
7bb1f687a852 8033334: Make sure that scope depth information is maintained in the RecompilableScriptFunctionDatas, to avoid unnecessary slow proto linkage when doing on demand compilation
lagergren
parents: 24719
diff changeset
  1829
     */
7bb1f687a852 8033334: Make sure that scope depth information is maintained in the RecompilableScriptFunctionDatas, to avoid unnecessary slow proto linkage when doing on demand compilation
lagergren
parents: 24719
diff changeset
  1830
    void if_icmpgt(final Label label) {
7bb1f687a852 8033334: Make sure that scope depth information is maintained in the RecompilableScriptFunctionDatas, to avoid unnecessary slow proto linkage when doing on demand compilation
lagergren
parents: 24719
diff changeset
  1831
        debug("if_icmpgt", label);
7bb1f687a852 8033334: Make sure that scope depth information is maintained in the RecompilableScriptFunctionDatas, to avoid unnecessary slow proto linkage when doing on demand compilation
lagergren
parents: 24719
diff changeset
  1832
        jump(IF_ICMPGT, label, 2);
7bb1f687a852 8033334: Make sure that scope depth information is maintained in the RecompilableScriptFunctionDatas, to avoid unnecessary slow proto linkage when doing on demand compilation
lagergren
parents: 24719
diff changeset
  1833
    }
7bb1f687a852 8033334: Make sure that scope depth information is maintained in the RecompilableScriptFunctionDatas, to avoid unnecessary slow proto linkage when doing on demand compilation
lagergren
parents: 24719
diff changeset
  1834
7bb1f687a852 8033334: Make sure that scope depth information is maintained in the RecompilableScriptFunctionDatas, to avoid unnecessary slow proto linkage when doing on demand compilation
lagergren
parents: 24719
diff changeset
  1835
    /**
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1836
     * Generate an ifge
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1837
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1838
     * @param label label to true case
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1839
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  1840
    void ifge(final Label label) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1841
        debug("ifge", label);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1842
        jump(IFGE, label, 1);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1843
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1844
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1845
    /**
24725
7bb1f687a852 8033334: Make sure that scope depth information is maintained in the RecompilableScriptFunctionDatas, to avoid unnecessary slow proto linkage when doing on demand compilation
lagergren
parents: 24719
diff changeset
  1846
     * Generate an if_icmpge
7bb1f687a852 8033334: Make sure that scope depth information is maintained in the RecompilableScriptFunctionDatas, to avoid unnecessary slow proto linkage when doing on demand compilation
lagergren
parents: 24719
diff changeset
  1847
     *
7bb1f687a852 8033334: Make sure that scope depth information is maintained in the RecompilableScriptFunctionDatas, to avoid unnecessary slow proto linkage when doing on demand compilation
lagergren
parents: 24719
diff changeset
  1848
     * @param label label to true case
7bb1f687a852 8033334: Make sure that scope depth information is maintained in the RecompilableScriptFunctionDatas, to avoid unnecessary slow proto linkage when doing on demand compilation
lagergren
parents: 24719
diff changeset
  1849
     */
7bb1f687a852 8033334: Make sure that scope depth information is maintained in the RecompilableScriptFunctionDatas, to avoid unnecessary slow proto linkage when doing on demand compilation
lagergren
parents: 24719
diff changeset
  1850
    void if_icmpge(final Label label) {
7bb1f687a852 8033334: Make sure that scope depth information is maintained in the RecompilableScriptFunctionDatas, to avoid unnecessary slow proto linkage when doing on demand compilation
lagergren
parents: 24719
diff changeset
  1851
        debug("if_icmpge", label);
7bb1f687a852 8033334: Make sure that scope depth information is maintained in the RecompilableScriptFunctionDatas, to avoid unnecessary slow proto linkage when doing on demand compilation
lagergren
parents: 24719
diff changeset
  1852
        jump(IF_ICMPGE, label, 2);
7bb1f687a852 8033334: Make sure that scope depth information is maintained in the RecompilableScriptFunctionDatas, to avoid unnecessary slow proto linkage when doing on demand compilation
lagergren
parents: 24719
diff changeset
  1853
    }
7bb1f687a852 8033334: Make sure that scope depth information is maintained in the RecompilableScriptFunctionDatas, to avoid unnecessary slow proto linkage when doing on demand compilation
lagergren
parents: 24719
diff changeset
  1854
7bb1f687a852 8033334: Make sure that scope depth information is maintained in the RecompilableScriptFunctionDatas, to avoid unnecessary slow proto linkage when doing on demand compilation
lagergren
parents: 24719
diff changeset
  1855
    /**
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1856
     * Unconditional jump to a label
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1857
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1858
     * @param label destination label
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1859
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  1860
    void _goto(final Label label) {
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  1861
        debug("goto", label);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1862
        jump(GOTO, label, 0);
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1863
        doesNotContinueSequentially(); //whoever reaches the point after us provides the stack, because we don't
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1864
    }
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1865
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1866
    /**
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1867
     * Unconditional jump to the start label of a loop. It differs from ordinary {@link #_goto(Label)} in that it will
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1868
     * preserve the current label stack, as the next instruction after the goto is loop body that the loop will come
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1869
     * back to. Also used to jump at the start label of the continuation handler, as it behaves much like a loop test in
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1870
     * the sense that after it is evaluated, it also jumps backwards.
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1871
     *
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1872
     * @param loopStart start label of a loop
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1873
     */
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1874
    void gotoLoopStart(final Label loopStart) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1875
        debug("goto (loop)", loopStart);
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1876
        jump(GOTO, loopStart, 0);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1877
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1878
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1879
    /**
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1880
     * Unconditional jump without any control flow and data flow testing. You should not normally use this method when
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1881
     * generating code, except if you're very sure that you know what you're doing. Normally only used for the
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1882
     * admittedly torturous control flow of continuation handler plumbing.
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1883
     * @param target the target of the jump
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1884
     */
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1885
    void uncheckedGoto(final Label target) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1886
        method.visitJumpInsn(GOTO, target.getLabel());
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1887
    }
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1888
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1889
    /**
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1890
     * Potential transfer of control to a catch block.
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1891
     *
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1892
     * @param catchLabel destination catch label
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1893
     */
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1894
    void canThrow(final Label catchLabel) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1895
        catchLabel.joinFromTry(stack, false);
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1896
    }
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1897
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1898
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1899
     * A join in control flow - helper function that makes sure all entry stacks
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1900
     * discovered for the join point so far are equivalent
17524
703643aeb0d6 8013914: Removed explicit LineNumberNodes that were too brittle when code moves around, and also introduced unnecessary footprint. Introduced the Statement node and fixed dead code elimination issues that were discovered by the absense of labels for LineNumberNodes.
lagergren
parents: 17255
diff changeset
  1901
     *
703643aeb0d6 8013914: Removed explicit LineNumberNodes that were too brittle when code moves around, and also introduced unnecessary footprint. Introduced the Statement node and fixed dead code elimination issues that were discovered by the absense of labels for LineNumberNodes.
lagergren
parents: 17255
diff changeset
  1902
     * MergeStack: we are about to enter a label. If its stack, label.getStack() is null
703643aeb0d6 8013914: Removed explicit LineNumberNodes that were too brittle when code moves around, and also introduced unnecessary footprint. Introduced the Statement node and fixed dead code elimination issues that were discovered by the absense of labels for LineNumberNodes.
lagergren
parents: 17255
diff changeset
  1903
     * we have never been here before. Then we are expected to carry a stack with us.
703643aeb0d6 8013914: Removed explicit LineNumberNodes that were too brittle when code moves around, and also introduced unnecessary footprint. Introduced the Statement node and fixed dead code elimination issues that were discovered by the absense of labels for LineNumberNodes.
lagergren
parents: 17255
diff changeset
  1904
     *
703643aeb0d6 8013914: Removed explicit LineNumberNodes that were too brittle when code moves around, and also introduced unnecessary footprint. Introduced the Statement node and fixed dead code elimination issues that were discovered by the absense of labels for LineNumberNodes.
lagergren
parents: 17255
diff changeset
  1905
     * @param label label
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1906
     */
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1907
    private void joinTo(final Label label) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1908
        assert isReachable();
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1909
        label.joinFrom(stack);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1910
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1911
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1912
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1913
     * Register a new label, enter it here.
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1914
     * @param label
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1915
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  1916
    void label(final Label label) {
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1917
        breakLabel(label, -1);
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1918
    }
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1919
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1920
    /**
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1921
     * Register a new break target label, enter it here.
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1922
     *
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1923
     * @param label the label
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1924
     * @param liveLocals the number of live locals at this label
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1925
     */
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1926
    void breakLabel(final Label label, final int liveLocals) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1927
        if (!isReachable()) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1928
            // If we emit a label, and the label's stack is null, it must not be reachable.
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1929
            assert (label.getStack() == null) != label.isReachable();
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1930
        } else {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1931
            joinTo(label);
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1932
        }
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1933
        // Use label's stack as we might have no stack.
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1934
        final Label.Stack labelStack = label.getStack();
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1935
        stack = labelStack == null ? null : labelStack.clone();
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1936
        if(stack != null && label.isBreakTarget() && liveLocals != -1) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1937
            // This has to be done because we might not have another frame to provide us with its firstTemp if the label
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1938
            // is only reachable through a break or continue statement; also in this case, the frame can actually
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1939
            // give us a higher number of live locals, e.g. if it comes from a catch. Typical example:
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1940
            // for(;;) { try{ throw 0; } catch(e) { break; } }.
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1941
            // Since the for loop can only be exited through the break in the catch block, it'll bring with it the
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1942
            // "e" as a live local, and we need to trim it off here.
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1943
            assert stack.firstTemp >= liveLocals;
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  1944
            stack.firstTemp = liveLocals;
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1945
        }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1946
        debug_label(label);
17524
703643aeb0d6 8013914: Removed explicit LineNumberNodes that were too brittle when code moves around, and also introduced unnecessary footprint. Introduced the Statement node and fixed dead code elimination issues that were discovered by the absense of labels for LineNumberNodes.
lagergren
parents: 17255
diff changeset
  1947
        method.visitLabel(label.getLabel());
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1948
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1949
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1950
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1951
     * Pop element from stack, convert to given type
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1952
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1953
     * @param to type to convert to
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1954
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1955
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1956
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  1957
    MethodEmitter convert(final Type to) {
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  1958
        final Type from = peekType();
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  1959
        final Type type = from.convert(method, to);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1960
        if (type != null) {
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  1961
            if (!from.isEquivalentTo(to)) {
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  1962
                debug("convert", from, "->", to);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1963
            }
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  1964
            if (type != from) {
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  1965
                final int l0 = stack.getTopLocalLoad();
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  1966
                popType();
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  1967
                pushType(type);
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  1968
                // NOTE: conversions from a primitive type are considered to preserve the "load" property of the value
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  1969
                // on the stack. Otherwise we could introduce temporary locals in a deoptimized rest-of (e.g. doing an
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  1970
                // "i < x.length" where "i" is int and ".length" gets deoptimized to long would end up converting i to
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  1971
                // long with "ILOAD i; I2L; LSTORE tmp; LLOAD tmp;"). Such additional temporary would cause an error
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  1972
                // when restoring the state of the function for rest-of execution, as the not-yet deoptimized variant
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  1973
                // would have the (now invalidated) assumption that "x.length" is an int, so it wouldn't have the I2L,
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  1974
                // and therefore neither the subsequent LSTORE tmp; LLOAD tmp;. By making sure conversions from a
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  1975
                // primitive type don't erase the "load" information, we don't introduce temporaries in the deoptimized
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  1976
                // rest-of that didn't exist in the more optimistic version that triggered the deoptimization.
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  1977
                // NOTE: as a more general observation, we could theoretically track the operations required to
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  1978
                // reproduce any stack value as long as they are all local loads, constant loads, and stack operations.
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  1979
                // We won't go there in the current system
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  1980
                if(!from.isObject()) {
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  1981
                    stack.markLocalLoad(l0);
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  1982
                }
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  1983
            }
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1984
        }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1985
        return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1986
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1987
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1988
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1989
     * Helper function - expect two types that are equivalent
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1990
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1991
     * @return common type
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1992
     */
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1993
    private Type get2() {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1994
        final Type p0 = popType();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1995
        final Type p1 = popType();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1996
        assert p0.isEquivalentTo(p1) : "expecting equivalent types on stack but got " + p0 + " and " + p1;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1997
        return p0;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1998
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  1999
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2000
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2001
     * Helper function - expect two types that are integer types and equivalent
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2002
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2003
     * @return common type
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2004
     */
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2005
    private BitwiseType get2i() {
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2006
        final BitwiseType p0 = popBitwise();
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2007
        final BitwiseType p1 = popBitwise();
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2008
        assert p0.isEquivalentTo(p1) : "expecting equivalent types on stack but got " + p0 + " and " + p1;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2009
        return p0;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2010
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2011
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2012
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2013
     * Helper function - expect two types that are numbers and equivalent
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2014
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2015
     * @return common type
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2016
     */
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2017
    private NumericType get2n() {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2018
        final NumericType p0 = popNumeric();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2019
        final NumericType p1 = popNumeric();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2020
        assert p0.isEquivalentTo(p1) : "expecting equivalent types on stack but got " + p0 + " and " + p1;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2021
        return p0;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2022
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2023
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2024
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2025
     * Pop two numbers, perform addition and push result
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2026
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2027
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2028
     */
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  2029
    MethodEmitter add(final int programPoint) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2030
        debug("add");
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  2031
        pushType(get2().add(method, programPoint));
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2032
        return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2033
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2034
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2035
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2036
     * Pop two numbers, perform subtraction and push result
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2037
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2038
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2039
     */
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  2040
    MethodEmitter sub(final int programPoint) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2041
        debug("sub");
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  2042
        pushType(get2n().sub(method, programPoint));
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2043
        return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2044
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2045
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2046
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2047
     * Pop two numbers, perform multiplication and push result
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2048
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2049
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2050
     */
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  2051
    MethodEmitter mul(final int programPoint) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2052
        debug("mul ");
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  2053
        pushType(get2n().mul(method, programPoint));
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2054
        return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2055
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2056
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2057
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2058
     * Pop two numbers, perform division and push result
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2059
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2060
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2061
     */
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  2062
    MethodEmitter div(final int programPoint) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2063
        debug("div");
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  2064
        pushType(get2n().div(method, programPoint));
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2065
        return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2066
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2067
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2068
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2069
     * Pop two numbers, calculate remainder and push result
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2070
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2071
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2072
     */
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2073
    MethodEmitter rem(final int programPoint) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2074
        debug("rem");
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2075
        pushType(get2n().rem(method, programPoint));
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2076
        return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2077
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2078
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2079
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2080
     * Retrieve the top <tt>count</tt> types on the stack without modifying it.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2081
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2082
     * @param count number of types to return
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2083
     * @return array of Types
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2084
     */
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2085
    protected Type[] getTypesFromStack(final int count) {
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  2086
        return stack.getTopTypes(count);
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  2087
    }
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2088
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  2089
    int[] getLocalLoadsOnStack(final int from, final int to) {
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  2090
        return stack.getLocalLoads(from, to);
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  2091
    }
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  2092
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  2093
    int getStackSize() {
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  2094
        return stack.size();
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2095
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2096
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2097
    int getFirstTemp() {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2098
        return stack.firstTemp;
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2099
    }
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2100
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2101
    int getUsedSlotsWithLiveTemporaries() {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2102
        return stack.getUsedSlotsWithLiveTemporaries();
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2103
    }
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2104
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2105
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2106
     * Helper function to generate a function signature based on stack contents
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2107
     * and argument count and return type
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2108
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2109
     * @param returnType return type
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2110
     * @param argCount   argument count
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2111
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2112
     * @return function signature for stack contents
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2113
     */
16210
8ad1381b69d0 8007215: Varargs broken for the case of passing more than the arg limit arguments.
lagergren
parents: 16209
diff changeset
  2114
    private String getDynamicSignature(final Type returnType, final int argCount) {
8ad1381b69d0 8007215: Varargs broken for the case of passing more than the arg limit arguments.
lagergren
parents: 16209
diff changeset
  2115
        final Type[]         paramTypes = new Type[argCount];
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2116
17527
6e45d9c2328c 8014329: Slim down the label stack structure in CodeGenerator
lagergren
parents: 17524
diff changeset
  2117
        int pos = 0;
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2118
        for (int i = argCount - 1; i >= 0; i--) {
17527
6e45d9c2328c 8014329: Slim down the label stack structure in CodeGenerator
lagergren
parents: 17524
diff changeset
  2119
            paramTypes[i] = stack.peek(pos++);
16210
8ad1381b69d0 8007215: Varargs broken for the case of passing more than the arg limit arguments.
lagergren
parents: 16209
diff changeset
  2120
        }
8ad1381b69d0 8007215: Varargs broken for the case of passing more than the arg limit arguments.
lagergren
parents: 16209
diff changeset
  2121
        final String descriptor = Type.getMethodDescriptor(returnType, paramTypes);
8ad1381b69d0 8007215: Varargs broken for the case of passing more than the arg limit arguments.
lagergren
parents: 16209
diff changeset
  2122
        for (int i = 0; i < argCount; i++) {
8ad1381b69d0 8007215: Varargs broken for the case of passing more than the arg limit arguments.
lagergren
parents: 16209
diff changeset
  2123
            popType(paramTypes[argCount - i - 1]);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2124
        }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2125
16210
8ad1381b69d0 8007215: Varargs broken for the case of passing more than the arg limit arguments.
lagergren
parents: 16209
diff changeset
  2126
        return descriptor;
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2127
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2128
24738
be2026c9717c 8039746: Transform applies to calls wherever possible, for ScriptFunctions and JSObjects.
lagergren
parents: 24725
diff changeset
  2129
    MethodEmitter invalidateSpecialName(final String name) {
26768
751b0f427090 8025435: Optimistic builtins support, implemented initial optimistic versions of push, pop, and charCodeAt
lagergren
parents: 26377
diff changeset
  2130
        switch (name) {
751b0f427090 8025435: Optimistic builtins support, implemented initial optimistic versions of push, pop, and charCodeAt
lagergren
parents: 26377
diff changeset
  2131
        case "apply":
751b0f427090 8025435: Optimistic builtins support, implemented initial optimistic versions of push, pop, and charCodeAt
lagergren
parents: 26377
diff changeset
  2132
        case "call":
751b0f427090 8025435: Optimistic builtins support, implemented initial optimistic versions of push, pop, and charCodeAt
lagergren
parents: 26377
diff changeset
  2133
            debug("invalidate_name", "name=", name);
751b0f427090 8025435: Optimistic builtins support, implemented initial optimistic versions of push, pop, and charCodeAt
lagergren
parents: 26377
diff changeset
  2134
            load("Function");
751b0f427090 8025435: Optimistic builtins support, implemented initial optimistic versions of push, pop, and charCodeAt
lagergren
parents: 26377
diff changeset
  2135
            invoke(ScriptRuntime.INVALIDATE_RESERVED_BUILTIN_NAME);
751b0f427090 8025435: Optimistic builtins support, implemented initial optimistic versions of push, pop, and charCodeAt
lagergren
parents: 26377
diff changeset
  2136
            break;
26886
18c744ab4df2 8059211: Changed ArrayData.length accessor to use the protected field and fixed javadoc warnings related to this
lagergren
parents: 26768
diff changeset
  2137
        default:
18c744ab4df2 8059211: Changed ArrayData.length accessor to use the protected field and fixed javadoc warnings related to this
lagergren
parents: 26768
diff changeset
  2138
            break;
24738
be2026c9717c 8039746: Transform applies to calls wherever possible, for ScriptFunctions and JSObjects.
lagergren
parents: 24725
diff changeset
  2139
        }
be2026c9717c 8039746: Transform applies to calls wherever possible, for ScriptFunctions and JSObjects.
lagergren
parents: 24725
diff changeset
  2140
        return this;
be2026c9717c 8039746: Transform applies to calls wherever possible, for ScriptFunctions and JSObjects.
lagergren
parents: 24725
diff changeset
  2141
    }
be2026c9717c 8039746: Transform applies to calls wherever possible, for ScriptFunctions and JSObjects.
lagergren
parents: 24725
diff changeset
  2142
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2143
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2144
     * Generate a dynamic new
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2145
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2146
     * @param argCount  number of arguments
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2147
     * @param flags     callsite flags
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2148
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2149
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2150
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  2151
    MethodEmitter dynamicNew(final int argCount, final int flags) {
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  2152
        assert !isOptimistic(flags);
17246
a1bcf4d2bff1 8013203: A collection of smaller speedups to compilation pipeline
attila
parents: 17233
diff changeset
  2153
        debug("dynamic_new", "argcount=", argCount);
16210
8ad1381b69d0 8007215: Varargs broken for the case of passing more than the arg limit arguments.
lagergren
parents: 16209
diff changeset
  2154
        final String signature = getDynamicSignature(Type.OBJECT, argCount);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2155
        method.visitInvokeDynamicInsn("dyn:new", signature, LINKERBOOTSTRAP, flags);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2156
        pushType(Type.OBJECT); //TODO fix result type
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2157
        return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2158
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2159
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2160
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2161
     * Generate a dynamic call
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2162
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2163
     * @param returnType return type
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2164
     * @param argCount   number of arguments
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2165
     * @param flags      callsite flags
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2166
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2167
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2168
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  2169
    MethodEmitter dynamicCall(final Type returnType, final int argCount, final int flags) {
17246
a1bcf4d2bff1 8013203: A collection of smaller speedups to compilation pipeline
attila
parents: 17233
diff changeset
  2170
        debug("dynamic_call", "args=", argCount, "returnType=", returnType);
16210
8ad1381b69d0 8007215: Varargs broken for the case of passing more than the arg limit arguments.
lagergren
parents: 16209
diff changeset
  2171
        final String signature = getDynamicSignature(returnType, argCount); // +1 because the function itself is the 1st parameter for dynamic calls (what you call - call target)
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2172
        debug("   signature", signature);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2173
        method.visitInvokeDynamicInsn("dyn:call", signature, LINKERBOOTSTRAP, flags);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2174
        pushType(returnType);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2175
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2176
        return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2177
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2178
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  2179
    MethodEmitter dynamicArrayPopulatorCall(final int argCount, final int startIndex) {
24738
be2026c9717c 8039746: Transform applies to calls wherever possible, for ScriptFunctions and JSObjects.
lagergren
parents: 24725
diff changeset
  2180
        debug("populate_array", "args=", argCount, "startIndex=", startIndex);
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  2181
        final String signature = getDynamicSignature(Type.OBJECT_ARRAY, argCount);
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  2182
        method.visitInvokeDynamicInsn("populateArray", signature, POPULATE_ARRAY_BOOTSTRAP, startIndex);
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  2183
        pushType(Type.OBJECT_ARRAY);
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  2184
        return this;
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  2185
    }
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  2186
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2187
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2188
     * Generate a dynamic call for a runtime node
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2189
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2190
     * @param name       tag for the invoke dynamic for this runtime node
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2191
     * @param returnType return type
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2192
     * @param request    RuntimeNode request
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2193
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2194
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2195
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  2196
    MethodEmitter dynamicRuntimeCall(final String name, final Type returnType, final RuntimeNode.Request request) {
17246
a1bcf4d2bff1 8013203: A collection of smaller speedups to compilation pipeline
attila
parents: 17233
diff changeset
  2197
        debug("dynamic_runtime_call", name, "args=", request.getArity(), "returnType=", returnType);
16210
8ad1381b69d0 8007215: Varargs broken for the case of passing more than the arg limit arguments.
lagergren
parents: 16209
diff changeset
  2198
        final String signature = getDynamicSignature(returnType, request.getArity());
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2199
        debug("   signature", signature);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2200
        method.visitInvokeDynamicInsn(name, signature, RUNTIMEBOOTSTRAP);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2201
        pushType(returnType);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2202
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2203
        return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2204
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2205
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2206
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2207
     * Generate dynamic getter. Pop scope from stack. Push result
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2208
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2209
     * @param valueType type of the value to set
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2210
     * @param name      name of property
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2211
     * @param flags     call site flags
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2212
     * @param isMethod  should it prefer retrieving methods
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2213
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2214
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2215
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  2216
    MethodEmitter dynamicGet(final Type valueType, final String name, final int flags, final boolean isMethod) {
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  2217
        debug("dynamic_get", name, valueType, getProgramPoint(flags));
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2218
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2219
        Type type = valueType;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2220
        if (type.isObject() || type.isBoolean()) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2221
            type = Type.OBJECT; //promote e.g strings to object generic setter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2222
        }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2223
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2224
        popType(Type.SCOPE);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2225
        method.visitInvokeDynamicInsn((isMethod ? "dyn:getMethod|getProp|getElem:" : "dyn:getProp|getElem|getMethod:") +
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2226
                NameCodec.encode(name), Type.getMethodDescriptor(type, Type.OBJECT), LINKERBOOTSTRAP, flags);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2227
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2228
        pushType(type);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2229
        convert(valueType); //most probably a nop
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2230
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2231
        return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2232
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2233
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2234
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2235
     * Generate dynamic setter. Pop receiver and property from stack.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2236
     *
26377
028dad61662f 8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents: 25865
diff changeset
  2237
     * @param name  name of property
028dad61662f 8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents: 25865
diff changeset
  2238
     * @param flags call site flags
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2239
     */
20928
3ff39d5c8c08 8026137: Fix Issues with Binary Evaluation Order
lagergren
parents: 19095
diff changeset
  2240
     void dynamicSet(final String name, final int flags) {
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  2241
         assert !isOptimistic(flags);
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  2242
         debug("dynamic_set", name, peekType());
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2243
20928
3ff39d5c8c08 8026137: Fix Issues with Binary Evaluation Order
lagergren
parents: 19095
diff changeset
  2244
        Type type = peekType();
20937
6159db2e332a 8026292: Megamorphic setter fails with boolean value
hannesw
parents: 20928
diff changeset
  2245
        if (type.isObject() || type.isBoolean()) { //promote strings to objects etc
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2246
            type = Type.OBJECT;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2247
            convert(Type.OBJECT); //TODO bad- until we specialize boolean setters,
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2248
        }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2249
        popType(type);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2250
        popType(Type.SCOPE);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2251
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2252
        method.visitInvokeDynamicInsn("dyn:setProp|setElem:" + NameCodec.encode(name), methodDescriptor(void.class, Object.class, type.getTypeClass()), LINKERBOOTSTRAP, flags);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2253
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2254
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2255
     /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2256
     * Dynamic getter for indexed structures. Pop index and receiver from stack,
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2257
     * generate appropriate signatures based on types
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2258
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2259
     * @param result result type for getter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2260
     * @param flags call site flags for getter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2261
     * @param isMethod should it prefer retrieving methods
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2262
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2263
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2264
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  2265
    MethodEmitter dynamicGetIndex(final Type result, final int flags, final boolean isMethod) {
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  2266
        assert result.getTypeClass().isPrimitive() || result.getTypeClass() == Object.class;
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  2267
        debug("dynamic_get_index", peekType(1), "[", peekType(), "]", getProgramPoint(flags));
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2268
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2269
        Type resultType = result;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2270
        if (result.isBoolean()) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2271
            resultType = Type.OBJECT; // INT->OBJECT to avoid another dimension of cross products in the getters. TODO
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2272
        }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2273
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2274
        Type index = peekType();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2275
        if (index.isObject() || index.isBoolean()) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2276
            index = Type.OBJECT; //e.g. string->object
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2277
            convert(Type.OBJECT);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2278
        }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2279
        popType();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2280
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2281
        popType(Type.OBJECT);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2282
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2283
        final String signature = Type.getMethodDescriptor(resultType, Type.OBJECT /*e.g STRING->OBJECT*/, index);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2284
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  2285
        method.visitInvokeDynamicInsn(isMethod ? "dyn:getMethod|getElem|getProp" : "dyn:getElem|getProp|getMethod", signature, LINKERBOOTSTRAP, flags);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2286
        pushType(resultType);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2287
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2288
        if (result.isBoolean()) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2289
            convert(Type.BOOLEAN);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2290
        }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2291
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2292
        return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2293
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2294
24725
7bb1f687a852 8033334: Make sure that scope depth information is maintained in the RecompilableScriptFunctionDatas, to avoid unnecessary slow proto linkage when doing on demand compilation
lagergren
parents: 24719
diff changeset
  2295
    private static String getProgramPoint(final int flags) {
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  2296
        if((flags & CALLSITE_OPTIMISTIC) == 0) {
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  2297
            return "";
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  2298
        }
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  2299
        return "pp=" + String.valueOf((flags & (-1 << CALLSITE_PROGRAM_POINT_SHIFT)) >> CALLSITE_PROGRAM_POINT_SHIFT);
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  2300
    }
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  2301
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2302
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2303
     * Dynamic setter for indexed structures. Pop value, index and receiver from
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2304
     * stack, generate appropriate signature based on types
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2305
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2306
     * @param flags call site flags for setter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2307
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  2308
    void dynamicSetIndex(final int flags) {
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  2309
        assert !isOptimistic(flags);
17246
a1bcf4d2bff1 8013203: A collection of smaller speedups to compilation pipeline
attila
parents: 17233
diff changeset
  2310
        debug("dynamic_set_index", peekType(2), "[", peekType(1), "] =", peekType());
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2311
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2312
        Type value = peekType();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2313
        if (value.isObject() || value.isBoolean()) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2314
            value = Type.OBJECT; //e.g. STRING->OBJECT - one descriptor for all object types
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2315
            convert(Type.OBJECT);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2316
        }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2317
        popType();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2318
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2319
        Type index = peekType();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2320
        if (index.isObject() || index.isBoolean()) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2321
            index = Type.OBJECT; //e.g. string->object
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2322
            convert(Type.OBJECT);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2323
        }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2324
        popType(index);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2325
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2326
        final Type receiver = popType(Type.OBJECT);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2327
        assert receiver.isObject();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2328
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2329
        method.visitInvokeDynamicInsn("dyn:setElem|setProp", methodDescriptor(void.class, receiver.getTypeClass(), index.getTypeClass(), value.getTypeClass()), LINKERBOOTSTRAP, flags);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2330
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2331
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2332
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2333
     * Load a key value in the proper form.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2334
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2335
     * @param key
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2336
     */
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2337
    //TODO move this and break it apart
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2338
    MethodEmitter loadKey(final Object key) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2339
        if (key instanceof IdentNode) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2340
            method.visitLdcInsn(((IdentNode) key).getName());
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2341
        } else if (key instanceof LiteralNode) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2342
            method.visitLdcInsn(((LiteralNode<?>)key).getString());
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2343
        } else {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2344
            method.visitLdcInsn(JSType.toString(key));
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2345
        }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2346
        pushType(Type.OBJECT); //STRING
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2347
        return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2348
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2349
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2350
     @SuppressWarnings("fallthrough")
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2351
     private static Type fieldType(final String desc) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2352
         switch (desc) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2353
         case "Z":
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2354
         case "B":
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2355
         case "C":
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2356
         case "S":
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2357
         case "I":
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2358
             return Type.INT;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2359
         case "F":
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2360
             assert false;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2361
         case "D":
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2362
             return Type.NUMBER;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2363
         case "J":
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2364
             return Type.LONG;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2365
         default:
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2366
             assert desc.startsWith("[") || desc.startsWith("L") : desc + " is not an object type";
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2367
             switch (desc.charAt(0)) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2368
             case 'L':
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2369
                 return Type.OBJECT;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2370
             case '[':
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2371
                 return Type.typeFor(Array.newInstance(fieldType(desc.substring(1)).getTypeClass(), 0).getClass());
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2372
             default:
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2373
                 assert false;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2374
             }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2375
             return Type.OBJECT;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2376
         }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2377
     }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2378
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2379
     /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2380
      * Generate get for a field access
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2381
      *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2382
      * @param fa the field access
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2383
      *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2384
      * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2385
      */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  2386
    MethodEmitter getField(final FieldAccess fa) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2387
        return fa.get(this);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2388
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2389
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2390
     /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2391
      * Generate set for a field access
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2392
      *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2393
      * @param fa the field access
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2394
      */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  2395
    void putField(final FieldAccess fa) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2396
        fa.put(this);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2397
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2398
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2399
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2400
     * Get the value of a non-static field, pop the receiver from the stack,
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2401
     * push value to the stack
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2402
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2403
     * @param className        class
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2404
     * @param fieldName        field name
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2405
     * @param fieldDescriptor  field descriptor
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2406
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2407
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2408
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  2409
    MethodEmitter getField(final String className, final String fieldName, final String fieldDescriptor) {
17246
a1bcf4d2bff1 8013203: A collection of smaller speedups to compilation pipeline
attila
parents: 17233
diff changeset
  2410
        debug("getfield", "receiver=", peekType(), className, ".", fieldName, fieldDescriptor);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2411
        final Type receiver = popType();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2412
        assert receiver.isObject();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2413
        method.visitFieldInsn(GETFIELD, className, fieldName, fieldDescriptor);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2414
        pushType(fieldType(fieldDescriptor));
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2415
        return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2416
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2417
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2418
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2419
     * Get the value of a static field, push it to the stack
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2420
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2421
     * @param className        class
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2422
     * @param fieldName        field name
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2423
     * @param fieldDescriptor  field descriptor
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2424
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2425
     * @return the method emitter
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2426
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  2427
    MethodEmitter getStatic(final String className, final String fieldName, final String fieldDescriptor) {
17246
a1bcf4d2bff1 8013203: A collection of smaller speedups to compilation pipeline
attila
parents: 17233
diff changeset
  2428
        debug("getstatic", className, ".", fieldName, ".", fieldDescriptor);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2429
        method.visitFieldInsn(GETSTATIC, className, fieldName, fieldDescriptor);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2430
        pushType(fieldType(fieldDescriptor));
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2431
        return this;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2432
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2433
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2434
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2435
     * Pop value and field from stack and write to a non-static field
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2436
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2437
     * @param className       class
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2438
     * @param fieldName       field name
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2439
     * @param fieldDescriptor field descriptor
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2440
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  2441
    void putField(final String className, final String fieldName, final String fieldDescriptor) {
17246
a1bcf4d2bff1 8013203: A collection of smaller speedups to compilation pipeline
attila
parents: 17233
diff changeset
  2442
        debug("putfield", "receiver=", peekType(1), "value=", peekType());
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2443
        popType(fieldType(fieldDescriptor));
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2444
        popType(Type.OBJECT);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2445
        method.visitFieldInsn(PUTFIELD, className, fieldName, fieldDescriptor);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2446
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2447
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2448
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2449
     * Pop value from stack and write to a static field
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2450
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2451
     * @param className       class
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2452
     * @param fieldName       field name
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2453
     * @param fieldDescriptor field descriptor
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2454
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  2455
    void putStatic(final String className, final String fieldName, final String fieldDescriptor) {
17246
a1bcf4d2bff1 8013203: A collection of smaller speedups to compilation pipeline
attila
parents: 17233
diff changeset
  2456
        debug("putfield", "value=", peekType());
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2457
        popType(fieldType(fieldDescriptor));
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2458
        method.visitFieldInsn(PUTSTATIC, className, fieldName, fieldDescriptor);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2459
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2460
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2461
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2462
     * Register line number at a label
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2463
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2464
     * @param line  line number
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2465
     */
17524
703643aeb0d6 8013914: Removed explicit LineNumberNodes that were too brittle when code moves around, and also introduced unnecessary footprint. Introduced the Statement node and fixed dead code elimination issues that were discovered by the absense of labels for LineNumberNodes.
lagergren
parents: 17255
diff changeset
  2466
    void lineNumber(final int line) {
24745
3a6e1477362b 8041434: Add synchronization to the common global constants structure
lagergren
parents: 24744
diff changeset
  2467
        if (context.getEnv()._debug_lines) {
17524
703643aeb0d6 8013914: Removed explicit LineNumberNodes that were too brittle when code moves around, and also introduced unnecessary footprint. Introduced the Statement node and fixed dead code elimination issues that were discovered by the absense of labels for LineNumberNodes.
lagergren
parents: 17255
diff changeset
  2468
            debug_label("[LINE]", line);
703643aeb0d6 8013914: Removed explicit LineNumberNodes that were too brittle when code moves around, and also introduced unnecessary footprint. Introduced the Statement node and fixed dead code elimination issues that were discovered by the absense of labels for LineNumberNodes.
lagergren
parents: 17255
diff changeset
  2469
            final jdk.internal.org.objectweb.asm.Label l = new jdk.internal.org.objectweb.asm.Label();
703643aeb0d6 8013914: Removed explicit LineNumberNodes that were too brittle when code moves around, and also introduced unnecessary footprint. Introduced the Statement node and fixed dead code elimination issues that were discovered by the absense of labels for LineNumberNodes.
lagergren
parents: 17255
diff changeset
  2470
            method.visitLabel(l);
703643aeb0d6 8013914: Removed explicit LineNumberNodes that were too brittle when code moves around, and also introduced unnecessary footprint. Introduced the Statement node and fixed dead code elimination issues that were discovered by the absense of labels for LineNumberNodes.
lagergren
parents: 17255
diff changeset
  2471
            method.visitLineNumber(line, l);
703643aeb0d6 8013914: Removed explicit LineNumberNodes that were too brittle when code moves around, and also introduced unnecessary footprint. Introduced the Statement node and fixed dead code elimination issues that were discovered by the absense of labels for LineNumberNodes.
lagergren
parents: 17255
diff changeset
  2472
        }
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2473
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2474
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2475
    void beforeJoinPoint(final JoinPredecessor joinPredecessor) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2476
        LocalVariableConversion next = joinPredecessor.getLocalVariableConversion();
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2477
        while(next != null) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2478
            final Symbol symbol = next.getSymbol();
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2479
            if(next.isLive()) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2480
                emitLocalVariableConversion(next, true);
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2481
            } else {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2482
                markDeadLocalVariable(symbol);
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2483
            }
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2484
            next = next.getNext();
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2485
        }
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2486
    }
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2487
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2488
    void beforeTry(final TryNode tryNode, final Label recovery) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2489
        LocalVariableConversion next = tryNode.getLocalVariableConversion();
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2490
        while(next != null) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2491
            if(next.isLive()) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2492
                final Type to = emitLocalVariableConversion(next, false);
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2493
                recovery.getStack().onLocalStore(to, next.getSymbol().getSlot(to), true);
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2494
            }
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2495
            next = next.getNext();
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2496
        }
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2497
    }
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2498
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2499
    private Type emitLocalVariableConversion(final LocalVariableConversion conversion, final boolean onlySymbolLiveValue) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2500
        final Type from = conversion.getFrom();
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2501
        final Type to = conversion.getTo();
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2502
        final Symbol symbol = conversion.getSymbol();
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2503
        assert symbol.isBytecodeLocal();
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2504
        if(from == Type.UNDEFINED) {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2505
            loadUndefined(to);
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2506
        } else {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2507
            load(symbol, from).convert(to);
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2508
        }
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2509
        store(symbol, to, onlySymbolLiveValue);
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2510
        return to;
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2511
    }
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2512
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2513
    /*
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2514
     * Debugging below
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2515
     */
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2516
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2517
    private final FieldAccess ERR_STREAM       = staticField(System.class, "err", PrintStream.class);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2518
    private final Call        PRINT            = virtualCallNoLookup(PrintStream.class, "print", void.class, Object.class);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2519
    private final Call        PRINTLN          = virtualCallNoLookup(PrintStream.class, "println", void.class, Object.class);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2520
    private final Call        PRINT_STACKTRACE = virtualCallNoLookup(Throwable.class, "printStackTrace", void.class);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2521
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2522
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2523
     * Emit a System.err.print statement of whatever is on top of the bytecode stack
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2524
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  2525
     void print() {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2526
         getField(ERR_STREAM);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2527
         swap();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2528
         convert(Type.OBJECT);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2529
         invoke(PRINT);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2530
     }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2531
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2532
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2533
     * Emit a System.err.println statement of whatever is on top of the bytecode stack
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2534
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  2535
     void println() {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2536
         getField(ERR_STREAM);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2537
         swap();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2538
         convert(Type.OBJECT);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2539
         invoke(PRINTLN);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2540
     }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2541
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2542
     /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2543
      * Emit a System.err.print statement
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2544
      * @param string string to print
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2545
      */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  2546
     void print(final String string) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2547
         getField(ERR_STREAM);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2548
         load(string);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2549
         invoke(PRINT);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2550
     }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2551
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2552
     /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2553
      * Emit a System.err.println statement
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2554
      * @param string string to print
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2555
      */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  2556
     void println(final String string) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2557
         getField(ERR_STREAM);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2558
         load(string);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2559
         invoke(PRINTLN);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2560
     }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2561
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2562
     /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2563
      * Print a stacktrace to S
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2564
      */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  2565
     void stacktrace() {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2566
         _new(Throwable.class);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2567
         dup();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2568
         invoke(constructorNoLookup(Throwable.class));
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2569
         invoke(PRINT_STACKTRACE);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2570
     }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2571
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2572
    private static int linePrefix = 0;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2573
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2574
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2575
     * Debug function that outputs generated bytecode and stack contents
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2576
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2577
     * @param args debug information to print
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2578
     */
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2579
    private void debug(final Object... args) {
24744
5290da85fc3d 8038426: Move all loggers from process wide scope into Global scope
lagergren
parents: 24738
diff changeset
  2580
        if (debug) {
17756
daaa1e643f71 8006069: Range analysis first iteration, runtime specializations
lagergren
parents: 17527
diff changeset
  2581
            debug(30, args);
daaa1e643f71 8006069: Range analysis first iteration, runtime specializations
lagergren
parents: 17527
diff changeset
  2582
        }
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2583
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2584
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2585
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2586
     * Debug function that outputs generated bytecode and stack contents
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2587
     * for a label - indentation is currently the only thing that differs
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2588
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2589
     * @param args debug information to print
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2590
     */
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2591
    private void debug_label(final Object... args) {
24744
5290da85fc3d 8038426: Move all loggers from process wide scope into Global scope
lagergren
parents: 24738
diff changeset
  2592
        if (debug) {
17756
daaa1e643f71 8006069: Range analysis first iteration, runtime specializations
lagergren
parents: 17527
diff changeset
  2593
            debug(22, args);
daaa1e643f71 8006069: Range analysis first iteration, runtime specializations
lagergren
parents: 17527
diff changeset
  2594
        }
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2595
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2596
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2597
    private void debug(final int padConstant, final Object... args) {
24744
5290da85fc3d 8038426: Move all loggers from process wide scope into Global scope
lagergren
parents: 24738
diff changeset
  2598
        if (debug) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2599
            final StringBuilder sb = new StringBuilder();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2600
            int pad;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2601
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2602
            sb.append('#');
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2603
            sb.append(++linePrefix);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2604
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2605
            pad = 5 - sb.length();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2606
            while (pad > 0) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2607
                sb.append(' ');
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2608
                pad--;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2609
            }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2610
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2611
            if (isReachable() && !stack.isEmpty()) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2612
                sb.append("{");
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2613
                sb.append(stack.size());
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2614
                sb.append(":");
17527
6e45d9c2328c 8014329: Slim down the label stack structure in CodeGenerator
lagergren
parents: 17524
diff changeset
  2615
                for (int pos = 0; pos < stack.size(); pos++) {
6e45d9c2328c 8014329: Slim down the label stack structure in CodeGenerator
lagergren
parents: 17524
diff changeset
  2616
                    final Type t = stack.peek(pos);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2617
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2618
                    if (t == Type.SCOPE) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2619
                        sb.append("scope");
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2620
                    } else if (t == Type.THIS) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2621
                        sb.append("this");
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2622
                    } else if (t.isObject()) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2623
                        String desc = t.getDescriptor();
16210
8ad1381b69d0 8007215: Varargs broken for the case of passing more than the arg limit arguments.
lagergren
parents: 16209
diff changeset
  2624
                        int i;
8ad1381b69d0 8007215: Varargs broken for the case of passing more than the arg limit arguments.
lagergren
parents: 16209
diff changeset
  2625
                        for (i = 0; desc.charAt(i) == '[' && i < desc.length(); i++) {
8ad1381b69d0 8007215: Varargs broken for the case of passing more than the arg limit arguments.
lagergren
parents: 16209
diff changeset
  2626
                            sb.append('[');
8ad1381b69d0 8007215: Varargs broken for the case of passing more than the arg limit arguments.
lagergren
parents: 16209
diff changeset
  2627
                        }
8ad1381b69d0 8007215: Varargs broken for the case of passing more than the arg limit arguments.
lagergren
parents: 16209
diff changeset
  2628
                        desc = desc.substring(i);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2629
                        final int slash = desc.lastIndexOf('/');
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2630
                        if (slash != -1) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2631
                            desc = desc.substring(slash + 1, desc.length() - 1);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2632
                        }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2633
                        if ("Object".equals(desc)) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2634
                            sb.append('O');
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2635
                        } else {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2636
                            sb.append(desc);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2637
                        }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2638
                    } else {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2639
                        sb.append(t.getDescriptor());
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2640
                    }
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  2641
                    final int loadIndex = stack.localLoads[stack.sp - 1 - pos];
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  2642
                    if(loadIndex != Label.Stack.NON_LOAD) {
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  2643
                        sb.append('(').append(loadIndex).append(')');
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  2644
                    }
17527
6e45d9c2328c 8014329: Slim down the label stack structure in CodeGenerator
lagergren
parents: 17524
diff changeset
  2645
                    if (pos + 1 < stack.size()) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2646
                        sb.append(' ');
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2647
                    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2648
                }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2649
                sb.append('}');
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2650
                sb.append(' ');
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2651
            }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2652
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2653
            pad = padConstant - sb.length();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2654
            while (pad > 0) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2655
                sb.append(' ');
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2656
                pad--;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2657
            }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2658
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2659
            for (final Object arg : args) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2660
                sb.append(arg);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2661
                sb.append(' ');
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2662
            }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2663
24745
3a6e1477362b 8041434: Add synchronization to the common global constants structure
lagergren
parents: 24744
diff changeset
  2664
            if (context.getEnv() != null) { //early bootstrap code doesn't have inited context yet
24744
5290da85fc3d 8038426: Move all loggers from process wide scope into Global scope
lagergren
parents: 24738
diff changeset
  2665
                log.info(sb);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2666
                if (DEBUG_TRACE_LINE == linePrefix) {
24744
5290da85fc3d 8038426: Move all loggers from process wide scope into Global scope
lagergren
parents: 24738
diff changeset
  2667
                    new Throwable().printStackTrace(log.getOutputStream());
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2668
                }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2669
            }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2670
        }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2671
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2672
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2673
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2674
     * Set the current function node being emitted
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2675
     * @param functionNode the function node
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2676
     */
16240
e1468b33e201 8008239: Unpublicized parts of the code generator package that were only package internal.
lagergren
parents: 16234
diff changeset
  2677
    void setFunctionNode(final FunctionNode functionNode) {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2678
        this.functionNode = functionNode;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2679
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2680
17233
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents: 16530
diff changeset
  2681
    boolean hasReturn() {
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents: 16530
diff changeset
  2682
        return hasReturn;
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2683
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2684
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2685
    /**
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2686
     * Invoke to enforce assertions preventing load from a local variable slot that's known to not have been written to.
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2687
     * Used by CodeGenerator, as it strictly enforces tracking of stores. Simpler uses of MethodEmitter, e.g. those
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2688
     * for creating initializers for structure  classes, array getters, etc. don't have strict tracking of stores,
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2689
     * therefore they would fail if they had this assertion turned on.
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2690
     */
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2691
    void setPreventUndefinedLoad() {
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24745
diff changeset
  2692
        this.preventUndefinedLoad = true;
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2693
    }
17233
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents: 16530
diff changeset
  2694
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  2695
    private static boolean isOptimistic(final int flags) {
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  2696
        return (flags & CALLSITE_OPTIMISTIC) != 0;
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22368
diff changeset
  2697
    }
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
  2698
}