langtools/src/share/classes/com/sun/tools/javac/code/Symbol.java
author mcimadamore
Wed, 13 Feb 2013 17:04:21 +0000
changeset 15720 e61b2f7a5148
parent 15719 6b64cf96346b
child 16320 92ba27b7aaf3
permissions -rw-r--r--
8006345: Report Synthesized Parameters in java.lang.reflect.Parameter API 8006896: ClassReader doesn't see MethodParameters attr for method of anon inner class 8007098: Output Synthesized Parameters to MethodParameters Attributes Summary: Correctly report synthesized and mandated parameters Reviewed-by: mcimadamore, jjg Contributed-by: eric.mccorkle@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
15355
a4757c33cae9 7193719: Support repeating annotations in javax.lang.model
jfranck
parents: 15031
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: 5321
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: 5321
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: 5321
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 5321
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 5321
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.code;
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
06bc494ca11e Initial load
duke
parents:
diff changeset
    28
import java.util.Set;
06bc494ca11e Initial load
duke
parents:
diff changeset
    29
import java.util.concurrent.Callable;
14258
8d2148961366 8000663: clean up langtools imports
jjg
parents: 14062
diff changeset
    30
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    31
import javax.lang.model.element.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    32
import javax.tools.JavaFileObject;
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
06bc494ca11e Initial load
duke
parents:
diff changeset
    34
import com.sun.tools.javac.code.Type.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    35
import com.sun.tools.javac.comp.Attr;
06bc494ca11e Initial load
duke
parents:
diff changeset
    36
import com.sun.tools.javac.comp.AttrContext;
06bc494ca11e Initial load
duke
parents:
diff changeset
    37
import com.sun.tools.javac.comp.Env;
06bc494ca11e Initial load
duke
parents:
diff changeset
    38
import com.sun.tools.javac.jvm.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    39
import com.sun.tools.javac.model.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    40
import com.sun.tools.javac.tree.JCTree;
14258
8d2148961366 8000663: clean up langtools imports
jjg
parents: 14062
diff changeset
    41
import com.sun.tools.javac.util.*;
8d2148961366 8000663: clean up langtools imports
jjg
parents: 14062
diff changeset
    42
import com.sun.tools.javac.util.Name;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    43
import static com.sun.tools.javac.code.Flags.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    44
import static com.sun.tools.javac.code.Kinds.*;
14359
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 14258
diff changeset
    45
import static com.sun.tools.javac.code.TypeTag.CLASS;
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 14258
diff changeset
    46
import static com.sun.tools.javac.code.TypeTag.FORALL;
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 14258
diff changeset
    47
import static com.sun.tools.javac.code.TypeTag.TYPEVAR;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    48
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
/** Root class for Java symbols. It contains subclasses
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
 *  for specific sorts of symbols, such as variables, methods and operators,
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
 *  types, packages. Each subclass is represented as a static inner class
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
 *  inside Symbol.
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
 *
5847
1908176fd6e3 6944312: Potential rebranding issues in openjdk/langtools repository sources
jjg
parents: 5520
diff changeset
    54
 *  <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
    55
 *  If you write code that depends on this, you do so at your own risk.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    56
 *  This code and its internal interfaces are subject to change or
06bc494ca11e Initial load
duke
parents:
diff changeset
    57
 *  deletion without notice.</b>
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
public abstract class Symbol implements Element {
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
    // public Throwable debug = new Throwable();
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
    /** The kind of this symbol.
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
     *  @see Kinds
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
    public int kind;
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
06bc494ca11e Initial load
duke
parents:
diff changeset
    67
    /** The flags of this symbol.
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    69
    public long flags_field;
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
    /** An accessor method for the flags of this symbol.
06bc494ca11e Initial load
duke
parents:
diff changeset
    72
     *  Flags of class symbols should be accessed through the accessor
06bc494ca11e Initial load
duke
parents:
diff changeset
    73
     *  method to make sure that the class symbol is loaded.
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    75
    public long flags() { return flags_field; }
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
13689
4d519199a6aa 7151010: Add compiler support for repeating annotations
jfranck
parents: 12335
diff changeset
    77
    /** The attributes of this symbol are contained in this
4d519199a6aa 7151010: Add compiler support for repeating annotations
jfranck
parents: 12335
diff changeset
    78
     * Annotations. The Annotations instance is NOT immutable.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    79
     */
13689
4d519199a6aa 7151010: Add compiler support for repeating annotations
jfranck
parents: 12335
diff changeset
    80
    public final Annotations annotations = new Annotations(this);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
    /** An accessor method for the attributes of this symbol.
06bc494ca11e Initial load
duke
parents:
diff changeset
    83
     *  Attributes of class symbols should be accessed through the accessor
06bc494ca11e Initial load
duke
parents:
diff changeset
    84
     *  method to make sure that the class symbol is loaded.
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
     */
14961
e731935052af 8005098: Provide isSynthesized() information on Attribute.Compound
jfranck
parents: 14956
diff changeset
    86
    public List<Attribute.Compound> getRawAttributes() {
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15377
diff changeset
    87
        return annotations.getDeclarationAttributes();
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15377
diff changeset
    88
    }
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15377
diff changeset
    89
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15377
diff changeset
    90
    /** An accessor method for the type attributes of this symbol.
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15377
diff changeset
    91
     *  Attributes of class symbols should be accessed through the accessor
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15377
diff changeset
    92
     *  method to make sure that the class symbol is loaded.
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15377
diff changeset
    93
     */
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15377
diff changeset
    94
    public List<Attribute.TypeCompound> getRawTypeAttributes() {
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15377
diff changeset
    95
        return annotations.getTypeAttributes();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
    /** Fetch a particular annotation from a symbol. */
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
    public Attribute.Compound attribute(Symbol anno) {
14961
e731935052af 8005098: Provide isSynthesized() information on Attribute.Compound
jfranck
parents: 14956
diff changeset
   100
        for (Attribute.Compound a : getRawAttributes()) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   101
            if (a.type.tsym == anno) return a;
13689
4d519199a6aa 7151010: Add compiler support for repeating annotations
jfranck
parents: 12335
diff changeset
   102
        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
        return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   105
06bc494ca11e Initial load
duke
parents:
diff changeset
   106
    /** The name of this symbol in Utf8 representation.
06bc494ca11e Initial load
duke
parents:
diff changeset
   107
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   108
    public Name name;
06bc494ca11e Initial load
duke
parents:
diff changeset
   109
06bc494ca11e Initial load
duke
parents:
diff changeset
   110
    /** The type of this symbol.
06bc494ca11e Initial load
duke
parents:
diff changeset
   111
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   112
    public Type type;
06bc494ca11e Initial load
duke
parents:
diff changeset
   113
06bc494ca11e Initial load
duke
parents:
diff changeset
   114
    /** The owner of this symbol.
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   116
    public Symbol owner;
06bc494ca11e Initial load
duke
parents:
diff changeset
   117
06bc494ca11e Initial load
duke
parents:
diff changeset
   118
    /** The completer of this symbol.
06bc494ca11e Initial load
duke
parents:
diff changeset
   119
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   120
    public Completer completer;
06bc494ca11e Initial load
duke
parents:
diff changeset
   121
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
    /** A cache for the type erasure of this symbol.
06bc494ca11e Initial load
duke
parents:
diff changeset
   123
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   124
    public Type erasure_field;
06bc494ca11e Initial load
duke
parents:
diff changeset
   125
06bc494ca11e Initial load
duke
parents:
diff changeset
   126
    /** Construct a symbol with given kind, flags, name, type and owner.
06bc494ca11e Initial load
duke
parents:
diff changeset
   127
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   128
    public Symbol(int kind, long flags, Name name, Type type, Symbol owner) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   129
        this.kind = kind;
06bc494ca11e Initial load
duke
parents:
diff changeset
   130
        this.flags_field = flags;
06bc494ca11e Initial load
duke
parents:
diff changeset
   131
        this.type = type;
06bc494ca11e Initial load
duke
parents:
diff changeset
   132
        this.owner = owner;
06bc494ca11e Initial load
duke
parents:
diff changeset
   133
        this.completer = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   134
        this.erasure_field = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   135
        this.name = name;
06bc494ca11e Initial load
duke
parents:
diff changeset
   136
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   137
06bc494ca11e Initial load
duke
parents:
diff changeset
   138
    /** Clone this symbol with new owner.
06bc494ca11e Initial load
duke
parents:
diff changeset
   139
     *  Legal only for fields and methods.
06bc494ca11e Initial load
duke
parents:
diff changeset
   140
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   141
    public Symbol clone(Symbol newOwner) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   142
        throw new AssertionError();
06bc494ca11e Initial load
duke
parents:
diff changeset
   143
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   144
1357
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
   145
    public <R, P> R accept(Symbol.Visitor<R, P> v, P p) {
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
   146
        return v.visitSymbol(this, p);
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
   147
    }
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
   148
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   149
    /** The Java source which this symbol represents.
06bc494ca11e Initial load
duke
parents:
diff changeset
   150
     *  A description of this symbol; overrides Object.
06bc494ca11e Initial load
duke
parents:
diff changeset
   151
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   152
    public String toString() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   153
        return name.toString();
06bc494ca11e Initial load
duke
parents:
diff changeset
   154
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   155
06bc494ca11e Initial load
duke
parents:
diff changeset
   156
    /** A Java source description of the location of this symbol; used for
939
38e24969c7e9 6717241: some diagnostic argument is prematurely converted into a String object
mcimadamore
parents: 735
diff changeset
   157
     *  error reporting.
38e24969c7e9 6717241: some diagnostic argument is prematurely converted into a String object
mcimadamore
parents: 735
diff changeset
   158
     *
38e24969c7e9 6717241: some diagnostic argument is prematurely converted into a String object
mcimadamore
parents: 735
diff changeset
   159
     * @return null if the symbol is a package or a toplevel class defined in
38e24969c7e9 6717241: some diagnostic argument is prematurely converted into a String object
mcimadamore
parents: 735
diff changeset
   160
     * the default package; otherwise, the owner symbol is returned
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   161
     */
939
38e24969c7e9 6717241: some diagnostic argument is prematurely converted into a String object
mcimadamore
parents: 735
diff changeset
   162
    public Symbol location() {
10626
83f0c2860f5b 7086595: Error message bug: name of initializer is 'null'
mcimadamore
parents: 9812
diff changeset
   163
        if (owner.name == null || (owner.name.isEmpty() &&
83f0c2860f5b 7086595: Error message bug: name of initializer is 'null'
mcimadamore
parents: 9812
diff changeset
   164
                (owner.flags() & BLOCK) == 0 && owner.kind != PCK && owner.kind != TYP)) {
939
38e24969c7e9 6717241: some diagnostic argument is prematurely converted into a String object
mcimadamore
parents: 735
diff changeset
   165
            return null;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   166
        }
939
38e24969c7e9 6717241: some diagnostic argument is prematurely converted into a String object
mcimadamore
parents: 735
diff changeset
   167
        return owner;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   168
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   169
939
38e24969c7e9 6717241: some diagnostic argument is prematurely converted into a String object
mcimadamore
parents: 735
diff changeset
   170
    public Symbol location(Type site, Types types) {
1260
a772ba9ba43d 6574134: Allow for alternative implementation of Name Table with garbage collection of name bytes
jjg
parents: 1257
diff changeset
   171
        if (owner.name == null || owner.name.isEmpty()) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   172
            return location();
06bc494ca11e Initial load
duke
parents:
diff changeset
   173
        }
14359
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 14258
diff changeset
   174
        if (owner.type.hasTag(CLASS)) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   175
            Type ownertype = types.asOuterSuper(site, owner);
939
38e24969c7e9 6717241: some diagnostic argument is prematurely converted into a String object
mcimadamore
parents: 735
diff changeset
   176
            if (ownertype != null) return ownertype.tsym;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   177
        }
939
38e24969c7e9 6717241: some diagnostic argument is prematurely converted into a String object
mcimadamore
parents: 735
diff changeset
   178
        return owner;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   179
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   180
14051
9097cec96212 7188968: New instance creation expression using diamond is checked twice
mcimadamore
parents: 14046
diff changeset
   181
    public Symbol baseSymbol() {
9097cec96212 7188968: New instance creation expression using diamond is checked twice
mcimadamore
parents: 14046
diff changeset
   182
        return this;
9097cec96212 7188968: New instance creation expression using diamond is checked twice
mcimadamore
parents: 14046
diff changeset
   183
    }
9097cec96212 7188968: New instance creation expression using diamond is checked twice
mcimadamore
parents: 14046
diff changeset
   184
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   185
    /** The symbol's erased type.
06bc494ca11e Initial load
duke
parents:
diff changeset
   186
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   187
    public Type erasure(Types types) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   188
        if (erasure_field == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   189
            erasure_field = types.erasure(type);
06bc494ca11e Initial load
duke
parents:
diff changeset
   190
        return erasure_field;
06bc494ca11e Initial load
duke
parents:
diff changeset
   191
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   192
06bc494ca11e Initial load
duke
parents:
diff changeset
   193
    /** The external type of a symbol. This is the symbol's erased type
06bc494ca11e Initial load
duke
parents:
diff changeset
   194
     *  except for constructors of inner classes which get the enclosing
06bc494ca11e Initial load
duke
parents:
diff changeset
   195
     *  instance class added as first argument.
06bc494ca11e Initial load
duke
parents:
diff changeset
   196
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   197
    public Type externalType(Types types) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   198
        Type t = erasure(types);
1260
a772ba9ba43d 6574134: Allow for alternative implementation of Name Table with garbage collection of name bytes
jjg
parents: 1257
diff changeset
   199
        if (name == name.table.names.init && owner.hasOuterInstance()) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   200
            Type outerThisType = types.erasure(owner.type.getEnclosingType());
06bc494ca11e Initial load
duke
parents:
diff changeset
   201
            return new MethodType(t.getParameterTypes().prepend(outerThisType),
06bc494ca11e Initial load
duke
parents:
diff changeset
   202
                                  t.getReturnType(),
06bc494ca11e Initial load
duke
parents:
diff changeset
   203
                                  t.getThrownTypes(),
06bc494ca11e Initial load
duke
parents:
diff changeset
   204
                                  t.tsym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   205
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   206
            return t;
06bc494ca11e Initial load
duke
parents:
diff changeset
   207
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   208
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   209
06bc494ca11e Initial load
duke
parents:
diff changeset
   210
    public boolean isStatic() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   211
        return
06bc494ca11e Initial load
duke
parents:
diff changeset
   212
            (flags() & STATIC) != 0 ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   213
            (owner.flags() & INTERFACE) != 0 && kind != MTH;
06bc494ca11e Initial load
duke
parents:
diff changeset
   214
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   215
06bc494ca11e Initial load
duke
parents:
diff changeset
   216
    public boolean isInterface() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   217
        return (flags() & INTERFACE) != 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
   218
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   219
15720
e61b2f7a5148 8006345: Report Synthesized Parameters in java.lang.reflect.Parameter API
mcimadamore
parents: 15719
diff changeset
   220
    public boolean isPrivate() {
e61b2f7a5148 8006345: Report Synthesized Parameters in java.lang.reflect.Parameter API
mcimadamore
parents: 15719
diff changeset
   221
        return (flags_field & Flags.AccessFlags) == PRIVATE;
e61b2f7a5148 8006345: Report Synthesized Parameters in java.lang.reflect.Parameter API
mcimadamore
parents: 15719
diff changeset
   222
    }
e61b2f7a5148 8006345: Report Synthesized Parameters in java.lang.reflect.Parameter API
mcimadamore
parents: 15719
diff changeset
   223
e61b2f7a5148 8006345: Report Synthesized Parameters in java.lang.reflect.Parameter API
mcimadamore
parents: 15719
diff changeset
   224
    public boolean isEnum() {
e61b2f7a5148 8006345: Report Synthesized Parameters in java.lang.reflect.Parameter API
mcimadamore
parents: 15719
diff changeset
   225
        return (flags() & ENUM) != 0;
e61b2f7a5148 8006345: Report Synthesized Parameters in java.lang.reflect.Parameter API
mcimadamore
parents: 15719
diff changeset
   226
    }
e61b2f7a5148 8006345: Report Synthesized Parameters in java.lang.reflect.Parameter API
mcimadamore
parents: 15719
diff changeset
   227
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   228
    /** Is this symbol declared (directly or indirectly) local
06bc494ca11e Initial load
duke
parents:
diff changeset
   229
     *  to a method or variable initializer?
06bc494ca11e Initial load
duke
parents:
diff changeset
   230
     *  Also includes fields of inner classes which are in
06bc494ca11e Initial load
duke
parents:
diff changeset
   231
     *  turn local to a method or variable initializer.
06bc494ca11e Initial load
duke
parents:
diff changeset
   232
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   233
    public boolean isLocal() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   234
        return
06bc494ca11e Initial load
duke
parents:
diff changeset
   235
            (owner.kind & (VAR | MTH)) != 0 ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   236
            (owner.kind == TYP && owner.isLocal());
06bc494ca11e Initial load
duke
parents:
diff changeset
   237
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   238
5321
c8efe769cb3b 6939620: Switch to 'complex' diamond inference scheme
mcimadamore
parents: 5006
diff changeset
   239
    /** Has this symbol an empty name? This includes anonymous
c8efe769cb3b 6939620: Switch to 'complex' diamond inference scheme
mcimadamore
parents: 5006
diff changeset
   240
     *  inner classses.
c8efe769cb3b 6939620: Switch to 'complex' diamond inference scheme
mcimadamore
parents: 5006
diff changeset
   241
     */
c8efe769cb3b 6939620: Switch to 'complex' diamond inference scheme
mcimadamore
parents: 5006
diff changeset
   242
    public boolean isAnonymous() {
c8efe769cb3b 6939620: Switch to 'complex' diamond inference scheme
mcimadamore
parents: 5006
diff changeset
   243
        return name.isEmpty();
c8efe769cb3b 6939620: Switch to 'complex' diamond inference scheme
mcimadamore
parents: 5006
diff changeset
   244
    }
c8efe769cb3b 6939620: Switch to 'complex' diamond inference scheme
mcimadamore
parents: 5006
diff changeset
   245
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   246
    /** Is this symbol a constructor?
06bc494ca11e Initial load
duke
parents:
diff changeset
   247
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   248
    public boolean isConstructor() {
1260
a772ba9ba43d 6574134: Allow for alternative implementation of Name Table with garbage collection of name bytes
jjg
parents: 1257
diff changeset
   249
        return name == name.table.names.init;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   250
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   251
06bc494ca11e Initial load
duke
parents:
diff changeset
   252
    /** The fully qualified name of this symbol.
06bc494ca11e Initial load
duke
parents:
diff changeset
   253
     *  This is the same as the symbol's name except for class symbols,
06bc494ca11e Initial load
duke
parents:
diff changeset
   254
     *  which are handled separately.
06bc494ca11e Initial load
duke
parents:
diff changeset
   255
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   256
    public Name getQualifiedName() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   257
        return name;
06bc494ca11e Initial load
duke
parents:
diff changeset
   258
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   259
06bc494ca11e Initial load
duke
parents:
diff changeset
   260
    /** The fully qualified name of this symbol after converting to flat
06bc494ca11e Initial load
duke
parents:
diff changeset
   261
     *  representation. This is the same as the symbol's name except for
06bc494ca11e Initial load
duke
parents:
diff changeset
   262
     *  class symbols, which are handled separately.
06bc494ca11e Initial load
duke
parents:
diff changeset
   263
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   264
    public Name flatName() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   265
        return getQualifiedName();
06bc494ca11e Initial load
duke
parents:
diff changeset
   266
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   267
06bc494ca11e Initial load
duke
parents:
diff changeset
   268
    /** If this is a class or package, its members, otherwise null.
06bc494ca11e Initial load
duke
parents:
diff changeset
   269
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   270
    public Scope members() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   271
        return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   272
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   273
06bc494ca11e Initial load
duke
parents:
diff changeset
   274
    /** A class is an inner class if it it has an enclosing instance class.
06bc494ca11e Initial load
duke
parents:
diff changeset
   275
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   276
    public boolean isInner() {
14359
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 14258
diff changeset
   277
        return type.getEnclosingType().hasTag(CLASS);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   278
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   279
06bc494ca11e Initial load
duke
parents:
diff changeset
   280
    /** An inner class has an outer instance if it is not an interface
06bc494ca11e Initial load
duke
parents:
diff changeset
   281
     *  it has an enclosing instance class which might be referenced from the class.
06bc494ca11e Initial load
duke
parents:
diff changeset
   282
     *  Nested classes can see instance members of their enclosing class.
06bc494ca11e Initial load
duke
parents:
diff changeset
   283
     *  Their constructors carry an additional this$n parameter, inserted
06bc494ca11e Initial load
duke
parents:
diff changeset
   284
     *  implicitly by the compiler.
06bc494ca11e Initial load
duke
parents:
diff changeset
   285
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   286
     *  @see #isInner
06bc494ca11e Initial load
duke
parents:
diff changeset
   287
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   288
    public boolean hasOuterInstance() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   289
        return
14359
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 14258
diff changeset
   290
            type.getEnclosingType().hasTag(CLASS) && (flags() & (INTERFACE | NOOUTERTHIS)) == 0;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   291
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   292
06bc494ca11e Initial load
duke
parents:
diff changeset
   293
    /** The closest enclosing class of this symbol's declaration.
06bc494ca11e Initial load
duke
parents:
diff changeset
   294
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   295
    public ClassSymbol enclClass() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   296
        Symbol c = this;
06bc494ca11e Initial load
duke
parents:
diff changeset
   297
        while (c != null &&
14359
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 14258
diff changeset
   298
               ((c.kind & TYP) == 0 || !c.type.hasTag(CLASS))) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   299
            c = c.owner;
06bc494ca11e Initial load
duke
parents:
diff changeset
   300
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   301
        return (ClassSymbol)c;
06bc494ca11e Initial load
duke
parents:
diff changeset
   302
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   303
06bc494ca11e Initial load
duke
parents:
diff changeset
   304
    /** The outermost class which indirectly owns this symbol.
06bc494ca11e Initial load
duke
parents:
diff changeset
   305
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   306
    public ClassSymbol outermostClass() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   307
        Symbol sym = this;
06bc494ca11e Initial load
duke
parents:
diff changeset
   308
        Symbol prev = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   309
        while (sym.kind != PCK) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   310
            prev = sym;
06bc494ca11e Initial load
duke
parents:
diff changeset
   311
            sym = sym.owner;
06bc494ca11e Initial load
duke
parents:
diff changeset
   312
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   313
        return (ClassSymbol) prev;
06bc494ca11e Initial load
duke
parents:
diff changeset
   314
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   315
06bc494ca11e Initial load
duke
parents:
diff changeset
   316
    /** The package which indirectly owns this symbol.
06bc494ca11e Initial load
duke
parents:
diff changeset
   317
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   318
    public PackageSymbol packge() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   319
        Symbol sym = this;
06bc494ca11e Initial load
duke
parents:
diff changeset
   320
        while (sym.kind != PCK) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   321
            sym = sym.owner;
06bc494ca11e Initial load
duke
parents:
diff changeset
   322
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   323
        return (PackageSymbol) sym;
06bc494ca11e Initial load
duke
parents:
diff changeset
   324
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   325
06bc494ca11e Initial load
duke
parents:
diff changeset
   326
    /** Is this symbol a subclass of `base'? Only defined for ClassSymbols.
06bc494ca11e Initial load
duke
parents:
diff changeset
   327
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   328
    public boolean isSubClass(Symbol base, Types types) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   329
        throw new AssertionError("isSubClass " + this);
06bc494ca11e Initial load
duke
parents:
diff changeset
   330
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   331
06bc494ca11e Initial load
duke
parents:
diff changeset
   332
    /** Fully check membership: hierarchy, protection, and hiding.
06bc494ca11e Initial load
duke
parents:
diff changeset
   333
     *  Does not exclude methods not inherited due to overriding.
06bc494ca11e Initial load
duke
parents:
diff changeset
   334
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   335
    public boolean isMemberOf(TypeSymbol clazz, Types types) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   336
        return
06bc494ca11e Initial load
duke
parents:
diff changeset
   337
            owner == clazz ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   338
            clazz.isSubClass(owner, types) &&
06bc494ca11e Initial load
duke
parents:
diff changeset
   339
            isInheritedIn(clazz, types) &&
06bc494ca11e Initial load
duke
parents:
diff changeset
   340
            !hiddenIn((ClassSymbol)clazz, types);
06bc494ca11e Initial load
duke
parents:
diff changeset
   341
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   342
06bc494ca11e Initial load
duke
parents:
diff changeset
   343
    /** Is this symbol the same as or enclosed by the given class? */
06bc494ca11e Initial load
duke
parents:
diff changeset
   344
    public boolean isEnclosedBy(ClassSymbol clazz) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   345
        for (Symbol sym = this; sym.kind != PCK; sym = sym.owner)
06bc494ca11e Initial load
duke
parents:
diff changeset
   346
            if (sym == clazz) return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   347
        return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   348
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   349
06bc494ca11e Initial load
duke
parents:
diff changeset
   350
    /** Check for hiding.  Note that this doesn't handle multiple
06bc494ca11e Initial load
duke
parents:
diff changeset
   351
     *  (interface) inheritance. */
06bc494ca11e Initial load
duke
parents:
diff changeset
   352
    private boolean hiddenIn(ClassSymbol clazz, Types types) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   353
        if (kind == MTH && (flags() & STATIC) == 0) return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   354
        while (true) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   355
            if (owner == clazz) return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   356
            Scope.Entry e = clazz.members().lookup(name);
06bc494ca11e Initial load
duke
parents:
diff changeset
   357
            while (e.scope != null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   358
                if (e.sym == this) return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   359
                if (e.sym.kind == kind &&
06bc494ca11e Initial load
duke
parents:
diff changeset
   360
                    (kind != MTH ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   361
                     (e.sym.flags() & STATIC) != 0 &&
06bc494ca11e Initial load
duke
parents:
diff changeset
   362
                     types.isSubSignature(e.sym.type, type)))
06bc494ca11e Initial load
duke
parents:
diff changeset
   363
                    return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   364
                e = e.next();
06bc494ca11e Initial load
duke
parents:
diff changeset
   365
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   366
            Type superType = types.supertype(clazz.type);
14359
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 14258
diff changeset
   367
            if (!superType.hasTag(CLASS)) return false;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   368
            clazz = (ClassSymbol)superType.tsym;
06bc494ca11e Initial load
duke
parents:
diff changeset
   369
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   370
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   371
06bc494ca11e Initial load
duke
parents:
diff changeset
   372
    /** Is this symbol inherited into a given class?
06bc494ca11e Initial load
duke
parents:
diff changeset
   373
     *  PRE: If symbol's owner is a interface,
06bc494ca11e Initial load
duke
parents:
diff changeset
   374
     *       it is already assumed that the interface is a superinterface
06bc494ca11e Initial load
duke
parents:
diff changeset
   375
     *       of given class.
06bc494ca11e Initial load
duke
parents:
diff changeset
   376
     *  @param clazz  The class for which we want to establish membership.
06bc494ca11e Initial load
duke
parents:
diff changeset
   377
     *                This must be a subclass of the member's owner.
06bc494ca11e Initial load
duke
parents:
diff changeset
   378
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   379
    public boolean isInheritedIn(Symbol clazz, Types types) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   380
        switch ((int)(flags_field & Flags.AccessFlags)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   381
        default: // error recovery
06bc494ca11e Initial load
duke
parents:
diff changeset
   382
        case PUBLIC:
06bc494ca11e Initial load
duke
parents:
diff changeset
   383
            return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   384
        case PRIVATE:
06bc494ca11e Initial load
duke
parents:
diff changeset
   385
            return this.owner == clazz;
06bc494ca11e Initial load
duke
parents:
diff changeset
   386
        case PROTECTED:
06bc494ca11e Initial load
duke
parents:
diff changeset
   387
            // we model interfaces as extending Object
06bc494ca11e Initial load
duke
parents:
diff changeset
   388
            return (clazz.flags() & INTERFACE) == 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
   389
        case 0:
06bc494ca11e Initial load
duke
parents:
diff changeset
   390
            PackageSymbol thisPackage = this.packge();
06bc494ca11e Initial load
duke
parents:
diff changeset
   391
            for (Symbol sup = clazz;
06bc494ca11e Initial load
duke
parents:
diff changeset
   392
                 sup != null && sup != this.owner;
06bc494ca11e Initial load
duke
parents:
diff changeset
   393
                 sup = types.supertype(sup.type).tsym) {
14359
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 14258
diff changeset
   394
                while (sup.type.hasTag(TYPEVAR))
1528
441d4ec466de 6711619: javac doesn't allow access to protected members in intersection types
mcimadamore
parents: 1357
diff changeset
   395
                    sup = sup.type.getUpperBound().tsym;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   396
                if (sup.type.isErroneous())
06bc494ca11e Initial load
duke
parents:
diff changeset
   397
                    return true; // error recovery
06bc494ca11e Initial load
duke
parents:
diff changeset
   398
                if ((sup.flags() & COMPOUND) != 0)
06bc494ca11e Initial load
duke
parents:
diff changeset
   399
                    continue;
06bc494ca11e Initial load
duke
parents:
diff changeset
   400
                if (sup.packge() != thisPackage)
06bc494ca11e Initial load
duke
parents:
diff changeset
   401
                    return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   402
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   403
            return (clazz.flags() & INTERFACE) == 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
   404
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   405
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   406
06bc494ca11e Initial load
duke
parents:
diff changeset
   407
    /** The (variable or method) symbol seen as a member of given
06bc494ca11e Initial load
duke
parents:
diff changeset
   408
     *  class type`site' (this might change the symbol's type).
06bc494ca11e Initial load
duke
parents:
diff changeset
   409
     *  This is used exclusively for producing diagnostics.
06bc494ca11e Initial load
duke
parents:
diff changeset
   410
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   411
    public Symbol asMemberOf(Type site, Types types) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   412
        throw new AssertionError();
06bc494ca11e Initial load
duke
parents:
diff changeset
   413
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   414
06bc494ca11e Initial load
duke
parents:
diff changeset
   415
    /** Does this method symbol override `other' symbol, when both are seen as
06bc494ca11e Initial load
duke
parents:
diff changeset
   416
     *  members of class `origin'?  It is assumed that _other is a member
06bc494ca11e Initial load
duke
parents:
diff changeset
   417
     *  of origin.
06bc494ca11e Initial load
duke
parents:
diff changeset
   418
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   419
     *  It is assumed that both symbols have the same name.  The static
06bc494ca11e Initial load
duke
parents:
diff changeset
   420
     *  modifier is ignored for this test.
06bc494ca11e Initial load
duke
parents:
diff changeset
   421
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   422
     *  See JLS 8.4.6.1 (without transitivity) and 8.4.6.4
06bc494ca11e Initial load
duke
parents:
diff changeset
   423
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   424
    public boolean overrides(Symbol _other, TypeSymbol origin, Types types, boolean checkResult) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   425
        return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   426
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   427
06bc494ca11e Initial load
duke
parents:
diff changeset
   428
    /** Complete the elaboration of this symbol's definition.
06bc494ca11e Initial load
duke
parents:
diff changeset
   429
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   430
    public void complete() throws CompletionFailure {
06bc494ca11e Initial load
duke
parents:
diff changeset
   431
        if (completer != null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   432
            Completer c = completer;
06bc494ca11e Initial load
duke
parents:
diff changeset
   433
            completer = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   434
            c.complete(this);
06bc494ca11e Initial load
duke
parents:
diff changeset
   435
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   436
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   437
06bc494ca11e Initial load
duke
parents:
diff changeset
   438
    /** True if the symbol represents an entity that exists.
06bc494ca11e Initial load
duke
parents:
diff changeset
   439
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   440
    public boolean exists() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   441
        return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   442
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   443
06bc494ca11e Initial load
duke
parents:
diff changeset
   444
    public Type asType() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   445
        return type;
06bc494ca11e Initial load
duke
parents:
diff changeset
   446
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   447
06bc494ca11e Initial load
duke
parents:
diff changeset
   448
    public Symbol getEnclosingElement() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   449
        return owner;
06bc494ca11e Initial load
duke
parents:
diff changeset
   450
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   451
06bc494ca11e Initial load
duke
parents:
diff changeset
   452
    public ElementKind getKind() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   453
        return ElementKind.OTHER;       // most unkind
06bc494ca11e Initial load
duke
parents:
diff changeset
   454
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   455
06bc494ca11e Initial load
duke
parents:
diff changeset
   456
    public Set<Modifier> getModifiers() {
14547
86d8d242b0c4 8003280: Add lambda tests
mcimadamore
parents: 14443
diff changeset
   457
        long flags = flags();
86d8d242b0c4 8003280: Add lambda tests
mcimadamore
parents: 14443
diff changeset
   458
        return Flags.asModifierSet((flags & DEFAULT) != 0 ? flags & ~ABSTRACT : flags);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   459
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   460
06bc494ca11e Initial load
duke
parents:
diff changeset
   461
    public Name getSimpleName() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   462
        return name;
06bc494ca11e Initial load
duke
parents:
diff changeset
   463
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   464
06bc494ca11e Initial load
duke
parents:
diff changeset
   465
    /**
14961
e731935052af 8005098: Provide isSynthesized() information on Attribute.Compound
jfranck
parents: 14956
diff changeset
   466
     * This is the implementation for {@code
e731935052af 8005098: Provide isSynthesized() information on Attribute.Compound
jfranck
parents: 14956
diff changeset
   467
     * javax.lang.model.element.Element.getAnnotationMirrors()}.
e731935052af 8005098: Provide isSynthesized() information on Attribute.Compound
jfranck
parents: 14956
diff changeset
   468
     */
15355
a4757c33cae9 7193719: Support repeating annotations in javax.lang.model
jfranck
parents: 15031
diff changeset
   469
    public final List<? extends AnnotationMirror> getAnnotationMirrors() {
14961
e731935052af 8005098: Provide isSynthesized() information on Attribute.Compound
jfranck
parents: 14956
diff changeset
   470
        return getRawAttributes();
e731935052af 8005098: Provide isSynthesized() information on Attribute.Compound
jfranck
parents: 14956
diff changeset
   471
    }
e731935052af 8005098: Provide isSynthesized() information on Attribute.Compound
jfranck
parents: 14956
diff changeset
   472
e731935052af 8005098: Provide isSynthesized() information on Attribute.Compound
jfranck
parents: 14956
diff changeset
   473
    /**
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15377
diff changeset
   474
     * TODO: Should there be a {@code
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15377
diff changeset
   475
     * javax.lang.model.element.Element.getTypeAnnotationMirrors()}.
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15377
diff changeset
   476
     */
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15377
diff changeset
   477
    public final List<Attribute.TypeCompound> getTypeAnnotationMirrors() {
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15377
diff changeset
   478
        return getRawTypeAttributes();
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15377
diff changeset
   479
    }
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15377
diff changeset
   480
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15377
diff changeset
   481
    /**
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   482
     * @deprecated this method should never be used by javac internally.
06bc494ca11e Initial load
duke
parents:
diff changeset
   483
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   484
    @Deprecated
06bc494ca11e Initial load
duke
parents:
diff changeset
   485
    public <A extends java.lang.annotation.Annotation> A getAnnotation(Class<A> annoType) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   486
        return JavacElements.getAnnotation(this, annoType);
06bc494ca11e Initial load
duke
parents:
diff changeset
   487
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   488
15355
a4757c33cae9 7193719: Support repeating annotations in javax.lang.model
jfranck
parents: 15031
diff changeset
   489
    // This method is part of the javax.lang.model API, do not use this in javac code.
15719
6b64cf96346b 8007279: Rename javax.l.model.element.Element.getAnnotations(Class) to getAnnotationsByType(Class)
jfranck
parents: 15564
diff changeset
   490
    public <A extends java.lang.annotation.Annotation> A[] getAnnotationsByType(Class<A> annoType) {
15355
a4757c33cae9 7193719: Support repeating annotations in javax.lang.model
jfranck
parents: 15031
diff changeset
   491
        return JavacElements.getAnnotations(this, annoType);
a4757c33cae9 7193719: Support repeating annotations in javax.lang.model
jfranck
parents: 15031
diff changeset
   492
    }
a4757c33cae9 7193719: Support repeating annotations in javax.lang.model
jfranck
parents: 15031
diff changeset
   493
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   494
    // TODO: getEnclosedElements should return a javac List, fix in FilteredMemberList
06bc494ca11e Initial load
duke
parents:
diff changeset
   495
    public java.util.List<Symbol> getEnclosedElements() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   496
        return List.nil();
06bc494ca11e Initial load
duke
parents:
diff changeset
   497
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   498
06bc494ca11e Initial load
duke
parents:
diff changeset
   499
    public List<TypeSymbol> getTypeParameters() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   500
        ListBuffer<TypeSymbol> l = ListBuffer.lb();
06bc494ca11e Initial load
duke
parents:
diff changeset
   501
        for (Type t : type.getTypeArguments()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   502
            l.append(t.tsym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   503
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   504
        return l.toList();
06bc494ca11e Initial load
duke
parents:
diff changeset
   505
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   506
15564
6d8db91563a7 8005075: Pool.Method, and Pool.Variable redundant Symbol field should be removed
vromero
parents: 15385
diff changeset
   507
    public static class DelegatedSymbol<T extends Symbol> extends Symbol {
6d8db91563a7 8005075: Pool.Method, and Pool.Variable redundant Symbol field should be removed
vromero
parents: 15385
diff changeset
   508
        protected T other;
6d8db91563a7 8005075: Pool.Method, and Pool.Variable redundant Symbol field should be removed
vromero
parents: 15385
diff changeset
   509
        public DelegatedSymbol(T other) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   510
            super(other.kind, other.flags_field, other.name, other.type, other.owner);
06bc494ca11e Initial load
duke
parents:
diff changeset
   511
            this.other = other;
06bc494ca11e Initial load
duke
parents:
diff changeset
   512
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   513
        public String toString() { return other.toString(); }
939
38e24969c7e9 6717241: some diagnostic argument is prematurely converted into a String object
mcimadamore
parents: 735
diff changeset
   514
        public Symbol location() { return other.location(); }
38e24969c7e9 6717241: some diagnostic argument is prematurely converted into a String object
mcimadamore
parents: 735
diff changeset
   515
        public Symbol location(Type site, Types types) { return other.location(site, types); }
14547
86d8d242b0c4 8003280: Add lambda tests
mcimadamore
parents: 14443
diff changeset
   516
        public Symbol baseSymbol() { return other; }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   517
        public Type erasure(Types types) { return other.erasure(types); }
06bc494ca11e Initial load
duke
parents:
diff changeset
   518
        public Type externalType(Types types) { return other.externalType(types); }
06bc494ca11e Initial load
duke
parents:
diff changeset
   519
        public boolean isLocal() { return other.isLocal(); }
06bc494ca11e Initial load
duke
parents:
diff changeset
   520
        public boolean isConstructor() { return other.isConstructor(); }
06bc494ca11e Initial load
duke
parents:
diff changeset
   521
        public Name getQualifiedName() { return other.getQualifiedName(); }
06bc494ca11e Initial load
duke
parents:
diff changeset
   522
        public Name flatName() { return other.flatName(); }
06bc494ca11e Initial load
duke
parents:
diff changeset
   523
        public Scope members() { return other.members(); }
06bc494ca11e Initial load
duke
parents:
diff changeset
   524
        public boolean isInner() { return other.isInner(); }
06bc494ca11e Initial load
duke
parents:
diff changeset
   525
        public boolean hasOuterInstance() { return other.hasOuterInstance(); }
06bc494ca11e Initial load
duke
parents:
diff changeset
   526
        public ClassSymbol enclClass() { return other.enclClass(); }
06bc494ca11e Initial load
duke
parents:
diff changeset
   527
        public ClassSymbol outermostClass() { return other.outermostClass(); }
06bc494ca11e Initial load
duke
parents:
diff changeset
   528
        public PackageSymbol packge() { return other.packge(); }
06bc494ca11e Initial load
duke
parents:
diff changeset
   529
        public boolean isSubClass(Symbol base, Types types) { return other.isSubClass(base, types); }
06bc494ca11e Initial load
duke
parents:
diff changeset
   530
        public boolean isMemberOf(TypeSymbol clazz, Types types) { return other.isMemberOf(clazz, types); }
06bc494ca11e Initial load
duke
parents:
diff changeset
   531
        public boolean isEnclosedBy(ClassSymbol clazz) { return other.isEnclosedBy(clazz); }
06bc494ca11e Initial load
duke
parents:
diff changeset
   532
        public boolean isInheritedIn(Symbol clazz, Types types) { return other.isInheritedIn(clazz, types); }
06bc494ca11e Initial load
duke
parents:
diff changeset
   533
        public Symbol asMemberOf(Type site, Types types) { return other.asMemberOf(site, types); }
06bc494ca11e Initial load
duke
parents:
diff changeset
   534
        public void complete() throws CompletionFailure { other.complete(); }
06bc494ca11e Initial load
duke
parents:
diff changeset
   535
06bc494ca11e Initial load
duke
parents:
diff changeset
   536
        public <R, P> R accept(ElementVisitor<R, P> v, P p) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   537
            return other.accept(v, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   538
        }
1357
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
   539
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
   540
        public <R, P> R accept(Symbol.Visitor<R, P> v, P p) {
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
   541
            return v.visitSymbol(other, p);
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
   542
        }
15564
6d8db91563a7 8005075: Pool.Method, and Pool.Variable redundant Symbol field should be removed
vromero
parents: 15385
diff changeset
   543
6d8db91563a7 8005075: Pool.Method, and Pool.Variable redundant Symbol field should be removed
vromero
parents: 15385
diff changeset
   544
        public T getUnderlyingSymbol() {
6d8db91563a7 8005075: Pool.Method, and Pool.Variable redundant Symbol field should be removed
vromero
parents: 15385
diff changeset
   545
            return other;
6d8db91563a7 8005075: Pool.Method, and Pool.Variable redundant Symbol field should be removed
vromero
parents: 15385
diff changeset
   546
        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   547
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   548
06bc494ca11e Initial load
duke
parents:
diff changeset
   549
    /** A class for type symbols. Type variables are represented by instances
06bc494ca11e Initial load
duke
parents:
diff changeset
   550
     *  of this class, classes and packages by instances of subclasses.
06bc494ca11e Initial load
duke
parents:
diff changeset
   551
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   552
    public static class TypeSymbol
06bc494ca11e Initial load
duke
parents:
diff changeset
   553
            extends Symbol implements TypeParameterElement {
06bc494ca11e Initial load
duke
parents:
diff changeset
   554
        // Implements TypeParameterElement because type parameters don't
06bc494ca11e Initial load
duke
parents:
diff changeset
   555
        // have their own TypeSymbol subclass.
06bc494ca11e Initial load
duke
parents:
diff changeset
   556
        // TODO: type parameters should have their own TypeSymbol subclass
06bc494ca11e Initial load
duke
parents:
diff changeset
   557
06bc494ca11e Initial load
duke
parents:
diff changeset
   558
        public TypeSymbol(long flags, Name name, Type type, Symbol owner) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   559
            super(TYP, flags, name, type, owner);
06bc494ca11e Initial load
duke
parents:
diff changeset
   560
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   561
06bc494ca11e Initial load
duke
parents:
diff changeset
   562
        /** form a fully qualified name from a name and an owner
06bc494ca11e Initial load
duke
parents:
diff changeset
   563
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   564
        static public Name formFullName(Name name, Symbol owner) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   565
            if (owner == null) return name;
06bc494ca11e Initial load
duke
parents:
diff changeset
   566
            if (((owner.kind != ERR)) &&
06bc494ca11e Initial load
duke
parents:
diff changeset
   567
                ((owner.kind & (VAR | MTH)) != 0
14359
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 14258
diff changeset
   568
                 || (owner.kind == TYP && owner.type.hasTag(TYPEVAR))
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   569
                 )) return name;
06bc494ca11e Initial load
duke
parents:
diff changeset
   570
            Name prefix = owner.getQualifiedName();
1260
a772ba9ba43d 6574134: Allow for alternative implementation of Name Table with garbage collection of name bytes
jjg
parents: 1257
diff changeset
   571
            if (prefix == null || prefix == prefix.table.names.empty)
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   572
                return name;
06bc494ca11e Initial load
duke
parents:
diff changeset
   573
            else return prefix.append('.', name);
06bc494ca11e Initial load
duke
parents:
diff changeset
   574
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   575
06bc494ca11e Initial load
duke
parents:
diff changeset
   576
        /** form a fully qualified name from a name and an owner, after
06bc494ca11e Initial load
duke
parents:
diff changeset
   577
         *  converting to flat representation
06bc494ca11e Initial load
duke
parents:
diff changeset
   578
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   579
        static public Name formFlatName(Name name, Symbol owner) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   580
            if (owner == null ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   581
                (owner.kind & (VAR | MTH)) != 0
14359
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 14258
diff changeset
   582
                || (owner.kind == TYP && owner.type.hasTag(TYPEVAR))
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   583
                ) return name;
06bc494ca11e Initial load
duke
parents:
diff changeset
   584
            char sep = owner.kind == TYP ? '$' : '.';
06bc494ca11e Initial load
duke
parents:
diff changeset
   585
            Name prefix = owner.flatName();
1260
a772ba9ba43d 6574134: Allow for alternative implementation of Name Table with garbage collection of name bytes
jjg
parents: 1257
diff changeset
   586
            if (prefix == null || prefix == prefix.table.names.empty)
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   587
                return name;
06bc494ca11e Initial load
duke
parents:
diff changeset
   588
            else return prefix.append(sep, name);
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
         * A total ordering between type symbols that refines the
06bc494ca11e Initial load
duke
parents:
diff changeset
   593
         * class inheritance graph.
06bc494ca11e Initial load
duke
parents:
diff changeset
   594
         *
06bc494ca11e Initial load
duke
parents:
diff changeset
   595
         * Typevariables always precede other kinds of symbols.
06bc494ca11e Initial load
duke
parents:
diff changeset
   596
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   597
        public final boolean precedes(TypeSymbol that, Types types) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   598
            if (this == that)
06bc494ca11e Initial load
duke
parents:
diff changeset
   599
                return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   600
            if (this.type.tag == that.type.tag) {
14359
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 14258
diff changeset
   601
                if (this.type.hasTag(CLASS)) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   602
                    return
06bc494ca11e Initial load
duke
parents:
diff changeset
   603
                        types.rank(that.type) < types.rank(this.type) ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   604
                        types.rank(that.type) == types.rank(this.type) &&
06bc494ca11e Initial load
duke
parents:
diff changeset
   605
                        that.getQualifiedName().compareTo(this.getQualifiedName()) < 0;
14359
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 14258
diff changeset
   606
                } else if (this.type.hasTag(TYPEVAR)) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   607
                    return types.isSubtype(this.type, that.type);
06bc494ca11e Initial load
duke
parents:
diff changeset
   608
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   609
            }
14359
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 14258
diff changeset
   610
            return this.type.hasTag(TYPEVAR);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   611
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   612
06bc494ca11e Initial load
duke
parents:
diff changeset
   613
        // For type params; overridden in subclasses.
06bc494ca11e Initial load
duke
parents:
diff changeset
   614
        public ElementKind getKind() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   615
            return ElementKind.TYPE_PARAMETER;
06bc494ca11e Initial load
duke
parents:
diff changeset
   616
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   617
06bc494ca11e Initial load
duke
parents:
diff changeset
   618
        public java.util.List<Symbol> getEnclosedElements() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   619
            List<Symbol> list = List.nil();
14359
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 14258
diff changeset
   620
            if (kind == TYP && type.hasTag(TYPEVAR)) {
6584
c3d25d0ad536 6458749: TypeParameterElement.getEnclosedElements throws NPE within javac.
sundar
parents: 6148
diff changeset
   621
                return list;
c3d25d0ad536 6458749: TypeParameterElement.getEnclosedElements throws NPE within javac.
sundar
parents: 6148
diff changeset
   622
            }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   623
            for (Scope.Entry e = members().elems; e != null; e = e.sibling) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   624
                if (e.sym != null && (e.sym.flags() & SYNTHETIC) == 0 && e.sym.owner == this)
06bc494ca11e Initial load
duke
parents:
diff changeset
   625
                    list = list.prepend(e.sym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   626
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   627
            return list;
06bc494ca11e Initial load
duke
parents:
diff changeset
   628
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   629
06bc494ca11e Initial load
duke
parents:
diff changeset
   630
        // For type params.
06bc494ca11e Initial load
duke
parents:
diff changeset
   631
        // Perhaps not needed if getEnclosingElement can be spec'ed
06bc494ca11e Initial load
duke
parents:
diff changeset
   632
        // to do the same thing.
06bc494ca11e Initial load
duke
parents:
diff changeset
   633
        // TODO: getGenericElement() might not be needed
06bc494ca11e Initial load
duke
parents:
diff changeset
   634
        public Symbol getGenericElement() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   635
            return owner;
06bc494ca11e Initial load
duke
parents:
diff changeset
   636
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   637
06bc494ca11e Initial load
duke
parents:
diff changeset
   638
        public <R, P> R accept(ElementVisitor<R, P> v, P p) {
14359
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 14258
diff changeset
   639
            Assert.check(type.hasTag(TYPEVAR)); // else override will be invoked
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   640
            return v.visitTypeParameter(this, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   641
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   642
1357
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
   643
        public <R, P> R accept(Symbol.Visitor<R, P> v, P p) {
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
   644
            return v.visitTypeSymbol(this, p);
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
   645
        }
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
   646
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   647
        public List<Type> getBounds() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   648
            TypeVar t = (TypeVar)type;
06bc494ca11e Initial load
duke
parents:
diff changeset
   649
            Type bound = t.getUpperBound();
06bc494ca11e Initial load
duke
parents:
diff changeset
   650
            if (!bound.isCompound())
06bc494ca11e Initial load
duke
parents:
diff changeset
   651
                return List.of(bound);
06bc494ca11e Initial load
duke
parents:
diff changeset
   652
            ClassType ct = (ClassType)bound;
06bc494ca11e Initial load
duke
parents:
diff changeset
   653
            if (!ct.tsym.erasure_field.isInterface()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   654
                return ct.interfaces_field.prepend(ct.supertype_field);
06bc494ca11e Initial load
duke
parents:
diff changeset
   655
            } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   656
                // No superclass was given in bounds.
06bc494ca11e Initial load
duke
parents:
diff changeset
   657
                // In this case, supertype is Object, erasure is first interface.
06bc494ca11e Initial load
duke
parents:
diff changeset
   658
                return ct.interfaces_field;
06bc494ca11e Initial load
duke
parents:
diff changeset
   659
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   660
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   661
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   662
06bc494ca11e Initial load
duke
parents:
diff changeset
   663
    /** A class for package symbols
06bc494ca11e Initial load
duke
parents:
diff changeset
   664
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   665
    public static class PackageSymbol extends TypeSymbol
06bc494ca11e Initial load
duke
parents:
diff changeset
   666
        implements PackageElement {
06bc494ca11e Initial load
duke
parents:
diff changeset
   667
06bc494ca11e Initial load
duke
parents:
diff changeset
   668
        public Scope members_field;
06bc494ca11e Initial load
duke
parents:
diff changeset
   669
        public Name fullname;
06bc494ca11e Initial load
duke
parents:
diff changeset
   670
        public ClassSymbol package_info; // see bug 6443073
06bc494ca11e Initial load
duke
parents:
diff changeset
   671
06bc494ca11e Initial load
duke
parents:
diff changeset
   672
        public PackageSymbol(Name name, Type type, Symbol owner) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   673
            super(0, name, type, owner);
06bc494ca11e Initial load
duke
parents:
diff changeset
   674
            this.kind = PCK;
06bc494ca11e Initial load
duke
parents:
diff changeset
   675
            this.members_field = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   676
            this.fullname = formFullName(name, owner);
06bc494ca11e Initial load
duke
parents:
diff changeset
   677
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   678
06bc494ca11e Initial load
duke
parents:
diff changeset
   679
        public PackageSymbol(Name name, Symbol owner) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   680
            this(name, null, owner);
06bc494ca11e Initial load
duke
parents:
diff changeset
   681
            this.type = new PackageType(this);
06bc494ca11e Initial load
duke
parents:
diff changeset
   682
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   683
06bc494ca11e Initial load
duke
parents:
diff changeset
   684
        public String toString() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   685
            return fullname.toString();
06bc494ca11e Initial load
duke
parents:
diff changeset
   686
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   687
06bc494ca11e Initial load
duke
parents:
diff changeset
   688
        public Name getQualifiedName() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   689
            return fullname;
06bc494ca11e Initial load
duke
parents:
diff changeset
   690
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   691
06bc494ca11e Initial load
duke
parents:
diff changeset
   692
        public boolean isUnnamed() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   693
            return name.isEmpty() && owner != null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   694
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   695
06bc494ca11e Initial load
duke
parents:
diff changeset
   696
        public Scope members() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   697
            if (completer != null) complete();
06bc494ca11e Initial load
duke
parents:
diff changeset
   698
            return members_field;
06bc494ca11e Initial load
duke
parents:
diff changeset
   699
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   700
06bc494ca11e Initial load
duke
parents:
diff changeset
   701
        public long flags() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   702
            if (completer != null) complete();
06bc494ca11e Initial load
duke
parents:
diff changeset
   703
            return flags_field;
06bc494ca11e Initial load
duke
parents:
diff changeset
   704
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   705
14961
e731935052af 8005098: Provide isSynthesized() information on Attribute.Compound
jfranck
parents: 14956
diff changeset
   706
        @Override
e731935052af 8005098: Provide isSynthesized() information on Attribute.Compound
jfranck
parents: 14956
diff changeset
   707
        public List<Attribute.Compound> getRawAttributes() {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   708
            if (completer != null) complete();
4871
655bba719625 6499119: Created package-info class file modeled improperly
jjg
parents: 4077
diff changeset
   709
            if (package_info != null && package_info.completer != null) {
655bba719625 6499119: Created package-info class file modeled improperly
jjg
parents: 4077
diff changeset
   710
                package_info.complete();
14961
e731935052af 8005098: Provide isSynthesized() information on Attribute.Compound
jfranck
parents: 14956
diff changeset
   711
                mergeAttributes();
4871
655bba719625 6499119: Created package-info class file modeled improperly
jjg
parents: 4077
diff changeset
   712
            }
14961
e731935052af 8005098: Provide isSynthesized() information on Attribute.Compound
jfranck
parents: 14956
diff changeset
   713
            return super.getRawAttributes();
e731935052af 8005098: Provide isSynthesized() information on Attribute.Compound
jfranck
parents: 14956
diff changeset
   714
        }
e731935052af 8005098: Provide isSynthesized() information on Attribute.Compound
jfranck
parents: 14956
diff changeset
   715
e731935052af 8005098: Provide isSynthesized() information on Attribute.Compound
jfranck
parents: 14956
diff changeset
   716
        private void mergeAttributes() {
e731935052af 8005098: Provide isSynthesized() information on Attribute.Compound
jfranck
parents: 14956
diff changeset
   717
            if (annotations.isEmpty() &&
e731935052af 8005098: Provide isSynthesized() information on Attribute.Compound
jfranck
parents: 14956
diff changeset
   718
                !package_info.annotations.isEmpty()) {
e731935052af 8005098: Provide isSynthesized() information on Attribute.Compound
jfranck
parents: 14956
diff changeset
   719
                annotations.setAttributes(package_info.annotations);
13689
4d519199a6aa 7151010: Add compiler support for repeating annotations
jfranck
parents: 12335
diff changeset
   720
            }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   721
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   722
06bc494ca11e Initial load
duke
parents:
diff changeset
   723
        /** A package "exists" if a type or package that exists has
06bc494ca11e Initial load
duke
parents:
diff changeset
   724
         *  been seen within it.
06bc494ca11e Initial load
duke
parents:
diff changeset
   725
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   726
        public boolean exists() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   727
            return (flags_field & EXISTS) != 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
   728
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   729
06bc494ca11e Initial load
duke
parents:
diff changeset
   730
        public ElementKind getKind() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   731
            return ElementKind.PACKAGE;
06bc494ca11e Initial load
duke
parents:
diff changeset
   732
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   733
06bc494ca11e Initial load
duke
parents:
diff changeset
   734
        public Symbol getEnclosingElement() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   735
            return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   736
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   737
06bc494ca11e Initial load
duke
parents:
diff changeset
   738
        public <R, P> R accept(ElementVisitor<R, P> v, P p) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   739
            return v.visitPackage(this, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   740
        }
1357
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
   741
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
   742
        public <R, P> R accept(Symbol.Visitor<R, P> v, P p) {
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
   743
            return v.visitPackageSymbol(this, p);
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
   744
        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   745
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   746
06bc494ca11e Initial load
duke
parents:
diff changeset
   747
    /** A class for class symbols
06bc494ca11e Initial load
duke
parents:
diff changeset
   748
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   749
    public static class ClassSymbol extends TypeSymbol implements TypeElement {
06bc494ca11e Initial load
duke
parents:
diff changeset
   750
06bc494ca11e Initial load
duke
parents:
diff changeset
   751
        /** a scope for all class members; variables, methods and inner classes
06bc494ca11e Initial load
duke
parents:
diff changeset
   752
         *  type parameters are not part of this scope
06bc494ca11e Initial load
duke
parents:
diff changeset
   753
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   754
        public Scope members_field;
06bc494ca11e Initial load
duke
parents:
diff changeset
   755
06bc494ca11e Initial load
duke
parents:
diff changeset
   756
        /** the fully qualified name of the class, i.e. pck.outer.inner.
06bc494ca11e Initial load
duke
parents:
diff changeset
   757
         *  null for anonymous classes
06bc494ca11e Initial load
duke
parents:
diff changeset
   758
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   759
        public Name fullname;
06bc494ca11e Initial load
duke
parents:
diff changeset
   760
06bc494ca11e Initial load
duke
parents:
diff changeset
   761
        /** the fully qualified name of the class after converting to flat
06bc494ca11e Initial load
duke
parents:
diff changeset
   762
         *  representation, i.e. pck.outer$inner,
06bc494ca11e Initial load
duke
parents:
diff changeset
   763
         *  set externally for local and anonymous classes
06bc494ca11e Initial load
duke
parents:
diff changeset
   764
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   765
        public Name flatname;
06bc494ca11e Initial load
duke
parents:
diff changeset
   766
06bc494ca11e Initial load
duke
parents:
diff changeset
   767
        /** the sourcefile where the class came from
06bc494ca11e Initial load
duke
parents:
diff changeset
   768
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   769
        public JavaFileObject sourcefile;
06bc494ca11e Initial load
duke
parents:
diff changeset
   770
06bc494ca11e Initial load
duke
parents:
diff changeset
   771
        /** the classfile from where to load this class
06bc494ca11e Initial load
duke
parents:
diff changeset
   772
         *  this will have extension .class or .java
06bc494ca11e Initial load
duke
parents:
diff changeset
   773
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   774
        public JavaFileObject classfile;
06bc494ca11e Initial load
duke
parents:
diff changeset
   775
10627
d8e900b62e02 7003595: IncompatibleClassChangeError with unreferenced local class with subclass
mcimadamore
parents: 10626
diff changeset
   776
        /** the list of translated local classes (used for generating
d8e900b62e02 7003595: IncompatibleClassChangeError with unreferenced local class with subclass
mcimadamore
parents: 10626
diff changeset
   777
         * InnerClasses attribute)
d8e900b62e02 7003595: IncompatibleClassChangeError with unreferenced local class with subclass
mcimadamore
parents: 10626
diff changeset
   778
         */
d8e900b62e02 7003595: IncompatibleClassChangeError with unreferenced local class with subclass
mcimadamore
parents: 10626
diff changeset
   779
        public List<ClassSymbol> trans_local;
d8e900b62e02 7003595: IncompatibleClassChangeError with unreferenced local class with subclass
mcimadamore
parents: 10626
diff changeset
   780
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   781
        /** the constant pool of the class
06bc494ca11e Initial load
duke
parents:
diff changeset
   782
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   783
        public Pool pool;
06bc494ca11e Initial load
duke
parents:
diff changeset
   784
06bc494ca11e Initial load
duke
parents:
diff changeset
   785
        public ClassSymbol(long flags, Name name, Type type, Symbol owner) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   786
            super(flags, name, type, owner);
06bc494ca11e Initial load
duke
parents:
diff changeset
   787
            this.members_field = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   788
            this.fullname = formFullName(name, owner);
06bc494ca11e Initial load
duke
parents:
diff changeset
   789
            this.flatname = formFlatName(name, owner);
06bc494ca11e Initial load
duke
parents:
diff changeset
   790
            this.sourcefile = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   791
            this.classfile = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   792
            this.pool = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   793
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   794
06bc494ca11e Initial load
duke
parents:
diff changeset
   795
        public ClassSymbol(long flags, Name name, Symbol owner) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   796
            this(
06bc494ca11e Initial load
duke
parents:
diff changeset
   797
                flags,
06bc494ca11e Initial load
duke
parents:
diff changeset
   798
                name,
06bc494ca11e Initial load
duke
parents:
diff changeset
   799
                new ClassType(Type.noType, null, null),
06bc494ca11e Initial load
duke
parents:
diff changeset
   800
                owner);
06bc494ca11e Initial load
duke
parents:
diff changeset
   801
            this.type.tsym = this;
06bc494ca11e Initial load
duke
parents:
diff changeset
   802
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   803
06bc494ca11e Initial load
duke
parents:
diff changeset
   804
        /** The Java source which this symbol represents.
06bc494ca11e Initial load
duke
parents:
diff changeset
   805
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   806
        public String toString() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   807
            return className();
06bc494ca11e Initial load
duke
parents:
diff changeset
   808
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   809
06bc494ca11e Initial load
duke
parents:
diff changeset
   810
        public long flags() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   811
            if (completer != null) complete();
06bc494ca11e Initial load
duke
parents:
diff changeset
   812
            return flags_field;
06bc494ca11e Initial load
duke
parents:
diff changeset
   813
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   814
06bc494ca11e Initial load
duke
parents:
diff changeset
   815
        public Scope members() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   816
            if (completer != null) complete();
06bc494ca11e Initial load
duke
parents:
diff changeset
   817
            return members_field;
06bc494ca11e Initial load
duke
parents:
diff changeset
   818
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   819
14961
e731935052af 8005098: Provide isSynthesized() information on Attribute.Compound
jfranck
parents: 14956
diff changeset
   820
        @Override
e731935052af 8005098: Provide isSynthesized() information on Attribute.Compound
jfranck
parents: 14956
diff changeset
   821
        public List<Attribute.Compound> getRawAttributes() {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   822
            if (completer != null) complete();
14961
e731935052af 8005098: Provide isSynthesized() information on Attribute.Compound
jfranck
parents: 14956
diff changeset
   823
            return super.getRawAttributes();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   824
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   825
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15377
diff changeset
   826
        @Override
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15377
diff changeset
   827
        public List<Attribute.TypeCompound> getRawTypeAttributes() {
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15377
diff changeset
   828
            if (completer != null) complete();
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15377
diff changeset
   829
            return super.getRawTypeAttributes();
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15377
diff changeset
   830
        }
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15377
diff changeset
   831
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   832
        public Type erasure(Types types) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   833
            if (erasure_field == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   834
                erasure_field = new ClassType(types.erasure(type.getEnclosingType()),
06bc494ca11e Initial load
duke
parents:
diff changeset
   835
                                              List.<Type>nil(), this);
06bc494ca11e Initial load
duke
parents:
diff changeset
   836
            return erasure_field;
06bc494ca11e Initial load
duke
parents:
diff changeset
   837
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   838
06bc494ca11e Initial load
duke
parents:
diff changeset
   839
        public String className() {
1260
a772ba9ba43d 6574134: Allow for alternative implementation of Name Table with garbage collection of name bytes
jjg
parents: 1257
diff changeset
   840
            if (name.isEmpty())
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   841
                return
06bc494ca11e Initial load
duke
parents:
diff changeset
   842
                    Log.getLocalizedString("anonymous.class", flatname);
06bc494ca11e Initial load
duke
parents:
diff changeset
   843
            else
06bc494ca11e Initial load
duke
parents:
diff changeset
   844
                return fullname.toString();
06bc494ca11e Initial load
duke
parents:
diff changeset
   845
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   846
06bc494ca11e Initial load
duke
parents:
diff changeset
   847
        public Name getQualifiedName() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   848
            return fullname;
06bc494ca11e Initial load
duke
parents:
diff changeset
   849
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   850
06bc494ca11e Initial load
duke
parents:
diff changeset
   851
        public Name flatName() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   852
            return flatname;
06bc494ca11e Initial load
duke
parents:
diff changeset
   853
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   854
06bc494ca11e Initial load
duke
parents:
diff changeset
   855
        public boolean isSubClass(Symbol base, Types types) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   856
            if (this == base) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   857
                return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   858
            } else if ((base.flags() & INTERFACE) != 0) {
14359
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 14258
diff changeset
   859
                for (Type t = type; t.hasTag(CLASS); t = types.supertype(t))
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   860
                    for (List<Type> is = types.interfaces(t);
06bc494ca11e Initial load
duke
parents:
diff changeset
   861
                         is.nonEmpty();
06bc494ca11e Initial load
duke
parents:
diff changeset
   862
                         is = is.tail)
06bc494ca11e Initial load
duke
parents:
diff changeset
   863
                        if (is.head.tsym.isSubClass(base, types)) return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   864
            } else {
14359
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 14258
diff changeset
   865
                for (Type t = type; t.hasTag(CLASS); t = types.supertype(t))
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   866
                    if (t.tsym == base) return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   867
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   868
            return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   869
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   870
06bc494ca11e Initial load
duke
parents:
diff changeset
   871
        /** Complete the elaboration of this symbol's definition.
06bc494ca11e Initial load
duke
parents:
diff changeset
   872
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   873
        public void complete() throws CompletionFailure {
06bc494ca11e Initial load
duke
parents:
diff changeset
   874
            try {
06bc494ca11e Initial load
duke
parents:
diff changeset
   875
                super.complete();
06bc494ca11e Initial load
duke
parents:
diff changeset
   876
            } catch (CompletionFailure ex) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   877
                // quiet error recovery
06bc494ca11e Initial load
duke
parents:
diff changeset
   878
                flags_field |= (PUBLIC|STATIC);
1257
873b053bf757 6557752: Original type of an AST should be made available even if it is replaced with an ErrorType
jjg
parents: 1045
diff changeset
   879
                this.type = new ErrorType(this, Type.noType);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   880
                throw ex;
06bc494ca11e Initial load
duke
parents:
diff changeset
   881
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   882
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   883
06bc494ca11e Initial load
duke
parents:
diff changeset
   884
        public List<Type> getInterfaces() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   885
            complete();
06bc494ca11e Initial load
duke
parents:
diff changeset
   886
            if (type instanceof ClassType) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   887
                ClassType t = (ClassType)type;
06bc494ca11e Initial load
duke
parents:
diff changeset
   888
                if (t.interfaces_field == null) // FIXME: shouldn't be null
06bc494ca11e Initial load
duke
parents:
diff changeset
   889
                    t.interfaces_field = List.nil();
8625
6b51ef804d49 6639645: Modeling type implementing missing interfaces
jjg
parents: 8427
diff changeset
   890
                if (t.all_interfaces_field != null)
6b51ef804d49 6639645: Modeling type implementing missing interfaces
jjg
parents: 8427
diff changeset
   891
                    return Type.getModelTypes(t.all_interfaces_field);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   892
                return t.interfaces_field;
06bc494ca11e Initial load
duke
parents:
diff changeset
   893
            } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   894
                return List.nil();
06bc494ca11e Initial load
duke
parents:
diff changeset
   895
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   896
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   897
06bc494ca11e Initial load
duke
parents:
diff changeset
   898
        public Type getSuperclass() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   899
            complete();
06bc494ca11e Initial load
duke
parents:
diff changeset
   900
            if (type instanceof ClassType) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   901
                ClassType t = (ClassType)type;
06bc494ca11e Initial load
duke
parents:
diff changeset
   902
                if (t.supertype_field == null) // FIXME: shouldn't be null
06bc494ca11e Initial load
duke
parents:
diff changeset
   903
                    t.supertype_field = Type.noType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   904
                // An interface has no superclass; its supertype is Object.
06bc494ca11e Initial load
duke
parents:
diff changeset
   905
                return t.isInterface()
06bc494ca11e Initial load
duke
parents:
diff changeset
   906
                    ? Type.noType
8625
6b51ef804d49 6639645: Modeling type implementing missing interfaces
jjg
parents: 8427
diff changeset
   907
                    : t.supertype_field.getModelType();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   908
            } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   909
                return Type.noType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   910
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   911
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   912
06bc494ca11e Initial load
duke
parents:
diff changeset
   913
        public ElementKind getKind() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   914
            long flags = flags();
06bc494ca11e Initial load
duke
parents:
diff changeset
   915
            if ((flags & ANNOTATION) != 0)
06bc494ca11e Initial load
duke
parents:
diff changeset
   916
                return ElementKind.ANNOTATION_TYPE;
06bc494ca11e Initial load
duke
parents:
diff changeset
   917
            else if ((flags & INTERFACE) != 0)
06bc494ca11e Initial load
duke
parents:
diff changeset
   918
                return ElementKind.INTERFACE;
06bc494ca11e Initial load
duke
parents:
diff changeset
   919
            else if ((flags & ENUM) != 0)
06bc494ca11e Initial load
duke
parents:
diff changeset
   920
                return ElementKind.ENUM;
06bc494ca11e Initial load
duke
parents:
diff changeset
   921
            else
06bc494ca11e Initial load
duke
parents:
diff changeset
   922
                return ElementKind.CLASS;
06bc494ca11e Initial load
duke
parents:
diff changeset
   923
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   924
06bc494ca11e Initial load
duke
parents:
diff changeset
   925
        public NestingKind getNestingKind() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   926
            complete();
06bc494ca11e Initial load
duke
parents:
diff changeset
   927
            if (owner.kind == PCK)
06bc494ca11e Initial load
duke
parents:
diff changeset
   928
                return NestingKind.TOP_LEVEL;
06bc494ca11e Initial load
duke
parents:
diff changeset
   929
            else if (name.isEmpty())
06bc494ca11e Initial load
duke
parents:
diff changeset
   930
                return NestingKind.ANONYMOUS;
06bc494ca11e Initial load
duke
parents:
diff changeset
   931
            else if (owner.kind == MTH)
06bc494ca11e Initial load
duke
parents:
diff changeset
   932
                return NestingKind.LOCAL;
06bc494ca11e Initial load
duke
parents:
diff changeset
   933
            else
06bc494ca11e Initial load
duke
parents:
diff changeset
   934
                return NestingKind.MEMBER;
06bc494ca11e Initial load
duke
parents:
diff changeset
   935
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   936
06bc494ca11e Initial load
duke
parents:
diff changeset
   937
        /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   938
         * @deprecated this method should never be used by javac internally.
06bc494ca11e Initial load
duke
parents:
diff changeset
   939
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   940
        @Override @Deprecated
06bc494ca11e Initial load
duke
parents:
diff changeset
   941
        public <A extends java.lang.annotation.Annotation> A getAnnotation(Class<A> annoType) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   942
            return JavacElements.getAnnotation(this, annoType);
06bc494ca11e Initial load
duke
parents:
diff changeset
   943
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   944
06bc494ca11e Initial load
duke
parents:
diff changeset
   945
        public <R, P> R accept(ElementVisitor<R, P> v, P p) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   946
            return v.visitType(this, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   947
        }
1357
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
   948
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
   949
        public <R, P> R accept(Symbol.Visitor<R, P> v, P p) {
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
   950
            return v.visitClassSymbol(this, p);
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
   951
        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   952
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   953
06bc494ca11e Initial load
duke
parents:
diff changeset
   954
06bc494ca11e Initial load
duke
parents:
diff changeset
   955
    /** A class for variable symbols
06bc494ca11e Initial load
duke
parents:
diff changeset
   956
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   957
    public static class VarSymbol extends Symbol implements VariableElement {
06bc494ca11e Initial load
duke
parents:
diff changeset
   958
06bc494ca11e Initial load
duke
parents:
diff changeset
   959
        /** The variable's declaration position.
06bc494ca11e Initial load
duke
parents:
diff changeset
   960
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   961
        public int pos = Position.NOPOS;
06bc494ca11e Initial load
duke
parents:
diff changeset
   962
06bc494ca11e Initial load
duke
parents:
diff changeset
   963
        /** The variable's address. Used for different purposes during
06bc494ca11e Initial load
duke
parents:
diff changeset
   964
         *  flow analysis, translation and code generation.
06bc494ca11e Initial load
duke
parents:
diff changeset
   965
         *  Flow analysis:
06bc494ca11e Initial load
duke
parents:
diff changeset
   966
         *    If this is a blank final or local variable, its sequence number.
06bc494ca11e Initial load
duke
parents:
diff changeset
   967
         *  Translation:
06bc494ca11e Initial load
duke
parents:
diff changeset
   968
         *    If this is a private field, its access number.
06bc494ca11e Initial load
duke
parents:
diff changeset
   969
         *  Code generation:
06bc494ca11e Initial load
duke
parents:
diff changeset
   970
         *    If this is a local variable, its logical slot number.
06bc494ca11e Initial load
duke
parents:
diff changeset
   971
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   972
        public int adr = -1;
06bc494ca11e Initial load
duke
parents:
diff changeset
   973
06bc494ca11e Initial load
duke
parents:
diff changeset
   974
        /** Construct a variable symbol, given its flags, name, type and owner.
06bc494ca11e Initial load
duke
parents:
diff changeset
   975
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   976
        public VarSymbol(long flags, Name name, Type type, Symbol owner) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   977
            super(VAR, flags, name, type, owner);
06bc494ca11e Initial load
duke
parents:
diff changeset
   978
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   979
06bc494ca11e Initial load
duke
parents:
diff changeset
   980
        /** Clone this symbol with new owner.
06bc494ca11e Initial load
duke
parents:
diff changeset
   981
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   982
        public VarSymbol clone(Symbol newOwner) {
14062
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14051
diff changeset
   983
            VarSymbol v = new VarSymbol(flags_field, name, type, newOwner) {
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14051
diff changeset
   984
                @Override
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14051
diff changeset
   985
                public Symbol baseSymbol() {
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14051
diff changeset
   986
                    return VarSymbol.this;
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14051
diff changeset
   987
                }
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14051
diff changeset
   988
            };
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   989
            v.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   990
            v.adr = adr;
06bc494ca11e Initial load
duke
parents:
diff changeset
   991
            v.data = data;
06bc494ca11e Initial load
duke
parents:
diff changeset
   992
//          System.out.println("clone " + v + " in " + newOwner);//DEBUG
06bc494ca11e Initial load
duke
parents:
diff changeset
   993
            return v;
06bc494ca11e Initial load
duke
parents:
diff changeset
   994
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   995
06bc494ca11e Initial load
duke
parents:
diff changeset
   996
        public String toString() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   997
            return name.toString();
06bc494ca11e Initial load
duke
parents:
diff changeset
   998
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   999
06bc494ca11e Initial load
duke
parents:
diff changeset
  1000
        public Symbol asMemberOf(Type site, Types types) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1001
            return new VarSymbol(flags_field, name, types.memberType(site, this), owner);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1002
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1003
06bc494ca11e Initial load
duke
parents:
diff changeset
  1004
        public ElementKind getKind() {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1005
            long flags = flags();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1006
            if ((flags & PARAMETER) != 0) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1007
                if (isExceptionParameter())
06bc494ca11e Initial load
duke
parents:
diff changeset
  1008
                    return ElementKind.EXCEPTION_PARAMETER;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1009
                else
06bc494ca11e Initial load
duke
parents:
diff changeset
  1010
                    return ElementKind.PARAMETER;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1011
            } else if ((flags & ENUM) != 0) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1012
                return ElementKind.ENUM_CONSTANT;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1013
            } else if (owner.kind == TYP || owner.kind == ERR) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1014
                return ElementKind.FIELD;
6718
56ed1962d369 6967842: Element not returned from tree API for ARM resource variables.
sundar
parents: 6592
diff changeset
  1015
            } else if (isResourceVariable()) {
56ed1962d369 6967842: Element not returned from tree API for ARM resource variables.
sundar
parents: 6592
diff changeset
  1016
                return ElementKind.RESOURCE_VARIABLE;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1017
            } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1018
                return ElementKind.LOCAL_VARIABLE;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1019
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1020
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1021
06bc494ca11e Initial load
duke
parents:
diff changeset
  1022
        public <R, P> R accept(ElementVisitor<R, P> v, P p) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1023
            return v.visitVariable(this, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1024
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1025
06bc494ca11e Initial load
duke
parents:
diff changeset
  1026
        public Object getConstantValue() { // Mirror API
06bc494ca11e Initial load
duke
parents:
diff changeset
  1027
            return Constants.decode(getConstValue(), type);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1028
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1029
06bc494ca11e Initial load
duke
parents:
diff changeset
  1030
        public void setLazyConstValue(final Env<AttrContext> env,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1031
                                      final Attr attr,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1032
                                      final JCTree.JCExpression initializer)
06bc494ca11e Initial load
duke
parents:
diff changeset
  1033
        {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1034
            setData(new Callable<Object>() {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1035
                public Object call() {
8225
e9e5670e6a71 6554097: "final" confuses @SuppressWarnings
jjg
parents: 8032
diff changeset
  1036
                    return attr.attribLazyConstantValue(env, initializer, type);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1037
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1038
            });
06bc494ca11e Initial load
duke
parents:
diff changeset
  1039
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1040
06bc494ca11e Initial load
duke
parents:
diff changeset
  1041
        /**
06bc494ca11e Initial load
duke
parents:
diff changeset
  1042
         * The variable's constant value, if this is a constant.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1043
         * Before the constant value is evaluated, it points to an
06bc494ca11e Initial load
duke
parents:
diff changeset
  1044
         * initalizer environment.  If this is not a constant, it can
06bc494ca11e Initial load
duke
parents:
diff changeset
  1045
         * be used for other stuff.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1046
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
  1047
        private Object data;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1048
06bc494ca11e Initial load
duke
parents:
diff changeset
  1049
        public boolean isExceptionParameter() {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1050
            return data == ElementKind.EXCEPTION_PARAMETER;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1051
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1052
6148
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 5847
diff changeset
  1053
        public boolean isResourceVariable() {
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 5847
diff changeset
  1054
            return data == ElementKind.RESOURCE_VARIABLE;
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 5847
diff changeset
  1055
        }
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 5847
diff changeset
  1056
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1057
        public Object getConstValue() {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1058
            // TODO: Consider if getConstValue and getConstantValue can be collapsed
6148
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 5847
diff changeset
  1059
            if (data == ElementKind.EXCEPTION_PARAMETER ||
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 5847
diff changeset
  1060
                data == ElementKind.RESOURCE_VARIABLE) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1061
                return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1062
            } else if (data instanceof Callable<?>) {
6148
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 5847
diff changeset
  1063
                // In this case, this is a final variable, with an as
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1064
                // yet unevaluated initializer.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1065
                Callable<?> eval = (Callable<?>)data;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1066
                data = null; // to make sure we don't evaluate this twice.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1067
                try {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1068
                    data = eval.call();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1069
                } catch (Exception ex) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1070
                    throw new AssertionError(ex);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1071
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1072
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1073
            return data;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1074
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1075
06bc494ca11e Initial load
duke
parents:
diff changeset
  1076
        public void setData(Object data) {
8032
e1aa25ccdabb 6396503: javac should not require assertions enabled
jjg
parents: 8031
diff changeset
  1077
            Assert.check(!(data instanceof Env<?>), this);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1078
            this.data = data;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1079
        }
1357
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
  1080
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
  1081
        public <R, P> R accept(Symbol.Visitor<R, P> v, P p) {
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
  1082
            return v.visitVarSymbol(this, p);
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
  1083
        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1084
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1085
06bc494ca11e Initial load
duke
parents:
diff changeset
  1086
    /** A class for method symbols.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1087
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
  1088
    public static class MethodSymbol extends Symbol implements ExecutableElement {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1089
06bc494ca11e Initial load
duke
parents:
diff changeset
  1090
        /** The code of the method. */
06bc494ca11e Initial load
duke
parents:
diff changeset
  1091
        public Code code = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1092
15720
e61b2f7a5148 8006345: Report Synthesized Parameters in java.lang.reflect.Parameter API
mcimadamore
parents: 15719
diff changeset
  1093
        /** The extra (synthetic/mandated) parameters of the method. */
e61b2f7a5148 8006345: Report Synthesized Parameters in java.lang.reflect.Parameter API
mcimadamore
parents: 15719
diff changeset
  1094
        public List<VarSymbol> extraParams = List.nil();
e61b2f7a5148 8006345: Report Synthesized Parameters in java.lang.reflect.Parameter API
mcimadamore
parents: 15719
diff changeset
  1095
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1096
        /** The parameters of the method. */
06bc494ca11e Initial load
duke
parents:
diff changeset
  1097
        public List<VarSymbol> params = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1098
06bc494ca11e Initial load
duke
parents:
diff changeset
  1099
        /** The names of the parameters */
06bc494ca11e Initial load
duke
parents:
diff changeset
  1100
        public List<Name> savedParameterNames;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1101
06bc494ca11e Initial load
duke
parents:
diff changeset
  1102
        /** For an attribute field accessor, its default value if any.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1103
         *  The value is null if none appeared in the method
06bc494ca11e Initial load
duke
parents:
diff changeset
  1104
         *  declaration.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1105
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
  1106
        public Attribute defaultValue = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1107
06bc494ca11e Initial load
duke
parents:
diff changeset
  1108
        /** Construct a method symbol, given its flags, name, type and owner.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1109
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
  1110
        public MethodSymbol(long flags, Name name, Type type, Symbol owner) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1111
            super(MTH, flags, name, type, owner);
14359
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 14258
diff changeset
  1112
            if (owner.type.hasTag(TYPEVAR)) Assert.error(owner + "." + name);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1113
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1114
06bc494ca11e Initial load
duke
parents:
diff changeset
  1115
        /** Clone this symbol with new owner.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1116
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
  1117
        public MethodSymbol clone(Symbol newOwner) {
14062
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14051
diff changeset
  1118
            MethodSymbol m = new MethodSymbol(flags_field, name, type, newOwner) {
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14051
diff changeset
  1119
                @Override
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14051
diff changeset
  1120
                public Symbol baseSymbol() {
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14051
diff changeset
  1121
                    return MethodSymbol.this;
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14051
diff changeset
  1122
                }
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14051
diff changeset
  1123
            };
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1124
            m.code = code;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1125
            return m;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1126
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1127
06bc494ca11e Initial load
duke
parents:
diff changeset
  1128
        /** The Java source which this symbol represents.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1129
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
  1130
        public String toString() {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1131
            if ((flags() & BLOCK) != 0) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1132
                return owner.name.toString();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1133
            } else {
1260
a772ba9ba43d 6574134: Allow for alternative implementation of Name Table with garbage collection of name bytes
jjg
parents: 1257
diff changeset
  1134
                String s = (name == name.table.names.init)
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1135
                    ? owner.name.toString()
06bc494ca11e Initial load
duke
parents:
diff changeset
  1136
                    : name.toString();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1137
                if (type != null) {
14359
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 14258
diff changeset
  1138
                    if (type.hasTag(FORALL))
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1139
                        s = "<" + ((ForAll)type).getTypeArguments() + ">" + s;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1140
                    s += "(" + type.argtypes((flags() & VARARGS) != 0) + ")";
06bc494ca11e Initial load
duke
parents:
diff changeset
  1141
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1142
                return s;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1143
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1144
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1145
14046
8ef5d5b19998 7194586: Add back-end support for invokedynamic
mcimadamore
parents: 13689
diff changeset
  1146
        public boolean isDynamic() {
8ef5d5b19998 7194586: Add back-end support for invokedynamic
mcimadamore
parents: 13689
diff changeset
  1147
            return false;
8ef5d5b19998 7194586: Add back-end support for invokedynamic
mcimadamore
parents: 13689
diff changeset
  1148
        }
8ef5d5b19998 7194586: Add back-end support for invokedynamic
mcimadamore
parents: 13689
diff changeset
  1149
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1150
        /** find a symbol that this (proxy method) symbol implements.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1151
         *  @param    c       The class whose members are searched for
06bc494ca11e Initial load
duke
parents:
diff changeset
  1152
         *                    implementations
06bc494ca11e Initial load
duke
parents:
diff changeset
  1153
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
  1154
        public Symbol implemented(TypeSymbol c, Types types) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1155
            Symbol impl = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1156
            for (List<Type> is = types.interfaces(c.type);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1157
                 impl == null && is.nonEmpty();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1158
                 is = is.tail) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1159
                TypeSymbol i = is.head.tsym;
7628
e7baeb97d164 6476118: compiler bug causes runtime ClassCastException for generics overloading
mcimadamore
parents: 6718
diff changeset
  1160
                impl = implementedIn(i, types);
e7baeb97d164 6476118: compiler bug causes runtime ClassCastException for generics overloading
mcimadamore
parents: 6718
diff changeset
  1161
                if (impl == null)
e7baeb97d164 6476118: compiler bug causes runtime ClassCastException for generics overloading
mcimadamore
parents: 6718
diff changeset
  1162
                    impl = implemented(i, types);
e7baeb97d164 6476118: compiler bug causes runtime ClassCastException for generics overloading
mcimadamore
parents: 6718
diff changeset
  1163
            }
e7baeb97d164 6476118: compiler bug causes runtime ClassCastException for generics overloading
mcimadamore
parents: 6718
diff changeset
  1164
            return impl;
e7baeb97d164 6476118: compiler bug causes runtime ClassCastException for generics overloading
mcimadamore
parents: 6718
diff changeset
  1165
        }
e7baeb97d164 6476118: compiler bug causes runtime ClassCastException for generics overloading
mcimadamore
parents: 6718
diff changeset
  1166
e7baeb97d164 6476118: compiler bug causes runtime ClassCastException for generics overloading
mcimadamore
parents: 6718
diff changeset
  1167
        public Symbol implementedIn(TypeSymbol c, Types types) {
e7baeb97d164 6476118: compiler bug causes runtime ClassCastException for generics overloading
mcimadamore
parents: 6718
diff changeset
  1168
            Symbol impl = null;
e7baeb97d164 6476118: compiler bug causes runtime ClassCastException for generics overloading
mcimadamore
parents: 6718
diff changeset
  1169
            for (Scope.Entry e = c.members().lookup(name);
e7baeb97d164 6476118: compiler bug causes runtime ClassCastException for generics overloading
mcimadamore
parents: 6718
diff changeset
  1170
                 impl == null && e.scope != null;
e7baeb97d164 6476118: compiler bug causes runtime ClassCastException for generics overloading
mcimadamore
parents: 6718
diff changeset
  1171
                 e = e.next()) {
e7baeb97d164 6476118: compiler bug causes runtime ClassCastException for generics overloading
mcimadamore
parents: 6718
diff changeset
  1172
                if (this.overrides(e.sym, (TypeSymbol)owner, types, true) &&
e7baeb97d164 6476118: compiler bug causes runtime ClassCastException for generics overloading
mcimadamore
parents: 6718
diff changeset
  1173
                    // FIXME: I suspect the following requires a
e7baeb97d164 6476118: compiler bug causes runtime ClassCastException for generics overloading
mcimadamore
parents: 6718
diff changeset
  1174
                    // subst() for a parametric return type.
e7baeb97d164 6476118: compiler bug causes runtime ClassCastException for generics overloading
mcimadamore
parents: 6718
diff changeset
  1175
                    types.isSameType(type.getReturnType(),
e7baeb97d164 6476118: compiler bug causes runtime ClassCastException for generics overloading
mcimadamore
parents: 6718
diff changeset
  1176
                                     types.memberType(owner.type, e.sym).getReturnType())) {
e7baeb97d164 6476118: compiler bug causes runtime ClassCastException for generics overloading
mcimadamore
parents: 6718
diff changeset
  1177
                    impl = e.sym;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1178
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1179
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1180
            return impl;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1181
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1182
06bc494ca11e Initial load
duke
parents:
diff changeset
  1183
        /** Will the erasure of this method be considered by the VM to
06bc494ca11e Initial load
duke
parents:
diff changeset
  1184
         *  override the erasure of the other when seen from class `origin'?
06bc494ca11e Initial load
duke
parents:
diff changeset
  1185
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
  1186
        public boolean binaryOverrides(Symbol _other, TypeSymbol origin, Types types) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1187
            if (isConstructor() || _other.kind != MTH) return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1188
06bc494ca11e Initial load
duke
parents:
diff changeset
  1189
            if (this == _other) return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1190
            MethodSymbol other = (MethodSymbol)_other;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1191
06bc494ca11e Initial load
duke
parents:
diff changeset
  1192
            // check for a direct implementation
06bc494ca11e Initial load
duke
parents:
diff changeset
  1193
            if (other.isOverridableIn((TypeSymbol)owner) &&
06bc494ca11e Initial load
duke
parents:
diff changeset
  1194
                types.asSuper(owner.type, other.owner) != null &&
06bc494ca11e Initial load
duke
parents:
diff changeset
  1195
                types.isSameType(erasure(types), other.erasure(types)))
06bc494ca11e Initial load
duke
parents:
diff changeset
  1196
                return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1197
06bc494ca11e Initial load
duke
parents:
diff changeset
  1198
            // check for an inherited implementation
06bc494ca11e Initial load
duke
parents:
diff changeset
  1199
            return
06bc494ca11e Initial load
duke
parents:
diff changeset
  1200
                (flags() & ABSTRACT) == 0 &&
06bc494ca11e Initial load
duke
parents:
diff changeset
  1201
                other.isOverridableIn(origin) &&
06bc494ca11e Initial load
duke
parents:
diff changeset
  1202
                this.isMemberOf(origin, types) &&
06bc494ca11e Initial load
duke
parents:
diff changeset
  1203
                types.isSameType(erasure(types), other.erasure(types));
06bc494ca11e Initial load
duke
parents:
diff changeset
  1204
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1205
06bc494ca11e Initial load
duke
parents:
diff changeset
  1206
        /** The implementation of this (abstract) symbol in class origin,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1207
         *  from the VM's point of view, null if method does not have an
06bc494ca11e Initial load
duke
parents:
diff changeset
  1208
         *  implementation in class.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1209
         *  @param origin   The class of which the implementation is a member.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1210
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
  1211
        public MethodSymbol binaryImplementation(ClassSymbol origin, Types types) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1212
            for (TypeSymbol c = origin; c != null; c = types.supertype(c.type).tsym) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1213
                for (Scope.Entry e = c.members().lookup(name);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1214
                     e.scope != null;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1215
                     e = e.next()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1216
                    if (e.sym.kind == MTH &&
06bc494ca11e Initial load
duke
parents:
diff changeset
  1217
                        ((MethodSymbol)e.sym).binaryOverrides(this, origin, types))
06bc494ca11e Initial load
duke
parents:
diff changeset
  1218
                        return (MethodSymbol)e.sym;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1219
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1220
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1221
            return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1222
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1223
06bc494ca11e Initial load
duke
parents:
diff changeset
  1224
        /** Does this symbol override `other' symbol, when both are seen as
06bc494ca11e Initial load
duke
parents:
diff changeset
  1225
         *  members of class `origin'?  It is assumed that _other is a member
06bc494ca11e Initial load
duke
parents:
diff changeset
  1226
         *  of origin.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1227
         *
06bc494ca11e Initial load
duke
parents:
diff changeset
  1228
         *  It is assumed that both symbols have the same name.  The static
06bc494ca11e Initial load
duke
parents:
diff changeset
  1229
         *  modifier is ignored for this test.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1230
         *
06bc494ca11e Initial load
duke
parents:
diff changeset
  1231
         *  See JLS 8.4.6.1 (without transitivity) and 8.4.6.4
06bc494ca11e Initial load
duke
parents:
diff changeset
  1232
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
  1233
        public boolean overrides(Symbol _other, TypeSymbol origin, Types types, boolean checkResult) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1234
            if (isConstructor() || _other.kind != MTH) return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1235
06bc494ca11e Initial load
duke
parents:
diff changeset
  1236
            if (this == _other) return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1237
            MethodSymbol other = (MethodSymbol)_other;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1238
06bc494ca11e Initial load
duke
parents:
diff changeset
  1239
            // check for a direct implementation
06bc494ca11e Initial load
duke
parents:
diff changeset
  1240
            if (other.isOverridableIn((TypeSymbol)owner) &&
06bc494ca11e Initial load
duke
parents:
diff changeset
  1241
                types.asSuper(owner.type, other.owner) != null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1242
                Type mt = types.memberType(owner.type, this);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1243
                Type ot = types.memberType(owner.type, other);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1244
                if (types.isSubSignature(mt, ot)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1245
                    if (!checkResult)
06bc494ca11e Initial load
duke
parents:
diff changeset
  1246
                        return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1247
                    if (types.returnTypeSubstitutable(mt, ot))
06bc494ca11e Initial load
duke
parents:
diff changeset
  1248
                        return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1249
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1250
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1251
06bc494ca11e Initial load
duke
parents:
diff changeset
  1252
            // check for an inherited implementation
06bc494ca11e Initial load
duke
parents:
diff changeset
  1253
            if ((flags() & ABSTRACT) != 0 ||
14547
86d8d242b0c4 8003280: Add lambda tests
mcimadamore
parents: 14443
diff changeset
  1254
                    ((other.flags() & ABSTRACT) == 0 && (other.flags() & DEFAULT) == 0) ||
14443
91c05eb19277 7192246: Add type-checking support for default methods
mcimadamore
parents: 14359
diff changeset
  1255
                    !other.isOverridableIn(origin) ||
91c05eb19277 7192246: Add type-checking support for default methods
mcimadamore
parents: 14359
diff changeset
  1256
                    !this.isMemberOf(origin, types))
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1257
                return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1258
06bc494ca11e Initial load
duke
parents:
diff changeset
  1259
            // assert types.asSuper(origin.type, other.owner) != null;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1260
            Type mt = types.memberType(origin.type, this);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1261
            Type ot = types.memberType(origin.type, other);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1262
            return
06bc494ca11e Initial load
duke
parents:
diff changeset
  1263
                types.isSubSignature(mt, ot) &&
14547
86d8d242b0c4 8003280: Add lambda tests
mcimadamore
parents: 14443
diff changeset
  1264
                (!checkResult || types.resultSubtype(mt, ot, types.noWarnings));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1265
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1266
06bc494ca11e Initial load
duke
parents:
diff changeset
  1267
        private boolean isOverridableIn(TypeSymbol origin) {
9303
eae35c201e19 7032975: API files in javax.annotation.processing need to be updated for references to JLS
jjh
parents: 8625
diff changeset
  1268
            // JLS 8.4.6.1
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1269
            switch ((int)(flags_field & Flags.AccessFlags)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1270
            case Flags.PRIVATE:
06bc494ca11e Initial load
duke
parents:
diff changeset
  1271
                return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1272
            case Flags.PUBLIC:
15377
515846bb6637 8005166: Add support for static interface methods
mcimadamore
parents: 15355
diff changeset
  1273
                return !this.owner.isInterface() ||
515846bb6637 8005166: Add support for static interface methods
mcimadamore
parents: 15355
diff changeset
  1274
                        (flags_field & STATIC) == 0;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1275
            case Flags.PROTECTED:
06bc494ca11e Initial load
duke
parents:
diff changeset
  1276
                return (origin.flags() & INTERFACE) == 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1277
            case 0:
06bc494ca11e Initial load
duke
parents:
diff changeset
  1278
                // for package private: can only override in the same
06bc494ca11e Initial load
duke
parents:
diff changeset
  1279
                // package
06bc494ca11e Initial load
duke
parents:
diff changeset
  1280
                return
06bc494ca11e Initial load
duke
parents:
diff changeset
  1281
                    this.packge() == origin.packge() &&
06bc494ca11e Initial load
duke
parents:
diff changeset
  1282
                    (origin.flags() & INTERFACE) == 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1283
            default:
06bc494ca11e Initial load
duke
parents:
diff changeset
  1284
                return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1285
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1286
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1287
15377
515846bb6637 8005166: Add support for static interface methods
mcimadamore
parents: 15355
diff changeset
  1288
        @Override
515846bb6637 8005166: Add support for static interface methods
mcimadamore
parents: 15355
diff changeset
  1289
        public boolean isInheritedIn(Symbol clazz, Types types) {
515846bb6637 8005166: Add support for static interface methods
mcimadamore
parents: 15355
diff changeset
  1290
            switch ((int)(flags_field & Flags.AccessFlags)) {
515846bb6637 8005166: Add support for static interface methods
mcimadamore
parents: 15355
diff changeset
  1291
                case PUBLIC:
515846bb6637 8005166: Add support for static interface methods
mcimadamore
parents: 15355
diff changeset
  1292
                    return !this.owner.isInterface() ||
515846bb6637 8005166: Add support for static interface methods
mcimadamore
parents: 15355
diff changeset
  1293
                            clazz == owner ||
515846bb6637 8005166: Add support for static interface methods
mcimadamore
parents: 15355
diff changeset
  1294
                            (flags_field & STATIC) == 0;
515846bb6637 8005166: Add support for static interface methods
mcimadamore
parents: 15355
diff changeset
  1295
                default:
515846bb6637 8005166: Add support for static interface methods
mcimadamore
parents: 15355
diff changeset
  1296
                    return super.isInheritedIn(clazz, types);
515846bb6637 8005166: Add support for static interface methods
mcimadamore
parents: 15355
diff changeset
  1297
            }
515846bb6637 8005166: Add support for static interface methods
mcimadamore
parents: 15355
diff changeset
  1298
        }
515846bb6637 8005166: Add support for static interface methods
mcimadamore
parents: 15355
diff changeset
  1299
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1300
        /** The implementation of this (abstract) symbol in class origin;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1301
         *  null if none exists. Synthetic methods are not considered
06bc494ca11e Initial load
duke
parents:
diff changeset
  1302
         *  as possible implementations.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1303
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
  1304
        public MethodSymbol implementation(TypeSymbol origin, Types types, boolean checkResult) {
6591
a953c8c6b85e 6337171: javac should create bridge methods when type variable bounds restricted
mcimadamore
parents: 6584
diff changeset
  1305
            return implementation(origin, types, checkResult, implementation_filter);
a953c8c6b85e 6337171: javac should create bridge methods when type variable bounds restricted
mcimadamore
parents: 6584
diff changeset
  1306
        }
a953c8c6b85e 6337171: javac should create bridge methods when type variable bounds restricted
mcimadamore
parents: 6584
diff changeset
  1307
        // where
a953c8c6b85e 6337171: javac should create bridge methods when type variable bounds restricted
mcimadamore
parents: 6584
diff changeset
  1308
            private static final Filter<Symbol> implementation_filter = new Filter<Symbol>() {
a953c8c6b85e 6337171: javac should create bridge methods when type variable bounds restricted
mcimadamore
parents: 6584
diff changeset
  1309
                public boolean accepts(Symbol s) {
a953c8c6b85e 6337171: javac should create bridge methods when type variable bounds restricted
mcimadamore
parents: 6584
diff changeset
  1310
                    return s.kind == Kinds.MTH &&
a953c8c6b85e 6337171: javac should create bridge methods when type variable bounds restricted
mcimadamore
parents: 6584
diff changeset
  1311
                            (s.flags() & SYNTHETIC) == 0;
a953c8c6b85e 6337171: javac should create bridge methods when type variable bounds restricted
mcimadamore
parents: 6584
diff changeset
  1312
                }
a953c8c6b85e 6337171: javac should create bridge methods when type variable bounds restricted
mcimadamore
parents: 6584
diff changeset
  1313
            };
a953c8c6b85e 6337171: javac should create bridge methods when type variable bounds restricted
mcimadamore
parents: 6584
diff changeset
  1314
a953c8c6b85e 6337171: javac should create bridge methods when type variable bounds restricted
mcimadamore
parents: 6584
diff changeset
  1315
        public MethodSymbol implementation(TypeSymbol origin, Types types, boolean checkResult, Filter<Symbol> implFilter) {
8242
3873b4aaf4a8 7007615: java_util/generics/phase2/NameClashTest02 fails since jdk7/pit/b123.
mcimadamore
parents: 8225
diff changeset
  1316
            MethodSymbol res = types.implementation(this, origin, checkResult, implFilter);
3539
3c265cb6f4e0 6827648: Extremely slow compilation time for visitor pattern code + generics
mcimadamore
parents: 3149
diff changeset
  1317
            if (res != null)
3c265cb6f4e0 6827648: Extremely slow compilation time for visitor pattern code + generics
mcimadamore
parents: 3149
diff changeset
  1318
                return res;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1319
            // if origin is derived from a raw type, we might have missed
06bc494ca11e Initial load
duke
parents:
diff changeset
  1320
            // an implementation because we do not know enough about instantiations.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1321
            // in this case continue with the supertype as origin.
12083
c9d98f7e59e8 7148556: Implementing a generic interface causes a public clone() to become inaccessible
mcimadamore
parents: 10627
diff changeset
  1322
            if (types.isDerivedRaw(origin.type) && !origin.isInterface())
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1323
                return implementation(types.supertype(origin.type).tsym, types, checkResult);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1324
            else
06bc494ca11e Initial load
duke
parents:
diff changeset
  1325
                return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1326
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1327
06bc494ca11e Initial load
duke
parents:
diff changeset
  1328
        public List<VarSymbol> params() {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1329
            owner.complete();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1330
            if (params == null) {
4077
0096541a388e 6889255: javac MethodSymbol throws NPE if ClassReader does not read parameter names correctly
jjg
parents: 3539
diff changeset
  1331
                // If ClassReader.saveParameterNames has been set true, then
0096541a388e 6889255: javac MethodSymbol throws NPE if ClassReader does not read parameter names correctly
jjg
parents: 3539
diff changeset
  1332
                // savedParameterNames will be set to a list of names that
0096541a388e 6889255: javac MethodSymbol throws NPE if ClassReader does not read parameter names correctly
jjg
parents: 3539
diff changeset
  1333
                // matches the types in type.getParameterTypes().  If any names
0096541a388e 6889255: javac MethodSymbol throws NPE if ClassReader does not read parameter names correctly
jjg
parents: 3539
diff changeset
  1334
                // were not found in the class file, those names in the list will
0096541a388e 6889255: javac MethodSymbol throws NPE if ClassReader does not read parameter names correctly
jjg
parents: 3539
diff changeset
  1335
                // be set to the empty name.
0096541a388e 6889255: javac MethodSymbol throws NPE if ClassReader does not read parameter names correctly
jjg
parents: 3539
diff changeset
  1336
                // If ClassReader.saveParameterNames has been set false, then
0096541a388e 6889255: javac MethodSymbol throws NPE if ClassReader does not read parameter names correctly
jjg
parents: 3539
diff changeset
  1337
                // savedParameterNames will be null.
0096541a388e 6889255: javac MethodSymbol throws NPE if ClassReader does not read parameter names correctly
jjg
parents: 3539
diff changeset
  1338
                List<Name> paramNames = savedParameterNames;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1339
                savedParameterNames = null;
4077
0096541a388e 6889255: javac MethodSymbol throws NPE if ClassReader does not read parameter names correctly
jjg
parents: 3539
diff changeset
  1340
                // discard the provided names if the list of names is the wrong size.
15031
c4fad55a5681 8004727: Add compiler support for parameter reflection
jjg
parents: 14961
diff changeset
  1341
                if (paramNames == null || paramNames.size() != type.getParameterTypes().size()) {
4077
0096541a388e 6889255: javac MethodSymbol throws NPE if ClassReader does not read parameter names correctly
jjg
parents: 3539
diff changeset
  1342
                    paramNames = List.nil();
15031
c4fad55a5681 8004727: Add compiler support for parameter reflection
jjg
parents: 14961
diff changeset
  1343
                }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1344
                ListBuffer<VarSymbol> buf = new ListBuffer<VarSymbol>();
4077
0096541a388e 6889255: javac MethodSymbol throws NPE if ClassReader does not read parameter names correctly
jjg
parents: 3539
diff changeset
  1345
                List<Name> remaining = paramNames;
0096541a388e 6889255: javac MethodSymbol throws NPE if ClassReader does not read parameter names correctly
jjg
parents: 3539
diff changeset
  1346
                // assert: remaining and paramNames are both empty or both
0096541a388e 6889255: javac MethodSymbol throws NPE if ClassReader does not read parameter names correctly
jjg
parents: 3539
diff changeset
  1347
                // have same cardinality as type.getParameterTypes()
0096541a388e 6889255: javac MethodSymbol throws NPE if ClassReader does not read parameter names correctly
jjg
parents: 3539
diff changeset
  1348
                int i = 0;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1349
                for (Type t : type.getParameterTypes()) {
4077
0096541a388e 6889255: javac MethodSymbol throws NPE if ClassReader does not read parameter names correctly
jjg
parents: 3539
diff changeset
  1350
                    Name paramName;
0096541a388e 6889255: javac MethodSymbol throws NPE if ClassReader does not read parameter names correctly
jjg
parents: 3539
diff changeset
  1351
                    if (remaining.isEmpty()) {
0096541a388e 6889255: javac MethodSymbol throws NPE if ClassReader does not read parameter names correctly
jjg
parents: 3539
diff changeset
  1352
                        // no names for any parameters available
0096541a388e 6889255: javac MethodSymbol throws NPE if ClassReader does not read parameter names correctly
jjg
parents: 3539
diff changeset
  1353
                        paramName = createArgName(i, paramNames);
0096541a388e 6889255: javac MethodSymbol throws NPE if ClassReader does not read parameter names correctly
jjg
parents: 3539
diff changeset
  1354
                    } else {
0096541a388e 6889255: javac MethodSymbol throws NPE if ClassReader does not read parameter names correctly
jjg
parents: 3539
diff changeset
  1355
                        paramName = remaining.head;
0096541a388e 6889255: javac MethodSymbol throws NPE if ClassReader does not read parameter names correctly
jjg
parents: 3539
diff changeset
  1356
                        remaining = remaining.tail;
0096541a388e 6889255: javac MethodSymbol throws NPE if ClassReader does not read parameter names correctly
jjg
parents: 3539
diff changeset
  1357
                        if (paramName.isEmpty()) {
0096541a388e 6889255: javac MethodSymbol throws NPE if ClassReader does not read parameter names correctly
jjg
parents: 3539
diff changeset
  1358
                            // no name for this specific parameter
0096541a388e 6889255: javac MethodSymbol throws NPE if ClassReader does not read parameter names correctly
jjg
parents: 3539
diff changeset
  1359
                            paramName = createArgName(i, paramNames);
0096541a388e 6889255: javac MethodSymbol throws NPE if ClassReader does not read parameter names correctly
jjg
parents: 3539
diff changeset
  1360
                        }
0096541a388e 6889255: javac MethodSymbol throws NPE if ClassReader does not read parameter names correctly
jjg
parents: 3539
diff changeset
  1361
                    }
0096541a388e 6889255: javac MethodSymbol throws NPE if ClassReader does not read parameter names correctly
jjg
parents: 3539
diff changeset
  1362
                    buf.append(new VarSymbol(PARAMETER, paramName, t, this));
0096541a388e 6889255: javac MethodSymbol throws NPE if ClassReader does not read parameter names correctly
jjg
parents: 3539
diff changeset
  1363
                    i++;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1364
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1365
                params = buf.toList();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1366
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1367
            return params;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1368
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1369
4077
0096541a388e 6889255: javac MethodSymbol throws NPE if ClassReader does not read parameter names correctly
jjg
parents: 3539
diff changeset
  1370
        // Create a name for the argument at position 'index' that is not in
0096541a388e 6889255: javac MethodSymbol throws NPE if ClassReader does not read parameter names correctly
jjg
parents: 3539
diff changeset
  1371
        // the exclude list. In normal use, either no names will have been
0096541a388e 6889255: javac MethodSymbol throws NPE if ClassReader does not read parameter names correctly
jjg
parents: 3539
diff changeset
  1372
        // provided, in which case the exclude list is empty, or all the names
0096541a388e 6889255: javac MethodSymbol throws NPE if ClassReader does not read parameter names correctly
jjg
parents: 3539
diff changeset
  1373
        // will have been provided, in which case this method will not be called.
0096541a388e 6889255: javac MethodSymbol throws NPE if ClassReader does not read parameter names correctly
jjg
parents: 3539
diff changeset
  1374
        private Name createArgName(int index, List<Name> exclude) {
0096541a388e 6889255: javac MethodSymbol throws NPE if ClassReader does not read parameter names correctly
jjg
parents: 3539
diff changeset
  1375
            String prefix = "arg";
0096541a388e 6889255: javac MethodSymbol throws NPE if ClassReader does not read parameter names correctly
jjg
parents: 3539
diff changeset
  1376
            while (true) {
0096541a388e 6889255: javac MethodSymbol throws NPE if ClassReader does not read parameter names correctly
jjg
parents: 3539
diff changeset
  1377
                Name argName = name.table.fromString(prefix + index);
0096541a388e 6889255: javac MethodSymbol throws NPE if ClassReader does not read parameter names correctly
jjg
parents: 3539
diff changeset
  1378
                if (!exclude.contains(argName))
0096541a388e 6889255: javac MethodSymbol throws NPE if ClassReader does not read parameter names correctly
jjg
parents: 3539
diff changeset
  1379
                    return argName;
0096541a388e 6889255: javac MethodSymbol throws NPE if ClassReader does not read parameter names correctly
jjg
parents: 3539
diff changeset
  1380
                prefix += "$";
0096541a388e 6889255: javac MethodSymbol throws NPE if ClassReader does not read parameter names correctly
jjg
parents: 3539
diff changeset
  1381
            }
0096541a388e 6889255: javac MethodSymbol throws NPE if ClassReader does not read parameter names correctly
jjg
parents: 3539
diff changeset
  1382
        }
0096541a388e 6889255: javac MethodSymbol throws NPE if ClassReader does not read parameter names correctly
jjg
parents: 3539
diff changeset
  1383
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1384
        public Symbol asMemberOf(Type site, Types types) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1385
            return new MethodSymbol(flags_field, name, types.memberType(site, this), owner);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1386
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1387
06bc494ca11e Initial load
duke
parents:
diff changeset
  1388
        public ElementKind getKind() {
1260
a772ba9ba43d 6574134: Allow for alternative implementation of Name Table with garbage collection of name bytes
jjg
parents: 1257
diff changeset
  1389
            if (name == name.table.names.init)
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1390
                return ElementKind.CONSTRUCTOR;
1260
a772ba9ba43d 6574134: Allow for alternative implementation of Name Table with garbage collection of name bytes
jjg
parents: 1257
diff changeset
  1391
            else if (name == name.table.names.clinit)
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1392
                return ElementKind.STATIC_INIT;
10626
83f0c2860f5b 7086595: Error message bug: name of initializer is 'null'
mcimadamore
parents: 9812
diff changeset
  1393
            else if ((flags() & BLOCK) != 0)
83f0c2860f5b 7086595: Error message bug: name of initializer is 'null'
mcimadamore
parents: 9812
diff changeset
  1394
                return isStatic() ? ElementKind.STATIC_INIT : ElementKind.INSTANCE_INIT;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1395
            else
06bc494ca11e Initial load
duke
parents:
diff changeset
  1396
                return ElementKind.METHOD;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1397
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1398
10626
83f0c2860f5b 7086595: Error message bug: name of initializer is 'null'
mcimadamore
parents: 9812
diff changeset
  1399
        public boolean isStaticOrInstanceInit() {
83f0c2860f5b 7086595: Error message bug: name of initializer is 'null'
mcimadamore
parents: 9812
diff changeset
  1400
            return getKind() == ElementKind.STATIC_INIT ||
83f0c2860f5b 7086595: Error message bug: name of initializer is 'null'
mcimadamore
parents: 9812
diff changeset
  1401
                    getKind() == ElementKind.INSTANCE_INIT;
83f0c2860f5b 7086595: Error message bug: name of initializer is 'null'
mcimadamore
parents: 9812
diff changeset
  1402
        }
83f0c2860f5b 7086595: Error message bug: name of initializer is 'null'
mcimadamore
parents: 9812
diff changeset
  1403
12335
4725d88691dd 7133185: Update 292 overload resolution logic to match JLS
mcimadamore
parents: 12083
diff changeset
  1404
        /**
4725d88691dd 7133185: Update 292 overload resolution logic to match JLS
mcimadamore
parents: 12083
diff changeset
  1405
         * A polymorphic signature method (JLS SE 7, 8.4.1) is a method that
4725d88691dd 7133185: Update 292 overload resolution logic to match JLS
mcimadamore
parents: 12083
diff changeset
  1406
         * (i) is declared in the java.lang.invoke.MethodHandle class, (ii) takes
4725d88691dd 7133185: Update 292 overload resolution logic to match JLS
mcimadamore
parents: 12083
diff changeset
  1407
         * a single variable arity parameter (iii) whose declared type is Object[],
4725d88691dd 7133185: Update 292 overload resolution logic to match JLS
mcimadamore
parents: 12083
diff changeset
  1408
         * (iv) has a return type of Object and (v) is native.
4725d88691dd 7133185: Update 292 overload resolution logic to match JLS
mcimadamore
parents: 12083
diff changeset
  1409
         */
4725d88691dd 7133185: Update 292 overload resolution logic to match JLS
mcimadamore
parents: 12083
diff changeset
  1410
        public boolean isSignaturePolymorphic(Types types) {
4725d88691dd 7133185: Update 292 overload resolution logic to match JLS
mcimadamore
parents: 12083
diff changeset
  1411
            List<Type> argtypes = type.getParameterTypes();
4725d88691dd 7133185: Update 292 overload resolution logic to match JLS
mcimadamore
parents: 12083
diff changeset
  1412
            Type firstElemType = argtypes.nonEmpty() ?
4725d88691dd 7133185: Update 292 overload resolution logic to match JLS
mcimadamore
parents: 12083
diff changeset
  1413
                    types.elemtype(argtypes.head) :
4725d88691dd 7133185: Update 292 overload resolution logic to match JLS
mcimadamore
parents: 12083
diff changeset
  1414
                    null;
4725d88691dd 7133185: Update 292 overload resolution logic to match JLS
mcimadamore
parents: 12083
diff changeset
  1415
            return owner == types.syms.methodHandleType.tsym &&
4725d88691dd 7133185: Update 292 overload resolution logic to match JLS
mcimadamore
parents: 12083
diff changeset
  1416
                    argtypes.length() == 1 &&
4725d88691dd 7133185: Update 292 overload resolution logic to match JLS
mcimadamore
parents: 12083
diff changeset
  1417
                    firstElemType != null &&
4725d88691dd 7133185: Update 292 overload resolution logic to match JLS
mcimadamore
parents: 12083
diff changeset
  1418
                    types.isSameType(firstElemType, types.syms.objectType) &&
4725d88691dd 7133185: Update 292 overload resolution logic to match JLS
mcimadamore
parents: 12083
diff changeset
  1419
                    types.isSameType(type.getReturnType(), types.syms.objectType) &&
4725d88691dd 7133185: Update 292 overload resolution logic to match JLS
mcimadamore
parents: 12083
diff changeset
  1420
                    (flags() & NATIVE) != 0;
4725d88691dd 7133185: Update 292 overload resolution logic to match JLS
mcimadamore
parents: 12083
diff changeset
  1421
        }
4725d88691dd 7133185: Update 292 overload resolution logic to match JLS
mcimadamore
parents: 12083
diff changeset
  1422
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1423
        public Attribute getDefaultValue() {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1424
            return defaultValue;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1425
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1426
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15377
diff changeset
  1427
        public List<VarSymbol> getParameters() {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1428
            return params();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1429
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1430
06bc494ca11e Initial load
duke
parents:
diff changeset
  1431
        public boolean isVarArgs() {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1432
            return (flags() & VARARGS) != 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1433
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1434
14956
185bd7c693d8 8005046: Provide checking for a default method in javax.lang.model
darcy
parents: 14547
diff changeset
  1435
        public boolean isDefault() {
185bd7c693d8 8005046: Provide checking for a default method in javax.lang.model
darcy
parents: 14547
diff changeset
  1436
            return (flags() & DEFAULT) != 0;
185bd7c693d8 8005046: Provide checking for a default method in javax.lang.model
darcy
parents: 14547
diff changeset
  1437
        }
185bd7c693d8 8005046: Provide checking for a default method in javax.lang.model
darcy
parents: 14547
diff changeset
  1438
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1439
        public <R, P> R accept(ElementVisitor<R, P> v, P p) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1440
            return v.visitExecutable(this, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1441
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1442
1357
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
  1443
        public <R, P> R accept(Symbol.Visitor<R, P> v, P p) {
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
  1444
            return v.visitMethodSymbol(this, p);
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
  1445
        }
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
  1446
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1447
        public Type getReturnType() {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1448
            return asType().getReturnType();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1449
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1450
06bc494ca11e Initial load
duke
parents:
diff changeset
  1451
        public List<Type> getThrownTypes() {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1452
            return asType().getThrownTypes();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1453
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1454
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1455
14046
8ef5d5b19998 7194586: Add back-end support for invokedynamic
mcimadamore
parents: 13689
diff changeset
  1456
    /** A class for invokedynamic method calls.
8ef5d5b19998 7194586: Add back-end support for invokedynamic
mcimadamore
parents: 13689
diff changeset
  1457
     */
8ef5d5b19998 7194586: Add back-end support for invokedynamic
mcimadamore
parents: 13689
diff changeset
  1458
    public static class DynamicMethodSymbol extends MethodSymbol {
8ef5d5b19998 7194586: Add back-end support for invokedynamic
mcimadamore
parents: 13689
diff changeset
  1459
8ef5d5b19998 7194586: Add back-end support for invokedynamic
mcimadamore
parents: 13689
diff changeset
  1460
        public Object[] staticArgs;
8ef5d5b19998 7194586: Add back-end support for invokedynamic
mcimadamore
parents: 13689
diff changeset
  1461
        public Symbol bsm;
8ef5d5b19998 7194586: Add back-end support for invokedynamic
mcimadamore
parents: 13689
diff changeset
  1462
        public int bsmKind;
8ef5d5b19998 7194586: Add back-end support for invokedynamic
mcimadamore
parents: 13689
diff changeset
  1463
8ef5d5b19998 7194586: Add back-end support for invokedynamic
mcimadamore
parents: 13689
diff changeset
  1464
        public DynamicMethodSymbol(Name name, Symbol owner, int bsmKind, MethodSymbol bsm, Type type, Object[] staticArgs) {
8ef5d5b19998 7194586: Add back-end support for invokedynamic
mcimadamore
parents: 13689
diff changeset
  1465
            super(0, name, type, owner);
8ef5d5b19998 7194586: Add back-end support for invokedynamic
mcimadamore
parents: 13689
diff changeset
  1466
            this.bsm = bsm;
8ef5d5b19998 7194586: Add back-end support for invokedynamic
mcimadamore
parents: 13689
diff changeset
  1467
            this.bsmKind = bsmKind;
8ef5d5b19998 7194586: Add back-end support for invokedynamic
mcimadamore
parents: 13689
diff changeset
  1468
            this.staticArgs = staticArgs;
8ef5d5b19998 7194586: Add back-end support for invokedynamic
mcimadamore
parents: 13689
diff changeset
  1469
        }
8ef5d5b19998 7194586: Add back-end support for invokedynamic
mcimadamore
parents: 13689
diff changeset
  1470
8ef5d5b19998 7194586: Add back-end support for invokedynamic
mcimadamore
parents: 13689
diff changeset
  1471
        @Override
8ef5d5b19998 7194586: Add back-end support for invokedynamic
mcimadamore
parents: 13689
diff changeset
  1472
        public boolean isDynamic() {
8ef5d5b19998 7194586: Add back-end support for invokedynamic
mcimadamore
parents: 13689
diff changeset
  1473
            return true;
8ef5d5b19998 7194586: Add back-end support for invokedynamic
mcimadamore
parents: 13689
diff changeset
  1474
        }
8ef5d5b19998 7194586: Add back-end support for invokedynamic
mcimadamore
parents: 13689
diff changeset
  1475
    }
8ef5d5b19998 7194586: Add back-end support for invokedynamic
mcimadamore
parents: 13689
diff changeset
  1476
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1477
    /** A class for predefined operators.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1478
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
  1479
    public static class OperatorSymbol extends MethodSymbol {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1480
06bc494ca11e Initial load
duke
parents:
diff changeset
  1481
        public int opcode;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1482
06bc494ca11e Initial load
duke
parents:
diff changeset
  1483
        public OperatorSymbol(Name name, Type type, int opcode, Symbol owner) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1484
            super(PUBLIC | STATIC, name, type, owner);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1485
            this.opcode = opcode;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1486
        }
1357
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
  1487
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
  1488
        public <R, P> R accept(Symbol.Visitor<R, P> v, P p) {
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
  1489
            return v.visitOperatorSymbol(this, p);
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
  1490
        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1491
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1492
06bc494ca11e Initial load
duke
parents:
diff changeset
  1493
    /** Symbol completer interface.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1494
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
  1495
    public static interface Completer {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1496
        void complete(Symbol sym) throws CompletionFailure;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1497
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1498
06bc494ca11e Initial load
duke
parents:
diff changeset
  1499
    public static class CompletionFailure extends RuntimeException {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1500
        private static final long serialVersionUID = 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1501
        public Symbol sym;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1502
169
ff76730e430e 6668794: javac puts localized text in raw diagnostics
jjg
parents: 10
diff changeset
  1503
        /** A diagnostic object describing the failure
ff76730e430e 6668794: javac puts localized text in raw diagnostics
jjg
parents: 10
diff changeset
  1504
         */
ff76730e430e 6668794: javac puts localized text in raw diagnostics
jjg
parents: 10
diff changeset
  1505
        public JCDiagnostic diag;
ff76730e430e 6668794: javac puts localized text in raw diagnostics
jjg
parents: 10
diff changeset
  1506
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1507
        /** A localized string describing the failure.
169
ff76730e430e 6668794: javac puts localized text in raw diagnostics
jjg
parents: 10
diff changeset
  1508
         * @deprecated Use {@code getDetail()} or {@code getMessage()}
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1509
         */
169
ff76730e430e 6668794: javac puts localized text in raw diagnostics
jjg
parents: 10
diff changeset
  1510
        @Deprecated
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1511
        public String errmsg;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1512
06bc494ca11e Initial load
duke
parents:
diff changeset
  1513
        public CompletionFailure(Symbol sym, String errmsg) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1514
            this.sym = sym;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1515
            this.errmsg = errmsg;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1516
//          this.printStackTrace();//DEBUG
06bc494ca11e Initial load
duke
parents:
diff changeset
  1517
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1518
169
ff76730e430e 6668794: javac puts localized text in raw diagnostics
jjg
parents: 10
diff changeset
  1519
        public CompletionFailure(Symbol sym, JCDiagnostic diag) {
ff76730e430e 6668794: javac puts localized text in raw diagnostics
jjg
parents: 10
diff changeset
  1520
            this.sym = sym;
ff76730e430e 6668794: javac puts localized text in raw diagnostics
jjg
parents: 10
diff changeset
  1521
            this.diag = diag;
ff76730e430e 6668794: javac puts localized text in raw diagnostics
jjg
parents: 10
diff changeset
  1522
//          this.printStackTrace();//DEBUG
ff76730e430e 6668794: javac puts localized text in raw diagnostics
jjg
parents: 10
diff changeset
  1523
        }
ff76730e430e 6668794: javac puts localized text in raw diagnostics
jjg
parents: 10
diff changeset
  1524
ff76730e430e 6668794: javac puts localized text in raw diagnostics
jjg
parents: 10
diff changeset
  1525
        public JCDiagnostic getDiagnostic() {
ff76730e430e 6668794: javac puts localized text in raw diagnostics
jjg
parents: 10
diff changeset
  1526
            return diag;
ff76730e430e 6668794: javac puts localized text in raw diagnostics
jjg
parents: 10
diff changeset
  1527
        }
ff76730e430e 6668794: javac puts localized text in raw diagnostics
jjg
parents: 10
diff changeset
  1528
ff76730e430e 6668794: javac puts localized text in raw diagnostics
jjg
parents: 10
diff changeset
  1529
        @Override
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1530
        public String getMessage() {
169
ff76730e430e 6668794: javac puts localized text in raw diagnostics
jjg
parents: 10
diff changeset
  1531
            if (diag != null)
ff76730e430e 6668794: javac puts localized text in raw diagnostics
jjg
parents: 10
diff changeset
  1532
                return diag.getMessage(null);
ff76730e430e 6668794: javac puts localized text in raw diagnostics
jjg
parents: 10
diff changeset
  1533
            else
ff76730e430e 6668794: javac puts localized text in raw diagnostics
jjg
parents: 10
diff changeset
  1534
                return errmsg;
ff76730e430e 6668794: javac puts localized text in raw diagnostics
jjg
parents: 10
diff changeset
  1535
        }
ff76730e430e 6668794: javac puts localized text in raw diagnostics
jjg
parents: 10
diff changeset
  1536
ff76730e430e 6668794: javac puts localized text in raw diagnostics
jjg
parents: 10
diff changeset
  1537
        public Object getDetailValue() {
ff76730e430e 6668794: javac puts localized text in raw diagnostics
jjg
parents: 10
diff changeset
  1538
            return (diag != null ? diag : errmsg);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1539
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1540
06bc494ca11e Initial load
duke
parents:
diff changeset
  1541
        @Override
06bc494ca11e Initial load
duke
parents:
diff changeset
  1542
        public CompletionFailure initCause(Throwable cause) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1543
            super.initCause(cause);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1544
            return this;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1545
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1546
06bc494ca11e Initial load
duke
parents:
diff changeset
  1547
    }
1357
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
  1548
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
  1549
    /**
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
  1550
     * A visitor for symbols.  A visitor is used to implement operations
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
  1551
     * (or relations) on symbols.  Most common operations on types are
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
  1552
     * binary relations and this interface is designed for binary
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
  1553
     * relations, that is, operations on the form
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
  1554
     * Symbol&nbsp;&times;&nbsp;P&nbsp;&rarr;&nbsp;R.
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
  1555
     * <!-- In plain text: Type x P -> R -->
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
  1556
     *
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
  1557
     * @param <R> the return type of the operation implemented by this
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
  1558
     * visitor; use Void if no return type is needed.
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
  1559
     * @param <P> the type of the second argument (the first being the
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
  1560
     * symbol itself) of the operation implemented by this visitor; use
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
  1561
     * Void if a second argument is not needed.
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
  1562
     */
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
  1563
    public interface Visitor<R,P> {
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
  1564
        R visitClassSymbol(ClassSymbol s, P arg);
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
  1565
        R visitMethodSymbol(MethodSymbol s, P arg);
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
  1566
        R visitPackageSymbol(PackageSymbol s, P arg);
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
  1567
        R visitOperatorSymbol(OperatorSymbol s, P arg);
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
  1568
        R visitVarSymbol(VarSymbol s, P arg);
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
  1569
        R visitTypeSymbol(TypeSymbol s, P arg);
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
  1570
        R visitSymbol(Symbol s, P arg);
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1260
diff changeset
  1571
    }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1572
}