langtools/src/share/classes/com/sun/tools/javac/tree/TreeInfo.java
author vromero
Wed, 19 Jun 2013 22:07:05 +0100
changeset 18414 ee1e93e83d2b
parent 18010 604faee85350
child 22163 3651128c74eb
permissions -rw-r--r--
8016610: javac, add new internal symbols to make operator resolution faster Reviewed-by: jjg Contributed-by: maurizio.cimadamore@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
     2
 * Copyright (c) 1999, 2013, 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.tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
13077
16fb753bb5dc 7174143: encapsulate doc comment table
jjg
parents: 12916
diff changeset
    28
14952
d0022ae20516 8004832: Add new doclint package
jjg
parents: 14722
diff changeset
    29
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    30
import com.sun.source.tree.Tree;
13077
16fb753bb5dc 7174143: encapsulate doc comment table
jjg
parents: 12916
diff changeset
    31
import com.sun.tools.javac.code.*;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    32
import com.sun.tools.javac.comp.AttrContext;
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
import com.sun.tools.javac.comp.Env;
13077
16fb753bb5dc 7174143: encapsulate doc comment table
jjg
parents: 12916
diff changeset
    34
import com.sun.tools.javac.tree.JCTree.*;
15374
fb8f6acf09cc 8005244: Implement overload resolution as per latest spec EDR
mcimadamore
parents: 14952
diff changeset
    35
import com.sun.tools.javac.tree.JCTree.JCPolyExpression.*;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    36
import com.sun.tools.javac.util.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    37
import com.sun.tools.javac.util.JCDiagnostic.DiagnosticPosition;
06bc494ca11e Initial load
duke
parents:
diff changeset
    38
import static com.sun.tools.javac.code.Flags.*;
14359
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 14267
diff changeset
    39
import static com.sun.tools.javac.code.TypeTag.BOT;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
    40
import static com.sun.tools.javac.tree.JCTree.Tag.*;
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
    41
import static com.sun.tools.javac.tree.JCTree.Tag.BLOCK;
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
    42
import static com.sun.tools.javac.tree.JCTree.Tag.SYNCHRONIZED;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    43
06bc494ca11e Initial load
duke
parents:
diff changeset
    44
/** Utility class containing inspector methods for trees.
06bc494ca11e Initial load
duke
parents:
diff changeset
    45
 *
5847
1908176fd6e3 6944312: Potential rebranding issues in openjdk/langtools repository sources
jjg
parents: 5520
diff changeset
    46
 *  <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
    47
 *  If you write code that depends on this, you do so at your own risk.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    48
 *  This code and its internal interfaces are subject to change or
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
 *  deletion without notice.</b>
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
public class TreeInfo {
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
    protected static final Context.Key<TreeInfo> treeInfoKey =
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
        new Context.Key<TreeInfo>();
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
    public static TreeInfo instance(Context context) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    56
        TreeInfo instance = context.get(treeInfoKey);
06bc494ca11e Initial load
duke
parents:
diff changeset
    57
        if (instance == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
            instance = new TreeInfo(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
        return instance;
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
    /** The names of all operators.
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
     */
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
    64
    private Name[] opname = new Name[Tag.getNumberOfOperators()];
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
    65
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
    66
    private void setOpname(Tag tag, String name, Names names) {
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
    67
         setOpname(tag, names.fromString(name));
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
    68
     }
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
    69
     private void setOpname(Tag tag, Name name) {
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
    70
         opname[tag.operatorIndex()] = name;
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
    71
     }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    72
06bc494ca11e Initial load
duke
parents:
diff changeset
    73
    private TreeInfo(Context context) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
        context.put(treeInfoKey, this);
06bc494ca11e Initial load
duke
parents:
diff changeset
    75
1260
a772ba9ba43d 6574134: Allow for alternative implementation of Name Table with garbage collection of name bytes
jjg
parents: 1206
diff changeset
    76
        Names names = Names.instance(context);
18414
ee1e93e83d2b 8016610: javac, add new internal symbols to make operator resolution faster
vromero
parents: 18010
diff changeset
    77
        /*  Internally we use +++, --- for unary +, - to reduce +, - operators
ee1e93e83d2b 8016610: javac, add new internal symbols to make operator resolution faster
vromero
parents: 18010
diff changeset
    78
         *  overloading
ee1e93e83d2b 8016610: javac, add new internal symbols to make operator resolution faster
vromero
parents: 18010
diff changeset
    79
         */
ee1e93e83d2b 8016610: javac, add new internal symbols to make operator resolution faster
vromero
parents: 18010
diff changeset
    80
        setOpname(POS, "+++", names);
ee1e93e83d2b 8016610: javac, add new internal symbols to make operator resolution faster
vromero
parents: 18010
diff changeset
    81
        setOpname(NEG, "---", names);
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
    82
        setOpname(NOT, "!", names);
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
    83
        setOpname(COMPL, "~", names);
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
    84
        setOpname(PREINC, "++", names);
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
    85
        setOpname(PREDEC, "--", names);
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
    86
        setOpname(POSTINC, "++", names);
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
    87
        setOpname(POSTDEC, "--", names);
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
    88
        setOpname(NULLCHK, "<*nullchk*>", names);
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
    89
        setOpname(OR, "||", names);
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
    90
        setOpname(AND, "&&", names);
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
    91
        setOpname(EQ, "==", names);
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
    92
        setOpname(NE, "!=", names);
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
    93
        setOpname(LT, "<", names);
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
    94
        setOpname(GT, ">", names);
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
    95
        setOpname(LE, "<=", names);
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
    96
        setOpname(GE, ">=", names);
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
    97
        setOpname(BITOR, "|", names);
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
    98
        setOpname(BITXOR, "^", names);
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
    99
        setOpname(BITAND, "&", names);
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   100
        setOpname(SL, "<<", names);
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   101
        setOpname(SR, ">>", names);
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   102
        setOpname(USR, ">>>", names);
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   103
        setOpname(PLUS, "+", names);
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   104
        setOpname(MINUS, names.hyphen);
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   105
        setOpname(MUL, names.asterisk);
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   106
        setOpname(DIV, names.slash);
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   107
        setOpname(MOD, "%", names);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   108
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   109
12080
23101f54df44 7144506: Attr.checkMethod should be called after inference variables have been fixed
mcimadamore
parents: 11142
diff changeset
   110
    public static List<JCExpression> args(JCTree t) {
23101f54df44 7144506: Attr.checkMethod should be called after inference variables have been fixed
mcimadamore
parents: 11142
diff changeset
   111
        switch (t.getTag()) {
23101f54df44 7144506: Attr.checkMethod should be called after inference variables have been fixed
mcimadamore
parents: 11142
diff changeset
   112
            case APPLY:
23101f54df44 7144506: Attr.checkMethod should be called after inference variables have been fixed
mcimadamore
parents: 11142
diff changeset
   113
                return ((JCMethodInvocation)t).args;
23101f54df44 7144506: Attr.checkMethod should be called after inference variables have been fixed
mcimadamore
parents: 11142
diff changeset
   114
            case NEWCLASS:
23101f54df44 7144506: Attr.checkMethod should be called after inference variables have been fixed
mcimadamore
parents: 11142
diff changeset
   115
                return ((JCNewClass)t).args;
23101f54df44 7144506: Attr.checkMethod should be called after inference variables have been fixed
mcimadamore
parents: 11142
diff changeset
   116
            default:
23101f54df44 7144506: Attr.checkMethod should be called after inference variables have been fixed
mcimadamore
parents: 11142
diff changeset
   117
                return null;
23101f54df44 7144506: Attr.checkMethod should be called after inference variables have been fixed
mcimadamore
parents: 11142
diff changeset
   118
        }
23101f54df44 7144506: Attr.checkMethod should be called after inference variables have been fixed
mcimadamore
parents: 11142
diff changeset
   119
    }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   120
06bc494ca11e Initial load
duke
parents:
diff changeset
   121
    /** Return name of operator with given tree tag.
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
     */
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   123
    public Name operatorName(JCTree.Tag tag) {
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   124
        return opname[tag.operatorIndex()];
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   125
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   126
06bc494ca11e Initial load
duke
parents:
diff changeset
   127
    /** Is tree a constructor declaration?
06bc494ca11e Initial load
duke
parents:
diff changeset
   128
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   129
    public static boolean isConstructor(JCTree tree) {
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   130
        if (tree.hasTag(METHODDEF)) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   131
            Name name = ((JCMethodDecl) tree).name;
1260
a772ba9ba43d 6574134: Allow for alternative implementation of Name Table with garbage collection of name bytes
jjg
parents: 1206
diff changeset
   132
            return name == name.table.names.init;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   133
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   134
            return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   135
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   136
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   137
06bc494ca11e Initial load
duke
parents:
diff changeset
   138
    /** Is there a constructor declaration in the given list of trees?
06bc494ca11e Initial load
duke
parents:
diff changeset
   139
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   140
    public static boolean hasConstructors(List<JCTree> trees) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   141
        for (List<JCTree> l = trees; l.nonEmpty(); l = l.tail)
06bc494ca11e Initial load
duke
parents:
diff changeset
   142
            if (isConstructor(l.head)) return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   143
        return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   144
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   145
5492
515e4b33b335 6943289: Project Coin: Improved Exception Handling for Java (aka 'multicatch')
mcimadamore
parents: 5321
diff changeset
   146
    public static boolean isMultiCatch(JCCatch catchClause) {
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   147
        return catchClause.param.vartype.hasTag(TYPEUNION);
5492
515e4b33b335 6943289: Project Coin: Improved Exception Handling for Java (aka 'multicatch')
mcimadamore
parents: 5321
diff changeset
   148
    }
515e4b33b335 6943289: Project Coin: Improved Exception Handling for Java (aka 'multicatch')
mcimadamore
parents: 5321
diff changeset
   149
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   150
    /** Is statement an initializer for a synthetic field?
06bc494ca11e Initial load
duke
parents:
diff changeset
   151
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   152
    public static boolean isSyntheticInit(JCTree stat) {
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   153
        if (stat.hasTag(EXEC)) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   154
            JCExpressionStatement exec = (JCExpressionStatement)stat;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   155
            if (exec.expr.hasTag(ASSIGN)) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   156
                JCAssign assign = (JCAssign)exec.expr;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   157
                if (assign.lhs.hasTag(SELECT)) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   158
                    JCFieldAccess select = (JCFieldAccess)assign.lhs;
06bc494ca11e Initial load
duke
parents:
diff changeset
   159
                    if (select.sym != null &&
06bc494ca11e Initial load
duke
parents:
diff changeset
   160
                        (select.sym.flags() & SYNTHETIC) != 0) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   161
                        Name selected = name(select.selected);
1260
a772ba9ba43d 6574134: Allow for alternative implementation of Name Table with garbage collection of name bytes
jjg
parents: 1206
diff changeset
   162
                        if (selected != null && selected == selected.table.names._this)
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   163
                            return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   164
                    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   165
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   166
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   167
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   168
        return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   169
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   170
06bc494ca11e Initial load
duke
parents:
diff changeset
   171
    /** If the expression is a method call, return the method name, null
06bc494ca11e Initial load
duke
parents:
diff changeset
   172
     *  otherwise. */
06bc494ca11e Initial load
duke
parents:
diff changeset
   173
    public static Name calledMethodName(JCTree tree) {
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   174
        if (tree.hasTag(EXEC)) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   175
            JCExpressionStatement exec = (JCExpressionStatement)tree;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   176
            if (exec.expr.hasTag(APPLY)) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   177
                Name mname = TreeInfo.name(((JCMethodInvocation) exec.expr).meth);
06bc494ca11e Initial load
duke
parents:
diff changeset
   178
                return mname;
06bc494ca11e Initial load
duke
parents:
diff changeset
   179
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   180
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   181
        return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   182
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   183
06bc494ca11e Initial load
duke
parents:
diff changeset
   184
    /** Is this a call to this or super?
06bc494ca11e Initial load
duke
parents:
diff changeset
   185
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   186
    public static boolean isSelfCall(JCTree tree) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   187
        Name name = calledMethodName(tree);
06bc494ca11e Initial load
duke
parents:
diff changeset
   188
        if (name != null) {
1260
a772ba9ba43d 6574134: Allow for alternative implementation of Name Table with garbage collection of name bytes
jjg
parents: 1206
diff changeset
   189
            Names names = name.table.names;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   190
            return name==names._this || name==names._super;
06bc494ca11e Initial load
duke
parents:
diff changeset
   191
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   192
            return false;
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
    /** Is this a call to super?
06bc494ca11e Initial load
duke
parents:
diff changeset
   197
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   198
    public static boolean isSuperCall(JCTree tree) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   199
        Name name = calledMethodName(tree);
06bc494ca11e Initial load
duke
parents:
diff changeset
   200
        if (name != null) {
1260
a772ba9ba43d 6574134: Allow for alternative implementation of Name Table with garbage collection of name bytes
jjg
parents: 1206
diff changeset
   201
            Names names = name.table.names;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   202
            return name==names._super;
06bc494ca11e Initial load
duke
parents:
diff changeset
   203
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   204
            return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   205
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   206
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   207
06bc494ca11e Initial load
duke
parents:
diff changeset
   208
    /** Is this a constructor whose first (non-synthetic) statement is not
06bc494ca11e Initial load
duke
parents:
diff changeset
   209
     *  of the form this(...)?
06bc494ca11e Initial load
duke
parents:
diff changeset
   210
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   211
    public static boolean isInitialConstructor(JCTree tree) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   212
        JCMethodInvocation app = firstConstructorCall(tree);
06bc494ca11e Initial load
duke
parents:
diff changeset
   213
        if (app == null) return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   214
        Name meth = name(app.meth);
1260
a772ba9ba43d 6574134: Allow for alternative implementation of Name Table with garbage collection of name bytes
jjg
parents: 1206
diff changeset
   215
        return meth == null || meth != meth.table.names._this;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   216
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   217
06bc494ca11e Initial load
duke
parents:
diff changeset
   218
    /** Return the first call in a constructor definition. */
06bc494ca11e Initial load
duke
parents:
diff changeset
   219
    public static JCMethodInvocation firstConstructorCall(JCTree tree) {
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   220
        if (!tree.hasTag(METHODDEF)) return null;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   221
        JCMethodDecl md = (JCMethodDecl) tree;
1260
a772ba9ba43d 6574134: Allow for alternative implementation of Name Table with garbage collection of name bytes
jjg
parents: 1206
diff changeset
   222
        Names names = md.name.table.names;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   223
        if (md.name != names.init) return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   224
        if (md.body == null) return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   225
        List<JCStatement> stats = md.body.stats;
06bc494ca11e Initial load
duke
parents:
diff changeset
   226
        // Synthetic initializations can appear before the super call.
06bc494ca11e Initial load
duke
parents:
diff changeset
   227
        while (stats.nonEmpty() && isSyntheticInit(stats.head))
06bc494ca11e Initial load
duke
parents:
diff changeset
   228
            stats = stats.tail;
06bc494ca11e Initial load
duke
parents:
diff changeset
   229
        if (stats.isEmpty()) return null;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   230
        if (!stats.head.hasTag(EXEC)) return null;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   231
        JCExpressionStatement exec = (JCExpressionStatement) stats.head;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   232
        if (!exec.expr.hasTag(APPLY)) return null;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   233
        return (JCMethodInvocation)exec.expr;
06bc494ca11e Initial load
duke
parents:
diff changeset
   234
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   235
5321
c8efe769cb3b 6939620: Switch to 'complex' diamond inference scheme
mcimadamore
parents: 5320
diff changeset
   236
    /** Return true if a tree represents a diamond new expr. */
c8efe769cb3b 6939620: Switch to 'complex' diamond inference scheme
mcimadamore
parents: 5320
diff changeset
   237
    public static boolean isDiamond(JCTree tree) {
c8efe769cb3b 6939620: Switch to 'complex' diamond inference scheme
mcimadamore
parents: 5320
diff changeset
   238
        switch(tree.getTag()) {
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   239
            case TYPEAPPLY: return ((JCTypeApply)tree).getTypeArguments().isEmpty();
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   240
            case NEWCLASS: return isDiamond(((JCNewClass)tree).clazz);
15718
8e54c8e43d38 8008077: update reference impl for type-annotations
jjg
parents: 15385
diff changeset
   241
            case ANNOTATED_TYPE: return isDiamond(((JCAnnotatedType)tree).underlyingType);
5321
c8efe769cb3b 6939620: Switch to 'complex' diamond inference scheme
mcimadamore
parents: 5320
diff changeset
   242
            default: return false;
c8efe769cb3b 6939620: Switch to 'complex' diamond inference scheme
mcimadamore
parents: 5320
diff changeset
   243
        }
c8efe769cb3b 6939620: Switch to 'complex' diamond inference scheme
mcimadamore
parents: 5320
diff changeset
   244
    }
c8efe769cb3b 6939620: Switch to 'complex' diamond inference scheme
mcimadamore
parents: 5320
diff changeset
   245
12916
021c069e8e27 7160084: javac fails to compile an apparently valid class/interface combination
mcimadamore
parents: 12080
diff changeset
   246
    public static boolean isEnumInit(JCTree tree) {
021c069e8e27 7160084: javac fails to compile an apparently valid class/interface combination
mcimadamore
parents: 12080
diff changeset
   247
        switch (tree.getTag()) {
021c069e8e27 7160084: javac fails to compile an apparently valid class/interface combination
mcimadamore
parents: 12080
diff changeset
   248
            case VARDEF:
021c069e8e27 7160084: javac fails to compile an apparently valid class/interface combination
mcimadamore
parents: 12080
diff changeset
   249
                return (((JCVariableDecl)tree).mods.flags & ENUM) != 0;
021c069e8e27 7160084: javac fails to compile an apparently valid class/interface combination
mcimadamore
parents: 12080
diff changeset
   250
            default:
021c069e8e27 7160084: javac fails to compile an apparently valid class/interface combination
mcimadamore
parents: 12080
diff changeset
   251
                return false;
021c069e8e27 7160084: javac fails to compile an apparently valid class/interface combination
mcimadamore
parents: 12080
diff changeset
   252
        }
021c069e8e27 7160084: javac fails to compile an apparently valid class/interface combination
mcimadamore
parents: 12080
diff changeset
   253
    }
021c069e8e27 7160084: javac fails to compile an apparently valid class/interface combination
mcimadamore
parents: 12080
diff changeset
   254
15374
fb8f6acf09cc 8005244: Implement overload resolution as per latest spec EDR
mcimadamore
parents: 14952
diff changeset
   255
    /** set 'polyKind' on given tree */
fb8f6acf09cc 8005244: Implement overload resolution as per latest spec EDR
mcimadamore
parents: 14952
diff changeset
   256
    public static void setPolyKind(JCTree tree, PolyKind pkind) {
fb8f6acf09cc 8005244: Implement overload resolution as per latest spec EDR
mcimadamore
parents: 14952
diff changeset
   257
        switch (tree.getTag()) {
fb8f6acf09cc 8005244: Implement overload resolution as per latest spec EDR
mcimadamore
parents: 14952
diff changeset
   258
            case APPLY:
fb8f6acf09cc 8005244: Implement overload resolution as per latest spec EDR
mcimadamore
parents: 14952
diff changeset
   259
                ((JCMethodInvocation)tree).polyKind = pkind;
fb8f6acf09cc 8005244: Implement overload resolution as per latest spec EDR
mcimadamore
parents: 14952
diff changeset
   260
                break;
fb8f6acf09cc 8005244: Implement overload resolution as per latest spec EDR
mcimadamore
parents: 14952
diff changeset
   261
            case NEWCLASS:
fb8f6acf09cc 8005244: Implement overload resolution as per latest spec EDR
mcimadamore
parents: 14952
diff changeset
   262
                ((JCNewClass)tree).polyKind = pkind;
fb8f6acf09cc 8005244: Implement overload resolution as per latest spec EDR
mcimadamore
parents: 14952
diff changeset
   263
                break;
fb8f6acf09cc 8005244: Implement overload resolution as per latest spec EDR
mcimadamore
parents: 14952
diff changeset
   264
            case REFERENCE:
fb8f6acf09cc 8005244: Implement overload resolution as per latest spec EDR
mcimadamore
parents: 14952
diff changeset
   265
                ((JCMemberReference)tree).refPolyKind = pkind;
fb8f6acf09cc 8005244: Implement overload resolution as per latest spec EDR
mcimadamore
parents: 14952
diff changeset
   266
                break;
fb8f6acf09cc 8005244: Implement overload resolution as per latest spec EDR
mcimadamore
parents: 14952
diff changeset
   267
            default:
fb8f6acf09cc 8005244: Implement overload resolution as per latest spec EDR
mcimadamore
parents: 14952
diff changeset
   268
                throw new AssertionError("Unexpected tree: " + tree);
fb8f6acf09cc 8005244: Implement overload resolution as per latest spec EDR
mcimadamore
parents: 14952
diff changeset
   269
        }
fb8f6acf09cc 8005244: Implement overload resolution as per latest spec EDR
mcimadamore
parents: 14952
diff changeset
   270
    }
fb8f6acf09cc 8005244: Implement overload resolution as per latest spec EDR
mcimadamore
parents: 14952
diff changeset
   271
fb8f6acf09cc 8005244: Implement overload resolution as per latest spec EDR
mcimadamore
parents: 14952
diff changeset
   272
    /** set 'varargsElement' on given tree */
fb8f6acf09cc 8005244: Implement overload resolution as per latest spec EDR
mcimadamore
parents: 14952
diff changeset
   273
    public static void setVarargsElement(JCTree tree, Type varargsElement) {
fb8f6acf09cc 8005244: Implement overload resolution as per latest spec EDR
mcimadamore
parents: 14952
diff changeset
   274
        switch (tree.getTag()) {
fb8f6acf09cc 8005244: Implement overload resolution as per latest spec EDR
mcimadamore
parents: 14952
diff changeset
   275
            case APPLY:
fb8f6acf09cc 8005244: Implement overload resolution as per latest spec EDR
mcimadamore
parents: 14952
diff changeset
   276
                ((JCMethodInvocation)tree).varargsElement = varargsElement;
fb8f6acf09cc 8005244: Implement overload resolution as per latest spec EDR
mcimadamore
parents: 14952
diff changeset
   277
                break;
fb8f6acf09cc 8005244: Implement overload resolution as per latest spec EDR
mcimadamore
parents: 14952
diff changeset
   278
            case NEWCLASS:
fb8f6acf09cc 8005244: Implement overload resolution as per latest spec EDR
mcimadamore
parents: 14952
diff changeset
   279
                ((JCNewClass)tree).varargsElement = varargsElement;
fb8f6acf09cc 8005244: Implement overload resolution as per latest spec EDR
mcimadamore
parents: 14952
diff changeset
   280
                break;
fb8f6acf09cc 8005244: Implement overload resolution as per latest spec EDR
mcimadamore
parents: 14952
diff changeset
   281
            case REFERENCE:
fb8f6acf09cc 8005244: Implement overload resolution as per latest spec EDR
mcimadamore
parents: 14952
diff changeset
   282
                ((JCMemberReference)tree).varargsElement = varargsElement;
fb8f6acf09cc 8005244: Implement overload resolution as per latest spec EDR
mcimadamore
parents: 14952
diff changeset
   283
                break;
fb8f6acf09cc 8005244: Implement overload resolution as per latest spec EDR
mcimadamore
parents: 14952
diff changeset
   284
            default:
fb8f6acf09cc 8005244: Implement overload resolution as per latest spec EDR
mcimadamore
parents: 14952
diff changeset
   285
                throw new AssertionError("Unexpected tree: " + tree);
fb8f6acf09cc 8005244: Implement overload resolution as per latest spec EDR
mcimadamore
parents: 14952
diff changeset
   286
        }
14058
c7ec7facdd20 7177385: Add attribution support for lambda expressions
mcimadamore
parents: 14057
diff changeset
   287
    }
14722
aaa39655aa2e 8004105: Expression statement lambdas should be void-compatible
mcimadamore
parents: 14359
diff changeset
   288
aaa39655aa2e 8004105: Expression statement lambdas should be void-compatible
mcimadamore
parents: 14359
diff changeset
   289
    /** Return true if the tree corresponds to an expression statement */
aaa39655aa2e 8004105: Expression statement lambdas should be void-compatible
mcimadamore
parents: 14359
diff changeset
   290
    public static boolean isExpressionStatement(JCExpression tree) {
aaa39655aa2e 8004105: Expression statement lambdas should be void-compatible
mcimadamore
parents: 14359
diff changeset
   291
        switch(tree.getTag()) {
aaa39655aa2e 8004105: Expression statement lambdas should be void-compatible
mcimadamore
parents: 14359
diff changeset
   292
            case PREINC: case PREDEC:
aaa39655aa2e 8004105: Expression statement lambdas should be void-compatible
mcimadamore
parents: 14359
diff changeset
   293
            case POSTINC: case POSTDEC:
aaa39655aa2e 8004105: Expression statement lambdas should be void-compatible
mcimadamore
parents: 14359
diff changeset
   294
            case ASSIGN:
aaa39655aa2e 8004105: Expression statement lambdas should be void-compatible
mcimadamore
parents: 14359
diff changeset
   295
            case BITOR_ASG: case BITXOR_ASG: case BITAND_ASG:
aaa39655aa2e 8004105: Expression statement lambdas should be void-compatible
mcimadamore
parents: 14359
diff changeset
   296
            case SL_ASG: case SR_ASG: case USR_ASG:
aaa39655aa2e 8004105: Expression statement lambdas should be void-compatible
mcimadamore
parents: 14359
diff changeset
   297
            case PLUS_ASG: case MINUS_ASG:
aaa39655aa2e 8004105: Expression statement lambdas should be void-compatible
mcimadamore
parents: 14359
diff changeset
   298
            case MUL_ASG: case DIV_ASG: case MOD_ASG:
aaa39655aa2e 8004105: Expression statement lambdas should be void-compatible
mcimadamore
parents: 14359
diff changeset
   299
            case APPLY: case NEWCLASS:
aaa39655aa2e 8004105: Expression statement lambdas should be void-compatible
mcimadamore
parents: 14359
diff changeset
   300
            case ERRONEOUS:
aaa39655aa2e 8004105: Expression statement lambdas should be void-compatible
mcimadamore
parents: 14359
diff changeset
   301
                return true;
aaa39655aa2e 8004105: Expression statement lambdas should be void-compatible
mcimadamore
parents: 14359
diff changeset
   302
            default:
aaa39655aa2e 8004105: Expression statement lambdas should be void-compatible
mcimadamore
parents: 14359
diff changeset
   303
                return false;
aaa39655aa2e 8004105: Expression statement lambdas should be void-compatible
mcimadamore
parents: 14359
diff changeset
   304
        }
aaa39655aa2e 8004105: Expression statement lambdas should be void-compatible
mcimadamore
parents: 14359
diff changeset
   305
    }
aaa39655aa2e 8004105: Expression statement lambdas should be void-compatible
mcimadamore
parents: 14359
diff changeset
   306
11142
45d0ec1e7463 7115049: Add AST node for method references
mcimadamore
parents: 11055
diff changeset
   307
    /**
45d0ec1e7463 7115049: Add AST node for method references
mcimadamore
parents: 11055
diff changeset
   308
     * Return true if the AST corresponds to a static select of the kind A.B
45d0ec1e7463 7115049: Add AST node for method references
mcimadamore
parents: 11055
diff changeset
   309
     */
45d0ec1e7463 7115049: Add AST node for method references
mcimadamore
parents: 11055
diff changeset
   310
    public static boolean isStaticSelector(JCTree base, Names names) {
45d0ec1e7463 7115049: Add AST node for method references
mcimadamore
parents: 11055
diff changeset
   311
        if (base == null)
45d0ec1e7463 7115049: Add AST node for method references
mcimadamore
parents: 11055
diff changeset
   312
            return false;
45d0ec1e7463 7115049: Add AST node for method references
mcimadamore
parents: 11055
diff changeset
   313
        switch (base.getTag()) {
45d0ec1e7463 7115049: Add AST node for method references
mcimadamore
parents: 11055
diff changeset
   314
            case IDENT:
45d0ec1e7463 7115049: Add AST node for method references
mcimadamore
parents: 11055
diff changeset
   315
                JCIdent id = (JCIdent)base;
45d0ec1e7463 7115049: Add AST node for method references
mcimadamore
parents: 11055
diff changeset
   316
                return id.name != names._this &&
45d0ec1e7463 7115049: Add AST node for method references
mcimadamore
parents: 11055
diff changeset
   317
                        id.name != names._super &&
45d0ec1e7463 7115049: Add AST node for method references
mcimadamore
parents: 11055
diff changeset
   318
                        isStaticSym(base);
45d0ec1e7463 7115049: Add AST node for method references
mcimadamore
parents: 11055
diff changeset
   319
            case SELECT:
45d0ec1e7463 7115049: Add AST node for method references
mcimadamore
parents: 11055
diff changeset
   320
                return isStaticSym(base) &&
45d0ec1e7463 7115049: Add AST node for method references
mcimadamore
parents: 11055
diff changeset
   321
                    isStaticSelector(((JCFieldAccess)base).selected, names);
45d0ec1e7463 7115049: Add AST node for method references
mcimadamore
parents: 11055
diff changeset
   322
            case TYPEAPPLY:
14062
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
   323
            case TYPEARRAY:
11142
45d0ec1e7463 7115049: Add AST node for method references
mcimadamore
parents: 11055
diff changeset
   324
                return true;
15718
8e54c8e43d38 8008077: update reference impl for type-annotations
jjg
parents: 15385
diff changeset
   325
            case ANNOTATED_TYPE:
8e54c8e43d38 8008077: update reference impl for type-annotations
jjg
parents: 15385
diff changeset
   326
                return isStaticSelector(((JCAnnotatedType)base).underlyingType, names);
11142
45d0ec1e7463 7115049: Add AST node for method references
mcimadamore
parents: 11055
diff changeset
   327
            default:
45d0ec1e7463 7115049: Add AST node for method references
mcimadamore
parents: 11055
diff changeset
   328
                return false;
45d0ec1e7463 7115049: Add AST node for method references
mcimadamore
parents: 11055
diff changeset
   329
        }
45d0ec1e7463 7115049: Add AST node for method references
mcimadamore
parents: 11055
diff changeset
   330
    }
45d0ec1e7463 7115049: Add AST node for method references
mcimadamore
parents: 11055
diff changeset
   331
    //where
45d0ec1e7463 7115049: Add AST node for method references
mcimadamore
parents: 11055
diff changeset
   332
        private static boolean isStaticSym(JCTree tree) {
45d0ec1e7463 7115049: Add AST node for method references
mcimadamore
parents: 11055
diff changeset
   333
            Symbol sym = symbol(tree);
45d0ec1e7463 7115049: Add AST node for method references
mcimadamore
parents: 11055
diff changeset
   334
            return (sym.kind == Kinds.TYP ||
45d0ec1e7463 7115049: Add AST node for method references
mcimadamore
parents: 11055
diff changeset
   335
                    sym.kind == Kinds.PCK);
45d0ec1e7463 7115049: Add AST node for method references
mcimadamore
parents: 11055
diff changeset
   336
        }
45d0ec1e7463 7115049: Add AST node for method references
mcimadamore
parents: 11055
diff changeset
   337
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   338
    /** Return true if a tree represents the null literal. */
06bc494ca11e Initial load
duke
parents:
diff changeset
   339
    public static boolean isNull(JCTree tree) {
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   340
        if (!tree.hasTag(LITERAL))
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   341
            return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   342
        JCLiteral lit = (JCLiteral) tree;
14359
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 14267
diff changeset
   343
        return (lit.typetag == BOT);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   344
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   345
13077
16fb753bb5dc 7174143: encapsulate doc comment table
jjg
parents: 12916
diff changeset
   346
    public static String getCommentText(Env<?> env, JCTree tree) {
16fb753bb5dc 7174143: encapsulate doc comment table
jjg
parents: 12916
diff changeset
   347
        DocCommentTable docComments = (tree.hasTag(JCTree.Tag.TOPLEVEL))
16fb753bb5dc 7174143: encapsulate doc comment table
jjg
parents: 12916
diff changeset
   348
                ? ((JCCompilationUnit) tree).docComments
16fb753bb5dc 7174143: encapsulate doc comment table
jjg
parents: 12916
diff changeset
   349
                : env.toplevel.docComments;
13078
11d5e1c88864 7178297: provide mapping from doc comment position to source file position
jjg
parents: 13077
diff changeset
   350
        return (docComments == null) ? null : docComments.getCommentText(tree);
13077
16fb753bb5dc 7174143: encapsulate doc comment table
jjg
parents: 12916
diff changeset
   351
    }
16fb753bb5dc 7174143: encapsulate doc comment table
jjg
parents: 12916
diff changeset
   352
14952
d0022ae20516 8004832: Add new doclint package
jjg
parents: 14722
diff changeset
   353
    public static DCTree.DCDocComment getCommentTree(Env<?> env, JCTree tree) {
d0022ae20516 8004832: Add new doclint package
jjg
parents: 14722
diff changeset
   354
        DocCommentTable docComments = (tree.hasTag(JCTree.Tag.TOPLEVEL))
d0022ae20516 8004832: Add new doclint package
jjg
parents: 14722
diff changeset
   355
                ? ((JCCompilationUnit) tree).docComments
d0022ae20516 8004832: Add new doclint package
jjg
parents: 14722
diff changeset
   356
                : env.toplevel.docComments;
d0022ae20516 8004832: Add new doclint package
jjg
parents: 14722
diff changeset
   357
        return (docComments == null) ? null : docComments.getCommentTree(tree);
d0022ae20516 8004832: Add new doclint package
jjg
parents: 14722
diff changeset
   358
    }
d0022ae20516 8004832: Add new doclint package
jjg
parents: 14722
diff changeset
   359
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   360
    /** The position of the first statement in a block, or the position of
06bc494ca11e Initial load
duke
parents:
diff changeset
   361
     *  the block itself if it is empty.
06bc494ca11e Initial load
duke
parents:
diff changeset
   362
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   363
    public static int firstStatPos(JCTree tree) {
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   364
        if (tree.hasTag(BLOCK) && ((JCBlock) tree).stats.nonEmpty())
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   365
            return ((JCBlock) tree).stats.head.pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   366
        else
06bc494ca11e Initial load
duke
parents:
diff changeset
   367
            return tree.pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   368
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   369
06bc494ca11e Initial load
duke
parents:
diff changeset
   370
    /** The end position of given tree, if it is a block with
06bc494ca11e Initial load
duke
parents:
diff changeset
   371
     *  defined endpos.
06bc494ca11e Initial load
duke
parents:
diff changeset
   372
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   373
    public static int endPos(JCTree tree) {
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   374
        if (tree.hasTag(BLOCK) && ((JCBlock) tree).endpos != Position.NOPOS)
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   375
            return ((JCBlock) tree).endpos;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   376
        else if (tree.hasTag(SYNCHRONIZED))
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   377
            return endPos(((JCSynchronized) tree).body);
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   378
        else if (tree.hasTag(TRY)) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   379
            JCTry t = (JCTry) tree;
13442
41b5b4736385 7178324: Crash when compiling for(i : x) try(AutoCloseable x = ...) {}
sundar
parents: 13078
diff changeset
   380
            return endPos((t.finalizer != null) ? t.finalizer
41b5b4736385 7178324: Crash when compiling for(i : x) try(AutoCloseable x = ...) {}
sundar
parents: 13078
diff changeset
   381
                          : (t.catchers.nonEmpty() ? t.catchers.last().body : t.body));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   382
        } else
06bc494ca11e Initial load
duke
parents:
diff changeset
   383
            return tree.pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   384
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   385
06bc494ca11e Initial load
duke
parents:
diff changeset
   386
06bc494ca11e Initial load
duke
parents:
diff changeset
   387
    /** Get the start position for a tree node.  The start position is
06bc494ca11e Initial load
duke
parents:
diff changeset
   388
     * defined to be the position of the first character of the first
06bc494ca11e Initial load
duke
parents:
diff changeset
   389
     * token of the node's source text.
06bc494ca11e Initial load
duke
parents:
diff changeset
   390
     * @param tree  The tree node
06bc494ca11e Initial load
duke
parents:
diff changeset
   391
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   392
    public static int getStartPos(JCTree tree) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   393
        if (tree == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   394
            return Position.NOPOS;
06bc494ca11e Initial load
duke
parents:
diff changeset
   395
06bc494ca11e Initial load
duke
parents:
diff changeset
   396
        switch(tree.getTag()) {
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   397
            case APPLY:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   398
                return getStartPos(((JCMethodInvocation) tree).meth);
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   399
            case ASSIGN:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   400
                return getStartPos(((JCAssign) tree).lhs);
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   401
            case BITOR_ASG: case BITXOR_ASG: case BITAND_ASG:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   402
            case SL_ASG: case SR_ASG: case USR_ASG:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   403
            case PLUS_ASG: case MINUS_ASG: case MUL_ASG:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   404
            case DIV_ASG: case MOD_ASG:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   405
                return getStartPos(((JCAssignOp) tree).lhs);
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   406
            case OR: case AND: case BITOR:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   407
            case BITXOR: case BITAND: case EQ:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   408
            case NE: case LT: case GT:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   409
            case LE: case GE: case SL:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   410
            case SR: case USR: case PLUS:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   411
            case MINUS: case MUL: case DIV:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   412
            case MOD:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   413
                return getStartPos(((JCBinary) tree).lhs);
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   414
            case CLASSDEF: {
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   415
                JCClassDecl node = (JCClassDecl)tree;
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   416
                if (node.mods.pos != Position.NOPOS)
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   417
                    return node.mods.pos;
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   418
                break;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   419
            }
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   420
            case CONDEXPR:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   421
                return getStartPos(((JCConditional) tree).cond);
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   422
            case EXEC:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   423
                return getStartPos(((JCExpressionStatement) tree).expr);
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   424
            case INDEXED:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   425
                return getStartPos(((JCArrayAccess) tree).indexed);
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   426
            case METHODDEF: {
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   427
                JCMethodDecl node = (JCMethodDecl)tree;
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   428
                if (node.mods.pos != Position.NOPOS)
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   429
                    return node.mods.pos;
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   430
                if (node.typarams.nonEmpty()) // List.nil() used for no typarams
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   431
                    return getStartPos(node.typarams.head);
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   432
                return node.restype == null ? node.pos : getStartPos(node.restype);
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   433
            }
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   434
            case SELECT:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   435
                return getStartPos(((JCFieldAccess) tree).selected);
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   436
            case TYPEAPPLY:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   437
                return getStartPos(((JCTypeApply) tree).clazz);
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   438
            case TYPEARRAY:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   439
                return getStartPos(((JCArrayTypeTree) tree).elemtype);
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   440
            case TYPETEST:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   441
                return getStartPos(((JCInstanceOf) tree).expr);
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   442
            case POSTINC:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   443
            case POSTDEC:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   444
                return getStartPos(((JCUnary) tree).arg);
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
   445
            case ANNOTATED_TYPE: {
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
   446
                JCAnnotatedType node = (JCAnnotatedType) tree;
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
   447
                if (node.annotations.nonEmpty()) {
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
   448
                    if (node.underlyingType.hasTag(TYPEARRAY) ||
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
   449
                            node.underlyingType.hasTag(SELECT)) {
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
   450
                        return getStartPos(node.underlyingType);
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
   451
                    } else {
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
   452
                        return getStartPos(node.annotations.head);
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
   453
                    }
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
   454
                } else {
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
   455
                    return getStartPos(node.underlyingType);
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
   456
                }
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
   457
            }
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   458
            case NEWCLASS: {
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   459
                JCNewClass node = (JCNewClass)tree;
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   460
                if (node.encl != null)
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   461
                    return getStartPos(node.encl);
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   462
                break;
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   463
            }
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   464
            case VARDEF: {
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   465
                JCVariableDecl node = (JCVariableDecl)tree;
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   466
                if (node.mods.pos != Position.NOPOS) {
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   467
                    return node.mods.pos;
14058
c7ec7facdd20 7177385: Add attribution support for lambda expressions
mcimadamore
parents: 14057
diff changeset
   468
                } else if (node.vartype == null) {
c7ec7facdd20 7177385: Add attribution support for lambda expressions
mcimadamore
parents: 14057
diff changeset
   469
                    //if there's no type (partially typed lambda parameter)
c7ec7facdd20 7177385: Add attribution support for lambda expressions
mcimadamore
parents: 14057
diff changeset
   470
                    //simply return node position
c7ec7facdd20 7177385: Add attribution support for lambda expressions
mcimadamore
parents: 14057
diff changeset
   471
                    return node.pos;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   472
                } else {
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   473
                    return getStartPos(node.vartype);
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   474
                }
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   475
            }
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   476
            case ERRONEOUS: {
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   477
                JCErroneous node = (JCErroneous)tree;
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   478
                if (node.errs != null && node.errs.nonEmpty())
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   479
                    return getStartPos(node.errs.head);
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   480
            }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   481
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   482
        return tree.pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   483
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   484
06bc494ca11e Initial load
duke
parents:
diff changeset
   485
    /** The end position of given tree, given  a table of end positions generated by the parser
06bc494ca11e Initial load
duke
parents:
diff changeset
   486
     */
11055
ec1418effa77 7106166: (javac) re-factor EndPos parser
ksrini
parents: 10950
diff changeset
   487
    public static int getEndPos(JCTree tree, EndPosTable endPosTable) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   488
        if (tree == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   489
            return Position.NOPOS;
06bc494ca11e Initial load
duke
parents:
diff changeset
   490
11055
ec1418effa77 7106166: (javac) re-factor EndPos parser
ksrini
parents: 10950
diff changeset
   491
        if (endPosTable == null) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   492
            // fall back on limited info in the tree
06bc494ca11e Initial load
duke
parents:
diff changeset
   493
            return endPos(tree);
06bc494ca11e Initial load
duke
parents:
diff changeset
   494
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   495
11055
ec1418effa77 7106166: (javac) re-factor EndPos parser
ksrini
parents: 10950
diff changeset
   496
        int mapPos = endPosTable.getEndPos(tree);
ec1418effa77 7106166: (javac) re-factor EndPos parser
ksrini
parents: 10950
diff changeset
   497
        if (mapPos != Position.NOPOS)
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   498
            return mapPos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   499
06bc494ca11e Initial load
duke
parents:
diff changeset
   500
        switch(tree.getTag()) {
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   501
            case BITOR_ASG: case BITXOR_ASG: case BITAND_ASG:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   502
            case SL_ASG: case SR_ASG: case USR_ASG:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   503
            case PLUS_ASG: case MINUS_ASG: case MUL_ASG:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   504
            case DIV_ASG: case MOD_ASG:
11055
ec1418effa77 7106166: (javac) re-factor EndPos parser
ksrini
parents: 10950
diff changeset
   505
                return getEndPos(((JCAssignOp) tree).rhs, endPosTable);
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   506
            case OR: case AND: case BITOR:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   507
            case BITXOR: case BITAND: case EQ:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   508
            case NE: case LT: case GT:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   509
            case LE: case GE: case SL:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   510
            case SR: case USR: case PLUS:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   511
            case MINUS: case MUL: case DIV:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   512
            case MOD:
11055
ec1418effa77 7106166: (javac) re-factor EndPos parser
ksrini
parents: 10950
diff changeset
   513
                return getEndPos(((JCBinary) tree).rhs, endPosTable);
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   514
            case CASE:
11055
ec1418effa77 7106166: (javac) re-factor EndPos parser
ksrini
parents: 10950
diff changeset
   515
                return getEndPos(((JCCase) tree).stats.last(), endPosTable);
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   516
            case CATCH:
11055
ec1418effa77 7106166: (javac) re-factor EndPos parser
ksrini
parents: 10950
diff changeset
   517
                return getEndPos(((JCCatch) tree).body, endPosTable);
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   518
            case CONDEXPR:
11055
ec1418effa77 7106166: (javac) re-factor EndPos parser
ksrini
parents: 10950
diff changeset
   519
                return getEndPos(((JCConditional) tree).falsepart, endPosTable);
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   520
            case FORLOOP:
11055
ec1418effa77 7106166: (javac) re-factor EndPos parser
ksrini
parents: 10950
diff changeset
   521
                return getEndPos(((JCForLoop) tree).body, endPosTable);
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   522
            case FOREACHLOOP:
11055
ec1418effa77 7106166: (javac) re-factor EndPos parser
ksrini
parents: 10950
diff changeset
   523
                return getEndPos(((JCEnhancedForLoop) tree).body, endPosTable);
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   524
            case IF: {
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   525
                JCIf node = (JCIf)tree;
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   526
                if (node.elsepart == null) {
11055
ec1418effa77 7106166: (javac) re-factor EndPos parser
ksrini
parents: 10950
diff changeset
   527
                    return getEndPos(node.thenpart, endPosTable);
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   528
                } else {
11055
ec1418effa77 7106166: (javac) re-factor EndPos parser
ksrini
parents: 10950
diff changeset
   529
                    return getEndPos(node.elsepart, endPosTable);
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   530
                }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   531
            }
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   532
            case LABELLED:
11055
ec1418effa77 7106166: (javac) re-factor EndPos parser
ksrini
parents: 10950
diff changeset
   533
                return getEndPos(((JCLabeledStatement) tree).body, endPosTable);
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   534
            case MODIFIERS:
11055
ec1418effa77 7106166: (javac) re-factor EndPos parser
ksrini
parents: 10950
diff changeset
   535
                return getEndPos(((JCModifiers) tree).annotations.last(), endPosTable);
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   536
            case SYNCHRONIZED:
11055
ec1418effa77 7106166: (javac) re-factor EndPos parser
ksrini
parents: 10950
diff changeset
   537
                return getEndPos(((JCSynchronized) tree).body, endPosTable);
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   538
            case TOPLEVEL:
11055
ec1418effa77 7106166: (javac) re-factor EndPos parser
ksrini
parents: 10950
diff changeset
   539
                return getEndPos(((JCCompilationUnit) tree).defs.last(), endPosTable);
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   540
            case TRY: {
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   541
                JCTry node = (JCTry)tree;
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   542
                if (node.finalizer != null) {
11055
ec1418effa77 7106166: (javac) re-factor EndPos parser
ksrini
parents: 10950
diff changeset
   543
                    return getEndPos(node.finalizer, endPosTable);
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   544
                } else if (!node.catchers.isEmpty()) {
11055
ec1418effa77 7106166: (javac) re-factor EndPos parser
ksrini
parents: 10950
diff changeset
   545
                    return getEndPos(node.catchers.last(), endPosTable);
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   546
                } else {
11055
ec1418effa77 7106166: (javac) re-factor EndPos parser
ksrini
parents: 10950
diff changeset
   547
                    return getEndPos(node.body, endPosTable);
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   548
                }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   549
            }
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   550
            case WILDCARD:
11055
ec1418effa77 7106166: (javac) re-factor EndPos parser
ksrini
parents: 10950
diff changeset
   551
                return getEndPos(((JCWildcard) tree).inner, endPosTable);
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   552
            case TYPECAST:
11055
ec1418effa77 7106166: (javac) re-factor EndPos parser
ksrini
parents: 10950
diff changeset
   553
                return getEndPos(((JCTypeCast) tree).expr, endPosTable);
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   554
            case TYPETEST:
11055
ec1418effa77 7106166: (javac) re-factor EndPos parser
ksrini
parents: 10950
diff changeset
   555
                return getEndPos(((JCInstanceOf) tree).clazz, endPosTable);
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   556
            case POS:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   557
            case NEG:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   558
            case NOT:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   559
            case COMPL:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   560
            case PREINC:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   561
            case PREDEC:
11055
ec1418effa77 7106166: (javac) re-factor EndPos parser
ksrini
parents: 10950
diff changeset
   562
                return getEndPos(((JCUnary) tree).arg, endPosTable);
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   563
            case WHILELOOP:
11055
ec1418effa77 7106166: (javac) re-factor EndPos parser
ksrini
parents: 10950
diff changeset
   564
                return getEndPos(((JCWhileLoop) tree).body, endPosTable);
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
   565
            case ANNOTATED_TYPE:
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
   566
                return getEndPos(((JCAnnotatedType) tree).underlyingType, endPosTable);
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   567
            case ERRONEOUS: {
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   568
                JCErroneous node = (JCErroneous)tree;
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   569
                if (node.errs != null && node.errs.nonEmpty())
11055
ec1418effa77 7106166: (javac) re-factor EndPos parser
ksrini
parents: 10950
diff changeset
   570
                    return getEndPos(node.errs.last(), endPosTable);
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   571
            }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   572
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   573
        return Position.NOPOS;
06bc494ca11e Initial load
duke
parents:
diff changeset
   574
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   575
06bc494ca11e Initial load
duke
parents:
diff changeset
   576
06bc494ca11e Initial load
duke
parents:
diff changeset
   577
    /** A DiagnosticPosition with the preferred position set to the
06bc494ca11e Initial load
duke
parents:
diff changeset
   578
     *  end position of given tree, if it is a block with
06bc494ca11e Initial load
duke
parents:
diff changeset
   579
     *  defined endpos.
06bc494ca11e Initial load
duke
parents:
diff changeset
   580
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   581
    public static DiagnosticPosition diagEndPos(final JCTree tree) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   582
        final int endPos = TreeInfo.endPos(tree);
06bc494ca11e Initial load
duke
parents:
diff changeset
   583
        return new DiagnosticPosition() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   584
            public JCTree getTree() { return tree; }
06bc494ca11e Initial load
duke
parents:
diff changeset
   585
            public int getStartPosition() { return TreeInfo.getStartPos(tree); }
06bc494ca11e Initial load
duke
parents:
diff changeset
   586
            public int getPreferredPosition() { return endPos; }
11055
ec1418effa77 7106166: (javac) re-factor EndPos parser
ksrini
parents: 10950
diff changeset
   587
            public int getEndPosition(EndPosTable endPosTable) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   588
                return TreeInfo.getEndPos(tree, endPosTable);
06bc494ca11e Initial load
duke
parents:
diff changeset
   589
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   590
        };
06bc494ca11e Initial load
duke
parents:
diff changeset
   591
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   592
06bc494ca11e Initial load
duke
parents:
diff changeset
   593
    /** The position of the finalizer of given try/synchronized statement.
06bc494ca11e Initial load
duke
parents:
diff changeset
   594
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   595
    public static int finalizerPos(JCTree tree) {
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   596
        if (tree.hasTag(TRY)) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   597
            JCTry t = (JCTry) tree;
8032
e1aa25ccdabb 6396503: javac should not require assertions enabled
jjg
parents: 8031
diff changeset
   598
            Assert.checkNonNull(t.finalizer);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   599
            return firstStatPos(t.finalizer);
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   600
        } else if (tree.hasTag(SYNCHRONIZED)) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   601
            return endPos(((JCSynchronized) tree).body);
06bc494ca11e Initial load
duke
parents:
diff changeset
   602
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   603
            throw new AssertionError();
06bc494ca11e Initial load
duke
parents:
diff changeset
   604
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   605
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   606
06bc494ca11e Initial load
duke
parents:
diff changeset
   607
    /** Find the position for reporting an error about a symbol, where
06bc494ca11e Initial load
duke
parents:
diff changeset
   608
     *  that symbol is defined somewhere in the given tree. */
06bc494ca11e Initial load
duke
parents:
diff changeset
   609
    public static int positionFor(final Symbol sym, final JCTree tree) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   610
        JCTree decl = declarationFor(sym, tree);
06bc494ca11e Initial load
duke
parents:
diff changeset
   611
        return ((decl != null) ? decl : tree).pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   612
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   613
06bc494ca11e Initial load
duke
parents:
diff changeset
   614
    /** Find the position for reporting an error about a symbol, where
06bc494ca11e Initial load
duke
parents:
diff changeset
   615
     *  that symbol is defined somewhere in the given tree. */
06bc494ca11e Initial load
duke
parents:
diff changeset
   616
    public static DiagnosticPosition diagnosticPositionFor(final Symbol sym, final JCTree tree) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   617
        JCTree decl = declarationFor(sym, tree);
06bc494ca11e Initial load
duke
parents:
diff changeset
   618
        return ((decl != null) ? decl : tree).pos();
06bc494ca11e Initial load
duke
parents:
diff changeset
   619
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   620
06bc494ca11e Initial load
duke
parents:
diff changeset
   621
    /** Find the declaration for a symbol, where
06bc494ca11e Initial load
duke
parents:
diff changeset
   622
     *  that symbol is defined somewhere in the given tree. */
06bc494ca11e Initial load
duke
parents:
diff changeset
   623
    public static JCTree declarationFor(final Symbol sym, final JCTree tree) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   624
        class DeclScanner extends TreeScanner {
06bc494ca11e Initial load
duke
parents:
diff changeset
   625
            JCTree result = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   626
            public void scan(JCTree tree) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   627
                if (tree!=null && result==null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   628
                    tree.accept(this);
06bc494ca11e Initial load
duke
parents:
diff changeset
   629
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   630
            public void visitTopLevel(JCCompilationUnit that) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   631
                if (that.packge == sym) result = that;
06bc494ca11e Initial load
duke
parents:
diff changeset
   632
                else super.visitTopLevel(that);
06bc494ca11e Initial load
duke
parents:
diff changeset
   633
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   634
            public void visitClassDef(JCClassDecl that) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   635
                if (that.sym == sym) result = that;
06bc494ca11e Initial load
duke
parents:
diff changeset
   636
                else super.visitClassDef(that);
06bc494ca11e Initial load
duke
parents:
diff changeset
   637
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   638
            public void visitMethodDef(JCMethodDecl that) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   639
                if (that.sym == sym) result = that;
06bc494ca11e Initial load
duke
parents:
diff changeset
   640
                else super.visitMethodDef(that);
06bc494ca11e Initial load
duke
parents:
diff changeset
   641
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   642
            public void visitVarDef(JCVariableDecl that) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   643
                if (that.sym == sym) result = that;
06bc494ca11e Initial load
duke
parents:
diff changeset
   644
                else super.visitVarDef(that);
06bc494ca11e Initial load
duke
parents:
diff changeset
   645
            }
6586
0d40dc0c06cb 6458823: Messager messages on TypeParamterElements to not include position information.
sundar
parents: 5847
diff changeset
   646
            public void visitTypeParameter(JCTypeParameter that) {
7619
1bedd48ff024 6990209: JCK7-compiler lang/ICLS/icls006/icls00603/icls00603a.html#icls00603src test fails.
jjh
parents: 7074
diff changeset
   647
                if (that.type != null && that.type.tsym == sym) result = that;
6586
0d40dc0c06cb 6458823: Messager messages on TypeParamterElements to not include position information.
sundar
parents: 5847
diff changeset
   648
                else super.visitTypeParameter(that);
0d40dc0c06cb 6458823: Messager messages on TypeParamterElements to not include position information.
sundar
parents: 5847
diff changeset
   649
            }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   650
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   651
        DeclScanner s = new DeclScanner();
06bc494ca11e Initial load
duke
parents:
diff changeset
   652
        tree.accept(s);
06bc494ca11e Initial load
duke
parents:
diff changeset
   653
        return s.result;
06bc494ca11e Initial load
duke
parents:
diff changeset
   654
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   655
06bc494ca11e Initial load
duke
parents:
diff changeset
   656
    public static Env<AttrContext> scopeFor(JCTree node, JCCompilationUnit unit) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   657
        return scopeFor(pathFor(node, unit));
06bc494ca11e Initial load
duke
parents:
diff changeset
   658
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   659
06bc494ca11e Initial load
duke
parents:
diff changeset
   660
    public static Env<AttrContext> scopeFor(List<JCTree> path) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   661
        // TODO: not implemented yet
06bc494ca11e Initial load
duke
parents:
diff changeset
   662
        throw new UnsupportedOperationException("not implemented yet");
06bc494ca11e Initial load
duke
parents:
diff changeset
   663
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   664
06bc494ca11e Initial load
duke
parents:
diff changeset
   665
    public static List<JCTree> pathFor(final JCTree node, final JCCompilationUnit unit) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   666
        class Result extends Error {
06bc494ca11e Initial load
duke
parents:
diff changeset
   667
            static final long serialVersionUID = -5942088234594905625L;
06bc494ca11e Initial load
duke
parents:
diff changeset
   668
            List<JCTree> path;
06bc494ca11e Initial load
duke
parents:
diff changeset
   669
            Result(List<JCTree> path) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   670
                this.path = path;
06bc494ca11e Initial load
duke
parents:
diff changeset
   671
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   672
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   673
        class PathFinder extends TreeScanner {
06bc494ca11e Initial load
duke
parents:
diff changeset
   674
            List<JCTree> path = List.nil();
06bc494ca11e Initial load
duke
parents:
diff changeset
   675
            public void scan(JCTree tree) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   676
                if (tree != null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   677
                    path = path.prepend(tree);
06bc494ca11e Initial load
duke
parents:
diff changeset
   678
                    if (tree == node)
06bc494ca11e Initial load
duke
parents:
diff changeset
   679
                        throw new Result(path);
06bc494ca11e Initial load
duke
parents:
diff changeset
   680
                    super.scan(tree);
06bc494ca11e Initial load
duke
parents:
diff changeset
   681
                    path = path.tail;
06bc494ca11e Initial load
duke
parents:
diff changeset
   682
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   683
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   684
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   685
        try {
06bc494ca11e Initial load
duke
parents:
diff changeset
   686
            new PathFinder().scan(unit);
06bc494ca11e Initial load
duke
parents:
diff changeset
   687
        } catch (Result result) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   688
            return result.path;
06bc494ca11e Initial load
duke
parents:
diff changeset
   689
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   690
        return List.nil();
06bc494ca11e Initial load
duke
parents:
diff changeset
   691
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   692
06bc494ca11e Initial load
duke
parents:
diff changeset
   693
    /** Return the statement referenced by a label.
06bc494ca11e Initial load
duke
parents:
diff changeset
   694
     *  If the label refers to a loop or switch, return that switch
06bc494ca11e Initial load
duke
parents:
diff changeset
   695
     *  otherwise return the labelled statement itself
06bc494ca11e Initial load
duke
parents:
diff changeset
   696
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   697
    public static JCTree referencedStatement(JCLabeledStatement tree) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   698
        JCTree t = tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   699
        do t = ((JCLabeledStatement) t).body;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   700
        while (t.hasTag(LABELLED));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   701
        switch (t.getTag()) {
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   702
        case DOLOOP: case WHILELOOP: case FORLOOP: case FOREACHLOOP: case SWITCH:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   703
            return t;
06bc494ca11e Initial load
duke
parents:
diff changeset
   704
        default:
06bc494ca11e Initial load
duke
parents:
diff changeset
   705
            return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   706
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   707
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   708
06bc494ca11e Initial load
duke
parents:
diff changeset
   709
    /** Skip parens and return the enclosed expression
06bc494ca11e Initial load
duke
parents:
diff changeset
   710
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   711
    public static JCExpression skipParens(JCExpression tree) {
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   712
        while (tree.hasTag(PARENS)) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   713
            tree = ((JCParens) tree).expr;
06bc494ca11e Initial load
duke
parents:
diff changeset
   714
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   715
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   716
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   717
06bc494ca11e Initial load
duke
parents:
diff changeset
   718
    /** Skip parens and return the enclosed expression
06bc494ca11e Initial load
duke
parents:
diff changeset
   719
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   720
    public static JCTree skipParens(JCTree tree) {
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   721
        if (tree.hasTag(PARENS))
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   722
            return skipParens((JCParens)tree);
06bc494ca11e Initial load
duke
parents:
diff changeset
   723
        else
06bc494ca11e Initial load
duke
parents:
diff changeset
   724
            return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   725
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   726
06bc494ca11e Initial load
duke
parents:
diff changeset
   727
    /** Return the types of a list of trees.
06bc494ca11e Initial load
duke
parents:
diff changeset
   728
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   729
    public static List<Type> types(List<? extends JCTree> trees) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   730
        ListBuffer<Type> ts = new ListBuffer<Type>();
06bc494ca11e Initial load
duke
parents:
diff changeset
   731
        for (List<? extends JCTree> l = trees; l.nonEmpty(); l = l.tail)
06bc494ca11e Initial load
duke
parents:
diff changeset
   732
            ts.append(l.head.type);
06bc494ca11e Initial load
duke
parents:
diff changeset
   733
        return ts.toList();
06bc494ca11e Initial load
duke
parents:
diff changeset
   734
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   735
06bc494ca11e Initial load
duke
parents:
diff changeset
   736
    /** If this tree is an identifier or a field or a parameterized type,
06bc494ca11e Initial load
duke
parents:
diff changeset
   737
     *  return its name, otherwise return null.
06bc494ca11e Initial load
duke
parents:
diff changeset
   738
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   739
    public static Name name(JCTree tree) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   740
        switch (tree.getTag()) {
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   741
        case IDENT:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   742
            return ((JCIdent) tree).name;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   743
        case SELECT:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   744
            return ((JCFieldAccess) tree).name;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   745
        case TYPEAPPLY:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   746
            return name(((JCTypeApply) tree).clazz);
06bc494ca11e Initial load
duke
parents:
diff changeset
   747
        default:
06bc494ca11e Initial load
duke
parents:
diff changeset
   748
            return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   749
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   750
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   751
06bc494ca11e Initial load
duke
parents:
diff changeset
   752
    /** If this tree is a qualified identifier, its return fully qualified name,
06bc494ca11e Initial load
duke
parents:
diff changeset
   753
     *  otherwise return null.
06bc494ca11e Initial load
duke
parents:
diff changeset
   754
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   755
    public static Name fullName(JCTree tree) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   756
        tree = skipParens(tree);
06bc494ca11e Initial load
duke
parents:
diff changeset
   757
        switch (tree.getTag()) {
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   758
        case IDENT:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   759
            return ((JCIdent) tree).name;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   760
        case SELECT:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   761
            Name sname = fullName(((JCFieldAccess) tree).selected);
06bc494ca11e Initial load
duke
parents:
diff changeset
   762
            return sname == null ? null : sname.append('.', name(tree));
06bc494ca11e Initial load
duke
parents:
diff changeset
   763
        default:
06bc494ca11e Initial load
duke
parents:
diff changeset
   764
            return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   765
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   766
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   767
06bc494ca11e Initial load
duke
parents:
diff changeset
   768
    public static Symbol symbolFor(JCTree node) {
17557
9c6ace1881fe 8012929: Trees.getElement should work not only for declaration trees, but also for use-trees
jlahoda
parents: 16975
diff changeset
   769
        Symbol sym = symbolForImpl(node);
9c6ace1881fe 8012929: Trees.getElement should work not only for declaration trees, but also for use-trees
jlahoda
parents: 16975
diff changeset
   770
9c6ace1881fe 8012929: Trees.getElement should work not only for declaration trees, but also for use-trees
jlahoda
parents: 16975
diff changeset
   771
        return sym != null ? sym.baseSymbol() : null;
9c6ace1881fe 8012929: Trees.getElement should work not only for declaration trees, but also for use-trees
jlahoda
parents: 16975
diff changeset
   772
    }
9c6ace1881fe 8012929: Trees.getElement should work not only for declaration trees, but also for use-trees
jlahoda
parents: 16975
diff changeset
   773
9c6ace1881fe 8012929: Trees.getElement should work not only for declaration trees, but also for use-trees
jlahoda
parents: 16975
diff changeset
   774
    private static Symbol symbolForImpl(JCTree node) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   775
        node = skipParens(node);
06bc494ca11e Initial load
duke
parents:
diff changeset
   776
        switch (node.getTag()) {
17557
9c6ace1881fe 8012929: Trees.getElement should work not only for declaration trees, but also for use-trees
jlahoda
parents: 16975
diff changeset
   777
        case TOPLEVEL:
9c6ace1881fe 8012929: Trees.getElement should work not only for declaration trees, but also for use-trees
jlahoda
parents: 16975
diff changeset
   778
            return ((JCCompilationUnit) node).packge;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   779
        case CLASSDEF:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   780
            return ((JCClassDecl) node).sym;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   781
        case METHODDEF:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   782
            return ((JCMethodDecl) node).sym;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   783
        case VARDEF:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   784
            return ((JCVariableDecl) node).sym;
17557
9c6ace1881fe 8012929: Trees.getElement should work not only for declaration trees, but also for use-trees
jlahoda
parents: 16975
diff changeset
   785
        case IDENT:
9c6ace1881fe 8012929: Trees.getElement should work not only for declaration trees, but also for use-trees
jlahoda
parents: 16975
diff changeset
   786
            return ((JCIdent) node).sym;
9c6ace1881fe 8012929: Trees.getElement should work not only for declaration trees, but also for use-trees
jlahoda
parents: 16975
diff changeset
   787
        case SELECT:
9c6ace1881fe 8012929: Trees.getElement should work not only for declaration trees, but also for use-trees
jlahoda
parents: 16975
diff changeset
   788
            return ((JCFieldAccess) node).sym;
9c6ace1881fe 8012929: Trees.getElement should work not only for declaration trees, but also for use-trees
jlahoda
parents: 16975
diff changeset
   789
        case REFERENCE:
9c6ace1881fe 8012929: Trees.getElement should work not only for declaration trees, but also for use-trees
jlahoda
parents: 16975
diff changeset
   790
            return ((JCMemberReference) node).sym;
9c6ace1881fe 8012929: Trees.getElement should work not only for declaration trees, but also for use-trees
jlahoda
parents: 16975
diff changeset
   791
        case NEWCLASS:
9c6ace1881fe 8012929: Trees.getElement should work not only for declaration trees, but also for use-trees
jlahoda
parents: 16975
diff changeset
   792
            return ((JCNewClass) node).constructor;
9c6ace1881fe 8012929: Trees.getElement should work not only for declaration trees, but also for use-trees
jlahoda
parents: 16975
diff changeset
   793
        case APPLY:
9c6ace1881fe 8012929: Trees.getElement should work not only for declaration trees, but also for use-trees
jlahoda
parents: 16975
diff changeset
   794
            return symbolFor(((JCMethodInvocation) node).meth);
9c6ace1881fe 8012929: Trees.getElement should work not only for declaration trees, but also for use-trees
jlahoda
parents: 16975
diff changeset
   795
        case TYPEAPPLY:
9c6ace1881fe 8012929: Trees.getElement should work not only for declaration trees, but also for use-trees
jlahoda
parents: 16975
diff changeset
   796
            return symbolFor(((JCTypeApply) node).clazz);
9c6ace1881fe 8012929: Trees.getElement should work not only for declaration trees, but also for use-trees
jlahoda
parents: 16975
diff changeset
   797
        case ANNOTATION:
9c6ace1881fe 8012929: Trees.getElement should work not only for declaration trees, but also for use-trees
jlahoda
parents: 16975
diff changeset
   798
        case TYPE_ANNOTATION:
9c6ace1881fe 8012929: Trees.getElement should work not only for declaration trees, but also for use-trees
jlahoda
parents: 16975
diff changeset
   799
        case TYPEPARAMETER:
9c6ace1881fe 8012929: Trees.getElement should work not only for declaration trees, but also for use-trees
jlahoda
parents: 16975
diff changeset
   800
            if (node.type != null)
9c6ace1881fe 8012929: Trees.getElement should work not only for declaration trees, but also for use-trees
jlahoda
parents: 16975
diff changeset
   801
                return node.type.tsym;
9c6ace1881fe 8012929: Trees.getElement should work not only for declaration trees, but also for use-trees
jlahoda
parents: 16975
diff changeset
   802
            return null;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   803
        default:
06bc494ca11e Initial load
duke
parents:
diff changeset
   804
            return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   805
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   806
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   807
6590
f745e683da2c 6930507: Symbols for anonymous and local classes made too late for use by java tree API
jjg
parents: 6586
diff changeset
   808
    public static boolean isDeclaration(JCTree node) {
f745e683da2c 6930507: Symbols for anonymous and local classes made too late for use by java tree API
jjg
parents: 6586
diff changeset
   809
        node = skipParens(node);
f745e683da2c 6930507: Symbols for anonymous and local classes made too late for use by java tree API
jjg
parents: 6586
diff changeset
   810
        switch (node.getTag()) {
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   811
        case CLASSDEF:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   812
        case METHODDEF:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   813
        case VARDEF:
6590
f745e683da2c 6930507: Symbols for anonymous and local classes made too late for use by java tree API
jjg
parents: 6586
diff changeset
   814
            return true;
f745e683da2c 6930507: Symbols for anonymous and local classes made too late for use by java tree API
jjg
parents: 6586
diff changeset
   815
        default:
f745e683da2c 6930507: Symbols for anonymous and local classes made too late for use by java tree API
jjg
parents: 6586
diff changeset
   816
            return false;
f745e683da2c 6930507: Symbols for anonymous and local classes made too late for use by java tree API
jjg
parents: 6586
diff changeset
   817
        }
f745e683da2c 6930507: Symbols for anonymous and local classes made too late for use by java tree API
jjg
parents: 6586
diff changeset
   818
    }
f745e683da2c 6930507: Symbols for anonymous and local classes made too late for use by java tree API
jjg
parents: 6586
diff changeset
   819
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   820
    /** If this tree is an identifier or a field, return its symbol,
06bc494ca11e Initial load
duke
parents:
diff changeset
   821
     *  otherwise return null.
06bc494ca11e Initial load
duke
parents:
diff changeset
   822
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   823
    public static Symbol symbol(JCTree tree) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   824
        tree = skipParens(tree);
06bc494ca11e Initial load
duke
parents:
diff changeset
   825
        switch (tree.getTag()) {
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   826
        case IDENT:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   827
            return ((JCIdent) tree).sym;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   828
        case SELECT:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   829
            return ((JCFieldAccess) tree).sym;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   830
        case TYPEAPPLY:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   831
            return symbol(((JCTypeApply) tree).clazz);
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
   832
        case ANNOTATED_TYPE:
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
   833
            return symbol(((JCAnnotatedType) tree).underlyingType);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   834
        default:
06bc494ca11e Initial load
duke
parents:
diff changeset
   835
            return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   836
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   837
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   838
06bc494ca11e Initial load
duke
parents:
diff changeset
   839
    /** Return true if this is a nonstatic selection. */
06bc494ca11e Initial load
duke
parents:
diff changeset
   840
    public static boolean nonstaticSelect(JCTree tree) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   841
        tree = skipParens(tree);
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   842
        if (!tree.hasTag(SELECT)) return false;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   843
        JCFieldAccess s = (JCFieldAccess) tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   844
        Symbol e = symbol(s.selected);
06bc494ca11e Initial load
duke
parents:
diff changeset
   845
        return e == null || (e.kind != Kinds.PCK && e.kind != Kinds.TYP);
06bc494ca11e Initial load
duke
parents:
diff changeset
   846
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   847
06bc494ca11e Initial load
duke
parents:
diff changeset
   848
    /** If this tree is an identifier or a field, set its symbol, otherwise skip.
06bc494ca11e Initial load
duke
parents:
diff changeset
   849
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   850
    public static void setSymbol(JCTree tree, Symbol sym) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   851
        tree = skipParens(tree);
06bc494ca11e Initial load
duke
parents:
diff changeset
   852
        switch (tree.getTag()) {
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   853
        case IDENT:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   854
            ((JCIdent) tree).sym = sym; break;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   855
        case SELECT:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   856
            ((JCFieldAccess) tree).sym = sym; break;
06bc494ca11e Initial load
duke
parents:
diff changeset
   857
        default:
06bc494ca11e Initial load
duke
parents:
diff changeset
   858
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   859
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   860
06bc494ca11e Initial load
duke
parents:
diff changeset
   861
    /** If this tree is a declaration or a block, return its flags field,
06bc494ca11e Initial load
duke
parents:
diff changeset
   862
     *  otherwise return 0.
06bc494ca11e Initial load
duke
parents:
diff changeset
   863
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   864
    public static long flags(JCTree tree) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   865
        switch (tree.getTag()) {
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   866
        case VARDEF:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   867
            return ((JCVariableDecl) tree).mods.flags;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   868
        case METHODDEF:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   869
            return ((JCMethodDecl) tree).mods.flags;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   870
        case CLASSDEF:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   871
            return ((JCClassDecl) tree).mods.flags;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   872
        case BLOCK:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   873
            return ((JCBlock) tree).flags;
06bc494ca11e Initial load
duke
parents:
diff changeset
   874
        default:
06bc494ca11e Initial load
duke
parents:
diff changeset
   875
            return 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
   876
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   877
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   878
06bc494ca11e Initial load
duke
parents:
diff changeset
   879
    /** Return first (smallest) flag in `flags':
06bc494ca11e Initial load
duke
parents:
diff changeset
   880
     *  pre: flags != 0
06bc494ca11e Initial load
duke
parents:
diff changeset
   881
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   882
    public static long firstFlag(long flags) {
14267
6321fbe0cf50 7192245: Add parser support for default methods
mcimadamore
parents: 14062
diff changeset
   883
        long flag = 1;
6321fbe0cf50 7192245: Add parser support for default methods
mcimadamore
parents: 14062
diff changeset
   884
        while ((flag & flags & ExtendedStandardFlags) == 0)
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   885
            flag = flag << 1;
06bc494ca11e Initial load
duke
parents:
diff changeset
   886
        return flag;
06bc494ca11e Initial load
duke
parents:
diff changeset
   887
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   888
06bc494ca11e Initial load
duke
parents:
diff changeset
   889
    /** Return flags as a string, separated by " ".
06bc494ca11e Initial load
duke
parents:
diff changeset
   890
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   891
    public static String flagNames(long flags) {
14267
6321fbe0cf50 7192245: Add parser support for default methods
mcimadamore
parents: 14062
diff changeset
   892
        return Flags.toString(flags & ExtendedStandardFlags).trim();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   893
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   894
06bc494ca11e Initial load
duke
parents:
diff changeset
   895
    /** Operator precedences values.
06bc494ca11e Initial load
duke
parents:
diff changeset
   896
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   897
    public static final int
06bc494ca11e Initial load
duke
parents:
diff changeset
   898
        notExpression = -1,   // not an expression
06bc494ca11e Initial load
duke
parents:
diff changeset
   899
        noPrec = 0,           // no enclosing expression
06bc494ca11e Initial load
duke
parents:
diff changeset
   900
        assignPrec = 1,
06bc494ca11e Initial load
duke
parents:
diff changeset
   901
        assignopPrec = 2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   902
        condPrec = 3,
06bc494ca11e Initial load
duke
parents:
diff changeset
   903
        orPrec = 4,
06bc494ca11e Initial load
duke
parents:
diff changeset
   904
        andPrec = 5,
06bc494ca11e Initial load
duke
parents:
diff changeset
   905
        bitorPrec = 6,
06bc494ca11e Initial load
duke
parents:
diff changeset
   906
        bitxorPrec = 7,
06bc494ca11e Initial load
duke
parents:
diff changeset
   907
        bitandPrec = 8,
06bc494ca11e Initial load
duke
parents:
diff changeset
   908
        eqPrec = 9,
06bc494ca11e Initial load
duke
parents:
diff changeset
   909
        ordPrec = 10,
06bc494ca11e Initial load
duke
parents:
diff changeset
   910
        shiftPrec = 11,
06bc494ca11e Initial load
duke
parents:
diff changeset
   911
        addPrec = 12,
06bc494ca11e Initial load
duke
parents:
diff changeset
   912
        mulPrec = 13,
06bc494ca11e Initial load
duke
parents:
diff changeset
   913
        prefixPrec = 14,
06bc494ca11e Initial load
duke
parents:
diff changeset
   914
        postfixPrec = 15,
06bc494ca11e Initial load
duke
parents:
diff changeset
   915
        precCount = 16;
06bc494ca11e Initial load
duke
parents:
diff changeset
   916
06bc494ca11e Initial load
duke
parents:
diff changeset
   917
06bc494ca11e Initial load
duke
parents:
diff changeset
   918
    /** Map operators to their precedence levels.
06bc494ca11e Initial load
duke
parents:
diff changeset
   919
     */
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   920
    public static int opPrec(JCTree.Tag op) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   921
        switch(op) {
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   922
        case POS:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   923
        case NEG:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   924
        case NOT:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   925
        case COMPL:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   926
        case PREINC:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   927
        case PREDEC: return prefixPrec;
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   928
        case POSTINC:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   929
        case POSTDEC:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   930
        case NULLCHK: return postfixPrec;
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   931
        case ASSIGN: return assignPrec;
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   932
        case BITOR_ASG:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   933
        case BITXOR_ASG:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   934
        case BITAND_ASG:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   935
        case SL_ASG:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   936
        case SR_ASG:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   937
        case USR_ASG:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   938
        case PLUS_ASG:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   939
        case MINUS_ASG:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   940
        case MUL_ASG:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   941
        case DIV_ASG:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   942
        case MOD_ASG: return assignopPrec;
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   943
        case OR: return orPrec;
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   944
        case AND: return andPrec;
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   945
        case EQ:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   946
        case NE: return eqPrec;
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   947
        case LT:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   948
        case GT:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   949
        case LE:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   950
        case GE: return ordPrec;
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   951
        case BITOR: return bitorPrec;
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   952
        case BITXOR: return bitxorPrec;
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   953
        case BITAND: return bitandPrec;
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   954
        case SL:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   955
        case SR:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   956
        case USR: return shiftPrec;
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   957
        case PLUS:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   958
        case MINUS: return addPrec;
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   959
        case MUL:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   960
        case DIV:
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   961
        case MOD: return mulPrec;
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   962
        case TYPETEST: return ordPrec;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   963
        default: throw new AssertionError();
06bc494ca11e Initial load
duke
parents:
diff changeset
   964
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   965
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   966
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   967
    static Tree.Kind tagToKind(JCTree.Tag tag) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   968
        switch (tag) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   969
        // Postfix expressions
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   970
        case POSTINC:           // _ ++
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   971
            return Tree.Kind.POSTFIX_INCREMENT;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   972
        case POSTDEC:           // _ --
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   973
            return Tree.Kind.POSTFIX_DECREMENT;
06bc494ca11e Initial load
duke
parents:
diff changeset
   974
06bc494ca11e Initial load
duke
parents:
diff changeset
   975
        // Unary operators
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   976
        case PREINC:            // ++ _
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   977
            return Tree.Kind.PREFIX_INCREMENT;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   978
        case PREDEC:            // -- _
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   979
            return Tree.Kind.PREFIX_DECREMENT;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   980
        case POS:               // +
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   981
            return Tree.Kind.UNARY_PLUS;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   982
        case NEG:               // -
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   983
            return Tree.Kind.UNARY_MINUS;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   984
        case COMPL:             // ~
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   985
            return Tree.Kind.BITWISE_COMPLEMENT;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   986
        case NOT:               // !
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   987
            return Tree.Kind.LOGICAL_COMPLEMENT;
06bc494ca11e Initial load
duke
parents:
diff changeset
   988
06bc494ca11e Initial load
duke
parents:
diff changeset
   989
        // Binary operators
06bc494ca11e Initial load
duke
parents:
diff changeset
   990
06bc494ca11e Initial load
duke
parents:
diff changeset
   991
        // Multiplicative operators
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   992
        case MUL:               // *
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   993
            return Tree.Kind.MULTIPLY;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   994
        case DIV:               // /
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   995
            return Tree.Kind.DIVIDE;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   996
        case MOD:               // %
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   997
            return Tree.Kind.REMAINDER;
06bc494ca11e Initial load
duke
parents:
diff changeset
   998
06bc494ca11e Initial load
duke
parents:
diff changeset
   999
        // Additive operators
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
  1000
        case PLUS:              // +
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1001
            return Tree.Kind.PLUS;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
  1002
        case MINUS:             // -
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1003
            return Tree.Kind.MINUS;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1004
06bc494ca11e Initial load
duke
parents:
diff changeset
  1005
        // Shift operators
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
  1006
        case SL:                // <<
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1007
            return Tree.Kind.LEFT_SHIFT;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
  1008
        case SR:                // >>
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1009
            return Tree.Kind.RIGHT_SHIFT;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
  1010
        case USR:               // >>>
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1011
            return Tree.Kind.UNSIGNED_RIGHT_SHIFT;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1012
06bc494ca11e Initial load
duke
parents:
diff changeset
  1013
        // Relational operators
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
  1014
        case LT:                // <
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1015
            return Tree.Kind.LESS_THAN;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
  1016
        case GT:                // >
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1017
            return Tree.Kind.GREATER_THAN;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
  1018
        case LE:                // <=
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1019
            return Tree.Kind.LESS_THAN_EQUAL;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
  1020
        case GE:                // >=
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1021
            return Tree.Kind.GREATER_THAN_EQUAL;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1022
06bc494ca11e Initial load
duke
parents:
diff changeset
  1023
        // Equality operators
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
  1024
        case EQ:                // ==
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1025
            return Tree.Kind.EQUAL_TO;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
  1026
        case NE:                // !=
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1027
            return Tree.Kind.NOT_EQUAL_TO;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1028
06bc494ca11e Initial load
duke
parents:
diff changeset
  1029
        // Bitwise and logical operators
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
  1030
        case BITAND:            // &
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1031
            return Tree.Kind.AND;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
  1032
        case BITXOR:            // ^
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1033
            return Tree.Kind.XOR;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
  1034
        case BITOR:             // |
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1035
            return Tree.Kind.OR;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1036
06bc494ca11e Initial load
duke
parents:
diff changeset
  1037
        // Conditional operators
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
  1038
        case AND:               // &&
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1039
            return Tree.Kind.CONDITIONAL_AND;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
  1040
        case OR:                // ||
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1041
            return Tree.Kind.CONDITIONAL_OR;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1042
06bc494ca11e Initial load
duke
parents:
diff changeset
  1043
        // Assignment operators
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
  1044
        case MUL_ASG:           // *=
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1045
            return Tree.Kind.MULTIPLY_ASSIGNMENT;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
  1046
        case DIV_ASG:           // /=
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1047
            return Tree.Kind.DIVIDE_ASSIGNMENT;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
  1048
        case MOD_ASG:           // %=
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1049
            return Tree.Kind.REMAINDER_ASSIGNMENT;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
  1050
        case PLUS_ASG:          // +=
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1051
            return Tree.Kind.PLUS_ASSIGNMENT;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
  1052
        case MINUS_ASG:         // -=
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1053
            return Tree.Kind.MINUS_ASSIGNMENT;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
  1054
        case SL_ASG:            // <<=
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1055
            return Tree.Kind.LEFT_SHIFT_ASSIGNMENT;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
  1056
        case SR_ASG:            // >>=
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1057
            return Tree.Kind.RIGHT_SHIFT_ASSIGNMENT;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
  1058
        case USR_ASG:           // >>>=
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1059
            return Tree.Kind.UNSIGNED_RIGHT_SHIFT_ASSIGNMENT;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
  1060
        case BITAND_ASG:        // &=
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1061
            return Tree.Kind.AND_ASSIGNMENT;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
  1062
        case BITXOR_ASG:        // ^=
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1063
            return Tree.Kind.XOR_ASSIGNMENT;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
  1064
        case BITOR_ASG:         // |=
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1065
            return Tree.Kind.OR_ASSIGNMENT;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1066
06bc494ca11e Initial load
duke
parents:
diff changeset
  1067
        // Null check (implementation detail), for example, __.getClass()
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
  1068
        case NULLCHK:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1069
            return Tree.Kind.OTHER;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1070
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1071
        case ANNOTATION:
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1072
            return Tree.Kind.ANNOTATION;
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1073
        case TYPE_ANNOTATION:
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1074
            return Tree.Kind.TYPE_ANNOTATION;
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1075
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1076
        default:
06bc494ca11e Initial load
duke
parents:
diff changeset
  1077
            return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1078
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1079
    }
3149
0cd06d598d6f 6843077: JSR 308: Annotations on types
jjg
parents: 1264
diff changeset
  1080
0cd06d598d6f 6843077: JSR 308: Annotations on types
jjg
parents: 1264
diff changeset
  1081
    /**
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1082
     * Returns the underlying type of the tree if it is an annotated type,
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1083
     * or the tree itself otherwise.
3149
0cd06d598d6f 6843077: JSR 308: Annotations on types
jjg
parents: 1264
diff changeset
  1084
     */
0cd06d598d6f 6843077: JSR 308: Annotations on types
jjg
parents: 1264
diff changeset
  1085
    public static JCExpression typeIn(JCExpression tree) {
0cd06d598d6f 6843077: JSR 308: Annotations on types
jjg
parents: 1264
diff changeset
  1086
        switch (tree.getTag()) {
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1087
        case ANNOTATED_TYPE:
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1088
            return ((JCAnnotatedType)tree).underlyingType;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
  1089
        case IDENT: /* simple names */
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
  1090
        case TYPEIDENT: /* primitive name */
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
  1091
        case SELECT: /* qualified name */
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
  1092
        case TYPEARRAY: /* array types */
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
  1093
        case WILDCARD: /* wild cards */
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
  1094
        case TYPEPARAMETER: /* type parameters */
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
  1095
        case TYPEAPPLY: /* parameterized types */
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1096
        case ERRONEOUS: /* error tree TODO: needed for BadCast JSR308 test case. Better way? */
3149
0cd06d598d6f 6843077: JSR 308: Annotations on types
jjg
parents: 1264
diff changeset
  1097
            return tree;
0cd06d598d6f 6843077: JSR 308: Annotations on types
jjg
parents: 1264
diff changeset
  1098
        default:
0cd06d598d6f 6843077: JSR 308: Annotations on types
jjg
parents: 1264
diff changeset
  1099
            throw new AssertionError("Unexpected type tree: " + tree);
0cd06d598d6f 6843077: JSR 308: Annotations on types
jjg
parents: 1264
diff changeset
  1100
        }
0cd06d598d6f 6843077: JSR 308: Annotations on types
jjg
parents: 1264
diff changeset
  1101
    }
4705
7fac532dc6fa 6917122: provide utility method to find the inner most type of a type tree
jjg
parents: 3765
diff changeset
  1102
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1103
    /* Return the inner-most type of a type tree.
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1104
     * For an array that contains an annotated type, return that annotated type.
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1105
     * TODO: currently only used by Pretty. Describe behavior better.
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1106
     */
4705
7fac532dc6fa 6917122: provide utility method to find the inner most type of a type tree
jjg
parents: 3765
diff changeset
  1107
    public static JCTree innermostType(JCTree type) {
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1108
        JCTree lastAnnotatedType = null;
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1109
        JCTree cur = type;
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1110
        loop: while (true) {
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1111
            switch (cur.getTag()) {
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1112
            case TYPEARRAY:
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1113
                lastAnnotatedType = null;
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1114
                cur = ((JCArrayTypeTree)cur).elemtype;
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1115
                break;
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1116
            case WILDCARD:
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1117
                lastAnnotatedType = null;
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1118
                cur = ((JCWildcard)cur).inner;
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1119
                break;
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1120
            case ANNOTATED_TYPE:
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1121
                lastAnnotatedType = cur;
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1122
                cur = ((JCAnnotatedType)cur).underlyingType;
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1123
                break;
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1124
            default:
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1125
                break loop;
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1126
            }
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1127
        }
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1128
        if (lastAnnotatedType!=null) {
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1129
            return lastAnnotatedType;
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1130
        } else {
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1131
            return cur;
4705
7fac532dc6fa 6917122: provide utility method to find the inner most type of a type tree
jjg
parents: 3765
diff changeset
  1132
        }
7fac532dc6fa 6917122: provide utility method to find the inner most type of a type tree
jjg
parents: 3765
diff changeset
  1133
    }
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1134
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1135
    private static class TypeAnnotationFinder extends TreeScanner {
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1136
        public boolean foundTypeAnno = false;
18010
604faee85350 8004643: Reduce javac space overhead introduced with compiler support for repeating annotations
jjg
parents: 17557
diff changeset
  1137
604faee85350 8004643: Reduce javac space overhead introduced with compiler support for repeating annotations
jjg
parents: 17557
diff changeset
  1138
        @Override
604faee85350 8004643: Reduce javac space overhead introduced with compiler support for repeating annotations
jjg
parents: 17557
diff changeset
  1139
        public void scan(JCTree tree) {
604faee85350 8004643: Reduce javac space overhead introduced with compiler support for repeating annotations
jjg
parents: 17557
diff changeset
  1140
            if (foundTypeAnno || tree == null)
604faee85350 8004643: Reduce javac space overhead introduced with compiler support for repeating annotations
jjg
parents: 17557
diff changeset
  1141
                return;
604faee85350 8004643: Reduce javac space overhead introduced with compiler support for repeating annotations
jjg
parents: 17557
diff changeset
  1142
            super.scan(tree);
604faee85350 8004643: Reduce javac space overhead introduced with compiler support for repeating annotations
jjg
parents: 17557
diff changeset
  1143
        }
604faee85350 8004643: Reduce javac space overhead introduced with compiler support for repeating annotations
jjg
parents: 17557
diff changeset
  1144
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1145
        public void visitAnnotation(JCAnnotation tree) {
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1146
            foundTypeAnno = foundTypeAnno || tree.hasTag(TYPE_ANNOTATION);
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1147
        }
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1148
    }
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1149
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1150
    public static boolean containsTypeAnnotation(JCTree e) {
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1151
        TypeAnnotationFinder finder = new TypeAnnotationFinder();
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1152
        finder.scan(e);
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1153
        return finder.foundTypeAnno;
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15374
diff changeset
  1154
    }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1155
}