src/jdk.compiler/share/classes/com/sun/tools/javac/jvm/Gen.java
author jlahoda
Wed, 27 Nov 2019 09:00:01 +0100
changeset 59285 7799a51dbe30
parent 55340 ef577fa0dd10
permissions -rw-r--r--
8231826: Implement javac changes for pattern matching for instanceof Reviewed-by: mcimadamore Contributed-by: brian.goetz@oracle.com, gavin.bierman@oracle.com, maurizio.cimadamore@oracle.com, srikanth.adayapalam@oracle.com, vicente.romero@oracle.com, jan.lahoda@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
54762
64d9a4d582bc 8222949: add condy support to javac's pool API
vromero
parents: 54568
diff changeset
     2
 * Copyright (c) 1999, 2019, Oracle and/or its affiliates. All rights reserved.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
06bc494ca11e Initial load
duke
parents:
diff changeset
     4
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
06bc494ca11e Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 5492
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 5492
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    10
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
06bc494ca11e Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
06bc494ca11e Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
06bc494ca11e Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
06bc494ca11e Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
06bc494ca11e Initial load
duke
parents:
diff changeset
    16
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
06bc494ca11e Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
06bc494ca11e Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
06bc494ca11e Initial load
duke
parents:
diff changeset
    20
 *
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 5492
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 5492
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 5492
diff changeset
    23
 * questions.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    24
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    25
06bc494ca11e Initial load
duke
parents:
diff changeset
    26
package com.sun.tools.javac.jvm;
19941
8b91e8eb2d20 7047734: javac, the LVT is not generated correctly in several scenarios
vromero
parents: 19923
diff changeset
    27
54568
b2ed96c35687 8222289: Overhaul logic for reading/writing constant pool entries
mcimadamore
parents: 52936
diff changeset
    28
import com.sun.tools.javac.jvm.PoolConstant.LoadableConstant;
45220
7c775294b6f1 8180660: missing LNT entry for finally block
vromero
parents: 45088
diff changeset
    29
import com.sun.tools.javac.tree.TreeInfo.PosKind;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    30
import com.sun.tools.javac.util.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    31
import com.sun.tools.javac.util.JCDiagnostic.DiagnosticPosition;
06bc494ca11e Initial load
duke
parents:
diff changeset
    32
import com.sun.tools.javac.util.List;
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
import com.sun.tools.javac.code.*;
17578
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16807
diff changeset
    34
import com.sun.tools.javac.code.Attribute.TypeCompound;
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16807
diff changeset
    35
import com.sun.tools.javac.code.Symbol.VarSymbol;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    36
import com.sun.tools.javac.comp.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    37
import com.sun.tools.javac.tree.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    38
06bc494ca11e Initial load
duke
parents:
diff changeset
    39
import com.sun.tools.javac.code.Symbol.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    40
import com.sun.tools.javac.code.Type.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    41
import com.sun.tools.javac.jvm.Code.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    42
import com.sun.tools.javac.jvm.Items.*;
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45316
diff changeset
    43
import com.sun.tools.javac.resources.CompilerProperties.Errors;
13077
16fb753bb5dc 7174143: encapsulate doc comment table
jjg
parents: 11314
diff changeset
    44
import com.sun.tools.javac.tree.EndPosTable;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    45
import com.sun.tools.javac.tree.JCTree.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    46
06bc494ca11e Initial load
duke
parents:
diff changeset
    47
import static com.sun.tools.javac.code.Flags.*;
27224
228abfa87080 8054457: Refactor Symbol kinds from small ints to an enum
emc
parents: 27123
diff changeset
    48
import static com.sun.tools.javac.code.Kinds.Kind.*;
14359
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 14259
diff changeset
    49
import static com.sun.tools.javac.code.TypeTag.*;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
import static com.sun.tools.javac.jvm.ByteCodes.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
import static com.sun.tools.javac.jvm.CRTFlags.*;
11314
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11055
diff changeset
    52
import static com.sun.tools.javac.main.Option.*;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 10811
diff changeset
    53
import static com.sun.tools.javac.tree.JCTree.Tag.*;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
/** This pass maps flat Java (i.e. without inner classes) to bytecodes.
06bc494ca11e Initial load
duke
parents:
diff changeset
    56
 *
5847
1908176fd6e3 6944312: Potential rebranding issues in openjdk/langtools repository sources
jjg
parents: 5520
diff changeset
    57
 *  <p><b>This is NOT part of any supported API.
1908176fd6e3 6944312: Potential rebranding issues in openjdk/langtools repository sources
jjg
parents: 5520
diff changeset
    58
 *  If you write code that depends on this, you do so at your own risk.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
 *  This code and its internal interfaces are subject to change or
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
 *  deletion without notice.</b>
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
public class Gen extends JCTree.Visitor {
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 21897
diff changeset
    63
    protected static final Context.Key<Gen> genKey = new Context.Key<>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
    private final Log log;
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
    private final Symtab syms;
06bc494ca11e Initial load
duke
parents:
diff changeset
    67
    private final Check chk;
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
    private final Resolve rs;
06bc494ca11e Initial load
duke
parents:
diff changeset
    69
    private final TreeMaker make;
1260
a772ba9ba43d 6574134: Allow for alternative implementation of Name Table with garbage collection of name bytes
jjg
parents: 10
diff changeset
    70
    private final Names names;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
    private final Target target;
43765
f2f8bfe6bcb5 8169200: Gen has a reference to Flow that is not used, should be removed
vromero
parents: 42828
diff changeset
    72
    private final Name accessDollar;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    73
    private final Types types;
14721
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
    74
    private final Lower lower;
29842
826ac2519523 8031744: Annotations on many Language Model elements are not returned
jjg
parents: 29777
diff changeset
    75
    private final Annotate annotate;
35424
96661d1df628 8148483: JEP 280: Indify String Concatenation
shade
parents: 35418
diff changeset
    76
    private final StringConcat concat;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
    /** Format of stackmap tables to be generated. */
06bc494ca11e Initial load
duke
parents:
diff changeset
    79
    private final Code.StackMapFormat stackMap;
06bc494ca11e Initial load
duke
parents:
diff changeset
    80
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
    /** A type that serves as the expected type for all method expressions.
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    83
    private final Type methodType;
06bc494ca11e Initial load
duke
parents:
diff changeset
    84
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
    public static Gen instance(Context context) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    86
        Gen instance = context.get(genKey);
06bc494ca11e Initial load
duke
parents:
diff changeset
    87
        if (instance == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
    88
            instance = new Gen(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
        return instance;
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
54568
b2ed96c35687 8222289: Overhaul logic for reading/writing constant pool entries
mcimadamore
parents: 52936
diff changeset
    92
    /** Constant pool writer, set by genClass.
14949
45f43822bbde 8000518: Javac generates duplicate name_and_type constant pool entry for class BinaryOpValueExp.java
vromero
parents: 14721
diff changeset
    93
     */
54568
b2ed96c35687 8222289: Overhaul logic for reading/writing constant pool entries
mcimadamore
parents: 52936
diff changeset
    94
    final PoolWriter poolWriter;
14949
45f43822bbde 8000518: Javac generates duplicate name_and_type constant pool entry for class BinaryOpValueExp.java
vromero
parents: 14721
diff changeset
    95
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
    protected Gen(Context context) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
        context.put(genKey, this);
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
1260
a772ba9ba43d 6574134: Allow for alternative implementation of Name Table with garbage collection of name bytes
jjg
parents: 10
diff changeset
    99
        names = Names.instance(context);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
        log = Log.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   101
        syms = Symtab.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   102
        chk = Check.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
        rs = Resolve.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
        make = TreeMaker.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   105
        target = Target.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   106
        types = Types.instance(context);
35424
96661d1df628 8148483: JEP 280: Indify String Concatenation
shade
parents: 35418
diff changeset
   107
        concat = StringConcat.instance(context);
96661d1df628 8148483: JEP 280: Indify String Concatenation
shade
parents: 35418
diff changeset
   108
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   109
        methodType = new MethodType(null, null, null, syms.methodClass);
06bc494ca11e Initial load
duke
parents:
diff changeset
   110
        accessDollar = names.
06bc494ca11e Initial load
duke
parents:
diff changeset
   111
            fromString("access" + target.syntheticNameChar());
14721
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   112
        lower = Lower.instance(context);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   113
06bc494ca11e Initial load
duke
parents:
diff changeset
   114
        Options options = Options.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
        lineDebugInfo =
6721
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6354
diff changeset
   116
            options.isUnset(G_CUSTOM) ||
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6354
diff changeset
   117
            options.isSet(G_CUSTOM, "lines");
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   118
        varDebugInfo =
6721
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6354
diff changeset
   119
            options.isUnset(G_CUSTOM)
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6354
diff changeset
   120
            ? options.isSet(G)
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6354
diff changeset
   121
            : options.isSet(G_CUSTOM, "vars");
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6354
diff changeset
   122
        genCrt = options.isSet(XJCOV);
39599
3c7da4996d8c 8153407: javac, fold debug options
vromero
parents: 37754
diff changeset
   123
        debugCode = options.isSet("debug.code");
50735
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 49280
diff changeset
   124
        disableVirtualizedPrivateInvoke = options.isSet("disableVirtualizedPrivateInvoke");
54568
b2ed96c35687 8222289: Overhaul logic for reading/writing constant pool entries
mcimadamore
parents: 52936
diff changeset
   125
        poolWriter = new PoolWriter(types, names);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   126
25445
603f0c93d5c9 8011044: Remove support for 1.5 and earlier source and target options
ntoda
parents: 25443
diff changeset
   127
        // ignore cldc because we cannot have both stackmap formats
603f0c93d5c9 8011044: Remove support for 1.5 and earlier source and target options
ntoda
parents: 25443
diff changeset
   128
        this.stackMap = StackMapFormat.JSR202;
29842
826ac2519523 8031744: Annotations on many Language Model elements are not returned
jjg
parents: 29777
diff changeset
   129
        annotate = Annotate.instance(context);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   130
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   131
06bc494ca11e Initial load
duke
parents:
diff changeset
   132
    /** Switches
06bc494ca11e Initial load
duke
parents:
diff changeset
   133
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   134
    private final boolean lineDebugInfo;
06bc494ca11e Initial load
duke
parents:
diff changeset
   135
    private final boolean varDebugInfo;
06bc494ca11e Initial load
duke
parents:
diff changeset
   136
    private final boolean genCrt;
06bc494ca11e Initial load
duke
parents:
diff changeset
   137
    private final boolean debugCode;
50735
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 49280
diff changeset
   138
    private boolean disableVirtualizedPrivateInvoke;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   139
06bc494ca11e Initial load
duke
parents:
diff changeset
   140
    /** Code buffer, set by genMethod.
06bc494ca11e Initial load
duke
parents:
diff changeset
   141
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   142
    private Code code;
06bc494ca11e Initial load
duke
parents:
diff changeset
   143
06bc494ca11e Initial load
duke
parents:
diff changeset
   144
    /** Items structure, set by genMethod.
06bc494ca11e Initial load
duke
parents:
diff changeset
   145
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   146
    private Items items;
06bc494ca11e Initial load
duke
parents:
diff changeset
   147
06bc494ca11e Initial load
duke
parents:
diff changeset
   148
    /** Environment for symbol lookup, set by genClass
06bc494ca11e Initial load
duke
parents:
diff changeset
   149
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   150
    private Env<AttrContext> attrEnv;
06bc494ca11e Initial load
duke
parents:
diff changeset
   151
06bc494ca11e Initial load
duke
parents:
diff changeset
   152
    /** The top level tree.
06bc494ca11e Initial load
duke
parents:
diff changeset
   153
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   154
    private JCCompilationUnit toplevel;
06bc494ca11e Initial load
duke
parents:
diff changeset
   155
06bc494ca11e Initial load
duke
parents:
diff changeset
   156
    /** The number of code-gen errors in this class.
06bc494ca11e Initial load
duke
parents:
diff changeset
   157
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   158
    private int nerrs = 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
   159
11055
ec1418effa77 7106166: (javac) re-factor EndPos parser
ksrini
parents: 10950
diff changeset
   160
    /** An object containing mappings of syntax trees to their
ec1418effa77 7106166: (javac) re-factor EndPos parser
ksrini
parents: 10950
diff changeset
   161
     *  ending source positions.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   162
     */
11055
ec1418effa77 7106166: (javac) re-factor EndPos parser
ksrini
parents: 10950
diff changeset
   163
    EndPosTable endPosTable;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   164
52794
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
   165
    boolean inCondSwitchExpression;
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
   166
    Chain switchExpressionTrueChain;
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
   167
    Chain switchExpressionFalseChain;
52936
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
   168
    List<LocalItem> stackBeforeSwitchExpression;
55340
ef577fa0dd10 8220018: javac crash when compiling try-catch-finally inside switch expression
jlahoda
parents: 55306
diff changeset
   169
    LocalItem switchResult;
52794
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
   170
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   171
    /** Generate code to load an integer constant.
06bc494ca11e Initial load
duke
parents:
diff changeset
   172
     *  @param n     The integer to be loaded.
06bc494ca11e Initial load
duke
parents:
diff changeset
   173
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   174
    void loadIntConst(int n) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   175
        items.makeImmediateItem(syms.intType, n).load();
06bc494ca11e Initial load
duke
parents:
diff changeset
   176
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   177
06bc494ca11e Initial load
duke
parents:
diff changeset
   178
    /** The opcode that loads a zero constant of a given type code.
06bc494ca11e Initial load
duke
parents:
diff changeset
   179
     *  @param tc   The given type code (@see ByteCode).
06bc494ca11e Initial load
duke
parents:
diff changeset
   180
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   181
    public static int zero(int tc) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   182
        switch(tc) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   183
        case INTcode: case BYTEcode: case SHORTcode: case CHARcode:
06bc494ca11e Initial load
duke
parents:
diff changeset
   184
            return iconst_0;
06bc494ca11e Initial load
duke
parents:
diff changeset
   185
        case LONGcode:
06bc494ca11e Initial load
duke
parents:
diff changeset
   186
            return lconst_0;
06bc494ca11e Initial load
duke
parents:
diff changeset
   187
        case FLOATcode:
06bc494ca11e Initial load
duke
parents:
diff changeset
   188
            return fconst_0;
06bc494ca11e Initial load
duke
parents:
diff changeset
   189
        case DOUBLEcode:
06bc494ca11e Initial load
duke
parents:
diff changeset
   190
            return dconst_0;
06bc494ca11e Initial load
duke
parents:
diff changeset
   191
        default:
06bc494ca11e Initial load
duke
parents:
diff changeset
   192
            throw new AssertionError("zero");
06bc494ca11e Initial load
duke
parents:
diff changeset
   193
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   194
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   195
06bc494ca11e Initial load
duke
parents:
diff changeset
   196
    /** The opcode that loads a one constant of a given type code.
06bc494ca11e Initial load
duke
parents:
diff changeset
   197
     *  @param tc   The given type code (@see ByteCode).
06bc494ca11e Initial load
duke
parents:
diff changeset
   198
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   199
    public static int one(int tc) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   200
        return zero(tc) + 1;
06bc494ca11e Initial load
duke
parents:
diff changeset
   201
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   202
06bc494ca11e Initial load
duke
parents:
diff changeset
   203
    /** Generate code to load -1 of the given type code (either int or long).
06bc494ca11e Initial load
duke
parents:
diff changeset
   204
     *  @param tc   The given type code (@see ByteCode).
06bc494ca11e Initial load
duke
parents:
diff changeset
   205
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   206
    void emitMinusOne(int tc) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   207
        if (tc == LONGcode) {
37635
9834489579e5 8145468: update java.lang APIs with new deprecations
smarks
parents: 36269
diff changeset
   208
            items.makeImmediateItem(syms.longType, Long.valueOf(-1)).load();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   209
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   210
            code.emitop0(iconst_m1);
06bc494ca11e Initial load
duke
parents:
diff changeset
   211
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   212
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   213
06bc494ca11e Initial load
duke
parents:
diff changeset
   214
    /** Construct a symbol to reflect the qualifying type that should
06bc494ca11e Initial load
duke
parents:
diff changeset
   215
     *  appear in the byte code as per JLS 13.1.
06bc494ca11e Initial load
duke
parents:
diff changeset
   216
     *
13844
56339cf983a3 7177970: fix issues in langtools doc comments
jjg
parents: 13077
diff changeset
   217
     *  For {@literal target >= 1.2}: Clone a method with the qualifier as owner (except
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   218
     *  for those cases where we need to work around VM bugs).
06bc494ca11e Initial load
duke
parents:
diff changeset
   219
     *
13844
56339cf983a3 7177970: fix issues in langtools doc comments
jjg
parents: 13077
diff changeset
   220
     *  For {@literal target <= 1.1}: If qualified variable or method is defined in a
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   221
     *  non-accessible class, clone it with the qualifier class as owner.
06bc494ca11e Initial load
duke
parents:
diff changeset
   222
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   223
     *  @param sym    The accessed symbol
06bc494ca11e Initial load
duke
parents:
diff changeset
   224
     *  @param site   The qualifier's type.
06bc494ca11e Initial load
duke
parents:
diff changeset
   225
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   226
    Symbol binaryQualifier(Symbol sym, Type site) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   227
14359
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 14259
diff changeset
   228
        if (site.hasTag(ARRAY)) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   229
            if (sym == syms.lengthVar ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   230
                sym.owner != syms.arrayClass)
06bc494ca11e Initial load
duke
parents:
diff changeset
   231
                return sym;
06bc494ca11e Initial load
duke
parents:
diff changeset
   232
            // array clone can be qualified by the array type in later targets
25445
603f0c93d5c9 8011044: Remove support for 1.5 and earlier source and target options
ntoda
parents: 25443
diff changeset
   233
            Symbol qualifier = new ClassSymbol(Flags.PUBLIC, site.tsym.name,
603f0c93d5c9 8011044: Remove support for 1.5 and earlier source and target options
ntoda
parents: 25443
diff changeset
   234
                                               site, syms.noSymbol);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   235
            return sym.clone(qualifier);
06bc494ca11e Initial load
duke
parents:
diff changeset
   236
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   237
06bc494ca11e Initial load
duke
parents:
diff changeset
   238
        if (sym.owner == site.tsym ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   239
            (sym.flags() & (STATIC | SYNTHETIC)) == (STATIC | SYNTHETIC)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   240
            return sym;
06bc494ca11e Initial load
duke
parents:
diff changeset
   241
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   242
06bc494ca11e Initial load
duke
parents:
diff changeset
   243
        // leave alone methods inherited from Object
9303
eae35c201e19 7032975: API files in javax.annotation.processing need to be updated for references to JLS
jjh
parents: 9300
diff changeset
   244
        // JLS 13.1.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   245
        if (sym.owner == syms.objectType.tsym)
06bc494ca11e Initial load
duke
parents:
diff changeset
   246
            return sym;
06bc494ca11e Initial load
duke
parents:
diff changeset
   247
06bc494ca11e Initial load
duke
parents:
diff changeset
   248
        return sym.clone(site.tsym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   249
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   250
06bc494ca11e Initial load
duke
parents:
diff changeset
   251
    /** Insert a reference to given type in the constant pool,
06bc494ca11e Initial load
duke
parents:
diff changeset
   252
     *  checking for an array with too many dimensions;
06bc494ca11e Initial load
duke
parents:
diff changeset
   253
     *  return the reference's index.
06bc494ca11e Initial load
duke
parents:
diff changeset
   254
     *  @param type   The type for which a reference is inserted.
06bc494ca11e Initial load
duke
parents:
diff changeset
   255
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   256
    int makeRef(DiagnosticPosition pos, Type type) {
54568
b2ed96c35687 8222289: Overhaul logic for reading/writing constant pool entries
mcimadamore
parents: 52936
diff changeset
   257
        return poolWriter.putClass(checkDimension(pos, type));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   258
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   259
06bc494ca11e Initial load
duke
parents:
diff changeset
   260
    /** Check if the given type is an array with too many dimensions.
06bc494ca11e Initial load
duke
parents:
diff changeset
   261
     */
54568
b2ed96c35687 8222289: Overhaul logic for reading/writing constant pool entries
mcimadamore
parents: 52936
diff changeset
   262
    private Type checkDimension(DiagnosticPosition pos, Type t) {
b2ed96c35687 8222289: Overhaul logic for reading/writing constant pool entries
mcimadamore
parents: 52936
diff changeset
   263
        checkDimensionInternal(pos, t);
b2ed96c35687 8222289: Overhaul logic for reading/writing constant pool entries
mcimadamore
parents: 52936
diff changeset
   264
        return t;
b2ed96c35687 8222289: Overhaul logic for reading/writing constant pool entries
mcimadamore
parents: 52936
diff changeset
   265
    }
b2ed96c35687 8222289: Overhaul logic for reading/writing constant pool entries
mcimadamore
parents: 52936
diff changeset
   266
b2ed96c35687 8222289: Overhaul logic for reading/writing constant pool entries
mcimadamore
parents: 52936
diff changeset
   267
    private void checkDimensionInternal(DiagnosticPosition pos, Type t) {
14359
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 14259
diff changeset
   268
        switch (t.getTag()) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   269
        case METHOD:
06bc494ca11e Initial load
duke
parents:
diff changeset
   270
            checkDimension(pos, t.getReturnType());
06bc494ca11e Initial load
duke
parents:
diff changeset
   271
            for (List<Type> args = t.getParameterTypes(); args.nonEmpty(); args = args.tail)
06bc494ca11e Initial load
duke
parents:
diff changeset
   272
                checkDimension(pos, args.head);
06bc494ca11e Initial load
duke
parents:
diff changeset
   273
            break;
06bc494ca11e Initial load
duke
parents:
diff changeset
   274
        case ARRAY:
06bc494ca11e Initial load
duke
parents:
diff changeset
   275
            if (types.dimensions(t) > ClassFile.MAX_DIMENSIONS) {
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45316
diff changeset
   276
                log.error(pos, Errors.LimitDimensions);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   277
                nerrs++;
06bc494ca11e Initial load
duke
parents:
diff changeset
   278
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   279
            break;
06bc494ca11e Initial load
duke
parents:
diff changeset
   280
        default:
06bc494ca11e Initial load
duke
parents:
diff changeset
   281
            break;
06bc494ca11e Initial load
duke
parents:
diff changeset
   282
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   283
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   284
06bc494ca11e Initial load
duke
parents:
diff changeset
   285
    /** Create a tempory variable.
06bc494ca11e Initial load
duke
parents:
diff changeset
   286
     *  @param type   The variable's type.
06bc494ca11e Initial load
duke
parents:
diff changeset
   287
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   288
    LocalItem makeTemp(Type type) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   289
        VarSymbol v = new VarSymbol(Flags.SYNTHETIC,
06bc494ca11e Initial load
duke
parents:
diff changeset
   290
                                    names.empty,
06bc494ca11e Initial load
duke
parents:
diff changeset
   291
                                    type,
06bc494ca11e Initial load
duke
parents:
diff changeset
   292
                                    env.enclMethod.sym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   293
        code.newLocal(v);
06bc494ca11e Initial load
duke
parents:
diff changeset
   294
        return items.makeLocalItem(v);
06bc494ca11e Initial load
duke
parents:
diff changeset
   295
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   296
06bc494ca11e Initial load
duke
parents:
diff changeset
   297
    /** Generate code to call a non-private method or constructor.
06bc494ca11e Initial load
duke
parents:
diff changeset
   298
     *  @param pos         Position to be used for error reporting.
06bc494ca11e Initial load
duke
parents:
diff changeset
   299
     *  @param site        The type of which the method is a member.
06bc494ca11e Initial load
duke
parents:
diff changeset
   300
     *  @param name        The method's name.
06bc494ca11e Initial load
duke
parents:
diff changeset
   301
     *  @param argtypes    The method's argument types.
06bc494ca11e Initial load
duke
parents:
diff changeset
   302
     *  @param isStatic    A flag that indicates whether we call a
06bc494ca11e Initial load
duke
parents:
diff changeset
   303
     *                     static or instance method.
06bc494ca11e Initial load
duke
parents:
diff changeset
   304
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   305
    void callMethod(DiagnosticPosition pos,
06bc494ca11e Initial load
duke
parents:
diff changeset
   306
                    Type site, Name name, List<Type> argtypes,
06bc494ca11e Initial load
duke
parents:
diff changeset
   307
                    boolean isStatic) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   308
        Symbol msym = rs.
06bc494ca11e Initial load
duke
parents:
diff changeset
   309
            resolveInternalMethod(pos, attrEnv, site, name, argtypes, null);
06bc494ca11e Initial load
duke
parents:
diff changeset
   310
        if (isStatic) items.makeStaticItem(msym).invoke();
06bc494ca11e Initial load
duke
parents:
diff changeset
   311
        else items.makeMemberItem(msym, name == names.init).invoke();
06bc494ca11e Initial load
duke
parents:
diff changeset
   312
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   313
06bc494ca11e Initial load
duke
parents:
diff changeset
   314
    /** Is the given method definition an access method
06bc494ca11e Initial load
duke
parents:
diff changeset
   315
     *  resulting from a qualified super? This is signified by an odd
06bc494ca11e Initial load
duke
parents:
diff changeset
   316
     *  access code.
06bc494ca11e Initial load
duke
parents:
diff changeset
   317
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   318
    private boolean isAccessSuper(JCMethodDecl enclMethod) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   319
        return
06bc494ca11e Initial load
duke
parents:
diff changeset
   320
            (enclMethod.mods.flags & SYNTHETIC) != 0 &&
06bc494ca11e Initial load
duke
parents:
diff changeset
   321
            isOddAccessName(enclMethod.name);
06bc494ca11e Initial load
duke
parents:
diff changeset
   322
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   323
06bc494ca11e Initial load
duke
parents:
diff changeset
   324
    /** Does given name start with "access$" and end in an odd digit?
06bc494ca11e Initial load
duke
parents:
diff changeset
   325
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   326
    private boolean isOddAccessName(Name name) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   327
        return
06bc494ca11e Initial load
duke
parents:
diff changeset
   328
            name.startsWith(accessDollar) &&
1260
a772ba9ba43d 6574134: Allow for alternative implementation of Name Table with garbage collection of name bytes
jjg
parents: 10
diff changeset
   329
            (name.getByteAt(name.getByteLength() - 1) & 1) == 1;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   330
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   331
06bc494ca11e Initial load
duke
parents:
diff changeset
   332
/* ************************************************************************
06bc494ca11e Initial load
duke
parents:
diff changeset
   333
 * Non-local exits
06bc494ca11e Initial load
duke
parents:
diff changeset
   334
 *************************************************************************/
06bc494ca11e Initial load
duke
parents:
diff changeset
   335
06bc494ca11e Initial load
duke
parents:
diff changeset
   336
    /** Generate code to invoke the finalizer associated with given
06bc494ca11e Initial load
duke
parents:
diff changeset
   337
     *  environment.
06bc494ca11e Initial load
duke
parents:
diff changeset
   338
     *  Any calls to finalizers are appended to the environments `cont' chain.
06bc494ca11e Initial load
duke
parents:
diff changeset
   339
     *  Mark beginning of gap in catch all range for finalizer.
06bc494ca11e Initial load
duke
parents:
diff changeset
   340
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   341
    void genFinalizer(Env<GenContext> env) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   342
        if (code.isAlive() && env.info.finalize != null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   343
            env.info.finalize.gen();
06bc494ca11e Initial load
duke
parents:
diff changeset
   344
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   345
06bc494ca11e Initial load
duke
parents:
diff changeset
   346
    /** Generate code to call all finalizers of structures aborted by
06bc494ca11e Initial load
duke
parents:
diff changeset
   347
     *  a non-local
06bc494ca11e Initial load
duke
parents:
diff changeset
   348
     *  exit.  Return target environment of the non-local exit.
06bc494ca11e Initial load
duke
parents:
diff changeset
   349
     *  @param target      The tree representing the structure that's aborted
06bc494ca11e Initial load
duke
parents:
diff changeset
   350
     *  @param env         The environment current at the non-local exit.
06bc494ca11e Initial load
duke
parents:
diff changeset
   351
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   352
    Env<GenContext> unwind(JCTree target, Env<GenContext> env) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   353
        Env<GenContext> env1 = env;
06bc494ca11e Initial load
duke
parents:
diff changeset
   354
        while (true) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   355
            genFinalizer(env1);
06bc494ca11e Initial load
duke
parents:
diff changeset
   356
            if (env1.tree == target) break;
06bc494ca11e Initial load
duke
parents:
diff changeset
   357
            env1 = env1.next;
06bc494ca11e Initial load
duke
parents:
diff changeset
   358
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   359
        return env1;
06bc494ca11e Initial load
duke
parents:
diff changeset
   360
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   361
06bc494ca11e Initial load
duke
parents:
diff changeset
   362
    /** Mark end of gap in catch-all range for finalizer.
06bc494ca11e Initial load
duke
parents:
diff changeset
   363
     *  @param env   the environment which might contain the finalizer
06bc494ca11e Initial load
duke
parents:
diff changeset
   364
     *               (if it does, env.info.gaps != null).
06bc494ca11e Initial load
duke
parents:
diff changeset
   365
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   366
    void endFinalizerGap(Env<GenContext> env) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   367
        if (env.info.gaps != null && env.info.gaps.length() % 2 == 1)
19941
8b91e8eb2d20 7047734: javac, the LVT is not generated correctly in several scenarios
vromero
parents: 19923
diff changeset
   368
            env.info.gaps.append(code.curCP());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   369
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   370
06bc494ca11e Initial load
duke
parents:
diff changeset
   371
    /** Mark end of all gaps in catch-all ranges for finalizers of environments
06bc494ca11e Initial load
duke
parents:
diff changeset
   372
     *  lying between, and including to two environments.
06bc494ca11e Initial load
duke
parents:
diff changeset
   373
     *  @param from    the most deeply nested environment to mark
06bc494ca11e Initial load
duke
parents:
diff changeset
   374
     *  @param to      the least deeply nested environment to mark
06bc494ca11e Initial load
duke
parents:
diff changeset
   375
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   376
    void endFinalizerGaps(Env<GenContext> from, Env<GenContext> to) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   377
        Env<GenContext> last = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   378
        while (last != to) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   379
            endFinalizerGap(from);
06bc494ca11e Initial load
duke
parents:
diff changeset
   380
            last = from;
06bc494ca11e Initial load
duke
parents:
diff changeset
   381
            from = from.next;
06bc494ca11e Initial load
duke
parents:
diff changeset
   382
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   383
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   384
06bc494ca11e Initial load
duke
parents:
diff changeset
   385
    /** Do any of the structures aborted by a non-local exit have
06bc494ca11e Initial load
duke
parents:
diff changeset
   386
     *  finalizers that require an empty stack?
06bc494ca11e Initial load
duke
parents:
diff changeset
   387
     *  @param target      The tree representing the structure that's aborted
06bc494ca11e Initial load
duke
parents:
diff changeset
   388
     *  @param env         The environment current at the non-local exit.
06bc494ca11e Initial load
duke
parents:
diff changeset
   389
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   390
    boolean hasFinally(JCTree target, Env<GenContext> env) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   391
        while (env.tree != target) {
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 10811
diff changeset
   392
            if (env.tree.hasTag(TRY) && env.info.finalize.hasFinalizer())
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   393
                return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   394
            env = env.next;
06bc494ca11e Initial load
duke
parents:
diff changeset
   395
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   396
        return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   397
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   398
06bc494ca11e Initial load
duke
parents:
diff changeset
   399
/* ************************************************************************
06bc494ca11e Initial load
duke
parents:
diff changeset
   400
 * Normalizing class-members.
06bc494ca11e Initial load
duke
parents:
diff changeset
   401
 *************************************************************************/
06bc494ca11e Initial load
duke
parents:
diff changeset
   402
14259
fb94a1df0d53 8000208: fix langtools javadoc comment issues
jjg
parents: 14046
diff changeset
   403
    /** Distribute member initializer code into constructors and {@code <clinit>}
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   404
     *  method.
06bc494ca11e Initial load
duke
parents:
diff changeset
   405
     *  @param defs         The list of class member declarations.
06bc494ca11e Initial load
duke
parents:
diff changeset
   406
     *  @param c            The enclosing class.
06bc494ca11e Initial load
duke
parents:
diff changeset
   407
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   408
    List<JCTree> normalizeDefs(List<JCTree> defs, ClassSymbol c) {
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 21897
diff changeset
   409
        ListBuffer<JCStatement> initCode = new ListBuffer<>();
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 21897
diff changeset
   410
        ListBuffer<Attribute.TypeCompound> initTAs = new ListBuffer<>();
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 21897
diff changeset
   411
        ListBuffer<JCStatement> clinitCode = new ListBuffer<>();
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 21897
diff changeset
   412
        ListBuffer<Attribute.TypeCompound> clinitTAs = new ListBuffer<>();
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 21897
diff changeset
   413
        ListBuffer<JCTree> methodDefs = new ListBuffer<>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   414
        // Sort definitions into three listbuffers:
06bc494ca11e Initial load
duke
parents:
diff changeset
   415
        //  - initCode for instance initializers
06bc494ca11e Initial load
duke
parents:
diff changeset
   416
        //  - clinitCode for class initializers
06bc494ca11e Initial load
duke
parents:
diff changeset
   417
        //  - methodDefs for method definitions
06bc494ca11e Initial load
duke
parents:
diff changeset
   418
        for (List<JCTree> l = defs; l.nonEmpty(); l = l.tail) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   419
            JCTree def = l.head;
06bc494ca11e Initial load
duke
parents:
diff changeset
   420
            switch (def.getTag()) {
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 10811
diff changeset
   421
            case BLOCK:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   422
                JCBlock block = (JCBlock)def;
06bc494ca11e Initial load
duke
parents:
diff changeset
   423
                if ((block.flags & STATIC) != 0)
06bc494ca11e Initial load
duke
parents:
diff changeset
   424
                    clinitCode.append(block);
27230
361efbfa3079 8061778: Wrong LineNumberTable for default constructors
mcimadamore
parents: 27224
diff changeset
   425
                else if ((block.flags & SYNTHETIC) == 0)
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   426
                    initCode.append(block);
06bc494ca11e Initial load
duke
parents:
diff changeset
   427
                break;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 10811
diff changeset
   428
            case METHODDEF:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   429
                methodDefs.append(def);
06bc494ca11e Initial load
duke
parents:
diff changeset
   430
                break;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 10811
diff changeset
   431
            case VARDEF:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   432
                JCVariableDecl vdef = (JCVariableDecl) def;
06bc494ca11e Initial load
duke
parents:
diff changeset
   433
                VarSymbol sym = vdef.sym;
06bc494ca11e Initial load
duke
parents:
diff changeset
   434
                checkDimension(vdef.pos(), sym.type);
06bc494ca11e Initial load
duke
parents:
diff changeset
   435
                if (vdef.init != null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   436
                    if ((sym.flags() & STATIC) == 0) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   437
                        // Always initialize instance variables.
06bc494ca11e Initial load
duke
parents:
diff changeset
   438
                        JCStatement init = make.at(vdef.pos()).
06bc494ca11e Initial load
duke
parents:
diff changeset
   439
                            Assignment(sym, vdef.init);
06bc494ca11e Initial load
duke
parents:
diff changeset
   440
                        initCode.append(init);
11055
ec1418effa77 7106166: (javac) re-factor EndPos parser
ksrini
parents: 10950
diff changeset
   441
                        endPosTable.replaceTree(vdef, init);
17578
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16807
diff changeset
   442
                        initTAs.addAll(getAndRemoveNonFieldTAs(sym));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   443
                    } else if (sym.getConstValue() == null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   444
                        // Initialize class (static) variables only if
06bc494ca11e Initial load
duke
parents:
diff changeset
   445
                        // they are not compile-time constants.
06bc494ca11e Initial load
duke
parents:
diff changeset
   446
                        JCStatement init = make.at(vdef.pos).
06bc494ca11e Initial load
duke
parents:
diff changeset
   447
                            Assignment(sym, vdef.init);
06bc494ca11e Initial load
duke
parents:
diff changeset
   448
                        clinitCode.append(init);
11055
ec1418effa77 7106166: (javac) re-factor EndPos parser
ksrini
parents: 10950
diff changeset
   449
                        endPosTable.replaceTree(vdef, init);
17578
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16807
diff changeset
   450
                        clinitTAs.addAll(getAndRemoveNonFieldTAs(sym));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   451
                    } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   452
                        checkStringConstant(vdef.init.pos(), sym.getConstValue());
31000
18bc6fadeb4e 8073372: Redundant CONSTANT_Class entry not generated for inlined constant
vromero
parents: 30406
diff changeset
   453
                        /* if the init contains a reference to an external class, add it to the
18bc6fadeb4e 8073372: Redundant CONSTANT_Class entry not generated for inlined constant
vromero
parents: 30406
diff changeset
   454
                         * constant's pool
18bc6fadeb4e 8073372: Redundant CONSTANT_Class entry not generated for inlined constant
vromero
parents: 30406
diff changeset
   455
                         */
18bc6fadeb4e 8073372: Redundant CONSTANT_Class entry not generated for inlined constant
vromero
parents: 30406
diff changeset
   456
                        vdef.init.accept(classReferenceVisitor);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   457
                    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   458
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   459
                break;
06bc494ca11e Initial load
duke
parents:
diff changeset
   460
            default:
8032
e1aa25ccdabb 6396503: javac should not require assertions enabled
jjg
parents: 8031
diff changeset
   461
                Assert.error();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   462
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   463
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   464
        // Insert any instance initializers into all constructors.
06bc494ca11e Initial load
duke
parents:
diff changeset
   465
        if (initCode.length() != 0) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   466
            List<JCStatement> inits = initCode.toList();
18010
604faee85350 8004643: Reduce javac space overhead introduced with compiler support for repeating annotations
jjg
parents: 17578
diff changeset
   467
            initTAs.addAll(c.getInitTypeAttributes());
17578
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16807
diff changeset
   468
            List<Attribute.TypeCompound> initTAlist = initTAs.toList();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   469
            for (JCTree t : methodDefs) {
17578
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16807
diff changeset
   470
                normalizeMethod((JCMethodDecl)t, inits, initTAlist);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   471
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   472
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   473
        // If there are class initializers, create a <clinit> method
06bc494ca11e Initial load
duke
parents:
diff changeset
   474
        // that contains them as its body.
06bc494ca11e Initial load
duke
parents:
diff changeset
   475
        if (clinitCode.length() != 0) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   476
            MethodSymbol clinit = new MethodSymbol(
15710
5792a085da41 7166455: javac doesn't set ACC_STRICT bit on <clinit> for strictfp class
vromero
parents: 15385
diff changeset
   477
                STATIC | (c.flags() & STRICTFP),
5792a085da41 7166455: javac doesn't set ACC_STRICT bit on <clinit> for strictfp class
vromero
parents: 15385
diff changeset
   478
                names.clinit,
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   479
                new MethodType(
42828
cce89649f958 8171371: Remove redundant type-arguments from generic method calls
mcimadamore
parents: 41029
diff changeset
   480
                    List.nil(), syms.voidType,
cce89649f958 8171371: Remove redundant type-arguments from generic method calls
mcimadamore
parents: 41029
diff changeset
   481
                    List.nil(), syms.methodClass),
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   482
                c);
06bc494ca11e Initial load
duke
parents:
diff changeset
   483
            c.members().enter(clinit);
06bc494ca11e Initial load
duke
parents:
diff changeset
   484
            List<JCStatement> clinitStats = clinitCode.toList();
06bc494ca11e Initial load
duke
parents:
diff changeset
   485
            JCBlock block = make.at(clinitStats.head.pos()).Block(0, clinitStats);
06bc494ca11e Initial load
duke
parents:
diff changeset
   486
            block.endpos = TreeInfo.endPos(clinitStats.last());
06bc494ca11e Initial load
duke
parents:
diff changeset
   487
            methodDefs.append(make.MethodDef(clinit, block));
17578
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16807
diff changeset
   488
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16807
diff changeset
   489
            if (!clinitTAs.isEmpty())
18010
604faee85350 8004643: Reduce javac space overhead introduced with compiler support for repeating annotations
jjg
parents: 17578
diff changeset
   490
                clinit.appendUniqueTypeAttributes(clinitTAs.toList());
604faee85350 8004643: Reduce javac space overhead introduced with compiler support for repeating annotations
jjg
parents: 17578
diff changeset
   491
            if (!c.getClassInitTypeAttributes().isEmpty())
604faee85350 8004643: Reduce javac space overhead introduced with compiler support for repeating annotations
jjg
parents: 17578
diff changeset
   492
                clinit.appendUniqueTypeAttributes(c.getClassInitTypeAttributes());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   493
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   494
        // Return all method definitions.
06bc494ca11e Initial load
duke
parents:
diff changeset
   495
        return methodDefs.toList();
06bc494ca11e Initial load
duke
parents:
diff changeset
   496
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   497
17578
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16807
diff changeset
   498
    private List<Attribute.TypeCompound> getAndRemoveNonFieldTAs(VarSymbol sym) {
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16807
diff changeset
   499
        List<TypeCompound> tas = sym.getRawTypeAttributes();
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 21897
diff changeset
   500
        ListBuffer<Attribute.TypeCompound> fieldTAs = new ListBuffer<>();
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 21897
diff changeset
   501
        ListBuffer<Attribute.TypeCompound> nonfieldTAs = new ListBuffer<>();
17578
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16807
diff changeset
   502
        for (TypeCompound ta : tas) {
26532
aa84b6606229 8056021: checkin for JDK-8027262 breaks Checker Framework
jfranck
parents: 25874
diff changeset
   503
            Assert.check(ta.getPosition().type != TargetType.UNKNOWN);
21010
5ffe0d8a5e24 8008762: Type annotation on inner class in anonymous class show up as regular type annotations
emc
parents: 19941
diff changeset
   504
            if (ta.getPosition().type == TargetType.FIELD) {
17578
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16807
diff changeset
   505
                fieldTAs.add(ta);
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16807
diff changeset
   506
            } else {
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16807
diff changeset
   507
                nonfieldTAs.add(ta);
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16807
diff changeset
   508
            }
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16807
diff changeset
   509
        }
18010
604faee85350 8004643: Reduce javac space overhead introduced with compiler support for repeating annotations
jjg
parents: 17578
diff changeset
   510
        sym.setTypeAttributes(fieldTAs.toList());
17578
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16807
diff changeset
   511
        return nonfieldTAs.toList();
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16807
diff changeset
   512
    }
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16807
diff changeset
   513
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   514
    /** Check a constant value and report if it is a string that is
06bc494ca11e Initial load
duke
parents:
diff changeset
   515
     *  too large.
06bc494ca11e Initial load
duke
parents:
diff changeset
   516
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   517
    private void checkStringConstant(DiagnosticPosition pos, Object constValue) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   518
        if (nerrs != 0 || // only complain about a long string once
06bc494ca11e Initial load
duke
parents:
diff changeset
   519
            constValue == null ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   520
            !(constValue instanceof String) ||
54568
b2ed96c35687 8222289: Overhaul logic for reading/writing constant pool entries
mcimadamore
parents: 52936
diff changeset
   521
            ((String)constValue).length() < PoolWriter.MAX_STRING_LENGTH)
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   522
            return;
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45316
diff changeset
   523
        log.error(pos, Errors.LimitString);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   524
        nerrs++;
06bc494ca11e Initial load
duke
parents:
diff changeset
   525
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   526
06bc494ca11e Initial load
duke
parents:
diff changeset
   527
    /** Insert instance initializer code into initial constructor.
06bc494ca11e Initial load
duke
parents:
diff changeset
   528
     *  @param md        The tree potentially representing a
06bc494ca11e Initial load
duke
parents:
diff changeset
   529
     *                   constructor's definition.
06bc494ca11e Initial load
duke
parents:
diff changeset
   530
     *  @param initCode  The list of instance initializer statements.
17578
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16807
diff changeset
   531
     *  @param initTAs  Type annotations from the initializer expression.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   532
     */
17578
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16807
diff changeset
   533
    void normalizeMethod(JCMethodDecl md, List<JCStatement> initCode, List<TypeCompound> initTAs) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   534
        if (md.name == names.init && TreeInfo.isInitialConstructor(md)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   535
            // We are seeing a constructor that does not call another
06bc494ca11e Initial load
duke
parents:
diff changeset
   536
            // constructor of the same class.
06bc494ca11e Initial load
duke
parents:
diff changeset
   537
            List<JCStatement> stats = md.body.stats;
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 21897
diff changeset
   538
            ListBuffer<JCStatement> newstats = new ListBuffer<>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   539
06bc494ca11e Initial load
duke
parents:
diff changeset
   540
            if (stats.nonEmpty()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   541
                // Copy initializers of synthetic variables generated in
06bc494ca11e Initial load
duke
parents:
diff changeset
   542
                // the translation of inner classes.
06bc494ca11e Initial load
duke
parents:
diff changeset
   543
                while (TreeInfo.isSyntheticInit(stats.head)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   544
                    newstats.append(stats.head);
06bc494ca11e Initial load
duke
parents:
diff changeset
   545
                    stats = stats.tail;
06bc494ca11e Initial load
duke
parents:
diff changeset
   546
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   547
                // Copy superclass constructor call
06bc494ca11e Initial load
duke
parents:
diff changeset
   548
                newstats.append(stats.head);
06bc494ca11e Initial load
duke
parents:
diff changeset
   549
                stats = stats.tail;
06bc494ca11e Initial load
duke
parents:
diff changeset
   550
                // Copy remaining synthetic initializers.
06bc494ca11e Initial load
duke
parents:
diff changeset
   551
                while (stats.nonEmpty() &&
06bc494ca11e Initial load
duke
parents:
diff changeset
   552
                       TreeInfo.isSyntheticInit(stats.head)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   553
                    newstats.append(stats.head);
06bc494ca11e Initial load
duke
parents:
diff changeset
   554
                    stats = stats.tail;
06bc494ca11e Initial load
duke
parents:
diff changeset
   555
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   556
                // Now insert the initializer code.
06bc494ca11e Initial load
duke
parents:
diff changeset
   557
                newstats.appendList(initCode);
06bc494ca11e Initial load
duke
parents:
diff changeset
   558
                // And copy all remaining statements.
06bc494ca11e Initial load
duke
parents:
diff changeset
   559
                while (stats.nonEmpty()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   560
                    newstats.append(stats.head);
06bc494ca11e Initial load
duke
parents:
diff changeset
   561
                    stats = stats.tail;
06bc494ca11e Initial load
duke
parents:
diff changeset
   562
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   563
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   564
            md.body.stats = newstats.toList();
06bc494ca11e Initial load
duke
parents:
diff changeset
   565
            if (md.body.endpos == Position.NOPOS)
06bc494ca11e Initial load
duke
parents:
diff changeset
   566
                md.body.endpos = TreeInfo.endPos(md.body.stats.last());
17578
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16807
diff changeset
   567
18010
604faee85350 8004643: Reduce javac space overhead introduced with compiler support for repeating annotations
jjg
parents: 17578
diff changeset
   568
            md.sym.appendUniqueTypeAttributes(initTAs);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   569
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   570
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   571
06bc494ca11e Initial load
duke
parents:
diff changeset
   572
/* ************************************************************************
06bc494ca11e Initial load
duke
parents:
diff changeset
   573
 * Traversal methods
06bc494ca11e Initial load
duke
parents:
diff changeset
   574
 *************************************************************************/
06bc494ca11e Initial load
duke
parents:
diff changeset
   575
06bc494ca11e Initial load
duke
parents:
diff changeset
   576
    /** Visitor argument: The current environment.
06bc494ca11e Initial load
duke
parents:
diff changeset
   577
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   578
    Env<GenContext> env;
06bc494ca11e Initial load
duke
parents:
diff changeset
   579
06bc494ca11e Initial load
duke
parents:
diff changeset
   580
    /** Visitor argument: The expected type (prototype).
06bc494ca11e Initial load
duke
parents:
diff changeset
   581
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   582
    Type pt;
06bc494ca11e Initial load
duke
parents:
diff changeset
   583
06bc494ca11e Initial load
duke
parents:
diff changeset
   584
    /** Visitor result: The item representing the computed value.
06bc494ca11e Initial load
duke
parents:
diff changeset
   585
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   586
    Item result;
06bc494ca11e Initial load
duke
parents:
diff changeset
   587
06bc494ca11e Initial load
duke
parents:
diff changeset
   588
    /** Visitor method: generate code for a definition, catching and reporting
06bc494ca11e Initial load
duke
parents:
diff changeset
   589
     *  any completion failures.
06bc494ca11e Initial load
duke
parents:
diff changeset
   590
     *  @param tree    The definition to be visited.
06bc494ca11e Initial load
duke
parents:
diff changeset
   591
     *  @param env     The environment current at the definition.
06bc494ca11e Initial load
duke
parents:
diff changeset
   592
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   593
    public void genDef(JCTree tree, Env<GenContext> env) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   594
        Env<GenContext> prevEnv = this.env;
06bc494ca11e Initial load
duke
parents:
diff changeset
   595
        try {
06bc494ca11e Initial load
duke
parents:
diff changeset
   596
            this.env = env;
06bc494ca11e Initial load
duke
parents:
diff changeset
   597
            tree.accept(this);
06bc494ca11e Initial load
duke
parents:
diff changeset
   598
        } catch (CompletionFailure ex) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   599
            chk.completionError(tree.pos(), ex);
06bc494ca11e Initial load
duke
parents:
diff changeset
   600
        } finally {
06bc494ca11e Initial load
duke
parents:
diff changeset
   601
            this.env = prevEnv;
06bc494ca11e Initial load
duke
parents:
diff changeset
   602
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   603
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   604
06bc494ca11e Initial load
duke
parents:
diff changeset
   605
    /** Derived visitor method: check whether CharacterRangeTable
06bc494ca11e Initial load
duke
parents:
diff changeset
   606
     *  should be emitted, if so, put a new entry into CRTable
06bc494ca11e Initial load
duke
parents:
diff changeset
   607
     *  and call method to generate bytecode.
06bc494ca11e Initial load
duke
parents:
diff changeset
   608
     *  If not, just call method to generate bytecode.
14259
fb94a1df0d53 8000208: fix langtools javadoc comment issues
jjg
parents: 14046
diff changeset
   609
     *  @see    #genStat(JCTree, Env)
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   610
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   611
     *  @param  tree     The tree to be visited.
06bc494ca11e Initial load
duke
parents:
diff changeset
   612
     *  @param  env      The environment to use.
06bc494ca11e Initial load
duke
parents:
diff changeset
   613
     *  @param  crtFlags The CharacterRangeTable flags
06bc494ca11e Initial load
duke
parents:
diff changeset
   614
     *                   indicating type of the entry.
06bc494ca11e Initial load
duke
parents:
diff changeset
   615
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   616
    public void genStat(JCTree tree, Env<GenContext> env, int crtFlags) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   617
        if (!genCrt) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   618
            genStat(tree, env);
06bc494ca11e Initial load
duke
parents:
diff changeset
   619
            return;
06bc494ca11e Initial load
duke
parents:
diff changeset
   620
        }
19941
8b91e8eb2d20 7047734: javac, the LVT is not generated correctly in several scenarios
vromero
parents: 19923
diff changeset
   621
        int startpc = code.curCP();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   622
        genStat(tree, env);
14949
45f43822bbde 8000518: Javac generates duplicate name_and_type constant pool entry for class BinaryOpValueExp.java
vromero
parents: 14721
diff changeset
   623
        if (tree.hasTag(Tag.BLOCK)) crtFlags |= CRT_BLOCK;
19941
8b91e8eb2d20 7047734: javac, the LVT is not generated correctly in several scenarios
vromero
parents: 19923
diff changeset
   624
        code.crt.put(tree, crtFlags, startpc, code.curCP());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   625
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   626
06bc494ca11e Initial load
duke
parents:
diff changeset
   627
    /** Derived visitor method: generate code for a statement.
06bc494ca11e Initial load
duke
parents:
diff changeset
   628
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   629
    public void genStat(JCTree tree, Env<GenContext> env) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   630
        if (code.isAlive()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   631
            code.statBegin(tree.pos);
06bc494ca11e Initial load
duke
parents:
diff changeset
   632
            genDef(tree, env);
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 10811
diff changeset
   633
        } else if (env.info.isSwitch && tree.hasTag(VARDEF)) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   634
            // variables whose declarations are in a switch
06bc494ca11e Initial load
duke
parents:
diff changeset
   635
            // can be used even if the decl is unreachable.
06bc494ca11e Initial load
duke
parents:
diff changeset
   636
            code.newLocal(((JCVariableDecl) tree).sym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   637
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   638
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   639
06bc494ca11e Initial load
duke
parents:
diff changeset
   640
    /** Derived visitor method: check whether CharacterRangeTable
06bc494ca11e Initial load
duke
parents:
diff changeset
   641
     *  should be emitted, if so, put a new entry into CRTable
06bc494ca11e Initial load
duke
parents:
diff changeset
   642
     *  and call method to generate bytecode.
06bc494ca11e Initial load
duke
parents:
diff changeset
   643
     *  If not, just call method to generate bytecode.
06bc494ca11e Initial load
duke
parents:
diff changeset
   644
     *  @see    #genStats(List, Env)
06bc494ca11e Initial load
duke
parents:
diff changeset
   645
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   646
     *  @param  trees    The list of trees to be visited.
06bc494ca11e Initial load
duke
parents:
diff changeset
   647
     *  @param  env      The environment to use.
06bc494ca11e Initial load
duke
parents:
diff changeset
   648
     *  @param  crtFlags The CharacterRangeTable flags
06bc494ca11e Initial load
duke
parents:
diff changeset
   649
     *                   indicating type of the entry.
06bc494ca11e Initial load
duke
parents:
diff changeset
   650
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   651
    public void genStats(List<JCStatement> trees, Env<GenContext> env, int crtFlags) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   652
        if (!genCrt) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   653
            genStats(trees, env);
06bc494ca11e Initial load
duke
parents:
diff changeset
   654
            return;
06bc494ca11e Initial load
duke
parents:
diff changeset
   655
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   656
        if (trees.length() == 1) {        // mark one statement with the flags
06bc494ca11e Initial load
duke
parents:
diff changeset
   657
            genStat(trees.head, env, crtFlags | CRT_STATEMENT);
06bc494ca11e Initial load
duke
parents:
diff changeset
   658
        } else {
19941
8b91e8eb2d20 7047734: javac, the LVT is not generated correctly in several scenarios
vromero
parents: 19923
diff changeset
   659
            int startpc = code.curCP();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   660
            genStats(trees, env);
19941
8b91e8eb2d20 7047734: javac, the LVT is not generated correctly in several scenarios
vromero
parents: 19923
diff changeset
   661
            code.crt.put(trees, crtFlags, startpc, code.curCP());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   662
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   663
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   664
06bc494ca11e Initial load
duke
parents:
diff changeset
   665
    /** Derived visitor method: generate code for a list of statements.
06bc494ca11e Initial load
duke
parents:
diff changeset
   666
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   667
    public void genStats(List<? extends JCTree> trees, Env<GenContext> env) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   668
        for (List<? extends JCTree> l = trees; l.nonEmpty(); l = l.tail)
06bc494ca11e Initial load
duke
parents:
diff changeset
   669
            genStat(l.head, env, CRT_STATEMENT);
06bc494ca11e Initial load
duke
parents:
diff changeset
   670
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   671
06bc494ca11e Initial load
duke
parents:
diff changeset
   672
    /** Derived visitor method: check whether CharacterRangeTable
06bc494ca11e Initial load
duke
parents:
diff changeset
   673
     *  should be emitted, if so, put a new entry into CRTable
06bc494ca11e Initial load
duke
parents:
diff changeset
   674
     *  and call method to generate bytecode.
06bc494ca11e Initial load
duke
parents:
diff changeset
   675
     *  If not, just call method to generate bytecode.
14259
fb94a1df0d53 8000208: fix langtools javadoc comment issues
jjg
parents: 14046
diff changeset
   676
     *  @see    #genCond(JCTree,boolean)
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   677
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   678
     *  @param  tree     The tree to be visited.
06bc494ca11e Initial load
duke
parents:
diff changeset
   679
     *  @param  crtFlags The CharacterRangeTable flags
06bc494ca11e Initial load
duke
parents:
diff changeset
   680
     *                   indicating type of the entry.
06bc494ca11e Initial load
duke
parents:
diff changeset
   681
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   682
    public CondItem genCond(JCTree tree, int crtFlags) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   683
        if (!genCrt) return genCond(tree, false);
19941
8b91e8eb2d20 7047734: javac, the LVT is not generated correctly in several scenarios
vromero
parents: 19923
diff changeset
   684
        int startpc = code.curCP();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   685
        CondItem item = genCond(tree, (crtFlags & CRT_FLOW_CONTROLLER) != 0);
19941
8b91e8eb2d20 7047734: javac, the LVT is not generated correctly in several scenarios
vromero
parents: 19923
diff changeset
   686
        code.crt.put(tree, crtFlags, startpc, code.curCP());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   687
        return item;
06bc494ca11e Initial load
duke
parents:
diff changeset
   688
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   689
06bc494ca11e Initial load
duke
parents:
diff changeset
   690
    /** Derived visitor method: generate code for a boolean
06bc494ca11e Initial load
duke
parents:
diff changeset
   691
     *  expression in a control-flow context.
06bc494ca11e Initial load
duke
parents:
diff changeset
   692
     *  @param _tree         The expression to be visited.
06bc494ca11e Initial load
duke
parents:
diff changeset
   693
     *  @param markBranches The flag to indicate that the condition is
06bc494ca11e Initial load
duke
parents:
diff changeset
   694
     *                      a flow controller so produced conditions
06bc494ca11e Initial load
duke
parents:
diff changeset
   695
     *                      should contain a proper tree to generate
06bc494ca11e Initial load
duke
parents:
diff changeset
   696
     *                      CharacterRangeTable branches for them.
06bc494ca11e Initial load
duke
parents:
diff changeset
   697
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   698
    public CondItem genCond(JCTree _tree, boolean markBranches) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   699
        JCTree inner_tree = TreeInfo.skipParens(_tree);
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 10811
diff changeset
   700
        if (inner_tree.hasTag(CONDEXPR)) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   701
            JCConditional tree = (JCConditional)inner_tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   702
            CondItem cond = genCond(tree.cond, CRT_FLOW_CONTROLLER);
06bc494ca11e Initial load
duke
parents:
diff changeset
   703
            if (cond.isTrue()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   704
                code.resolve(cond.trueJumps);
06bc494ca11e Initial load
duke
parents:
diff changeset
   705
                CondItem result = genCond(tree.truepart, CRT_FLOW_TARGET);
06bc494ca11e Initial load
duke
parents:
diff changeset
   706
                if (markBranches) result.tree = tree.truepart;
06bc494ca11e Initial load
duke
parents:
diff changeset
   707
                return result;
06bc494ca11e Initial load
duke
parents:
diff changeset
   708
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   709
            if (cond.isFalse()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   710
                code.resolve(cond.falseJumps);
06bc494ca11e Initial load
duke
parents:
diff changeset
   711
                CondItem result = genCond(tree.falsepart, CRT_FLOW_TARGET);
06bc494ca11e Initial load
duke
parents:
diff changeset
   712
                if (markBranches) result.tree = tree.falsepart;
06bc494ca11e Initial load
duke
parents:
diff changeset
   713
                return result;
06bc494ca11e Initial load
duke
parents:
diff changeset
   714
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   715
            Chain secondJumps = cond.jumpFalse();
06bc494ca11e Initial load
duke
parents:
diff changeset
   716
            code.resolve(cond.trueJumps);
06bc494ca11e Initial load
duke
parents:
diff changeset
   717
            CondItem first = genCond(tree.truepart, CRT_FLOW_TARGET);
06bc494ca11e Initial load
duke
parents:
diff changeset
   718
            if (markBranches) first.tree = tree.truepart;
06bc494ca11e Initial load
duke
parents:
diff changeset
   719
            Chain falseJumps = first.jumpFalse();
06bc494ca11e Initial load
duke
parents:
diff changeset
   720
            code.resolve(first.trueJumps);
06bc494ca11e Initial load
duke
parents:
diff changeset
   721
            Chain trueJumps = code.branch(goto_);
06bc494ca11e Initial load
duke
parents:
diff changeset
   722
            code.resolve(secondJumps);
06bc494ca11e Initial load
duke
parents:
diff changeset
   723
            CondItem second = genCond(tree.falsepart, CRT_FLOW_TARGET);
06bc494ca11e Initial load
duke
parents:
diff changeset
   724
            CondItem result = items.makeCondItem(second.opcode,
5004
6c2694dc2da0 6929544: langtools source code uses statics qualified by instance variables
jjg
parents: 4875
diff changeset
   725
                                      Code.mergeChains(trueJumps, second.trueJumps),
6c2694dc2da0 6929544: langtools source code uses statics qualified by instance variables
jjg
parents: 4875
diff changeset
   726
                                      Code.mergeChains(falseJumps, second.falseJumps));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   727
            if (markBranches) result.tree = tree.falsepart;
06bc494ca11e Initial load
duke
parents:
diff changeset
   728
            return result;
52794
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
   729
        } else if (inner_tree.hasTag(SWITCH_EXPRESSION)) {
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
   730
            boolean prevInCondSwitchExpression = inCondSwitchExpression;
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
   731
            Chain prevSwitchExpressionTrueChain = switchExpressionTrueChain;
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
   732
            Chain prevSwitchExpressionFalseChain = switchExpressionFalseChain;
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
   733
            try {
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
   734
                inCondSwitchExpression = true;
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
   735
                switchExpressionTrueChain = null;
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
   736
                switchExpressionFalseChain = null;
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
   737
                try {
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
   738
                    doHandleSwitchExpression((JCSwitchExpression) inner_tree);
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
   739
                } catch (CompletionFailure ex) {
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
   740
                    chk.completionError(_tree.pos(), ex);
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
   741
                    code.state.stacksize = 1;
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
   742
                }
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
   743
                CondItem result = items.makeCondItem(goto_,
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
   744
                                                     switchExpressionTrueChain,
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
   745
                                                     switchExpressionFalseChain);
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
   746
                if (markBranches) result.tree = _tree;
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
   747
                return result;
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
   748
            } finally {
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
   749
                inCondSwitchExpression = prevInCondSwitchExpression;
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
   750
                switchExpressionTrueChain = prevSwitchExpressionTrueChain;
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
   751
                switchExpressionFalseChain = prevSwitchExpressionFalseChain;
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
   752
            }
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
   753
        } else if (inner_tree.hasTag(LETEXPR) && ((LetExpr) inner_tree).needsCond) {
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
   754
            LetExpr tree = (LetExpr) inner_tree;
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
   755
            int limit = code.nextreg;
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
   756
            int prevLetExprStart = code.setLetExprStackPos(code.state.stacksize);
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
   757
            try {
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
   758
                genStats(tree.defs, env);
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
   759
            } finally {
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
   760
                code.setLetExprStackPos(prevLetExprStart);
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
   761
            }
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
   762
            CondItem result = genCond(tree.expr, markBranches);
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
   763
            code.endScopes(limit);
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
   764
            return result;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   765
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   766
            CondItem result = genExpr(_tree, syms.booleanType).mkCond();
06bc494ca11e Initial load
duke
parents:
diff changeset
   767
            if (markBranches) result.tree = _tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   768
            return result;
06bc494ca11e Initial load
duke
parents:
diff changeset
   769
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   770
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   771
35424
96661d1df628 8148483: JEP 280: Indify String Concatenation
shade
parents: 35418
diff changeset
   772
    public Code getCode() {
96661d1df628 8148483: JEP 280: Indify String Concatenation
shade
parents: 35418
diff changeset
   773
        return code;
96661d1df628 8148483: JEP 280: Indify String Concatenation
shade
parents: 35418
diff changeset
   774
    }
96661d1df628 8148483: JEP 280: Indify String Concatenation
shade
parents: 35418
diff changeset
   775
96661d1df628 8148483: JEP 280: Indify String Concatenation
shade
parents: 35418
diff changeset
   776
    public Items getItems() {
96661d1df628 8148483: JEP 280: Indify String Concatenation
shade
parents: 35418
diff changeset
   777
        return items;
96661d1df628 8148483: JEP 280: Indify String Concatenation
shade
parents: 35418
diff changeset
   778
    }
96661d1df628 8148483: JEP 280: Indify String Concatenation
shade
parents: 35418
diff changeset
   779
96661d1df628 8148483: JEP 280: Indify String Concatenation
shade
parents: 35418
diff changeset
   780
    public Env<AttrContext> getAttrEnv() {
96661d1df628 8148483: JEP 280: Indify String Concatenation
shade
parents: 35418
diff changeset
   781
        return attrEnv;
96661d1df628 8148483: JEP 280: Indify String Concatenation
shade
parents: 35418
diff changeset
   782
    }
96661d1df628 8148483: JEP 280: Indify String Concatenation
shade
parents: 35418
diff changeset
   783
14721
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   784
    /** Visitor class for expressions which might be constant expressions.
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   785
     *  This class is a subset of TreeScanner. Intended to visit trees pruned by
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   786
     *  Lower as long as constant expressions looking for references to any
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   787
     *  ClassSymbol. Any such reference will be added to the constant pool so
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   788
     *  automated tools can detect class dependencies better.
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   789
     */
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   790
    class ClassReferenceVisitor extends JCTree.Visitor {
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   791
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   792
        @Override
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   793
        public void visitTree(JCTree tree) {}
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   794
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   795
        @Override
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   796
        public void visitBinary(JCBinary tree) {
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   797
            tree.lhs.accept(this);
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   798
            tree.rhs.accept(this);
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   799
        }
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   800
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   801
        @Override
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   802
        public void visitSelect(JCFieldAccess tree) {
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   803
            if (tree.selected.type.hasTag(CLASS)) {
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   804
                makeRef(tree.selected.pos(), tree.selected.type);
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   805
            }
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   806
        }
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   807
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   808
        @Override
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   809
        public void visitIdent(JCIdent tree) {
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   810
            if (tree.sym.owner instanceof ClassSymbol) {
54568
b2ed96c35687 8222289: Overhaul logic for reading/writing constant pool entries
mcimadamore
parents: 52936
diff changeset
   811
                poolWriter.putClass((ClassSymbol)tree.sym.owner);
14721
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   812
            }
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   813
        }
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   814
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   815
        @Override
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   816
        public void visitConditional(JCConditional tree) {
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   817
            tree.cond.accept(this);
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   818
            tree.truepart.accept(this);
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   819
            tree.falsepart.accept(this);
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   820
        }
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   821
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   822
        @Override
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   823
        public void visitUnary(JCUnary tree) {
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   824
            tree.arg.accept(this);
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   825
        }
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   826
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   827
        @Override
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   828
        public void visitParens(JCParens tree) {
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   829
            tree.expr.accept(this);
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   830
        }
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   831
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   832
        @Override
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   833
        public void visitTypeCast(JCTypeCast tree) {
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   834
            tree.expr.accept(this);
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   835
        }
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   836
    }
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   837
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   838
    private ClassReferenceVisitor classReferenceVisitor = new ClassReferenceVisitor();
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   839
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   840
    /** Visitor method: generate code for an expression, catching and reporting
06bc494ca11e Initial load
duke
parents:
diff changeset
   841
     *  any completion failures.
06bc494ca11e Initial load
duke
parents:
diff changeset
   842
     *  @param tree    The expression to be visited.
06bc494ca11e Initial load
duke
parents:
diff changeset
   843
     *  @param pt      The expression's expected type (proto-type).
06bc494ca11e Initial load
duke
parents:
diff changeset
   844
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   845
    public Item genExpr(JCTree tree, Type pt) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   846
        Type prevPt = this.pt;
06bc494ca11e Initial load
duke
parents:
diff changeset
   847
        try {
06bc494ca11e Initial load
duke
parents:
diff changeset
   848
            if (tree.type.constValue() != null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   849
                // Short circuit any expressions which are constants
14721
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
   850
                tree.accept(classReferenceVisitor);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   851
                checkStringConstant(tree.pos(), tree.type.constValue());
54762
64d9a4d582bc 8222949: add condy support to javac's pool API
vromero
parents: 54568
diff changeset
   852
                Symbol sym = TreeInfo.symbol(tree);
64d9a4d582bc 8222949: add condy support to javac's pool API
vromero
parents: 54568
diff changeset
   853
                if (sym != null && isConstantDynamic(sym)) {
64d9a4d582bc 8222949: add condy support to javac's pool API
vromero
parents: 54568
diff changeset
   854
                    result = items.makeDynamicItem(sym);
64d9a4d582bc 8222949: add condy support to javac's pool API
vromero
parents: 54568
diff changeset
   855
                } else {
64d9a4d582bc 8222949: add condy support to javac's pool API
vromero
parents: 54568
diff changeset
   856
                    result = items.makeImmediateItem(tree.type, tree.type.constValue());
64d9a4d582bc 8222949: add condy support to javac's pool API
vromero
parents: 54568
diff changeset
   857
                }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   858
            } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   859
                this.pt = pt;
06bc494ca11e Initial load
duke
parents:
diff changeset
   860
                tree.accept(this);
06bc494ca11e Initial load
duke
parents:
diff changeset
   861
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   862
            return result.coerce(pt);
06bc494ca11e Initial load
duke
parents:
diff changeset
   863
        } catch (CompletionFailure ex) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   864
            chk.completionError(tree.pos(), ex);
06bc494ca11e Initial load
duke
parents:
diff changeset
   865
            code.state.stacksize = 1;
06bc494ca11e Initial load
duke
parents:
diff changeset
   866
            return items.makeStackItem(pt);
06bc494ca11e Initial load
duke
parents:
diff changeset
   867
        } finally {
06bc494ca11e Initial load
duke
parents:
diff changeset
   868
            this.pt = prevPt;
06bc494ca11e Initial load
duke
parents:
diff changeset
   869
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   870
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   871
54762
64d9a4d582bc 8222949: add condy support to javac's pool API
vromero
parents: 54568
diff changeset
   872
    public boolean isConstantDynamic(Symbol sym) {
64d9a4d582bc 8222949: add condy support to javac's pool API
vromero
parents: 54568
diff changeset
   873
        return sym.kind == VAR &&
64d9a4d582bc 8222949: add condy support to javac's pool API
vromero
parents: 54568
diff changeset
   874
                sym instanceof DynamicVarSymbol &&
64d9a4d582bc 8222949: add condy support to javac's pool API
vromero
parents: 54568
diff changeset
   875
                ((DynamicVarSymbol)sym).isDynamic();
64d9a4d582bc 8222949: add condy support to javac's pool API
vromero
parents: 54568
diff changeset
   876
    }
64d9a4d582bc 8222949: add condy support to javac's pool API
vromero
parents: 54568
diff changeset
   877
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   878
    /** Derived visitor method: generate code for a list of method arguments.
06bc494ca11e Initial load
duke
parents:
diff changeset
   879
     *  @param trees    The argument expressions to be visited.
06bc494ca11e Initial load
duke
parents:
diff changeset
   880
     *  @param pts      The expression's expected types (i.e. the formal parameter
06bc494ca11e Initial load
duke
parents:
diff changeset
   881
     *                  types of the invoked method).
06bc494ca11e Initial load
duke
parents:
diff changeset
   882
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   883
    public void genArgs(List<JCExpression> trees, List<Type> pts) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   884
        for (List<JCExpression> l = trees; l.nonEmpty(); l = l.tail) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   885
            genExpr(l.head, pts.head).load();
06bc494ca11e Initial load
duke
parents:
diff changeset
   886
            pts = pts.tail;
06bc494ca11e Initial load
duke
parents:
diff changeset
   887
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   888
        // require lists be of same length
8032
e1aa25ccdabb 6396503: javac should not require assertions enabled
jjg
parents: 8031
diff changeset
   889
        Assert.check(pts.isEmpty());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   890
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   891
06bc494ca11e Initial load
duke
parents:
diff changeset
   892
/* ************************************************************************
06bc494ca11e Initial load
duke
parents:
diff changeset
   893
 * Visitor methods for statements and definitions
06bc494ca11e Initial load
duke
parents:
diff changeset
   894
 *************************************************************************/
06bc494ca11e Initial load
duke
parents:
diff changeset
   895
06bc494ca11e Initial load
duke
parents:
diff changeset
   896
    /** Thrown when the byte code size exceeds limit.
06bc494ca11e Initial load
duke
parents:
diff changeset
   897
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   898
    public static class CodeSizeOverflow extends RuntimeException {
06bc494ca11e Initial load
duke
parents:
diff changeset
   899
        private static final long serialVersionUID = 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
   900
        public CodeSizeOverflow() {}
06bc494ca11e Initial load
duke
parents:
diff changeset
   901
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   902
06bc494ca11e Initial load
duke
parents:
diff changeset
   903
    public void visitMethodDef(JCMethodDecl tree) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   904
        // Create a new local environment that points pack at method
06bc494ca11e Initial load
duke
parents:
diff changeset
   905
        // definition.
06bc494ca11e Initial load
duke
parents:
diff changeset
   906
        Env<GenContext> localEnv = env.dup(tree);
06bc494ca11e Initial load
duke
parents:
diff changeset
   907
        localEnv.enclMethod = tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   908
        // The expected type of every return statement in this method
06bc494ca11e Initial load
duke
parents:
diff changeset
   909
        // is the method's return type.
06bc494ca11e Initial load
duke
parents:
diff changeset
   910
        this.pt = tree.sym.erasure(types).getReturnType();
06bc494ca11e Initial load
duke
parents:
diff changeset
   911
06bc494ca11e Initial load
duke
parents:
diff changeset
   912
        checkDimension(tree.pos(), tree.sym.erasure(types));
06bc494ca11e Initial load
duke
parents:
diff changeset
   913
        genMethod(tree, localEnv, false);
06bc494ca11e Initial load
duke
parents:
diff changeset
   914
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   915
//where
06bc494ca11e Initial load
duke
parents:
diff changeset
   916
        /** Generate code for a method.
06bc494ca11e Initial load
duke
parents:
diff changeset
   917
         *  @param tree     The tree representing the method definition.
06bc494ca11e Initial load
duke
parents:
diff changeset
   918
         *  @param env      The environment current for the method body.
06bc494ca11e Initial load
duke
parents:
diff changeset
   919
         *  @param fatcode  A flag that indicates whether all jumps are
06bc494ca11e Initial load
duke
parents:
diff changeset
   920
         *                  within 32K.  We first invoke this method under
06bc494ca11e Initial load
duke
parents:
diff changeset
   921
         *                  the assumption that fatcode == false, i.e. all
06bc494ca11e Initial load
duke
parents:
diff changeset
   922
         *                  jumps are within 32K.  If this fails, fatcode
06bc494ca11e Initial load
duke
parents:
diff changeset
   923
         *                  is set to true and we try again.
06bc494ca11e Initial load
duke
parents:
diff changeset
   924
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   925
        void genMethod(JCMethodDecl tree, Env<GenContext> env, boolean fatcode) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   926
            MethodSymbol meth = tree.sym;
18653
1407564fb956 8014230: Compilation incorrectly succeeds with inner class constructor with 254 parameters
emc
parents: 18010
diff changeset
   927
            int extras = 0;
1407564fb956 8014230: Compilation incorrectly succeeds with inner class constructor with 254 parameters
emc
parents: 18010
diff changeset
   928
            // Count up extra parameters
1407564fb956 8014230: Compilation incorrectly succeeds with inner class constructor with 254 parameters
emc
parents: 18010
diff changeset
   929
            if (meth.isConstructor()) {
1407564fb956 8014230: Compilation incorrectly succeeds with inner class constructor with 254 parameters
emc
parents: 18010
diff changeset
   930
                extras++;
1407564fb956 8014230: Compilation incorrectly succeeds with inner class constructor with 254 parameters
emc
parents: 18010
diff changeset
   931
                if (meth.enclClass().isInner() &&
1407564fb956 8014230: Compilation incorrectly succeeds with inner class constructor with 254 parameters
emc
parents: 18010
diff changeset
   932
                    !meth.enclClass().isStatic()) {
1407564fb956 8014230: Compilation incorrectly succeeds with inner class constructor with 254 parameters
emc
parents: 18010
diff changeset
   933
                    extras++;
1407564fb956 8014230: Compilation incorrectly succeeds with inner class constructor with 254 parameters
emc
parents: 18010
diff changeset
   934
                }
1407564fb956 8014230: Compilation incorrectly succeeds with inner class constructor with 254 parameters
emc
parents: 18010
diff changeset
   935
            } else if ((tree.mods.flags & STATIC) == 0) {
1407564fb956 8014230: Compilation incorrectly succeeds with inner class constructor with 254 parameters
emc
parents: 18010
diff changeset
   936
                extras++;
1407564fb956 8014230: Compilation incorrectly succeeds with inner class constructor with 254 parameters
emc
parents: 18010
diff changeset
   937
            }
1407564fb956 8014230: Compilation incorrectly succeeds with inner class constructor with 254 parameters
emc
parents: 18010
diff changeset
   938
            //      System.err.println("Generating " + meth + " in " + meth.owner); //DEBUG
1407564fb956 8014230: Compilation incorrectly succeeds with inner class constructor with 254 parameters
emc
parents: 18010
diff changeset
   939
            if (Code.width(types.erasure(env.enclMethod.sym.type).getParameterTypes()) + extras >
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   940
                ClassFile.MAX_PARAMETERS) {
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45316
diff changeset
   941
                log.error(tree.pos(), Errors.LimitParameters);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   942
                nerrs++;
06bc494ca11e Initial load
duke
parents:
diff changeset
   943
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   944
06bc494ca11e Initial load
duke
parents:
diff changeset
   945
            else if (tree.body != null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   946
                // Create a new code structure and initialize it.
06bc494ca11e Initial load
duke
parents:
diff changeset
   947
                int startpcCrt = initCode(tree, env, fatcode);
06bc494ca11e Initial load
duke
parents:
diff changeset
   948
06bc494ca11e Initial load
duke
parents:
diff changeset
   949
                try {
06bc494ca11e Initial load
duke
parents:
diff changeset
   950
                    genStat(tree.body, env);
06bc494ca11e Initial load
duke
parents:
diff changeset
   951
                } catch (CodeSizeOverflow e) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   952
                    // Failed due to code limit, try again with jsr/ret
06bc494ca11e Initial load
duke
parents:
diff changeset
   953
                    startpcCrt = initCode(tree, env, fatcode);
06bc494ca11e Initial load
duke
parents:
diff changeset
   954
                    genStat(tree.body, env);
06bc494ca11e Initial load
duke
parents:
diff changeset
   955
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   956
06bc494ca11e Initial load
duke
parents:
diff changeset
   957
                if (code.state.stacksize != 0) {
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45316
diff changeset
   958
                    log.error(tree.body.pos(), Errors.StackSimError(tree.sym));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   959
                    throw new AssertionError();
06bc494ca11e Initial load
duke
parents:
diff changeset
   960
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   961
06bc494ca11e Initial load
duke
parents:
diff changeset
   962
                // If last statement could complete normally, insert a
06bc494ca11e Initial load
duke
parents:
diff changeset
   963
                // return at the end.
06bc494ca11e Initial load
duke
parents:
diff changeset
   964
                if (code.isAlive()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   965
                    code.statBegin(TreeInfo.endPos(tree.body));
06bc494ca11e Initial load
duke
parents:
diff changeset
   966
                    if (env.enclMethod == null ||
14359
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 14259
diff changeset
   967
                        env.enclMethod.sym.type.getReturnType().hasTag(VOID)) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   968
                        code.emitop0(return_);
06bc494ca11e Initial load
duke
parents:
diff changeset
   969
                    } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   970
                        // sometime dead code seems alive (4415991);
06bc494ca11e Initial load
duke
parents:
diff changeset
   971
                        // generate a small loop instead
06bc494ca11e Initial load
duke
parents:
diff changeset
   972
                        int startpc = code.entryPoint();
06bc494ca11e Initial load
duke
parents:
diff changeset
   973
                        CondItem c = items.makeCondItem(goto_);
06bc494ca11e Initial load
duke
parents:
diff changeset
   974
                        code.resolve(c.jumpTrue(), startpc);
06bc494ca11e Initial load
duke
parents:
diff changeset
   975
                    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   976
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   977
                if (genCrt)
06bc494ca11e Initial load
duke
parents:
diff changeset
   978
                    code.crt.put(tree.body,
06bc494ca11e Initial load
duke
parents:
diff changeset
   979
                                 CRT_BLOCK,
06bc494ca11e Initial load
duke
parents:
diff changeset
   980
                                 startpcCrt,
19941
8b91e8eb2d20 7047734: javac, the LVT is not generated correctly in several scenarios
vromero
parents: 19923
diff changeset
   981
                                 code.curCP());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   982
06bc494ca11e Initial load
duke
parents:
diff changeset
   983
                code.endScopes(0);
06bc494ca11e Initial load
duke
parents:
diff changeset
   984
06bc494ca11e Initial load
duke
parents:
diff changeset
   985
                // If we exceeded limits, panic
06bc494ca11e Initial load
duke
parents:
diff changeset
   986
                if (code.checkLimits(tree.pos(), log)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   987
                    nerrs++;
06bc494ca11e Initial load
duke
parents:
diff changeset
   988
                    return;
06bc494ca11e Initial load
duke
parents:
diff changeset
   989
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   990
06bc494ca11e Initial load
duke
parents:
diff changeset
   991
                // If we generated short code but got a long jump, do it again
06bc494ca11e Initial load
duke
parents:
diff changeset
   992
                // with fatCode = true.
06bc494ca11e Initial load
duke
parents:
diff changeset
   993
                if (!fatcode && code.fatcode) genMethod(tree, env, true);
06bc494ca11e Initial load
duke
parents:
diff changeset
   994
06bc494ca11e Initial load
duke
parents:
diff changeset
   995
                // Clean up
06bc494ca11e Initial load
duke
parents:
diff changeset
   996
                if(stackMap == StackMapFormat.JSR202) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   997
                    code.lastFrame = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   998
                    code.frameBeforeLast = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   999
                }
10811
4d4ed480210e 7093325: Redundant entry in bytecode exception table
mcimadamore
parents: 10457
diff changeset
  1000
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14949
diff changeset
  1001
                // Compress exception table
10811
4d4ed480210e 7093325: Redundant entry in bytecode exception table
mcimadamore
parents: 10457
diff changeset
  1002
                code.compressCatchTable();
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14949
diff changeset
  1003
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14949
diff changeset
  1004
                // Fill in type annotation positions for exception parameters
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14949
diff changeset
  1005
                code.fillExceptionParameterPositions();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1006
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1007
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1008
06bc494ca11e Initial load
duke
parents:
diff changeset
  1009
        private int initCode(JCMethodDecl tree, Env<GenContext> env, boolean fatcode) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1010
            MethodSymbol meth = tree.sym;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1011
06bc494ca11e Initial load
duke
parents:
diff changeset
  1012
            // Create a new code structure.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1013
            meth.code = code = new Code(meth,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1014
                                        fatcode,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1015
                                        lineDebugInfo ? toplevel.lineMap : null,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1016
                                        varDebugInfo,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1017
                                        stackMap,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1018
                                        debugCode,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1019
                                        genCrt ? new CRTable(tree, env.toplevel.endPositions)
06bc494ca11e Initial load
duke
parents:
diff changeset
  1020
                                               : null,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1021
                                        syms,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1022
                                        types,
54568
b2ed96c35687 8222289: Overhaul logic for reading/writing constant pool entries
mcimadamore
parents: 52936
diff changeset
  1023
                                        poolWriter);
b2ed96c35687 8222289: Overhaul logic for reading/writing constant pool entries
mcimadamore
parents: 52936
diff changeset
  1024
            items = new Items(poolWriter, code, syms, types);
19941
8b91e8eb2d20 7047734: javac, the LVT is not generated correctly in several scenarios
vromero
parents: 19923
diff changeset
  1025
            if (code.debugCode) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1026
                System.err.println(meth + " for body " + tree);
19941
8b91e8eb2d20 7047734: javac, the LVT is not generated correctly in several scenarios
vromero
parents: 19923
diff changeset
  1027
            }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1028
06bc494ca11e Initial load
duke
parents:
diff changeset
  1029
            // If method is not static, create a new local variable address
06bc494ca11e Initial load
duke
parents:
diff changeset
  1030
            // for `this'.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1031
            if ((tree.mods.flags & STATIC) == 0) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1032
                Type selfType = meth.owner.type;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1033
                if (meth.isConstructor() && selfType != syms.objectType)
06bc494ca11e Initial load
duke
parents:
diff changeset
  1034
                    selfType = UninitializedType.uninitializedThis(selfType);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1035
                code.setDefined(
06bc494ca11e Initial load
duke
parents:
diff changeset
  1036
                        code.newLocal(
06bc494ca11e Initial load
duke
parents:
diff changeset
  1037
                            new VarSymbol(FINAL, names._this, selfType, meth.owner)));
06bc494ca11e Initial load
duke
parents:
diff changeset
  1038
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1039
06bc494ca11e Initial load
duke
parents:
diff changeset
  1040
            // Mark all parameters as defined from the beginning of
06bc494ca11e Initial load
duke
parents:
diff changeset
  1041
            // the method.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1042
            for (List<JCVariableDecl> l = tree.params; l.nonEmpty(); l = l.tail) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1043
                checkDimension(l.head.pos(), l.head.sym.type);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1044
                code.setDefined(code.newLocal(l.head.sym));
06bc494ca11e Initial load
duke
parents:
diff changeset
  1045
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1046
06bc494ca11e Initial load
duke
parents:
diff changeset
  1047
            // Get ready to generate code for method body.
19941
8b91e8eb2d20 7047734: javac, the LVT is not generated correctly in several scenarios
vromero
parents: 19923
diff changeset
  1048
            int startpcCrt = genCrt ? code.curCP() : 0;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1049
            code.entryPoint();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1050
06bc494ca11e Initial load
duke
parents:
diff changeset
  1051
            // Suppress initial stackmap
06bc494ca11e Initial load
duke
parents:
diff changeset
  1052
            code.pendingStackMap = false;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1053
06bc494ca11e Initial load
duke
parents:
diff changeset
  1054
            return startpcCrt;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1055
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1056
06bc494ca11e Initial load
duke
parents:
diff changeset
  1057
    public void visitVarDef(JCVariableDecl tree) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1058
        VarSymbol v = tree.sym;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1059
        if (tree.init != null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1060
            checkStringConstant(tree.init.pos(), v.getConstValue());
06bc494ca11e Initial load
duke
parents:
diff changeset
  1061
            if (v.getConstValue() == null || varDebugInfo) {
51563
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
  1062
                Assert.check(code.isStatementStart());
51658
805807f15830 8210435: don't add local variable spots if they are DCE'ed by the compiler
vromero
parents: 51563
diff changeset
  1063
                code.newLocal(v);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1064
                genExpr(tree.init, v.erasure(types)).load();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1065
                items.makeLocalItem(v).store();
51563
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
  1066
                Assert.check(code.isStatementStart());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1067
            }
51658
805807f15830 8210435: don't add local variable spots if they are DCE'ed by the compiler
vromero
parents: 51563
diff changeset
  1068
        } else {
805807f15830 8210435: don't add local variable spots if they are DCE'ed by the compiler
vromero
parents: 51563
diff changeset
  1069
            code.newLocal(v);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1070
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1071
        checkDimension(tree.pos(), v.type);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1072
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1073
06bc494ca11e Initial load
duke
parents:
diff changeset
  1074
    public void visitSkip(JCSkip tree) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1075
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1076
06bc494ca11e Initial load
duke
parents:
diff changeset
  1077
    public void visitBlock(JCBlock tree) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1078
        int limit = code.nextreg;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1079
        Env<GenContext> localEnv = env.dup(tree, new GenContext());
06bc494ca11e Initial load
duke
parents:
diff changeset
  1080
        genStats(tree.stats, localEnv);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1081
        // End the scope of all block-local variables in variable info.
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 10811
diff changeset
  1082
        if (!env.tree.hasTag(METHODDEF)) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1083
            code.statBegin(tree.endpos);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1084
            code.endScopes(limit);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1085
            code.pendingStatPos = Position.NOPOS;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1086
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1087
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1088
06bc494ca11e Initial load
duke
parents:
diff changeset
  1089
    public void visitDoLoop(JCDoWhileLoop tree) {
42828
cce89649f958 8171371: Remove redundant type-arguments from generic method calls
mcimadamore
parents: 41029
diff changeset
  1090
        genLoop(tree, tree.body, tree.cond, List.nil(), false);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1091
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1092
06bc494ca11e Initial load
duke
parents:
diff changeset
  1093
    public void visitWhileLoop(JCWhileLoop tree) {
42828
cce89649f958 8171371: Remove redundant type-arguments from generic method calls
mcimadamore
parents: 41029
diff changeset
  1094
        genLoop(tree, tree.body, tree.cond, List.nil(), true);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1095
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1096
06bc494ca11e Initial load
duke
parents:
diff changeset
  1097
    public void visitForLoop(JCForLoop tree) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1098
        int limit = code.nextreg;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1099
        genStats(tree.init, env);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1100
        genLoop(tree, tree.body, tree.cond, tree.step, true);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1101
        code.endScopes(limit);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1102
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1103
    //where
06bc494ca11e Initial load
duke
parents:
diff changeset
  1104
        /** Generate code for a loop.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1105
         *  @param loop       The tree representing the loop.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1106
         *  @param body       The loop's body.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1107
         *  @param cond       The loop's controling condition.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1108
         *  @param step       "Step" statements to be inserted at end of
06bc494ca11e Initial load
duke
parents:
diff changeset
  1109
         *                    each iteration.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1110
         *  @param testFirst  True if the loop test belongs before the body.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1111
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
  1112
        private void genLoop(JCStatement loop,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1113
                             JCStatement body,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1114
                             JCExpression cond,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1115
                             List<JCExpressionStatement> step,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1116
                             boolean testFirst) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1117
            Env<GenContext> loopEnv = env.dup(loop, new GenContext());
06bc494ca11e Initial load
duke
parents:
diff changeset
  1118
            int startpc = code.entryPoint();
25607
9c077e7613c4 8050386: javac, follow-up of fix for JDK-8049305
vromero
parents: 25604
diff changeset
  1119
            if (testFirst) { //while or for loop
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1120
                CondItem c;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1121
                if (cond != null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1122
                    code.statBegin(cond.pos);
51563
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
  1123
                    Assert.check(code.isStatementStart());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1124
                    c = genCond(TreeInfo.skipParens(cond), CRT_FLOW_CONTROLLER);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1125
                } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1126
                    c = items.makeCondItem(goto_);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1127
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1128
                Chain loopDone = c.jumpFalse();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1129
                code.resolve(c.trueJumps);
51563
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
  1130
                Assert.check(code.isStatementStart());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1131
                genStat(body, loopEnv, CRT_STATEMENT | CRT_FLOW_TARGET);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1132
                code.resolve(loopEnv.info.cont);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1133
                genStats(step, loopEnv);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1134
                code.resolve(code.branch(goto_), startpc);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1135
                code.resolve(loopDone);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1136
            } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1137
                genStat(body, loopEnv, CRT_STATEMENT | CRT_FLOW_TARGET);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1138
                code.resolve(loopEnv.info.cont);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1139
                genStats(step, loopEnv);
37753
dbc87c966861 8155028: javac crashes in silly do-while loop
sadayapalam
parents: 37635
diff changeset
  1140
                if (code.isAlive()) {
dbc87c966861 8155028: javac crashes in silly do-while loop
sadayapalam
parents: 37635
diff changeset
  1141
                    CondItem c;
dbc87c966861 8155028: javac crashes in silly do-while loop
sadayapalam
parents: 37635
diff changeset
  1142
                    if (cond != null) {
dbc87c966861 8155028: javac crashes in silly do-while loop
sadayapalam
parents: 37635
diff changeset
  1143
                        code.statBegin(cond.pos);
51563
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
  1144
                        Assert.check(code.isStatementStart());
37753
dbc87c966861 8155028: javac crashes in silly do-while loop
sadayapalam
parents: 37635
diff changeset
  1145
                        c = genCond(TreeInfo.skipParens(cond), CRT_FLOW_CONTROLLER);
dbc87c966861 8155028: javac crashes in silly do-while loop
sadayapalam
parents: 37635
diff changeset
  1146
                    } else {
dbc87c966861 8155028: javac crashes in silly do-while loop
sadayapalam
parents: 37635
diff changeset
  1147
                        c = items.makeCondItem(goto_);
dbc87c966861 8155028: javac crashes in silly do-while loop
sadayapalam
parents: 37635
diff changeset
  1148
                    }
dbc87c966861 8155028: javac crashes in silly do-while loop
sadayapalam
parents: 37635
diff changeset
  1149
                    code.resolve(c.jumpTrue(), startpc);
51563
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
  1150
                    Assert.check(code.isStatementStart());
37753
dbc87c966861 8155028: javac crashes in silly do-while loop
sadayapalam
parents: 37635
diff changeset
  1151
                    code.resolve(c.falseJumps);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1152
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1153
            }
28338
53f6dcec62d1 8067429: java.lang.VerifyError: Inconsistent stackmap frames at branch target
mcimadamore
parents: 28330
diff changeset
  1154
            Chain exit = loopEnv.info.exit;
53f6dcec62d1 8067429: java.lang.VerifyError: Inconsistent stackmap frames at branch target
mcimadamore
parents: 28330
diff changeset
  1155
            if (exit != null) {
53f6dcec62d1 8067429: java.lang.VerifyError: Inconsistent stackmap frames at branch target
mcimadamore
parents: 28330
diff changeset
  1156
                code.resolve(exit);
53f6dcec62d1 8067429: java.lang.VerifyError: Inconsistent stackmap frames at branch target
mcimadamore
parents: 28330
diff changeset
  1157
                exit.state.defined.excludeFrom(code.nextreg);
25607
9c077e7613c4 8050386: javac, follow-up of fix for JDK-8049305
vromero
parents: 25604
diff changeset
  1158
            }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1159
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1160
06bc494ca11e Initial load
duke
parents:
diff changeset
  1161
    public void visitForeachLoop(JCEnhancedForLoop tree) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1162
        throw new AssertionError(); // should have been removed by Lower.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1163
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1164
06bc494ca11e Initial load
duke
parents:
diff changeset
  1165
    public void visitLabelled(JCLabeledStatement tree) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1166
        Env<GenContext> localEnv = env.dup(tree, new GenContext());
06bc494ca11e Initial load
duke
parents:
diff changeset
  1167
        genStat(tree.body, localEnv, CRT_STATEMENT);
28338
53f6dcec62d1 8067429: java.lang.VerifyError: Inconsistent stackmap frames at branch target
mcimadamore
parents: 28330
diff changeset
  1168
        Chain exit = localEnv.info.exit;
53f6dcec62d1 8067429: java.lang.VerifyError: Inconsistent stackmap frames at branch target
mcimadamore
parents: 28330
diff changeset
  1169
        if (exit != null) {
53f6dcec62d1 8067429: java.lang.VerifyError: Inconsistent stackmap frames at branch target
mcimadamore
parents: 28330
diff changeset
  1170
            code.resolve(exit);
53f6dcec62d1 8067429: java.lang.VerifyError: Inconsistent stackmap frames at branch target
mcimadamore
parents: 28330
diff changeset
  1171
            exit.state.defined.excludeFrom(code.nextreg);
53f6dcec62d1 8067429: java.lang.VerifyError: Inconsistent stackmap frames at branch target
mcimadamore
parents: 28330
diff changeset
  1172
        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1173
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1174
06bc494ca11e Initial load
duke
parents:
diff changeset
  1175
    public void visitSwitch(JCSwitch tree) {
52794
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
  1176
        handleSwitch(tree, tree.selector, tree.cases);
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
  1177
    }
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
  1178
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
  1179
    @Override
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
  1180
    public void visitSwitchExpression(JCSwitchExpression tree) {
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
  1181
        code.resolvePending();
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
  1182
        boolean prevInCondSwitchExpression = inCondSwitchExpression;
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
  1183
        try {
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
  1184
            inCondSwitchExpression = false;
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
  1185
            doHandleSwitchExpression(tree);
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
  1186
        } finally {
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
  1187
            inCondSwitchExpression = prevInCondSwitchExpression;
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
  1188
        }
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
  1189
        result = items.makeStackItem(pt);
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
  1190
    }
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
  1191
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
  1192
    private void doHandleSwitchExpression(JCSwitchExpression tree) {
52936
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1193
        List<LocalItem> prevStackBeforeSwitchExpression = stackBeforeSwitchExpression;
55340
ef577fa0dd10 8220018: javac crash when compiling try-catch-finally inside switch expression
jlahoda
parents: 55306
diff changeset
  1194
        LocalItem prevSwitchResult = switchResult;
52936
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1195
        int limit = code.nextreg;
52794
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
  1196
        try {
52936
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1197
            stackBeforeSwitchExpression = List.nil();
55340
ef577fa0dd10 8220018: javac crash when compiling try-catch-finally inside switch expression
jlahoda
parents: 55306
diff changeset
  1198
            switchResult = null;
52936
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1199
            if (hasTry(tree)) {
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1200
                //if the switch expression contains try-catch, the catch handlers need to have
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1201
                //an empty stack. So stash whole stack to local variables, and restore it before
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1202
                //breaks:
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1203
                while (code.state.stacksize > 0) {
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1204
                    Type type = code.state.peek();
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1205
                    Name varName = names.fromString(target.syntheticNameChar() +
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1206
                                                    "stack" +
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1207
                                                    target.syntheticNameChar() +
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1208
                                                    tree.pos +
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1209
                                                    target.syntheticNameChar() +
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1210
                                                    code.state.stacksize);
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1211
                    VarSymbol var = new VarSymbol(Flags.SYNTHETIC, varName, type,
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1212
                                                  this.env.enclMethod.sym);
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1213
                    LocalItem item = items.new LocalItem(type, code.newLocal(var));
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1214
                    stackBeforeSwitchExpression = stackBeforeSwitchExpression.prepend(item);
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1215
                    item.store();
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1216
                }
55340
ef577fa0dd10 8220018: javac crash when compiling try-catch-finally inside switch expression
jlahoda
parents: 55306
diff changeset
  1217
                switchResult = makeTemp(tree.type);
52936
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1218
            }
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1219
            int prevLetExprStart = code.setLetExprStackPos(code.state.stacksize);
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1220
            try {
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1221
                handleSwitch(tree, tree.selector, tree.cases);
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1222
            } finally {
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1223
                code.setLetExprStackPos(prevLetExprStart);
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1224
            }
52794
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
  1225
        } finally {
52936
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1226
            stackBeforeSwitchExpression = prevStackBeforeSwitchExpression;
55340
ef577fa0dd10 8220018: javac crash when compiling try-catch-finally inside switch expression
jlahoda
parents: 55306
diff changeset
  1227
            switchResult = prevSwitchResult;
52936
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1228
            code.endScopes(limit);
52794
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
  1229
        }
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
  1230
    }
52936
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1231
    //where:
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1232
        private boolean hasTry(JCSwitchExpression tree) {
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1233
            boolean[] hasTry = new boolean[1];
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1234
            new TreeScanner() {
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1235
                @Override
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1236
                public void visitTry(JCTry tree) {
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1237
                    hasTry[0] = true;
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1238
                }
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1239
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1240
                @Override
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1241
                public void visitClassDef(JCClassDecl tree) {
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1242
                }
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1243
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1244
                @Override
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1245
                public void visitLambda(JCLambda tree) {
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1246
                }
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1247
            }.scan(tree);
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1248
            return hasTry[0];
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1249
        }
52794
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
  1250
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
  1251
    private void handleSwitch(JCTree swtch, JCExpression selector, List<JCCase> cases) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1252
        int limit = code.nextreg;
52794
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
  1253
        Assert.check(!selector.type.hasTag(CLASS));
19941
8b91e8eb2d20 7047734: javac, the LVT is not generated correctly in several scenarios
vromero
parents: 19923
diff changeset
  1254
        int startpcCrt = genCrt ? code.curCP() : 0;
51563
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
  1255
        Assert.check(code.isStatementStart());
52794
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
  1256
        Item sel = genExpr(selector, syms.intType);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1257
        if (cases.isEmpty()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1258
            // We are seeing:  switch <sel> {}
06bc494ca11e Initial load
duke
parents:
diff changeset
  1259
            sel.load().drop();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1260
            if (genCrt)
52794
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
  1261
                code.crt.put(TreeInfo.skipParens(selector),
19941
8b91e8eb2d20 7047734: javac, the LVT is not generated correctly in several scenarios
vromero
parents: 19923
diff changeset
  1262
                             CRT_FLOW_CONTROLLER, startpcCrt, code.curCP());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1263
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1264
            // We are seeing a nonempty switch.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1265
            sel.load();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1266
            if (genCrt)
52794
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
  1267
                code.crt.put(TreeInfo.skipParens(selector),
19941
8b91e8eb2d20 7047734: javac, the LVT is not generated correctly in several scenarios
vromero
parents: 19923
diff changeset
  1268
                             CRT_FLOW_CONTROLLER, startpcCrt, code.curCP());
52794
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
  1269
            Env<GenContext> switchEnv = env.dup(swtch, new GenContext());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1270
            switchEnv.info.isSwitch = true;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1271
06bc494ca11e Initial load
duke
parents:
diff changeset
  1272
            // Compute number of labels and minimum and maximum label values.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1273
            // For each case, store its label in an array.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1274
            int lo = Integer.MAX_VALUE;  // minimum label.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1275
            int hi = Integer.MIN_VALUE;  // maximum label.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1276
            int nlabels = 0;               // number of labels.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1277
06bc494ca11e Initial load
duke
parents:
diff changeset
  1278
            int[] labels = new int[cases.length()];  // the label array.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1279
            int defaultIndex = -1;     // the index of the default clause.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1280
06bc494ca11e Initial load
duke
parents:
diff changeset
  1281
            List<JCCase> l = cases;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1282
            for (int i = 0; i < labels.length; i++) {
51563
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
  1283
                if (l.head.pats.nonEmpty()) {
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
  1284
                    Assert.check(l.head.pats.size() == 1);
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
  1285
                    int val = ((Number)l.head.pats.head.type.constValue()).intValue();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1286
                    labels[i] = val;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1287
                    if (val < lo) lo = val;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1288
                    if (hi < val) hi = val;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1289
                    nlabels++;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1290
                } else {
8032
e1aa25ccdabb 6396503: javac should not require assertions enabled
jjg
parents: 8031
diff changeset
  1291
                    Assert.check(defaultIndex == -1);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1292
                    defaultIndex = i;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1293
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1294
                l = l.tail;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1295
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1296
06bc494ca11e Initial load
duke
parents:
diff changeset
  1297
            // Determine whether to issue a tableswitch or a lookupswitch
27123
10171e97e021 8060249: Backout fix for JDK-8058243
pgovereau
parents: 27122
diff changeset
  1298
            // instruction.
10171e97e021 8060249: Backout fix for JDK-8058243
pgovereau
parents: 27122
diff changeset
  1299
            long table_space_cost = 4 + ((long) hi - lo + 1); // words
10171e97e021 8060249: Backout fix for JDK-8058243
pgovereau
parents: 27122
diff changeset
  1300
            long table_time_cost = 3; // comparisons
10171e97e021 8060249: Backout fix for JDK-8058243
pgovereau
parents: 27122
diff changeset
  1301
            long lookup_space_cost = 3 + 2 * (long) nlabels;
10171e97e021 8060249: Backout fix for JDK-8058243
pgovereau
parents: 27122
diff changeset
  1302
            long lookup_time_cost = nlabels;
10171e97e021 8060249: Backout fix for JDK-8058243
pgovereau
parents: 27122
diff changeset
  1303
            int opcode =
10171e97e021 8060249: Backout fix for JDK-8058243
pgovereau
parents: 27122
diff changeset
  1304
                nlabels > 0 &&
10171e97e021 8060249: Backout fix for JDK-8058243
pgovereau
parents: 27122
diff changeset
  1305
                table_space_cost + 3 * table_time_cost <=
10171e97e021 8060249: Backout fix for JDK-8058243
pgovereau
parents: 27122
diff changeset
  1306
                lookup_space_cost + 3 * lookup_time_cost
10171e97e021 8060249: Backout fix for JDK-8058243
pgovereau
parents: 27122
diff changeset
  1307
                ?
10171e97e021 8060249: Backout fix for JDK-8058243
pgovereau
parents: 27122
diff changeset
  1308
                tableswitch : lookupswitch;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1309
19941
8b91e8eb2d20 7047734: javac, the LVT is not generated correctly in several scenarios
vromero
parents: 19923
diff changeset
  1310
            int startpc = code.curCP();    // the position of the selector operation
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1311
            code.emitop0(opcode);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1312
            code.align(4);
19941
8b91e8eb2d20 7047734: javac, the LVT is not generated correctly in several scenarios
vromero
parents: 19923
diff changeset
  1313
            int tableBase = code.curCP();  // the start of the jump table
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1314
            int[] offsets = null;          // a table of offsets for a lookupswitch
06bc494ca11e Initial load
duke
parents:
diff changeset
  1315
            code.emit4(-1);                // leave space for default offset
06bc494ca11e Initial load
duke
parents:
diff changeset
  1316
            if (opcode == tableswitch) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1317
                code.emit4(lo);            // minimum label
06bc494ca11e Initial load
duke
parents:
diff changeset
  1318
                code.emit4(hi);            // maximum label
06bc494ca11e Initial load
duke
parents:
diff changeset
  1319
                for (long i = lo; i <= hi; i++) {  // leave space for jump table
06bc494ca11e Initial load
duke
parents:
diff changeset
  1320
                    code.emit4(-1);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1321
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1322
            } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1323
                code.emit4(nlabels);    // number of labels
06bc494ca11e Initial load
duke
parents:
diff changeset
  1324
                for (int i = 0; i < nlabels; i++) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1325
                    code.emit4(-1); code.emit4(-1); // leave space for lookup table
06bc494ca11e Initial load
duke
parents:
diff changeset
  1326
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1327
                offsets = new int[labels.length];
06bc494ca11e Initial load
duke
parents:
diff changeset
  1328
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1329
            Code.State stateSwitch = code.state.dup();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1330
            code.markDead();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1331
06bc494ca11e Initial load
duke
parents:
diff changeset
  1332
            // For each case do:
06bc494ca11e Initial load
duke
parents:
diff changeset
  1333
            l = cases;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1334
            for (int i = 0; i < labels.length; i++) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1335
                JCCase c = l.head;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1336
                l = l.tail;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1337
06bc494ca11e Initial load
duke
parents:
diff changeset
  1338
                int pc = code.entryPoint(stateSwitch);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1339
                // Insert offset directly into code or else into the
06bc494ca11e Initial load
duke
parents:
diff changeset
  1340
                // offsets table.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1341
                if (i != defaultIndex) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1342
                    if (opcode == tableswitch) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1343
                        code.put4(
06bc494ca11e Initial load
duke
parents:
diff changeset
  1344
                            tableBase + 4 * (labels[i] - lo + 3),
06bc494ca11e Initial load
duke
parents:
diff changeset
  1345
                            pc - startpc);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1346
                    } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1347
                        offsets[i] = pc - startpc;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1348
                    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1349
                } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1350
                    code.put4(tableBase, pc - startpc);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1351
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1352
06bc494ca11e Initial load
duke
parents:
diff changeset
  1353
                // Generate code for the statements in this case.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1354
                genStats(c.stats, switchEnv, CRT_FLOW_TARGET);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1355
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1356
06bc494ca11e Initial load
duke
parents:
diff changeset
  1357
            // Resolve all breaks.
28338
53f6dcec62d1 8067429: java.lang.VerifyError: Inconsistent stackmap frames at branch target
mcimadamore
parents: 28330
diff changeset
  1358
            Chain exit = switchEnv.info.exit;
53f6dcec62d1 8067429: java.lang.VerifyError: Inconsistent stackmap frames at branch target
mcimadamore
parents: 28330
diff changeset
  1359
            if  (exit != null) {
53f6dcec62d1 8067429: java.lang.VerifyError: Inconsistent stackmap frames at branch target
mcimadamore
parents: 28330
diff changeset
  1360
                code.resolve(exit);
41029
869e95ade880 8160699: java.lang.VerifyError: Inconsistent stackmap frames at branch target
sadayapalam
parents: 39920
diff changeset
  1361
                exit.state.defined.excludeFrom(limit);
28338
53f6dcec62d1 8067429: java.lang.VerifyError: Inconsistent stackmap frames at branch target
mcimadamore
parents: 28330
diff changeset
  1362
            }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1363
06bc494ca11e Initial load
duke
parents:
diff changeset
  1364
            // If we have not set the default offset, we do so now.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1365
            if (code.get4(tableBase) == -1) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1366
                code.put4(tableBase, code.entryPoint(stateSwitch) - startpc);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1367
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1368
06bc494ca11e Initial load
duke
parents:
diff changeset
  1369
            if (opcode == tableswitch) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1370
                // Let any unfilled slots point to the default case.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1371
                int defaultOffset = code.get4(tableBase);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1372
                for (long i = lo; i <= hi; i++) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1373
                    int t = (int)(tableBase + 4 * (i - lo + 3));
06bc494ca11e Initial load
duke
parents:
diff changeset
  1374
                    if (code.get4(t) == -1)
06bc494ca11e Initial load
duke
parents:
diff changeset
  1375
                        code.put4(t, defaultOffset);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1376
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1377
            } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1378
                // Sort non-default offsets and copy into lookup table.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1379
                if (defaultIndex >= 0)
06bc494ca11e Initial load
duke
parents:
diff changeset
  1380
                    for (int i = defaultIndex; i < labels.length - 1; i++) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1381
                        labels[i] = labels[i+1];
06bc494ca11e Initial load
duke
parents:
diff changeset
  1382
                        offsets[i] = offsets[i+1];
06bc494ca11e Initial load
duke
parents:
diff changeset
  1383
                    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1384
                if (nlabels > 0)
06bc494ca11e Initial load
duke
parents:
diff changeset
  1385
                    qsort2(labels, offsets, 0, nlabels - 1);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1386
                for (int i = 0; i < nlabels; i++) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1387
                    int caseidx = tableBase + 8 * (i + 1);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1388
                    code.put4(caseidx, labels[i]);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1389
                    code.put4(caseidx + 4, offsets[i]);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1390
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1391
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1392
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1393
        code.endScopes(limit);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1394
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1395
//where
06bc494ca11e Initial load
duke
parents:
diff changeset
  1396
        /** Sort (int) arrays of keys and values
06bc494ca11e Initial load
duke
parents:
diff changeset
  1397
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
  1398
       static void qsort2(int[] keys, int[] values, int lo, int hi) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1399
            int i = lo;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1400
            int j = hi;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1401
            int pivot = keys[(i+j)/2];
06bc494ca11e Initial load
duke
parents:
diff changeset
  1402
            do {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1403
                while (keys[i] < pivot) i++;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1404
                while (pivot < keys[j]) j--;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1405
                if (i <= j) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1406
                    int temp1 = keys[i];
06bc494ca11e Initial load
duke
parents:
diff changeset
  1407
                    keys[i] = keys[j];
06bc494ca11e Initial load
duke
parents:
diff changeset
  1408
                    keys[j] = temp1;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1409
                    int temp2 = values[i];
06bc494ca11e Initial load
duke
parents:
diff changeset
  1410
                    values[i] = values[j];
06bc494ca11e Initial load
duke
parents:
diff changeset
  1411
                    values[j] = temp2;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1412
                    i++;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1413
                    j--;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1414
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1415
            } while (i <= j);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1416
            if (lo < j) qsort2(keys, values, lo, j);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1417
            if (i < hi) qsort2(keys, values, i, hi);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1418
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1419
06bc494ca11e Initial load
duke
parents:
diff changeset
  1420
    public void visitSynchronized(JCSynchronized tree) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1421
        int limit = code.nextreg;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1422
        // Generate code to evaluate lock and save in temporary variable.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1423
        final LocalItem lockVar = makeTemp(syms.objectType);
51563
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
  1424
        Assert.check(code.isStatementStart());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1425
        genExpr(tree.lock, tree.lock.type).load().duplicate();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1426
        lockVar.store();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1427
06bc494ca11e Initial load
duke
parents:
diff changeset
  1428
        // Generate code to enter monitor.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1429
        code.emitop0(monitorenter);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1430
        code.state.lock(lockVar.reg);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1431
06bc494ca11e Initial load
duke
parents:
diff changeset
  1432
        // Generate code for a try statement with given body, no catch clauses
06bc494ca11e Initial load
duke
parents:
diff changeset
  1433
        // in a new environment with the "exit-monitor" operation as finalizer.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1434
        final Env<GenContext> syncEnv = env.dup(tree, new GenContext());
06bc494ca11e Initial load
duke
parents:
diff changeset
  1435
        syncEnv.info.finalize = new GenFinalizer() {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1436
            void gen() {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1437
                genLast();
8032
e1aa25ccdabb 6396503: javac should not require assertions enabled
jjg
parents: 8031
diff changeset
  1438
                Assert.check(syncEnv.info.gaps.length() % 2 == 0);
19941
8b91e8eb2d20 7047734: javac, the LVT is not generated correctly in several scenarios
vromero
parents: 19923
diff changeset
  1439
                syncEnv.info.gaps.append(code.curCP());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1440
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1441
            void genLast() {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1442
                if (code.isAlive()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1443
                    lockVar.load();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1444
                    code.emitop0(monitorexit);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1445
                    code.state.unlock(lockVar.reg);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1446
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1447
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1448
        };
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 21897
diff changeset
  1449
        syncEnv.info.gaps = new ListBuffer<>();
42828
cce89649f958 8171371: Remove redundant type-arguments from generic method calls
mcimadamore
parents: 41029
diff changeset
  1450
        genTry(tree.body, List.nil(), syncEnv);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1451
        code.endScopes(limit);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1452
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1453
06bc494ca11e Initial load
duke
parents:
diff changeset
  1454
    public void visitTry(final JCTry tree) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1455
        // Generate code for a try statement with given body and catch clauses,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1456
        // in a new environment which calls the finally block if there is one.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1457
        final Env<GenContext> tryEnv = env.dup(tree, new GenContext());
06bc494ca11e Initial load
duke
parents:
diff changeset
  1458
        final Env<GenContext> oldEnv = env;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1459
        tryEnv.info.finalize = new GenFinalizer() {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1460
            void gen() {
36153
ed5063b304be 8149600: javac, remove unused options, step 2
vromero
parents: 35424
diff changeset
  1461
                Assert.check(tryEnv.info.gaps.length() % 2 == 0);
ed5063b304be 8149600: javac, remove unused options, step 2
vromero
parents: 35424
diff changeset
  1462
                tryEnv.info.gaps.append(code.curCP());
ed5063b304be 8149600: javac, remove unused options, step 2
vromero
parents: 35424
diff changeset
  1463
                genLast();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1464
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1465
            void genLast() {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1466
                if (tree.finalizer != null)
06bc494ca11e Initial load
duke
parents:
diff changeset
  1467
                    genStat(tree.finalizer, oldEnv, CRT_BLOCK);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1468
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1469
            boolean hasFinalizer() {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1470
                return tree.finalizer != null;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1471
            }
49280
c2a3a2aa2475 8194978: Javac produces dead code for try-with-resource
jlahoda
parents: 47216
diff changeset
  1472
c2a3a2aa2475 8194978: Javac produces dead code for try-with-resource
jlahoda
parents: 47216
diff changeset
  1473
            @Override
c2a3a2aa2475 8194978: Javac produces dead code for try-with-resource
jlahoda
parents: 47216
diff changeset
  1474
            void afterBody() {
c2a3a2aa2475 8194978: Javac produces dead code for try-with-resource
jlahoda
parents: 47216
diff changeset
  1475
                if (tree.finalizer != null && (tree.finalizer.flags & BODY_ONLY_FINALIZE) != 0) {
c2a3a2aa2475 8194978: Javac produces dead code for try-with-resource
jlahoda
parents: 47216
diff changeset
  1476
                    //for body-only finally, remove the GenFinalizer after try body
c2a3a2aa2475 8194978: Javac produces dead code for try-with-resource
jlahoda
parents: 47216
diff changeset
  1477
                    //so that the finally is not generated to catch bodies:
c2a3a2aa2475 8194978: Javac produces dead code for try-with-resource
jlahoda
parents: 47216
diff changeset
  1478
                    tryEnv.info.finalize = null;
c2a3a2aa2475 8194978: Javac produces dead code for try-with-resource
jlahoda
parents: 47216
diff changeset
  1479
                }
c2a3a2aa2475 8194978: Javac produces dead code for try-with-resource
jlahoda
parents: 47216
diff changeset
  1480
            }
c2a3a2aa2475 8194978: Javac produces dead code for try-with-resource
jlahoda
parents: 47216
diff changeset
  1481
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1482
        };
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 21897
diff changeset
  1483
        tryEnv.info.gaps = new ListBuffer<>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1484
        genTry(tree.body, tree.catchers, tryEnv);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1485
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1486
    //where
06bc494ca11e Initial load
duke
parents:
diff changeset
  1487
        /** Generate code for a try or synchronized statement
06bc494ca11e Initial load
duke
parents:
diff changeset
  1488
         *  @param body      The body of the try or synchronized statement.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1489
         *  @param catchers  The lis of catch clauses.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1490
         *  @param env       the environment current for the body.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1491
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
  1492
        void genTry(JCTree body, List<JCCatch> catchers, Env<GenContext> env) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1493
            int limit = code.nextreg;
19941
8b91e8eb2d20 7047734: javac, the LVT is not generated correctly in several scenarios
vromero
parents: 19923
diff changeset
  1494
            int startpc = code.curCP();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1495
            Code.State stateTry = code.state.dup();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1496
            genStat(body, env, CRT_BLOCK);
19941
8b91e8eb2d20 7047734: javac, the LVT is not generated correctly in several scenarios
vromero
parents: 19923
diff changeset
  1497
            int endpc = code.curCP();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1498
            List<Integer> gaps = env.info.gaps.toList();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1499
            code.statBegin(TreeInfo.endPos(body));
06bc494ca11e Initial load
duke
parents:
diff changeset
  1500
            genFinalizer(env);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1501
            code.statBegin(TreeInfo.endPos(env.tree));
19923
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1502
            Chain exitChain = code.branch(goto_);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1503
            endFinalizerGap(env);
49280
c2a3a2aa2475 8194978: Javac produces dead code for try-with-resource
jlahoda
parents: 47216
diff changeset
  1504
            env.info.finalize.afterBody();
c2a3a2aa2475 8194978: Javac produces dead code for try-with-resource
jlahoda
parents: 47216
diff changeset
  1505
            boolean hasFinalizer =
c2a3a2aa2475 8194978: Javac produces dead code for try-with-resource
jlahoda
parents: 47216
diff changeset
  1506
                env.info.finalize != null &&
c2a3a2aa2475 8194978: Javac produces dead code for try-with-resource
jlahoda
parents: 47216
diff changeset
  1507
                env.info.finalize.hasFinalizer();
19923
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1508
            if (startpc != endpc) for (List<JCCatch> l = catchers; l.nonEmpty(); l = l.tail) {
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1509
                // start off with exception on stack
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1510
                code.entryPoint(stateTry, l.head.param.sym.type);
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1511
                genCatch(l.head, env, startpc, endpc, gaps);
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1512
                genFinalizer(env);
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1513
                if (hasFinalizer || l.tail.nonEmpty()) {
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1514
                    code.statBegin(TreeInfo.endPos(env.tree));
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1515
                    exitChain = Code.mergeChains(exitChain,
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1516
                                                 code.branch(goto_));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1517
                }
19923
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1518
                endFinalizerGap(env);
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1519
            }
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1520
            if (hasFinalizer) {
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1521
                // Create a new register segement to avoid allocating
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1522
                // the same variables in finalizers and other statements.
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1523
                code.newRegSegment();
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1524
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1525
                // Add a catch-all clause.
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1526
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1527
                // start off with exception on stack
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1528
                int catchallpc = code.entryPoint(stateTry, syms.throwableType);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1529
19923
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1530
                // Register all exception ranges for catch all clause.
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1531
                // The range of the catch all clause is from the beginning
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1532
                // of the try or synchronized block until the present
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1533
                // code pointer excluding all gaps in the current
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1534
                // environment's GenContext.
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1535
                int startseg = startpc;
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1536
                while (env.info.gaps.nonEmpty()) {
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1537
                    int endseg = env.info.gaps.next().intValue();
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1538
                    registerCatch(body.pos(), startseg, endseg,
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1539
                                  catchallpc, 0);
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1540
                    startseg = env.info.gaps.next().intValue();
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1541
                }
45220
7c775294b6f1 8180660: missing LNT entry for finally block
vromero
parents: 45088
diff changeset
  1542
                code.statBegin(TreeInfo.finalizerPos(env.tree, PosKind.FIRST_STAT_POS));
19923
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1543
                code.markStatBegin();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1544
19923
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1545
                Item excVar = makeTemp(syms.throwableType);
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1546
                excVar.store();
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1547
                genFinalizer(env);
45220
7c775294b6f1 8180660: missing LNT entry for finally block
vromero
parents: 45088
diff changeset
  1548
                code.resolvePending();
7c775294b6f1 8180660: missing LNT entry for finally block
vromero
parents: 45088
diff changeset
  1549
                code.statBegin(TreeInfo.finalizerPos(env.tree, PosKind.END_POS));
7c775294b6f1 8180660: missing LNT entry for finally block
vromero
parents: 45088
diff changeset
  1550
                code.markStatBegin();
7c775294b6f1 8180660: missing LNT entry for finally block
vromero
parents: 45088
diff changeset
  1551
19923
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1552
                excVar.load();
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1553
                registerCatch(body.pos(), startseg,
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1554
                              env.info.gaps.next().intValue(),
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1555
                              catchallpc, 0);
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1556
                code.emitop0(athrow);
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1557
                code.markDead();
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1558
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1559
                // If there are jsr's to this finalizer, ...
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1560
                if (env.info.cont != null) {
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1561
                    // Resolve all jsr's.
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1562
                    code.resolve(env.info.cont);
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1563
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1564
                    // Mark statement line number
45220
7c775294b6f1 8180660: missing LNT entry for finally block
vromero
parents: 45088
diff changeset
  1565
                    code.statBegin(TreeInfo.finalizerPos(env.tree, PosKind.FIRST_STAT_POS));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1566
                    code.markStatBegin();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1567
19923
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1568
                    // Save return address.
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1569
                    LocalItem retVar = makeTemp(syms.throwableType);
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1570
                    retVar.store();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1571
19923
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1572
                    // Generate finalizer code.
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1573
                    env.info.finalize.genLast();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1574
19923
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1575
                    // Return.
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1576
                    code.emitop1w(ret, retVar.reg);
4895f15b3845 8024039: javac, previous solution for JDK-8022186 was incorrect
vromero
parents: 19247
diff changeset
  1577
                    code.markDead();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1578
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1579
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1580
            // Resolve all breaks.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1581
            code.resolve(exitChain);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1582
06bc494ca11e Initial load
duke
parents:
diff changeset
  1583
            code.endScopes(limit);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1584
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1585
06bc494ca11e Initial load
duke
parents:
diff changeset
  1586
        /** Generate code for a catch clause.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1587
         *  @param tree     The catch clause.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1588
         *  @param env      The environment current in the enclosing try.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1589
         *  @param startpc  Start pc of try-block.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1590
         *  @param endpc    End pc of try-block.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1591
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
  1592
        void genCatch(JCCatch tree,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1593
                      Env<GenContext> env,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1594
                      int startpc, int endpc,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1595
                      List<Integer> gaps) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1596
            if (startpc != endpc) {
29842
826ac2519523 8031744: Annotations on many Language Model elements are not returned
jjg
parents: 29777
diff changeset
  1597
                List<Pair<List<Attribute.TypeCompound>, JCExpression>> catchTypeExprs
826ac2519523 8031744: Annotations on many Language Model elements are not returned
jjg
parents: 29777
diff changeset
  1598
                        = catchTypesWithAnnotations(tree);
6354
f50c012cd1f0 6978574: return statement in try block with multi-catch causes ClassFormatError
mcimadamore
parents: 5857
diff changeset
  1599
                while (gaps.nonEmpty()) {
29842
826ac2519523 8031744: Annotations on many Language Model elements are not returned
jjg
parents: 29777
diff changeset
  1600
                    for (Pair<List<Attribute.TypeCompound>, JCExpression> subCatch1 : catchTypeExprs) {
826ac2519523 8031744: Annotations on many Language Model elements are not returned
jjg
parents: 29777
diff changeset
  1601
                        JCExpression subCatch = subCatch1.snd;
6354
f50c012cd1f0 6978574: return statement in try block with multi-catch causes ClassFormatError
mcimadamore
parents: 5857
diff changeset
  1602
                        int catchType = makeRef(tree.pos(), subCatch.type);
f50c012cd1f0 6978574: return statement in try block with multi-catch causes ClassFormatError
mcimadamore
parents: 5857
diff changeset
  1603
                        int end = gaps.head.intValue();
5492
515e4b33b335 6943289: Project Coin: Improved Exception Handling for Java (aka 'multicatch')
mcimadamore
parents: 5004
diff changeset
  1604
                        registerCatch(tree.pos(),
19941
8b91e8eb2d20 7047734: javac, the LVT is not generated correctly in several scenarios
vromero
parents: 19923
diff changeset
  1605
                                      startpc,  end, code.curCP(),
5492
515e4b33b335 6943289: Project Coin: Improved Exception Handling for Java (aka 'multicatch')
mcimadamore
parents: 5004
diff changeset
  1606
                                      catchType);
29842
826ac2519523 8031744: Annotations on many Language Model elements are not returned
jjg
parents: 29777
diff changeset
  1607
                        for (Attribute.TypeCompound tc :  subCatch1.fst) {
24396
3c36c6afcbca 8040327: Eliminate AnnotatedType
emc
parents: 24218
diff changeset
  1608
                                tc.position.setCatchInfo(catchType, startpc);
17578
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16807
diff changeset
  1609
                        }
5492
515e4b33b335 6943289: Project Coin: Improved Exception Handling for Java (aka 'multicatch')
mcimadamore
parents: 5004
diff changeset
  1610
                    }
6354
f50c012cd1f0 6978574: return statement in try block with multi-catch causes ClassFormatError
mcimadamore
parents: 5857
diff changeset
  1611
                    gaps = gaps.tail;
f50c012cd1f0 6978574: return statement in try block with multi-catch causes ClassFormatError
mcimadamore
parents: 5857
diff changeset
  1612
                    startpc = gaps.head.intValue();
f50c012cd1f0 6978574: return statement in try block with multi-catch causes ClassFormatError
mcimadamore
parents: 5857
diff changeset
  1613
                    gaps = gaps.tail;
f50c012cd1f0 6978574: return statement in try block with multi-catch causes ClassFormatError
mcimadamore
parents: 5857
diff changeset
  1614
                }
f50c012cd1f0 6978574: return statement in try block with multi-catch causes ClassFormatError
mcimadamore
parents: 5857
diff changeset
  1615
                if (startpc < endpc) {
29842
826ac2519523 8031744: Annotations on many Language Model elements are not returned
jjg
parents: 29777
diff changeset
  1616
                    for (Pair<List<Attribute.TypeCompound>, JCExpression> subCatch1 : catchTypeExprs) {
826ac2519523 8031744: Annotations on many Language Model elements are not returned
jjg
parents: 29777
diff changeset
  1617
                        JCExpression subCatch = subCatch1.snd;
6354
f50c012cd1f0 6978574: return statement in try block with multi-catch causes ClassFormatError
mcimadamore
parents: 5857
diff changeset
  1618
                        int catchType = makeRef(tree.pos(), subCatch.type);
5492
515e4b33b335 6943289: Project Coin: Improved Exception Handling for Java (aka 'multicatch')
mcimadamore
parents: 5004
diff changeset
  1619
                        registerCatch(tree.pos(),
19941
8b91e8eb2d20 7047734: javac, the LVT is not generated correctly in several scenarios
vromero
parents: 19923
diff changeset
  1620
                                      startpc, endpc, code.curCP(),
5492
515e4b33b335 6943289: Project Coin: Improved Exception Handling for Java (aka 'multicatch')
mcimadamore
parents: 5004
diff changeset
  1621
                                      catchType);
29842
826ac2519523 8031744: Annotations on many Language Model elements are not returned
jjg
parents: 29777
diff changeset
  1622
                        for (Attribute.TypeCompound tc :  subCatch1.fst) {
826ac2519523 8031744: Annotations on many Language Model elements are not returned
jjg
parents: 29777
diff changeset
  1623
                            tc.position.setCatchInfo(catchType, startpc);
17578
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16807
diff changeset
  1624
                        }
6354
f50c012cd1f0 6978574: return statement in try block with multi-catch causes ClassFormatError
mcimadamore
parents: 5857
diff changeset
  1625
                    }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1626
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1627
                VarSymbol exparam = tree.param.sym;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1628
                code.statBegin(tree.pos);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1629
                code.markStatBegin();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1630
                int limit = code.nextreg;
29842
826ac2519523 8031744: Annotations on many Language Model elements are not returned
jjg
parents: 29777
diff changeset
  1631
                code.newLocal(exparam);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1632
                items.makeLocalItem(exparam).store();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1633
                code.statBegin(TreeInfo.firstStatPos(tree.body));
06bc494ca11e Initial load
duke
parents:
diff changeset
  1634
                genStat(tree.body, env, CRT_BLOCK);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1635
                code.endScopes(limit);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1636
                code.statBegin(TreeInfo.endPos(tree.body));
06bc494ca11e Initial load
duke
parents:
diff changeset
  1637
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1638
        }
29842
826ac2519523 8031744: Annotations on many Language Model elements are not returned
jjg
parents: 29777
diff changeset
  1639
        // where
826ac2519523 8031744: Annotations on many Language Model elements are not returned
jjg
parents: 29777
diff changeset
  1640
        List<Pair<List<Attribute.TypeCompound>, JCExpression>> catchTypesWithAnnotations(JCCatch tree) {
826ac2519523 8031744: Annotations on many Language Model elements are not returned
jjg
parents: 29777
diff changeset
  1641
            return TreeInfo.isMultiCatch(tree) ?
826ac2519523 8031744: Annotations on many Language Model elements are not returned
jjg
parents: 29777
diff changeset
  1642
                    catchTypesWithAnnotationsFromMulticatch((JCTypeUnion)tree.param.vartype, tree.param.sym.getRawTypeAttributes()) :
826ac2519523 8031744: Annotations on many Language Model elements are not returned
jjg
parents: 29777
diff changeset
  1643
                    List.of(new Pair<>(tree.param.sym.getRawTypeAttributes(), tree.param.vartype));
826ac2519523 8031744: Annotations on many Language Model elements are not returned
jjg
parents: 29777
diff changeset
  1644
        }
826ac2519523 8031744: Annotations on many Language Model elements are not returned
jjg
parents: 29777
diff changeset
  1645
        // where
826ac2519523 8031744: Annotations on many Language Model elements are not returned
jjg
parents: 29777
diff changeset
  1646
        List<Pair<List<Attribute.TypeCompound>, JCExpression>> catchTypesWithAnnotationsFromMulticatch(JCTypeUnion tree, List<TypeCompound> first) {
826ac2519523 8031744: Annotations on many Language Model elements are not returned
jjg
parents: 29777
diff changeset
  1647
            List<JCExpression> alts = tree.alternatives;
826ac2519523 8031744: Annotations on many Language Model elements are not returned
jjg
parents: 29777
diff changeset
  1648
            List<Pair<List<TypeCompound>, JCExpression>> res = List.of(new Pair<>(first, alts.head));
826ac2519523 8031744: Annotations on many Language Model elements are not returned
jjg
parents: 29777
diff changeset
  1649
            alts = alts.tail;
826ac2519523 8031744: Annotations on many Language Model elements are not returned
jjg
parents: 29777
diff changeset
  1650
826ac2519523 8031744: Annotations on many Language Model elements are not returned
jjg
parents: 29777
diff changeset
  1651
            while(alts != null && alts.head != null) {
826ac2519523 8031744: Annotations on many Language Model elements are not returned
jjg
parents: 29777
diff changeset
  1652
                JCExpression alt = alts.head;
826ac2519523 8031744: Annotations on many Language Model elements are not returned
jjg
parents: 29777
diff changeset
  1653
                if (alt instanceof JCAnnotatedType) {
826ac2519523 8031744: Annotations on many Language Model elements are not returned
jjg
parents: 29777
diff changeset
  1654
                    JCAnnotatedType a = (JCAnnotatedType)alt;
826ac2519523 8031744: Annotations on many Language Model elements are not returned
jjg
parents: 29777
diff changeset
  1655
                    res = res.prepend(new Pair<>(annotate.fromAnnotations(a.annotations), alt));
826ac2519523 8031744: Annotations on many Language Model elements are not returned
jjg
parents: 29777
diff changeset
  1656
                } else {
826ac2519523 8031744: Annotations on many Language Model elements are not returned
jjg
parents: 29777
diff changeset
  1657
                    res = res.prepend(new Pair<>(List.nil(), alt));
826ac2519523 8031744: Annotations on many Language Model elements are not returned
jjg
parents: 29777
diff changeset
  1658
                }
826ac2519523 8031744: Annotations on many Language Model elements are not returned
jjg
parents: 29777
diff changeset
  1659
                alts = alts.tail;
826ac2519523 8031744: Annotations on many Language Model elements are not returned
jjg
parents: 29777
diff changeset
  1660
            }
826ac2519523 8031744: Annotations on many Language Model elements are not returned
jjg
parents: 29777
diff changeset
  1661
            return res.reverse();
826ac2519523 8031744: Annotations on many Language Model elements are not returned
jjg
parents: 29777
diff changeset
  1662
        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1663
06bc494ca11e Initial load
duke
parents:
diff changeset
  1664
        /** Register a catch clause in the "Exceptions" code-attribute.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1665
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
  1666
        void registerCatch(DiagnosticPosition pos,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1667
                           int startpc, int endpc,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1668
                           int handler_pc, int catch_type) {
10811
4d4ed480210e 7093325: Redundant entry in bytecode exception table
mcimadamore
parents: 10457
diff changeset
  1669
            char startpc1 = (char)startpc;
4d4ed480210e 7093325: Redundant entry in bytecode exception table
mcimadamore
parents: 10457
diff changeset
  1670
            char endpc1 = (char)endpc;
4d4ed480210e 7093325: Redundant entry in bytecode exception table
mcimadamore
parents: 10457
diff changeset
  1671
            char handler_pc1 = (char)handler_pc;
4d4ed480210e 7093325: Redundant entry in bytecode exception table
mcimadamore
parents: 10457
diff changeset
  1672
            if (startpc1 == startpc &&
4d4ed480210e 7093325: Redundant entry in bytecode exception table
mcimadamore
parents: 10457
diff changeset
  1673
                endpc1 == endpc &&
4d4ed480210e 7093325: Redundant entry in bytecode exception table
mcimadamore
parents: 10457
diff changeset
  1674
                handler_pc1 == handler_pc) {
4d4ed480210e 7093325: Redundant entry in bytecode exception table
mcimadamore
parents: 10457
diff changeset
  1675
                code.addCatch(startpc1, endpc1, handler_pc1,
4d4ed480210e 7093325: Redundant entry in bytecode exception table
mcimadamore
parents: 10457
diff changeset
  1676
                              (char)catch_type);
4d4ed480210e 7093325: Redundant entry in bytecode exception table
mcimadamore
parents: 10457
diff changeset
  1677
            } else {
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45316
diff changeset
  1678
                log.error(pos, Errors.LimitCodeTooLargeForTryStmt);
25445
603f0c93d5c9 8011044: Remove support for 1.5 and earlier source and target options
ntoda
parents: 25443
diff changeset
  1679
                nerrs++;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1680
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1681
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1682
06bc494ca11e Initial load
duke
parents:
diff changeset
  1683
    public void visitIf(JCIf tree) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1684
        int limit = code.nextreg;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1685
        Chain thenExit = null;
51563
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
  1686
        Assert.check(code.isStatementStart());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1687
        CondItem c = genCond(TreeInfo.skipParens(tree.cond),
06bc494ca11e Initial load
duke
parents:
diff changeset
  1688
                             CRT_FLOW_CONTROLLER);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1689
        Chain elseChain = c.jumpFalse();
51563
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
  1690
        Assert.check(code.isStatementStart());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1691
        if (!c.isFalse()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1692
            code.resolve(c.trueJumps);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1693
            genStat(tree.thenpart, env, CRT_STATEMENT | CRT_FLOW_TARGET);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1694
            thenExit = code.branch(goto_);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1695
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1696
        if (elseChain != null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1697
            code.resolve(elseChain);
19941
8b91e8eb2d20 7047734: javac, the LVT is not generated correctly in several scenarios
vromero
parents: 19923
diff changeset
  1698
            if (tree.elsepart != null) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1699
                genStat(tree.elsepart, env,CRT_STATEMENT | CRT_FLOW_TARGET);
19941
8b91e8eb2d20 7047734: javac, the LVT is not generated correctly in several scenarios
vromero
parents: 19923
diff changeset
  1700
            }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1701
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1702
        code.resolve(thenExit);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1703
        code.endScopes(limit);
51563
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
  1704
        Assert.check(code.isStatementStart());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1705
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1706
06bc494ca11e Initial load
duke
parents:
diff changeset
  1707
    public void visitExec(JCExpressionStatement tree) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1708
        // Optimize x++ to ++x and x-- to --x.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1709
        JCExpression e = tree.expr;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1710
        switch (e.getTag()) {
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 10811
diff changeset
  1711
            case POSTINC:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 10811
diff changeset
  1712
                ((JCUnary) e).setTag(PREINC);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1713
                break;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 10811
diff changeset
  1714
            case POSTDEC:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 10811
diff changeset
  1715
                ((JCUnary) e).setTag(PREDEC);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1716
                break;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1717
        }
51563
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
  1718
        Assert.check(code.isStatementStart());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1719
        genExpr(tree.expr, tree.expr.type).drop();
51563
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
  1720
        Assert.check(code.isStatementStart());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1721
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1722
06bc494ca11e Initial load
duke
parents:
diff changeset
  1723
    public void visitBreak(JCBreak tree) {
52794
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
  1724
        Assert.check(code.isStatementStart());
55306
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 54894
diff changeset
  1725
        final Env<GenContext> targetEnv = unwindBreak(tree.target);
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 54894
diff changeset
  1726
        targetEnv.info.addExit(code.branch(goto_));
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 54894
diff changeset
  1727
        endFinalizerGaps(env, targetEnv);
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 54894
diff changeset
  1728
    }
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 54894
diff changeset
  1729
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 54894
diff changeset
  1730
    public void visitYield(JCYield tree) {
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 54894
diff changeset
  1731
        Assert.check(code.isStatementStart());
52936
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1732
        final Env<GenContext> targetEnv;
55306
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 54894
diff changeset
  1733
        if (inCondSwitchExpression) {
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 54894
diff changeset
  1734
            CondItem value = genCond(tree.value, CRT_FLOW_TARGET);
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 54894
diff changeset
  1735
            Chain falseJumps = value.jumpFalse();
55340
ef577fa0dd10 8220018: javac crash when compiling try-catch-finally inside switch expression
jlahoda
parents: 55306
diff changeset
  1736
55306
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 54894
diff changeset
  1737
            code.resolve(value.trueJumps);
55340
ef577fa0dd10 8220018: javac crash when compiling try-catch-finally inside switch expression
jlahoda
parents: 55306
diff changeset
  1738
            Env<GenContext> localEnv = unwindBreak(tree.target);
ef577fa0dd10 8220018: javac crash when compiling try-catch-finally inside switch expression
jlahoda
parents: 55306
diff changeset
  1739
            reloadStackBeforeSwitchExpr();
55306
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 54894
diff changeset
  1740
            Chain trueJumps = code.branch(goto_);
55340
ef577fa0dd10 8220018: javac crash when compiling try-catch-finally inside switch expression
jlahoda
parents: 55306
diff changeset
  1741
ef577fa0dd10 8220018: javac crash when compiling try-catch-finally inside switch expression
jlahoda
parents: 55306
diff changeset
  1742
            endFinalizerGaps(env, localEnv);
ef577fa0dd10 8220018: javac crash when compiling try-catch-finally inside switch expression
jlahoda
parents: 55306
diff changeset
  1743
ef577fa0dd10 8220018: javac crash when compiling try-catch-finally inside switch expression
jlahoda
parents: 55306
diff changeset
  1744
            code.resolve(falseJumps);
ef577fa0dd10 8220018: javac crash when compiling try-catch-finally inside switch expression
jlahoda
parents: 55306
diff changeset
  1745
            targetEnv = unwindBreak(tree.target);
ef577fa0dd10 8220018: javac crash when compiling try-catch-finally inside switch expression
jlahoda
parents: 55306
diff changeset
  1746
            reloadStackBeforeSwitchExpr();
ef577fa0dd10 8220018: javac crash when compiling try-catch-finally inside switch expression
jlahoda
parents: 55306
diff changeset
  1747
            falseJumps = code.branch(goto_);
ef577fa0dd10 8220018: javac crash when compiling try-catch-finally inside switch expression
jlahoda
parents: 55306
diff changeset
  1748
55306
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 54894
diff changeset
  1749
            if (switchExpressionTrueChain == null) {
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 54894
diff changeset
  1750
                switchExpressionTrueChain = trueJumps;
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 54894
diff changeset
  1751
            } else {
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 54894
diff changeset
  1752
                switchExpressionTrueChain =
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 54894
diff changeset
  1753
                        Code.mergeChains(switchExpressionTrueChain, trueJumps);
52936
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1754
            }
55306
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 54894
diff changeset
  1755
            if (switchExpressionFalseChain == null) {
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 54894
diff changeset
  1756
                switchExpressionFalseChain = falseJumps;
52794
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
  1757
            } else {
55306
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 54894
diff changeset
  1758
                switchExpressionFalseChain =
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 54894
diff changeset
  1759
                        Code.mergeChains(switchExpressionFalseChain, falseJumps);
52794
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
  1760
            }
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
  1761
        } else {
55306
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 54894
diff changeset
  1762
            genExpr(tree.value, pt).load();
55340
ef577fa0dd10 8220018: javac crash when compiling try-catch-finally inside switch expression
jlahoda
parents: 55306
diff changeset
  1763
            if (switchResult != null)
ef577fa0dd10 8220018: javac crash when compiling try-catch-finally inside switch expression
jlahoda
parents: 55306
diff changeset
  1764
                switchResult.store();
ef577fa0dd10 8220018: javac crash when compiling try-catch-finally inside switch expression
jlahoda
parents: 55306
diff changeset
  1765
55306
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 54894
diff changeset
  1766
            targetEnv = unwindBreak(tree.target);
55340
ef577fa0dd10 8220018: javac crash when compiling try-catch-finally inside switch expression
jlahoda
parents: 55306
diff changeset
  1767
ef577fa0dd10 8220018: javac crash when compiling try-catch-finally inside switch expression
jlahoda
parents: 55306
diff changeset
  1768
            if (code.isAlive()) {
ef577fa0dd10 8220018: javac crash when compiling try-catch-finally inside switch expression
jlahoda
parents: 55306
diff changeset
  1769
                reloadStackBeforeSwitchExpr();
ef577fa0dd10 8220018: javac crash when compiling try-catch-finally inside switch expression
jlahoda
parents: 55306
diff changeset
  1770
                if (switchResult != null)
ef577fa0dd10 8220018: javac crash when compiling try-catch-finally inside switch expression
jlahoda
parents: 55306
diff changeset
  1771
                    switchResult.load();
ef577fa0dd10 8220018: javac crash when compiling try-catch-finally inside switch expression
jlahoda
parents: 55306
diff changeset
  1772
ef577fa0dd10 8220018: javac crash when compiling try-catch-finally inside switch expression
jlahoda
parents: 55306
diff changeset
  1773
                code.state.forceStackTop(tree.target.type);
ef577fa0dd10 8220018: javac crash when compiling try-catch-finally inside switch expression
jlahoda
parents: 55306
diff changeset
  1774
                targetEnv.info.addExit(code.branch(goto_));
ef577fa0dd10 8220018: javac crash when compiling try-catch-finally inside switch expression
jlahoda
parents: 55306
diff changeset
  1775
                code.markDead();
ef577fa0dd10 8220018: javac crash when compiling try-catch-finally inside switch expression
jlahoda
parents: 55306
diff changeset
  1776
            }
52794
e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression
jlahoda
parents: 51658
diff changeset
  1777
        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1778
        endFinalizerGaps(env, targetEnv);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1779
    }
52936
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1780
    //where:
55340
ef577fa0dd10 8220018: javac crash when compiling try-catch-finally inside switch expression
jlahoda
parents: 55306
diff changeset
  1781
        /** As side-effect, might mark code as dead disabling any further emission.
ef577fa0dd10 8220018: javac crash when compiling try-catch-finally inside switch expression
jlahoda
parents: 55306
diff changeset
  1782
         */
55306
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 54894
diff changeset
  1783
        private Env<GenContext> unwindBreak(JCTree target) {
52936
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1784
            int tmpPos = code.pendingStatPos;
55306
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 54894
diff changeset
  1785
            Env<GenContext> targetEnv = unwind(target, env);
52936
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1786
            code.pendingStatPos = tmpPos;
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1787
            return targetEnv;
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  1788
        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1789
55340
ef577fa0dd10 8220018: javac crash when compiling try-catch-finally inside switch expression
jlahoda
parents: 55306
diff changeset
  1790
        private void reloadStackBeforeSwitchExpr() {
ef577fa0dd10 8220018: javac crash when compiling try-catch-finally inside switch expression
jlahoda
parents: 55306
diff changeset
  1791
            for (LocalItem li : stackBeforeSwitchExpression)
ef577fa0dd10 8220018: javac crash when compiling try-catch-finally inside switch expression
jlahoda
parents: 55306
diff changeset
  1792
                li.load();
ef577fa0dd10 8220018: javac crash when compiling try-catch-finally inside switch expression
jlahoda
parents: 55306
diff changeset
  1793
        }
ef577fa0dd10 8220018: javac crash when compiling try-catch-finally inside switch expression
jlahoda
parents: 55306
diff changeset
  1794
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1795
    public void visitContinue(JCContinue tree) {
45088
b85080f2f0cc 8180141: Missing entry in LineNumberTable for break statement that jumps out of try-finally
vromero
parents: 43765
diff changeset
  1796
        int tmpPos = code.pendingStatPos;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1797
        Env<GenContext> targetEnv = unwind(tree.target, env);
45088
b85080f2f0cc 8180141: Missing entry in LineNumberTable for break statement that jumps out of try-finally
vromero
parents: 43765
diff changeset
  1798
        code.pendingStatPos = tmpPos;
51563
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
  1799
        Assert.check(code.isStatementStart());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1800
        targetEnv.info.addCont(code.branch(goto_));
06bc494ca11e Initial load
duke
parents:
diff changeset
  1801
        endFinalizerGaps(env, targetEnv);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1802
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1803
06bc494ca11e Initial load
duke
parents:
diff changeset
  1804
    public void visitReturn(JCReturn tree) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1805
        int limit = code.nextreg;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1806
        final Env<GenContext> targetEnv;
33371
b6f6281b4c07 8134759: jdb: Incorrect stepping inside finally block
aeriksso
parents: 31000
diff changeset
  1807
b6f6281b4c07 8134759: jdb: Incorrect stepping inside finally block
aeriksso
parents: 31000
diff changeset
  1808
        /* Save and then restore the location of the return in case a finally
b6f6281b4c07 8134759: jdb: Incorrect stepping inside finally block
aeriksso
parents: 31000
diff changeset
  1809
         * is expanded (with unwind()) in the middle of our bytecodes.
b6f6281b4c07 8134759: jdb: Incorrect stepping inside finally block
aeriksso
parents: 31000
diff changeset
  1810
         */
b6f6281b4c07 8134759: jdb: Incorrect stepping inside finally block
aeriksso
parents: 31000
diff changeset
  1811
        int tmpPos = code.pendingStatPos;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1812
        if (tree.expr != null) {
51563
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
  1813
            Assert.check(code.isStatementStart());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1814
            Item r = genExpr(tree.expr, pt).load();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1815
            if (hasFinally(env.enclMethod, env)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1816
                r = makeTemp(pt);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1817
                r.store();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1818
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1819
            targetEnv = unwind(env.enclMethod, env);
33371
b6f6281b4c07 8134759: jdb: Incorrect stepping inside finally block
aeriksso
parents: 31000
diff changeset
  1820
            code.pendingStatPos = tmpPos;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1821
            r.load();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1822
            code.emitop0(ireturn + Code.truncate(Code.typecode(pt)));
06bc494ca11e Initial load
duke
parents:
diff changeset
  1823
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1824
            targetEnv = unwind(env.enclMethod, env);
18658
55e4c45e091c 7008643: inlined finally clauses confuse debuggers
vromero
parents: 18653
diff changeset
  1825
            code.pendingStatPos = tmpPos;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1826
            code.emitop0(return_);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1827
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1828
        endFinalizerGaps(env, targetEnv);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1829
        code.endScopes(limit);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1830
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1831
06bc494ca11e Initial load
duke
parents:
diff changeset
  1832
    public void visitThrow(JCThrow tree) {
51563
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
  1833
        Assert.check(code.isStatementStart());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1834
        genExpr(tree.expr, tree.expr.type).load();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1835
        code.emitop0(athrow);
51563
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
  1836
        Assert.check(code.isStatementStart());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1837
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1838
06bc494ca11e Initial load
duke
parents:
diff changeset
  1839
/* ************************************************************************
06bc494ca11e Initial load
duke
parents:
diff changeset
  1840
 * Visitor methods for expressions
06bc494ca11e Initial load
duke
parents:
diff changeset
  1841
 *************************************************************************/
06bc494ca11e Initial load
duke
parents:
diff changeset
  1842
06bc494ca11e Initial load
duke
parents:
diff changeset
  1843
    public void visitApply(JCMethodInvocation tree) {
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14949
diff changeset
  1844
        setTypeAnnotationPositions(tree.pos);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1845
        // Generate code for method.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1846
        Item m = genExpr(tree.meth, methodType);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1847
        // Generate code for all arguments, where the expected types are
06bc494ca11e Initial load
duke
parents:
diff changeset
  1848
        // the parameters of the method's external type (that is, any implicit
06bc494ca11e Initial load
duke
parents:
diff changeset
  1849
        // outer instance of a super(...) call appears as first parameter).
16807
b442b47d3ae9 8010404: Lambda debugging: redundant LineNumberTable entry for lambda capture
mcimadamore
parents: 16801
diff changeset
  1850
        MethodSymbol msym = (MethodSymbol)TreeInfo.symbol(tree.meth);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1851
        genArgs(tree.args,
16807
b442b47d3ae9 8010404: Lambda debugging: redundant LineNumberTable entry for lambda capture
mcimadamore
parents: 16801
diff changeset
  1852
                msym.externalType(types).getParameterTypes());
b442b47d3ae9 8010404: Lambda debugging: redundant LineNumberTable entry for lambda capture
mcimadamore
parents: 16801
diff changeset
  1853
        if (!msym.isDynamic()) {
b442b47d3ae9 8010404: Lambda debugging: redundant LineNumberTable entry for lambda capture
mcimadamore
parents: 16801
diff changeset
  1854
            code.statBegin(tree.pos);
b442b47d3ae9 8010404: Lambda debugging: redundant LineNumberTable entry for lambda capture
mcimadamore
parents: 16801
diff changeset
  1855
        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1856
        result = m.invoke();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1857
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1858
06bc494ca11e Initial load
duke
parents:
diff changeset
  1859
    public void visitConditional(JCConditional tree) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1860
        Chain thenExit = null;
37754
7b4f67ce5cb5 8050993: There is no record for condition in ternary operator in LineNumberTable.
jlahoda
parents: 37753
diff changeset
  1861
        code.statBegin(tree.cond.pos);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1862
        CondItem c = genCond(tree.cond, CRT_FLOW_CONTROLLER);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1863
        Chain elseChain = c.jumpFalse();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1864
        if (!c.isFalse()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1865
            code.resolve(c.trueJumps);
19941
8b91e8eb2d20 7047734: javac, the LVT is not generated correctly in several scenarios
vromero
parents: 19923
diff changeset
  1866
            int startpc = genCrt ? code.curCP() : 0;
23391
3425f886b641 8034091: There is no records in LineNumberTable attribute for ternary operator ?: splitted to several lines.
pgovereau
parents: 22697
diff changeset
  1867
            code.statBegin(tree.truepart.pos);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1868
            genExpr(tree.truepart, pt).load();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1869
            code.state.forceStackTop(tree.type);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1870
            if (genCrt) code.crt.put(tree.truepart, CRT_FLOW_TARGET,
19941
8b91e8eb2d20 7047734: javac, the LVT is not generated correctly in several scenarios
vromero
parents: 19923
diff changeset
  1871
                                     startpc, code.curCP());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1872
            thenExit = code.branch(goto_);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1873
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1874
        if (elseChain != null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1875
            code.resolve(elseChain);
19941
8b91e8eb2d20 7047734: javac, the LVT is not generated correctly in several scenarios
vromero
parents: 19923
diff changeset
  1876
            int startpc = genCrt ? code.curCP() : 0;
23391
3425f886b641 8034091: There is no records in LineNumberTable attribute for ternary operator ?: splitted to several lines.
pgovereau
parents: 22697
diff changeset
  1877
            code.statBegin(tree.falsepart.pos);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1878
            genExpr(tree.falsepart, pt).load();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1879
            code.state.forceStackTop(tree.type);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1880
            if (genCrt) code.crt.put(tree.falsepart, CRT_FLOW_TARGET,
19941
8b91e8eb2d20 7047734: javac, the LVT is not generated correctly in several scenarios
vromero
parents: 19923
diff changeset
  1881
                                     startpc, code.curCP());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1882
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1883
        code.resolve(thenExit);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1884
        result = items.makeStackItem(pt);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1885
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1886
17578
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16807
diff changeset
  1887
    private void setTypeAnnotationPositions(int treePos) {
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16807
diff changeset
  1888
        MethodSymbol meth = code.meth;
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16807
diff changeset
  1889
        boolean initOrClinit = code.meth.getKind() == javax.lang.model.element.ElementKind.CONSTRUCTOR
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16807
diff changeset
  1890
                || code.meth.getKind() == javax.lang.model.element.ElementKind.STATIC_INIT;
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14949
diff changeset
  1891
17578
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16807
diff changeset
  1892
        for (Attribute.TypeCompound ta : meth.getRawTypeAttributes()) {
26532
aa84b6606229 8056021: checkin for JDK-8027262 breaks Checker Framework
jfranck
parents: 25874
diff changeset
  1893
            if (ta.hasUnknownPosition())
aa84b6606229 8056021: checkin for JDK-8027262 breaks Checker Framework
jfranck
parents: 25874
diff changeset
  1894
                ta.tryFixPosition();
aa84b6606229 8056021: checkin for JDK-8027262 breaks Checker Framework
jfranck
parents: 25874
diff changeset
  1895
aa84b6606229 8056021: checkin for JDK-8027262 breaks Checker Framework
jfranck
parents: 25874
diff changeset
  1896
            if (ta.position.matchesPos(treePos))
17578
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16807
diff changeset
  1897
                ta.position.updatePosOffset(code.cp);
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16807
diff changeset
  1898
        }
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16807
diff changeset
  1899
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16807
diff changeset
  1900
        if (!initOrClinit)
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16807
diff changeset
  1901
            return;
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14949
diff changeset
  1902
17578
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16807
diff changeset
  1903
        for (Attribute.TypeCompound ta : meth.owner.getRawTypeAttributes()) {
26532
aa84b6606229 8056021: checkin for JDK-8027262 breaks Checker Framework
jfranck
parents: 25874
diff changeset
  1904
            if (ta.hasUnknownPosition())
aa84b6606229 8056021: checkin for JDK-8027262 breaks Checker Framework
jfranck
parents: 25874
diff changeset
  1905
                ta.tryFixPosition();
aa84b6606229 8056021: checkin for JDK-8027262 breaks Checker Framework
jfranck
parents: 25874
diff changeset
  1906
aa84b6606229 8056021: checkin for JDK-8027262 breaks Checker Framework
jfranck
parents: 25874
diff changeset
  1907
            if (ta.position.matchesPos(treePos))
17578
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16807
diff changeset
  1908
                ta.position.updatePosOffset(code.cp);
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16807
diff changeset
  1909
        }
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14949
diff changeset
  1910
17578
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16807
diff changeset
  1911
        ClassSymbol clazz = meth.enclClass();
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16807
diff changeset
  1912
        for (Symbol s : new com.sun.tools.javac.model.FilteredMemberList(clazz.members())) {
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16807
diff changeset
  1913
            if (!s.getKind().isField())
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16807
diff changeset
  1914
                continue;
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16807
diff changeset
  1915
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16807
diff changeset
  1916
            for (Attribute.TypeCompound ta : s.getRawTypeAttributes()) {
26532
aa84b6606229 8056021: checkin for JDK-8027262 breaks Checker Framework
jfranck
parents: 25874
diff changeset
  1917
                if (ta.hasUnknownPosition())
aa84b6606229 8056021: checkin for JDK-8027262 breaks Checker Framework
jfranck
parents: 25874
diff changeset
  1918
                    ta.tryFixPosition();
aa84b6606229 8056021: checkin for JDK-8027262 breaks Checker Framework
jfranck
parents: 25874
diff changeset
  1919
aa84b6606229 8056021: checkin for JDK-8027262 breaks Checker Framework
jfranck
parents: 25874
diff changeset
  1920
                if (ta.position.matchesPos(treePos))
17578
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16807
diff changeset
  1921
                    ta.position.updatePosOffset(code.cp);
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16807
diff changeset
  1922
            }
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16807
diff changeset
  1923
        }
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16807
diff changeset
  1924
    }
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14949
diff changeset
  1925
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1926
    public void visitNewClass(JCNewClass tree) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1927
        // Enclosing instances or anonymous classes should have been eliminated
06bc494ca11e Initial load
duke
parents:
diff changeset
  1928
        // by now.
8032
e1aa25ccdabb 6396503: javac should not require assertions enabled
jjg
parents: 8031
diff changeset
  1929
        Assert.check(tree.encl == null && tree.def == null);
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14949
diff changeset
  1930
        setTypeAnnotationPositions(tree.pos);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1931
54568
b2ed96c35687 8222289: Overhaul logic for reading/writing constant pool entries
mcimadamore
parents: 52936
diff changeset
  1932
        code.emitop2(new_, checkDimension(tree.pos(), tree.type), PoolWriter::putClass);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1933
        code.emitop0(dup);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1934
06bc494ca11e Initial load
duke
parents:
diff changeset
  1935
        // Generate code for all arguments, where the expected types are
06bc494ca11e Initial load
duke
parents:
diff changeset
  1936
        // the parameters of the constructor's external type (that is,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1937
        // any implicit outer instance appears as first parameter).
06bc494ca11e Initial load
duke
parents:
diff changeset
  1938
        genArgs(tree.args, tree.constructor.externalType(types).getParameterTypes());
06bc494ca11e Initial load
duke
parents:
diff changeset
  1939
06bc494ca11e Initial load
duke
parents:
diff changeset
  1940
        items.makeMemberItem(tree.constructor, true).invoke();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1941
        result = items.makeStackItem(tree.type);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1942
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1943
06bc494ca11e Initial load
duke
parents:
diff changeset
  1944
    public void visitNewArray(JCNewArray tree) {
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14949
diff changeset
  1945
        setTypeAnnotationPositions(tree.pos);
3149
0cd06d598d6f 6843077: JSR 308: Annotations on types
jjg
parents: 2723
diff changeset
  1946
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1947
        if (tree.elems != null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1948
            Type elemtype = types.elemtype(tree.type);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1949
            loadIntConst(tree.elems.length());
06bc494ca11e Initial load
duke
parents:
diff changeset
  1950
            Item arr = makeNewArray(tree.pos(), tree.type, 1);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1951
            int i = 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1952
            for (List<JCExpression> l = tree.elems; l.nonEmpty(); l = l.tail) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1953
                arr.duplicate();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1954
                loadIntConst(i);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1955
                i++;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1956
                genExpr(l.head, elemtype).load();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1957
                items.makeIndexedItem(elemtype).store();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1958
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1959
            result = arr;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1960
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1961
            for (List<JCExpression> l = tree.dims; l.nonEmpty(); l = l.tail) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1962
                genExpr(l.head, syms.intType).load();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1963
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1964
            result = makeNewArray(tree.pos(), tree.type, tree.dims.length());
06bc494ca11e Initial load
duke
parents:
diff changeset
  1965
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1966
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1967
//where
06bc494ca11e Initial load
duke
parents:
diff changeset
  1968
        /** Generate code to create an array with given element type and number
06bc494ca11e Initial load
duke
parents:
diff changeset
  1969
         *  of dimensions.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1970
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
  1971
        Item makeNewArray(DiagnosticPosition pos, Type type, int ndims) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1972
            Type elemtype = types.elemtype(type);
7630
850c97ee59f2 4917091: javac rejects array over 128 in length
jjg
parents: 7074
diff changeset
  1973
            if (types.dimensions(type) > ClassFile.MAX_DIMENSIONS) {
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45316
diff changeset
  1974
                log.error(pos, Errors.LimitDimensions);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1975
                nerrs++;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1976
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1977
            int elemcode = Code.arraycode(elemtype);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1978
            if (elemcode == 0 || (elemcode == 1 && ndims == 1)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1979
                code.emitAnewarray(makeRef(pos, elemtype), type);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1980
            } else if (elemcode == 1) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1981
                code.emitMultianewarray(ndims, makeRef(pos, type), type);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1982
            } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1983
                code.emitNewarray(elemcode, type);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1984
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1985
            return items.makeStackItem(type);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1986
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1987
06bc494ca11e Initial load
duke
parents:
diff changeset
  1988
    public void visitParens(JCParens tree) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1989
        result = genExpr(tree.expr, tree.expr.type);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1990
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1991
06bc494ca11e Initial load
duke
parents:
diff changeset
  1992
    public void visitAssign(JCAssign tree) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1993
        Item l = genExpr(tree.lhs, tree.lhs.type);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1994
        genExpr(tree.rhs, tree.lhs.type).load();
29777
95a89a2efd89 7040592: Gen.java: fix code for handling 'null' literal when expected type is array
sadayapalam
parents: 29295
diff changeset
  1995
        if (tree.rhs.type.hasTag(BOT)) {
95a89a2efd89 7040592: Gen.java: fix code for handling 'null' literal when expected type is array
sadayapalam
parents: 29295
diff changeset
  1996
            /* This is just a case of widening reference conversion that per 5.1.5 simply calls
95a89a2efd89 7040592: Gen.java: fix code for handling 'null' literal when expected type is array
sadayapalam
parents: 29295
diff changeset
  1997
               for "regarding a reference as having some other type in a manner that can be proved
95a89a2efd89 7040592: Gen.java: fix code for handling 'null' literal when expected type is array
sadayapalam
parents: 29295
diff changeset
  1998
               correct at compile time."
95a89a2efd89 7040592: Gen.java: fix code for handling 'null' literal when expected type is array
sadayapalam
parents: 29295
diff changeset
  1999
            */
95a89a2efd89 7040592: Gen.java: fix code for handling 'null' literal when expected type is array
sadayapalam
parents: 29295
diff changeset
  2000
            code.state.forceStackTop(tree.lhs.type);
95a89a2efd89 7040592: Gen.java: fix code for handling 'null' literal when expected type is array
sadayapalam
parents: 29295
diff changeset
  2001
        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2002
        result = items.makeAssignItem(l);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2003
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  2004
06bc494ca11e Initial load
duke
parents:
diff changeset
  2005
    public void visitAssignop(JCAssignOp tree) {
39920
4923274643f2 8161708: javac, consider a different way to handle access code for operators
vromero
parents: 39599
diff changeset
  2006
        OperatorSymbol operator = tree.operator;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2007
        Item l;
06bc494ca11e Initial load
duke
parents:
diff changeset
  2008
        if (operator.opcode == string_add) {
35424
96661d1df628 8148483: JEP 280: Indify String Concatenation
shade
parents: 35418
diff changeset
  2009
            l = concat.makeConcat(tree);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2010
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
  2011
            // Generate code for first expression
06bc494ca11e Initial load
duke
parents:
diff changeset
  2012
            l = genExpr(tree.lhs, tree.lhs.type);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2013
06bc494ca11e Initial load
duke
parents:
diff changeset
  2014
            // If we have an increment of -32768 to +32767 of a local
06bc494ca11e Initial load
duke
parents:
diff changeset
  2015
            // int variable we can use an incr instruction instead of
06bc494ca11e Initial load
duke
parents:
diff changeset
  2016
            // proceeding further.
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 10811
diff changeset
  2017
            if ((tree.hasTag(PLUS_ASG) || tree.hasTag(MINUS_ASG)) &&
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2018
                l instanceof LocalItem &&
14359
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 14259
diff changeset
  2019
                tree.lhs.type.getTag().isSubRangeOf(INT) &&
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 14259
diff changeset
  2020
                tree.rhs.type.getTag().isSubRangeOf(INT) &&
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2021
                tree.rhs.type.constValue() != null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  2022
                int ival = ((Number) tree.rhs.type.constValue()).intValue();
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 10811
diff changeset
  2023
                if (tree.hasTag(MINUS_ASG)) ival = -ival;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2024
                ((LocalItem)l).incr(ival);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2025
                result = l;
06bc494ca11e Initial load
duke
parents:
diff changeset
  2026
                return;
06bc494ca11e Initial load
duke
parents:
diff changeset
  2027
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  2028
            // Otherwise, duplicate expression, load one copy
06bc494ca11e Initial load
duke
parents:
diff changeset
  2029
            // and complete binary operation.
06bc494ca11e Initial load
duke
parents:
diff changeset
  2030
            l.duplicate();
06bc494ca11e Initial load
duke
parents:
diff changeset
  2031
            l.coerce(operator.type.getParameterTypes().head).load();
06bc494ca11e Initial load
duke
parents:
diff changeset
  2032
            completeBinop(tree.lhs, tree.rhs, operator).coerce(tree.lhs.type);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2033
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  2034
        result = items.makeAssignItem(l);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2035
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  2036
06bc494ca11e Initial load
duke
parents:
diff changeset
  2037
    public void visitUnary(JCUnary tree) {
39920
4923274643f2 8161708: javac, consider a different way to handle access code for operators
vromero
parents: 39599
diff changeset
  2038
        OperatorSymbol operator = tree.operator;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 10811
diff changeset
  2039
        if (tree.hasTag(NOT)) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2040
            CondItem od = genCond(tree.arg, false);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2041
            result = od.negate();
06bc494ca11e Initial load
duke
parents:
diff changeset
  2042
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
  2043
            Item od = genExpr(tree.arg, operator.type.getParameterTypes().head);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2044
            switch (tree.getTag()) {
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 10811
diff changeset
  2045
            case POS:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2046
                result = od.load();
06bc494ca11e Initial load
duke
parents:
diff changeset
  2047
                break;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 10811
diff changeset
  2048
            case NEG:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2049
                result = od.load();
06bc494ca11e Initial load
duke
parents:
diff changeset
  2050
                code.emitop0(operator.opcode);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2051
                break;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 10811
diff changeset
  2052
            case COMPL:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2053
                result = od.load();
06bc494ca11e Initial load
duke
parents:
diff changeset
  2054
                emitMinusOne(od.typecode);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2055
                code.emitop0(operator.opcode);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2056
                break;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 10811
diff changeset
  2057
            case PREINC: case PREDEC:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2058
                od.duplicate();
06bc494ca11e Initial load
duke
parents:
diff changeset
  2059
                if (od instanceof LocalItem &&
06bc494ca11e Initial load
duke
parents:
diff changeset
  2060
                    (operator.opcode == iadd || operator.opcode == isub)) {
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 10811
diff changeset
  2061
                    ((LocalItem)od).incr(tree.hasTag(PREINC) ? 1 : -1);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2062
                    result = od;
06bc494ca11e Initial load
duke
parents:
diff changeset
  2063
                } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
  2064
                    od.load();
06bc494ca11e Initial load
duke
parents:
diff changeset
  2065
                    code.emitop0(one(od.typecode));
06bc494ca11e Initial load
duke
parents:
diff changeset
  2066
                    code.emitop0(operator.opcode);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2067
                    // Perform narrowing primitive conversion if byte,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2068
                    // char, or short.  Fix for 4304655.
06bc494ca11e Initial load
duke
parents:
diff changeset
  2069
                    if (od.typecode != INTcode &&
06bc494ca11e Initial load
duke
parents:
diff changeset
  2070
                        Code.truncate(od.typecode) == INTcode)
06bc494ca11e Initial load
duke
parents:
diff changeset
  2071
                      code.emitop0(int2byte + od.typecode - BYTEcode);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2072
                    result = items.makeAssignItem(od);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2073
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
  2074
                break;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 10811
diff changeset
  2075
            case POSTINC: case POSTDEC:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2076
                od.duplicate();
06bc494ca11e Initial load
duke
parents:
diff changeset
  2077
                if (od instanceof LocalItem &&
06bc494ca11e Initial load
duke
parents:
diff changeset
  2078
                    (operator.opcode == iadd || operator.opcode == isub)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  2079
                    Item res = od.load();
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 10811
diff changeset
  2080
                    ((LocalItem)od).incr(tree.hasTag(POSTINC) ? 1 : -1);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2081
                    result = res;
06bc494ca11e Initial load
duke
parents:
diff changeset
  2082
                } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
  2083
                    Item res = od.load();
06bc494ca11e Initial load
duke
parents:
diff changeset
  2084
                    od.stash(od.typecode);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2085
                    code.emitop0(one(od.typecode));
06bc494ca11e Initial load
duke
parents:
diff changeset
  2086
                    code.emitop0(operator.opcode);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2087
                    // Perform narrowing primitive conversion if byte,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2088
                    // char, or short.  Fix for 4304655.
06bc494ca11e Initial load
duke
parents:
diff changeset
  2089
                    if (od.typecode != INTcode &&
06bc494ca11e Initial load
duke
parents:
diff changeset
  2090
                        Code.truncate(od.typecode) == INTcode)
06bc494ca11e Initial load
duke
parents:
diff changeset
  2091
                      code.emitop0(int2byte + od.typecode - BYTEcode);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2092
                    od.store();
06bc494ca11e Initial load
duke
parents:
diff changeset
  2093
                    result = res;
06bc494ca11e Initial load
duke
parents:
diff changeset
  2094
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
  2095
                break;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 10811
diff changeset
  2096
            case NULLCHK:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2097
                result = od.load();
06bc494ca11e Initial load
duke
parents:
diff changeset
  2098
                code.emitop0(dup);
45316
170696ddb377 8172880: Incorrect line number for NPE generated by instance-bound method reference
jlahoda
parents: 45220
diff changeset
  2099
                genNullCheck(tree);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2100
                break;
06bc494ca11e Initial load
duke
parents:
diff changeset
  2101
            default:
8032
e1aa25ccdabb 6396503: javac should not require assertions enabled
jjg
parents: 8031
diff changeset
  2102
                Assert.error();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2103
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  2104
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  2105
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  2106
06bc494ca11e Initial load
duke
parents:
diff changeset
  2107
    /** Generate a null check from the object value at stack top. */
45316
170696ddb377 8172880: Incorrect line number for NPE generated by instance-bound method reference
jlahoda
parents: 45220
diff changeset
  2108
    private void genNullCheck(JCTree tree) {
170696ddb377 8172880: Incorrect line number for NPE generated by instance-bound method reference
jlahoda
parents: 45220
diff changeset
  2109
        code.statBegin(tree.pos);
51047
860a3648c494 8028563: Remove javac support for 6/1.6 source and target values
darcy
parents: 50735
diff changeset
  2110
        callMethod(tree.pos(), syms.objectsType, names.requireNonNull,
860a3648c494 8028563: Remove javac support for 6/1.6 source and target values
darcy
parents: 50735
diff changeset
  2111
                   List.of(syms.objectType), true);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2112
        code.emitop0(pop);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2113
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  2114
06bc494ca11e Initial load
duke
parents:
diff changeset
  2115
    public void visitBinary(JCBinary tree) {
39920
4923274643f2 8161708: javac, consider a different way to handle access code for operators
vromero
parents: 39599
diff changeset
  2116
        OperatorSymbol operator = tree.operator;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2117
        if (operator.opcode == string_add) {
35424
96661d1df628 8148483: JEP 280: Indify String Concatenation
shade
parents: 35418
diff changeset
  2118
            result = concat.makeConcat(tree);
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 10811
diff changeset
  2119
        } else if (tree.hasTag(AND)) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2120
            CondItem lcond = genCond(tree.lhs, CRT_FLOW_CONTROLLER);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2121
            if (!lcond.isFalse()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  2122
                Chain falseJumps = lcond.jumpFalse();
06bc494ca11e Initial load
duke
parents:
diff changeset
  2123
                code.resolve(lcond.trueJumps);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2124
                CondItem rcond = genCond(tree.rhs, CRT_FLOW_TARGET);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2125
                result = items.
06bc494ca11e Initial load
duke
parents:
diff changeset
  2126
                    makeCondItem(rcond.opcode,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2127
                                 rcond.trueJumps,
5004
6c2694dc2da0 6929544: langtools source code uses statics qualified by instance variables
jjg
parents: 4875
diff changeset
  2128
                                 Code.mergeChains(falseJumps,
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2129
                                                  rcond.falseJumps));
06bc494ca11e Initial load
duke
parents:
diff changeset
  2130
            } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
  2131
                result = lcond;
06bc494ca11e Initial load
duke
parents:
diff changeset
  2132
            }
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 10811
diff changeset
  2133
        } else if (tree.hasTag(OR)) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2134
            CondItem lcond = genCond(tree.lhs, CRT_FLOW_CONTROLLER);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2135
            if (!lcond.isTrue()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  2136
                Chain trueJumps = lcond.jumpTrue();
06bc494ca11e Initial load
duke
parents:
diff changeset
  2137
                code.resolve(lcond.falseJumps);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2138
                CondItem rcond = genCond(tree.rhs, CRT_FLOW_TARGET);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2139
                result = items.
06bc494ca11e Initial load
duke
parents:
diff changeset
  2140
                    makeCondItem(rcond.opcode,
5004
6c2694dc2da0 6929544: langtools source code uses statics qualified by instance variables
jjg
parents: 4875
diff changeset
  2141
                                 Code.mergeChains(trueJumps, rcond.trueJumps),
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2142
                                 rcond.falseJumps);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2143
            } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
  2144
                result = lcond;
06bc494ca11e Initial load
duke
parents:
diff changeset
  2145
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  2146
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
  2147
            Item od = genExpr(tree.lhs, operator.type.getParameterTypes().head);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2148
            od.load();
06bc494ca11e Initial load
duke
parents:
diff changeset
  2149
            result = completeBinop(tree.lhs, tree.rhs, operator);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2150
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  2151
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  2152
06bc494ca11e Initial load
duke
parents:
diff changeset
  2153
06bc494ca11e Initial load
duke
parents:
diff changeset
  2154
        /** Complete generating code for operation, with left operand
06bc494ca11e Initial load
duke
parents:
diff changeset
  2155
         *  already on stack.
06bc494ca11e Initial load
duke
parents:
diff changeset
  2156
         *  @param lhs       The tree representing the left operand.
06bc494ca11e Initial load
duke
parents:
diff changeset
  2157
         *  @param rhs       The tree representing the right operand.
06bc494ca11e Initial load
duke
parents:
diff changeset
  2158
         *  @param operator  The operator symbol.
06bc494ca11e Initial load
duke
parents:
diff changeset
  2159
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
  2160
        Item completeBinop(JCTree lhs, JCTree rhs, OperatorSymbol operator) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  2161
            MethodType optype = (MethodType)operator.type;
06bc494ca11e Initial load
duke
parents:
diff changeset
  2162
            int opcode = operator.opcode;
06bc494ca11e Initial load
duke
parents:
diff changeset
  2163
            if (opcode >= if_icmpeq && opcode <= if_icmple &&
06bc494ca11e Initial load
duke
parents:
diff changeset
  2164
                rhs.type.constValue() instanceof Number &&
06bc494ca11e Initial load
duke
parents:
diff changeset
  2165
                ((Number) rhs.type.constValue()).intValue() == 0) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  2166
                opcode = opcode + (ifeq - if_icmpeq);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2167
            } else if (opcode >= if_acmpeq && opcode <= if_acmpne &&
06bc494ca11e Initial load
duke
parents:
diff changeset
  2168
                       TreeInfo.isNull(rhs)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  2169
                opcode = opcode + (if_acmp_null - if_acmpeq);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2170
            } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
  2171
                // The expected type of the right operand is
06bc494ca11e Initial load
duke
parents:
diff changeset
  2172
                // the second parameter type of the operator, except for
06bc494ca11e Initial load
duke
parents:
diff changeset
  2173
                // shifts with long shiftcount, where we convert the opcode
06bc494ca11e Initial load
duke
parents:
diff changeset
  2174
                // to a short shift and the expected type to int.
06bc494ca11e Initial load
duke
parents:
diff changeset
  2175
                Type rtype = operator.erasure(types).getParameterTypes().tail.head;
06bc494ca11e Initial load
duke
parents:
diff changeset
  2176
                if (opcode >= ishll && opcode <= lushrl) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  2177
                    opcode = opcode + (ishl - ishll);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2178
                    rtype = syms.intType;
06bc494ca11e Initial load
duke
parents:
diff changeset
  2179
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
  2180
                // Generate code for right operand and load.
06bc494ca11e Initial load
duke
parents:
diff changeset
  2181
                genExpr(rhs, rtype).load();
06bc494ca11e Initial load
duke
parents:
diff changeset
  2182
                // If there are two consecutive opcode instructions,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2183
                // emit the first now.
06bc494ca11e Initial load
duke
parents:
diff changeset
  2184
                if (opcode >= (1 << preShift)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  2185
                    code.emitop0(opcode >> preShift);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2186
                    opcode = opcode & 0xFF;
06bc494ca11e Initial load
duke
parents:
diff changeset
  2187
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
  2188
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  2189
            if (opcode >= ifeq && opcode <= if_acmpne ||
06bc494ca11e Initial load
duke
parents:
diff changeset
  2190
                opcode == if_acmp_null || opcode == if_acmp_nonnull) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  2191
                return items.makeCondItem(opcode);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2192
            } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
  2193
                code.emitop0(opcode);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2194
                return items.makeStackItem(optype.restype);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2195
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  2196
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  2197
06bc494ca11e Initial load
duke
parents:
diff changeset
  2198
    public void visitTypeCast(JCTypeCast tree) {
35418
8681d57fc3f8 8144168: No type annotations generated for nested lambdas
sadayapalam
parents: 33371
diff changeset
  2199
        result = genExpr(tree.expr, tree.clazz.type).load();
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14949
diff changeset
  2200
        setTypeAnnotationPositions(tree.pos);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2201
        // Additional code is only needed if we cast to a reference type
06bc494ca11e Initial load
duke
parents:
diff changeset
  2202
        // which is not statically a supertype of the expression's type.
06bc494ca11e Initial load
duke
parents:
diff changeset
  2203
        // For basic types, the coerce(...) in genExpr(...) will do
06bc494ca11e Initial load
duke
parents:
diff changeset
  2204
        // the conversion.
14359
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 14259
diff changeset
  2205
        if (!tree.clazz.type.isPrimitive() &&
28800
35f9042d53b3 8069265: ClassCastException when compiled with JDK 9b08+, JDK8 compiles OK.
jlahoda
parents: 28338
diff changeset
  2206
           !types.isSameType(tree.expr.type, tree.clazz.type) &&
35f9042d53b3 8069265: ClassCastException when compiled with JDK 9b08+, JDK8 compiles OK.
jlahoda
parents: 28338
diff changeset
  2207
           types.asSuper(tree.expr.type, tree.clazz.type.tsym) == null) {
54568
b2ed96c35687 8222289: Overhaul logic for reading/writing constant pool entries
mcimadamore
parents: 52936
diff changeset
  2208
            code.emitop2(checkcast, checkDimension(tree.pos(), tree.clazz.type), PoolWriter::putClass);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2209
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  2210
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  2211
06bc494ca11e Initial load
duke
parents:
diff changeset
  2212
    public void visitWildcard(JCWildcard tree) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  2213
        throw new AssertionError(this.getClass().getName());
06bc494ca11e Initial load
duke
parents:
diff changeset
  2214
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  2215
06bc494ca11e Initial load
duke
parents:
diff changeset
  2216
    public void visitTypeTest(JCInstanceOf tree) {
35418
8681d57fc3f8 8144168: No type annotations generated for nested lambdas
sadayapalam
parents: 33371
diff changeset
  2217
        genExpr(tree.expr, tree.expr.type).load();
26532
aa84b6606229 8056021: checkin for JDK-8027262 breaks Checker Framework
jfranck
parents: 25874
diff changeset
  2218
        setTypeAnnotationPositions(tree.pos);
59285
7799a51dbe30 8231826: Implement javac changes for pattern matching for instanceof
jlahoda
parents: 55340
diff changeset
  2219
        code.emitop2(instanceof_, makeRef(tree.pos(), tree.pattern.type));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2220
        result = items.makeStackItem(syms.booleanType);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2221
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  2222
06bc494ca11e Initial load
duke
parents:
diff changeset
  2223
    public void visitIndexed(JCArrayAccess tree) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  2224
        genExpr(tree.indexed, tree.indexed.type).load();
06bc494ca11e Initial load
duke
parents:
diff changeset
  2225
        genExpr(tree.index, syms.intType).load();
06bc494ca11e Initial load
duke
parents:
diff changeset
  2226
        result = items.makeIndexedItem(tree.type);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2227
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  2228
06bc494ca11e Initial load
duke
parents:
diff changeset
  2229
    public void visitIdent(JCIdent tree) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  2230
        Symbol sym = tree.sym;
06bc494ca11e Initial load
duke
parents:
diff changeset
  2231
        if (tree.name == names._this || tree.name == names._super) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  2232
            Item res = tree.name == names._this
06bc494ca11e Initial load
duke
parents:
diff changeset
  2233
                ? items.makeThisItem()
06bc494ca11e Initial load
duke
parents:
diff changeset
  2234
                : items.makeSuperItem();
06bc494ca11e Initial load
duke
parents:
diff changeset
  2235
            if (sym.kind == MTH) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  2236
                // Generate code to address the constructor.
06bc494ca11e Initial load
duke
parents:
diff changeset
  2237
                res.load();
06bc494ca11e Initial load
duke
parents:
diff changeset
  2238
                res = items.makeMemberItem(sym, true);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2239
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  2240
            result = res;
54762
64d9a4d582bc 8222949: add condy support to javac's pool API
vromero
parents: 54568
diff changeset
  2241
       } else if (isInvokeDynamic(sym) || isConstantDynamic(sym)) {
64d9a4d582bc 8222949: add condy support to javac's pool API
vromero
parents: 54568
diff changeset
  2242
            if (isConstantDynamic(sym)) {
64d9a4d582bc 8222949: add condy support to javac's pool API
vromero
parents: 54568
diff changeset
  2243
                setTypeAnnotationPositions(tree.pos);
64d9a4d582bc 8222949: add condy support to javac's pool API
vromero
parents: 54568
diff changeset
  2244
            }
64d9a4d582bc 8222949: add condy support to javac's pool API
vromero
parents: 54568
diff changeset
  2245
            result = items.makeDynamicItem(sym);
52936
9745e4e36dd1 8214114: Switch expressions with try-catch statements
jlahoda
parents: 52794
diff changeset
  2246
        } else if (sym.kind == VAR && (sym.owner.kind == MTH || sym.owner.kind == VAR)) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2247
            result = items.makeLocalItem((VarSymbol)sym);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2248
        } else if ((sym.flags() & STATIC) != 0) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  2249
            if (!isAccessSuper(env.enclMethod))
06bc494ca11e Initial load
duke
parents:
diff changeset
  2250
                sym = binaryQualifier(sym, env.enclClass.type);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2251
            result = items.makeStaticItem(sym);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2252
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
  2253
            items.makeThisItem().load();
06bc494ca11e Initial load
duke
parents:
diff changeset
  2254
            sym = binaryQualifier(sym, env.enclClass.type);
50735
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 49280
diff changeset
  2255
            result = items.makeMemberItem(sym, nonVirtualForPrivateAccess(sym));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2256
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  2257
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  2258
50735
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 49280
diff changeset
  2259
    //where
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 49280
diff changeset
  2260
    private boolean nonVirtualForPrivateAccess(Symbol sym) {
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 49280
diff changeset
  2261
        boolean useVirtual = target.hasVirtualPrivateInvoke() &&
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 49280
diff changeset
  2262
                             !disableVirtualizedPrivateInvoke;
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 49280
diff changeset
  2263
        return !useVirtual && ((sym.flags() & PRIVATE) != 0);
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 49280
diff changeset
  2264
    }
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 49280
diff changeset
  2265
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2266
    public void visitSelect(JCFieldAccess tree) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  2267
        Symbol sym = tree.sym;
06bc494ca11e Initial load
duke
parents:
diff changeset
  2268
06bc494ca11e Initial load
duke
parents:
diff changeset
  2269
        if (tree.name == names._class) {
54568
b2ed96c35687 8222289: Overhaul logic for reading/writing constant pool entries
mcimadamore
parents: 52936
diff changeset
  2270
            code.emitLdc((LoadableConstant)checkDimension(tree.pos(), tree.selected.type));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2271
            result = items.makeStackItem(pt);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2272
            return;
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14949
diff changeset
  2273
       }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2274
06bc494ca11e Initial load
duke
parents:
diff changeset
  2275
        Symbol ssym = TreeInfo.symbol(tree.selected);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2276
06bc494ca11e Initial load
duke
parents:
diff changeset
  2277
        // Are we selecting via super?
06bc494ca11e Initial load
duke
parents:
diff changeset
  2278
        boolean selectSuper =
06bc494ca11e Initial load
duke
parents:
diff changeset
  2279
            ssym != null && (ssym.kind == TYP || ssym.name == names._super);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2280
06bc494ca11e Initial load
duke
parents:
diff changeset
  2281
        // Are we accessing a member of the superclass in an access method
06bc494ca11e Initial load
duke
parents:
diff changeset
  2282
        // resulting from a qualified super?
06bc494ca11e Initial load
duke
parents:
diff changeset
  2283
        boolean accessSuper = isAccessSuper(env.enclMethod);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2284
06bc494ca11e Initial load
duke
parents:
diff changeset
  2285
        Item base = (selectSuper)
06bc494ca11e Initial load
duke
parents:
diff changeset
  2286
            ? items.makeSuperItem()
06bc494ca11e Initial load
duke
parents:
diff changeset
  2287
            : genExpr(tree.selected, tree.selected.type);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2288
06bc494ca11e Initial load
duke
parents:
diff changeset
  2289
        if (sym.kind == VAR && ((VarSymbol) sym).getConstValue() != null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  2290
            // We are seeing a variable that is constant but its selecting
06bc494ca11e Initial load
duke
parents:
diff changeset
  2291
            // expression is not.
06bc494ca11e Initial load
duke
parents:
diff changeset
  2292
            if ((sym.flags() & STATIC) != 0) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  2293
                if (!selectSuper && (ssym == null || ssym.kind != TYP))
06bc494ca11e Initial load
duke
parents:
diff changeset
  2294
                    base = base.load();
06bc494ca11e Initial load
duke
parents:
diff changeset
  2295
                base.drop();
06bc494ca11e Initial load
duke
parents:
diff changeset
  2296
            } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
  2297
                base.load();
45316
170696ddb377 8172880: Incorrect line number for NPE generated by instance-bound method reference
jlahoda
parents: 45220
diff changeset
  2298
                genNullCheck(tree.selected);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2299
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  2300
            result = items.
06bc494ca11e Initial load
duke
parents:
diff changeset
  2301
                makeImmediateItem(sym.type, ((VarSymbol) sym).getConstValue());
06bc494ca11e Initial load
duke
parents:
diff changeset
  2302
        } else {
14046
8ef5d5b19998 7194586: Add back-end support for invokedynamic
mcimadamore
parents: 13844
diff changeset
  2303
            if (isInvokeDynamic(sym)) {
8ef5d5b19998 7194586: Add back-end support for invokedynamic
mcimadamore
parents: 13844
diff changeset
  2304
                result = items.makeDynamicItem(sym);
8ef5d5b19998 7194586: Add back-end support for invokedynamic
mcimadamore
parents: 13844
diff changeset
  2305
                return;
21897
ba025087b9f9 8027789: Access method for Outer.super.m() references indirect superclass
jlahoda
parents: 21498
diff changeset
  2306
            } else {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2307
                sym = binaryQualifier(sym, tree.selected.type);
14046
8ef5d5b19998 7194586: Add back-end support for invokedynamic
mcimadamore
parents: 13844
diff changeset
  2308
            }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2309
            if ((sym.flags() & STATIC) != 0) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  2310
                if (!selectSuper && (ssym == null || ssym.kind != TYP))
06bc494ca11e Initial load
duke
parents:
diff changeset
  2311
                    base = base.load();
06bc494ca11e Initial load
duke
parents:
diff changeset
  2312
                base.drop();
06bc494ca11e Initial load
duke
parents:
diff changeset
  2313
                result = items.makeStaticItem(sym);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2314
            } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
  2315
                base.load();
06bc494ca11e Initial load
duke
parents:
diff changeset
  2316
                if (sym == syms.lengthVar) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  2317
                    code.emitop0(arraylength);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2318
                    result = items.makeStackItem(syms.intType);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2319
                } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
  2320
                    result = items.
06bc494ca11e Initial load
duke
parents:
diff changeset
  2321
                        makeMemberItem(sym,
50735
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 49280
diff changeset
  2322
                                       nonVirtualForPrivateAccess(sym) ||
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2323
                                       selectSuper || accessSuper);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2324
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
  2325
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  2326
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  2327
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  2328
14046
8ef5d5b19998 7194586: Add back-end support for invokedynamic
mcimadamore
parents: 13844
diff changeset
  2329
    public boolean isInvokeDynamic(Symbol sym) {
8ef5d5b19998 7194586: Add back-end support for invokedynamic
mcimadamore
parents: 13844
diff changeset
  2330
        return sym.kind == MTH && ((MethodSymbol)sym).isDynamic();
8ef5d5b19998 7194586: Add back-end support for invokedynamic
mcimadamore
parents: 13844
diff changeset
  2331
    }
8ef5d5b19998 7194586: Add back-end support for invokedynamic
mcimadamore
parents: 13844
diff changeset
  2332
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2333
    public void visitLiteral(JCLiteral tree) {
14359
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 14259
diff changeset
  2334
        if (tree.type.hasTag(BOT)) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2335
            code.emitop0(aconst_null);
29777
95a89a2efd89 7040592: Gen.java: fix code for handling 'null' literal when expected type is array
sadayapalam
parents: 29295
diff changeset
  2336
            result = items.makeStackItem(tree.type);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2337
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  2338
        else
06bc494ca11e Initial load
duke
parents:
diff changeset
  2339
            result = items.makeImmediateItem(tree.type, tree.value);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2340
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  2341
06bc494ca11e Initial load
duke
parents:
diff changeset
  2342
    public void visitLetExpr(LetExpr tree) {
54894
382101e97784 8222169: java.lang.AssertionError switch expression in ternary operator - ?
jlahoda
parents: 54762
diff changeset
  2343
        code.resolvePending();
382101e97784 8222169: java.lang.AssertionError switch expression in ternary operator - ?
jlahoda
parents: 54762
diff changeset
  2344
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2345
        int limit = code.nextreg;
51563
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
  2346
        int prevLetExprStart = code.setLetExprStackPos(code.state.stacksize);
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
  2347
        try {
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
  2348
            genStats(tree.defs, env);
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
  2349
        } finally {
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
  2350
            code.setLetExprStackPos(prevLetExprStart);
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
  2351
        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2352
        result = genExpr(tree.expr, tree.expr.type).load();
06bc494ca11e Initial load
duke
parents:
diff changeset
  2353
        code.endScopes(limit);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2354
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  2355
54568
b2ed96c35687 8222289: Overhaul logic for reading/writing constant pool entries
mcimadamore
parents: 52936
diff changeset
  2356
    private void generateReferencesToPrunedTree(ClassSymbol classSymbol) {
14721
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
  2357
        List<JCTree> prunedInfo = lower.prunedTree.get(classSymbol);
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
  2358
        if (prunedInfo != null) {
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
  2359
            for (JCTree prunedTree: prunedInfo) {
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
  2360
                prunedTree.accept(classReferenceVisitor);
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
  2361
            }
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
  2362
        }
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
  2363
    }
071e3587f212 7153958: add constant pool reference to class containing inlined constants
vromero
parents: 14359
diff changeset
  2364
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2365
/* ************************************************************************
06bc494ca11e Initial load
duke
parents:
diff changeset
  2366
 * main method
06bc494ca11e Initial load
duke
parents:
diff changeset
  2367
 *************************************************************************/
06bc494ca11e Initial load
duke
parents:
diff changeset
  2368
06bc494ca11e Initial load
duke
parents:
diff changeset
  2369
    /** Generate code for a class definition.
06bc494ca11e Initial load
duke
parents:
diff changeset
  2370
     *  @param env   The attribution environment that belongs to the
06bc494ca11e Initial load
duke
parents:
diff changeset
  2371
     *               outermost class containing this class definition.
06bc494ca11e Initial load
duke
parents:
diff changeset
  2372
     *               We need this for resolving some additional symbols.
06bc494ca11e Initial load
duke
parents:
diff changeset
  2373
     *  @param cdef  The tree representing the class definition.
06bc494ca11e Initial load
duke
parents:
diff changeset
  2374
     *  @return      True if code is generated with no errors.
06bc494ca11e Initial load
duke
parents:
diff changeset
  2375
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
  2376
    public boolean genClass(Env<AttrContext> env, JCClassDecl cdef) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  2377
        try {
06bc494ca11e Initial load
duke
parents:
diff changeset
  2378
            attrEnv = env;
06bc494ca11e Initial load
duke
parents:
diff changeset
  2379
            ClassSymbol c = cdef.sym;
06bc494ca11e Initial load
duke
parents:
diff changeset
  2380
            this.toplevel = env.toplevel;
11055
ec1418effa77 7106166: (javac) re-factor EndPos parser
ksrini
parents: 10950
diff changeset
  2381
            this.endPosTable = toplevel.endPositions;
31000
18bc6fadeb4e 8073372: Redundant CONSTANT_Class entry not generated for inlined constant
vromero
parents: 30406
diff changeset
  2382
            /* method normalizeDefs() can add references to external classes into the constant pool
18bc6fadeb4e 8073372: Redundant CONSTANT_Class entry not generated for inlined constant
vromero
parents: 30406
diff changeset
  2383
             */
18bc6fadeb4e 8073372: Redundant CONSTANT_Class entry not generated for inlined constant
vromero
parents: 30406
diff changeset
  2384
            cdef.defs = normalizeDefs(cdef.defs, c);
54568
b2ed96c35687 8222289: Overhaul logic for reading/writing constant pool entries
mcimadamore
parents: 52936
diff changeset
  2385
            generateReferencesToPrunedTree(c);
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 21897
diff changeset
  2386
            Env<GenContext> localEnv = new Env<>(cdef, new GenContext());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2387
            localEnv.toplevel = env.toplevel;
06bc494ca11e Initial load
duke
parents:
diff changeset
  2388
            localEnv.enclClass = cdef;
19941
8b91e8eb2d20 7047734: javac, the LVT is not generated correctly in several scenarios
vromero
parents: 19923
diff changeset
  2389
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2390
            for (List<JCTree> l = cdef.defs; l.nonEmpty(); l = l.tail) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  2391
                genDef(l.head, localEnv);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2392
            }
54568
b2ed96c35687 8222289: Overhaul logic for reading/writing constant pool entries
mcimadamore
parents: 52936
diff changeset
  2393
            if (poolWriter.size() > PoolWriter.MAX_ENTRIES) {
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45316
diff changeset
  2394
                log.error(cdef.pos(), Errors.LimitPool);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2395
                nerrs++;
06bc494ca11e Initial load
duke
parents:
diff changeset
  2396
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  2397
            if (nerrs != 0) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  2398
                // if errors, discard code
06bc494ca11e Initial load
duke
parents:
diff changeset
  2399
                for (List<JCTree> l = cdef.defs; l.nonEmpty(); l = l.tail) {
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 10811
diff changeset
  2400
                    if (l.head.hasTag(METHODDEF))
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2401
                        ((JCMethodDecl) l.head).sym.code = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
  2402
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
  2403
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  2404
            cdef.defs = List.nil(); // discard trees
06bc494ca11e Initial load
duke
parents:
diff changeset
  2405
            return nerrs == 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
  2406
        } finally {
06bc494ca11e Initial load
duke
parents:
diff changeset
  2407
            // note: this method does NOT support recursion.
06bc494ca11e Initial load
duke
parents:
diff changeset
  2408
            attrEnv = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
  2409
            this.env = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
  2410
            toplevel = null;
11055
ec1418effa77 7106166: (javac) re-factor EndPos parser
ksrini
parents: 10950
diff changeset
  2411
            endPosTable = null;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2412
            nerrs = 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
  2413
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  2414
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  2415
06bc494ca11e Initial load
duke
parents:
diff changeset
  2416
/* ************************************************************************
06bc494ca11e Initial load
duke
parents:
diff changeset
  2417
 * Auxiliary classes
06bc494ca11e Initial load
duke
parents:
diff changeset
  2418
 *************************************************************************/
06bc494ca11e Initial load
duke
parents:
diff changeset
  2419
06bc494ca11e Initial load
duke
parents:
diff changeset
  2420
    /** An abstract class for finalizer generation.
06bc494ca11e Initial load
duke
parents:
diff changeset
  2421
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
  2422
    abstract class GenFinalizer {
06bc494ca11e Initial load
duke
parents:
diff changeset
  2423
        /** Generate code to clean up when unwinding. */
06bc494ca11e Initial load
duke
parents:
diff changeset
  2424
        abstract void gen();
06bc494ca11e Initial load
duke
parents:
diff changeset
  2425
06bc494ca11e Initial load
duke
parents:
diff changeset
  2426
        /** Generate code to clean up at last. */
06bc494ca11e Initial load
duke
parents:
diff changeset
  2427
        abstract void genLast();
06bc494ca11e Initial load
duke
parents:
diff changeset
  2428
06bc494ca11e Initial load
duke
parents:
diff changeset
  2429
        /** Does this finalizer have some nontrivial cleanup to perform? */
06bc494ca11e Initial load
duke
parents:
diff changeset
  2430
        boolean hasFinalizer() { return true; }
49280
c2a3a2aa2475 8194978: Javac produces dead code for try-with-resource
jlahoda
parents: 47216
diff changeset
  2431
c2a3a2aa2475 8194978: Javac produces dead code for try-with-resource
jlahoda
parents: 47216
diff changeset
  2432
        /** Should be invoked after the try's body has been visited. */
c2a3a2aa2475 8194978: Javac produces dead code for try-with-resource
jlahoda
parents: 47216
diff changeset
  2433
        void afterBody() {}
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2434
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  2435
06bc494ca11e Initial load
duke
parents:
diff changeset
  2436
    /** code generation contexts,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2437
     *  to be used as type parameter for environments.
06bc494ca11e Initial load
duke
parents:
diff changeset
  2438
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
  2439
    static class GenContext {
06bc494ca11e Initial load
duke
parents:
diff changeset
  2440
06bc494ca11e Initial load
duke
parents:
diff changeset
  2441
        /** A chain for all unresolved jumps that exit the current environment.
06bc494ca11e Initial load
duke
parents:
diff changeset
  2442
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
  2443
        Chain exit = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
  2444
06bc494ca11e Initial load
duke
parents:
diff changeset
  2445
        /** A chain for all unresolved jumps that continue in the
06bc494ca11e Initial load
duke
parents:
diff changeset
  2446
         *  current environment.
06bc494ca11e Initial load
duke
parents:
diff changeset
  2447
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
  2448
        Chain cont = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
  2449
06bc494ca11e Initial load
duke
parents:
diff changeset
  2450
        /** A closure that generates the finalizer of the current environment.
06bc494ca11e Initial load
duke
parents:
diff changeset
  2451
         *  Only set for Synchronized and Try contexts.
06bc494ca11e Initial load
duke
parents:
diff changeset
  2452
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
  2453
        GenFinalizer finalize = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
  2454
06bc494ca11e Initial load
duke
parents:
diff changeset
  2455
        /** Is this a switch statement?  If so, allocate registers
06bc494ca11e Initial load
duke
parents:
diff changeset
  2456
         * even when the variable declaration is unreachable.
06bc494ca11e Initial load
duke
parents:
diff changeset
  2457
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
  2458
        boolean isSwitch = false;
06bc494ca11e Initial load
duke
parents:
diff changeset
  2459
06bc494ca11e Initial load
duke
parents:
diff changeset
  2460
        /** A list buffer containing all gaps in the finalizer range,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2461
         *  where a catch all exception should not apply.
06bc494ca11e Initial load
duke
parents:
diff changeset
  2462
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
  2463
        ListBuffer<Integer> gaps = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
  2464
06bc494ca11e Initial load
duke
parents:
diff changeset
  2465
        /** Add given chain to exit chain.
06bc494ca11e Initial load
duke
parents:
diff changeset
  2466
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
  2467
        void addExit(Chain c)  {
06bc494ca11e Initial load
duke
parents:
diff changeset
  2468
            exit = Code.mergeChains(c, exit);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2469
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  2470
06bc494ca11e Initial load
duke
parents:
diff changeset
  2471
        /** Add given chain to cont chain.
06bc494ca11e Initial load
duke
parents:
diff changeset
  2472
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
  2473
        void addCont(Chain c) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  2474
            cont = Code.mergeChains(c, cont);
06bc494ca11e Initial load
duke
parents:
diff changeset
  2475
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  2476
    }
19941
8b91e8eb2d20 7047734: javac, the LVT is not generated correctly in several scenarios
vromero
parents: 19923
diff changeset
  2477
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2478
}