langtools/src/share/classes/com/sun/tools/javac/comp/Infer.java
author jjg
Tue, 08 Nov 2011 11:51:05 -0800
changeset 10950 e87b50888909
parent 10816 ce8a7e9d8882
child 11550 1d70546d4d78
permissions -rw-r--r--
6921494: provide way to print javac tree tag values Reviewed-by: jjg, mcimadamore Contributed-by: vicenterz@yahoo.es
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
8229
39266c1b1b0e 6313164: javac generates code that fails byte code verification for the varargs feature
mcimadamore
parents: 8048
diff changeset
     2
 * Copyright (c) 1999, 2011, 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: 5489
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: 5489
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: 5489
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 5489
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 5489
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.comp;
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
6592
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 6348
diff changeset
    28
import com.sun.tools.javac.tree.JCTree;
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 6348
diff changeset
    29
import com.sun.tools.javac.tree.JCTree.JCTypeCast;
8036
17b976649c61 6992698: JSR 292: remove support for transient syntax in polymorphic signature calls
mcimadamore
parents: 7681
diff changeset
    30
import com.sun.tools.javac.tree.TreeInfo;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    31
import com.sun.tools.javac.util.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    32
import com.sun.tools.javac.util.List;
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
import com.sun.tools.javac.code.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    34
import com.sun.tools.javac.code.Type.*;
3778
38a70273507b 6650759: Inference of formal type parameter (unused in formal parameters) is not performed
mcimadamore
parents: 3140
diff changeset
    35
import com.sun.tools.javac.code.Type.ForAll.ConstraintKind;
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
    36
import com.sun.tools.javac.code.Symbol.*;
10816
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10628
diff changeset
    37
import com.sun.tools.javac.comp.Resolve.VerboseResolutionMode;
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10628
diff changeset
    38
import com.sun.tools.javac.util.JCDiagnostic.DiagnosticPosition;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    39
06bc494ca11e Initial load
duke
parents:
diff changeset
    40
import static com.sun.tools.javac.code.TypeTags.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    41
06bc494ca11e Initial load
duke
parents:
diff changeset
    42
/** Helper class for type parameter inference, used by the attribution phase.
06bc494ca11e Initial load
duke
parents:
diff changeset
    43
 *
5847
1908176fd6e3 6944312: Potential rebranding issues in openjdk/langtools repository sources
jjg
parents: 5846
diff changeset
    44
 *  <p><b>This is NOT part of any supported API.
1908176fd6e3 6944312: Potential rebranding issues in openjdk/langtools repository sources
jjg
parents: 5846
diff changeset
    45
 *  If you write code that depends on this, you do so at your own risk.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    46
 *  This code and its internal interfaces are subject to change or
06bc494ca11e Initial load
duke
parents:
diff changeset
    47
 *  deletion without notice.</b>
06bc494ca11e Initial load
duke
parents:
diff changeset
    48
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
public class Infer {
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
    protected static final Context.Key<Infer> inferKey =
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
        new Context.Key<Infer>();
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
    /** A value for prototypes that admit any type, including polymorphic ones. */
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
    public static final Type anyPoly = new Type(NONE, null);
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
06bc494ca11e Initial load
duke
parents:
diff changeset
    56
    Symtab syms;
06bc494ca11e Initial load
duke
parents:
diff changeset
    57
    Types types;
3778
38a70273507b 6650759: Inference of formal type parameter (unused in formal parameters) is not performed
mcimadamore
parents: 3140
diff changeset
    58
    Check chk;
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
    59
    Resolve rs;
10816
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10628
diff changeset
    60
    Log log;
1040
c0f5acfd9d15 6730423: Diagnostic formatter should be an instance field of JCDiagnostic
mcimadamore
parents: 735
diff changeset
    61
    JCDiagnostic.Factory diags;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
    public static Infer instance(Context context) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
        Infer instance = context.get(inferKey);
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
        if (instance == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
            instance = new Infer(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
    67
        return instance;
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    69
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
    protected Infer(Context context) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
        context.put(inferKey, this);
06bc494ca11e Initial load
duke
parents:
diff changeset
    72
        syms = Symtab.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
    73
        types = Types.instance(context);
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
    74
        rs = Resolve.instance(context);
10816
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10628
diff changeset
    75
        log = Log.instance(context);
3778
38a70273507b 6650759: Inference of formal type parameter (unused in formal parameters) is not performed
mcimadamore
parents: 3140
diff changeset
    76
        chk = Check.instance(context);
1040
c0f5acfd9d15 6730423: Diagnostic formatter should be an instance field of JCDiagnostic
mcimadamore
parents: 735
diff changeset
    77
        diags = JCDiagnostic.Factory.instance(context);
c0f5acfd9d15 6730423: Diagnostic formatter should be an instance field of JCDiagnostic
mcimadamore
parents: 735
diff changeset
    78
        ambiguousNoInstanceException =
c0f5acfd9d15 6730423: Diagnostic formatter should be an instance field of JCDiagnostic
mcimadamore
parents: 735
diff changeset
    79
            new NoInstanceException(true, diags);
c0f5acfd9d15 6730423: Diagnostic formatter should be an instance field of JCDiagnostic
mcimadamore
parents: 735
diff changeset
    80
        unambiguousNoInstanceException =
c0f5acfd9d15 6730423: Diagnostic formatter should be an instance field of JCDiagnostic
mcimadamore
parents: 735
diff changeset
    81
            new NoInstanceException(false, diags);
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
    82
        invalidInstanceException =
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
    83
            new InvalidInstanceException(diags);
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
    84
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    86
6710
b14e6fe7b290 5088624: cannot find symbol message should be more intelligent
mcimadamore
parents: 6592
diff changeset
    87
    public static class InferenceException extends Resolve.InapplicableMethodException {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    88
        private static final long serialVersionUID = 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
    90
        InferenceException(JCDiagnostic.Factory diags) {
6710
b14e6fe7b290 5088624: cannot find symbol message should be more intelligent
mcimadamore
parents: 6592
diff changeset
    91
            super(diags);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
        }
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
    93
    }
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
    94
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
    95
    public static class NoInstanceException extends InferenceException {
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
    96
        private static final long serialVersionUID = 1;
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
    97
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
    98
        boolean isAmbiguous; // exist several incomparable best instances?
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
    99
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   100
        NoInstanceException(boolean isAmbiguous, JCDiagnostic.Factory diags) {
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   101
            super(diags);
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   102
            this.isAmbiguous = isAmbiguous;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
    }
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   105
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   106
    public static class InvalidInstanceException extends InferenceException {
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   107
        private static final long serialVersionUID = 2;
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   108
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   109
        InvalidInstanceException(JCDiagnostic.Factory diags) {
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   110
            super(diags);
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   111
        }
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   112
    }
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   113
1040
c0f5acfd9d15 6730423: Diagnostic formatter should be an instance field of JCDiagnostic
mcimadamore
parents: 735
diff changeset
   114
    private final NoInstanceException ambiguousNoInstanceException;
c0f5acfd9d15 6730423: Diagnostic formatter should be an instance field of JCDiagnostic
mcimadamore
parents: 735
diff changeset
   115
    private final NoInstanceException unambiguousNoInstanceException;
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   116
    private final InvalidInstanceException invalidInstanceException;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   117
06bc494ca11e Initial load
duke
parents:
diff changeset
   118
/***************************************************************************
06bc494ca11e Initial load
duke
parents:
diff changeset
   119
 * Auxiliary type values and classes
06bc494ca11e Initial load
duke
parents:
diff changeset
   120
 ***************************************************************************/
06bc494ca11e Initial load
duke
parents:
diff changeset
   121
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
    /** A mapping that turns type variables into undetermined type variables.
06bc494ca11e Initial load
duke
parents:
diff changeset
   123
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   124
    Mapping fromTypeVarFun = new Mapping("fromTypeVarFun") {
06bc494ca11e Initial load
duke
parents:
diff changeset
   125
            public Type apply(Type t) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   126
                if (t.tag == TYPEVAR) return new UndetVar(t);
06bc494ca11e Initial load
duke
parents:
diff changeset
   127
                else return t.map(this);
06bc494ca11e Initial load
duke
parents:
diff changeset
   128
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   129
        };
06bc494ca11e Initial load
duke
parents:
diff changeset
   130
06bc494ca11e Initial load
duke
parents:
diff changeset
   131
    /** A mapping that returns its type argument with every UndetVar replaced
06bc494ca11e Initial load
duke
parents:
diff changeset
   132
     *  by its `inst' field. Throws a NoInstanceException
06bc494ca11e Initial load
duke
parents:
diff changeset
   133
     *  if this not possible because an `inst' field is null.
6348
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   134
     *  Note: mutually referring undertvars will be left uninstantiated
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   135
     *  (that is, they will be replaced by the underlying type-variable).
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   136
     */
6348
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   137
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   138
    Mapping getInstFun = new Mapping("getInstFun") {
06bc494ca11e Initial load
duke
parents:
diff changeset
   139
            public Type apply(Type t) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   140
                switch (t.tag) {
6348
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   141
                    case UNKNOWN:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   142
                        throw ambiguousNoInstanceException
6348
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   143
                            .setMessage("undetermined.type");
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   144
                    case UNDETVAR:
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   145
                        UndetVar that = (UndetVar) t;
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   146
                        if (that.inst == null)
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   147
                            throw ambiguousNoInstanceException
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   148
                                .setMessage("type.variable.has.undetermined.type",
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   149
                                            that.qtype);
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   150
                        return isConstraintCyclic(that) ?
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   151
                            that.qtype :
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   152
                            apply(that.inst);
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   153
                        default:
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   154
                            return t.map(this);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   155
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   156
            }
6348
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   157
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   158
            private boolean isConstraintCyclic(UndetVar uv) {
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   159
                Types.UnaryVisitor<Boolean> constraintScanner =
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   160
                        new Types.UnaryVisitor<Boolean>() {
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   161
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   162
                    List<Type> seen = List.nil();
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   163
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   164
                    Boolean visit(List<Type> ts) {
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   165
                        for (Type t : ts) {
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   166
                            if (visit(t)) return true;
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   167
                        }
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   168
                        return false;
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   169
                    }
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   170
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   171
                    public Boolean visitType(Type t, Void ignored) {
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   172
                        return false;
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   173
                    }
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   174
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   175
                    @Override
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   176
                    public Boolean visitClassType(ClassType t, Void ignored) {
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   177
                        if (t.isCompound()) {
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   178
                            return visit(types.supertype(t)) ||
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   179
                                    visit(types.interfaces(t));
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   180
                        } else {
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   181
                            return visit(t.getTypeArguments());
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   182
                        }
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   183
                    }
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   184
                    @Override
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   185
                    public Boolean visitWildcardType(WildcardType t, Void ignored) {
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   186
                        return visit(t.type);
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   187
                    }
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   188
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   189
                    @Override
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   190
                    public Boolean visitUndetVar(UndetVar t, Void ignored) {
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   191
                        if (seen.contains(t)) {
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   192
                            return true;
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   193
                        } else {
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   194
                            seen = seen.prepend(t);
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   195
                            return visit(t.inst);
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   196
                        }
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   197
                    }
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   198
                };
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   199
                return constraintScanner.visit(uv);
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   200
            }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   201
        };
06bc494ca11e Initial load
duke
parents:
diff changeset
   202
06bc494ca11e Initial load
duke
parents:
diff changeset
   203
/***************************************************************************
06bc494ca11e Initial load
duke
parents:
diff changeset
   204
 * Mini/Maximization of UndetVars
06bc494ca11e Initial load
duke
parents:
diff changeset
   205
 ***************************************************************************/
06bc494ca11e Initial load
duke
parents:
diff changeset
   206
06bc494ca11e Initial load
duke
parents:
diff changeset
   207
    /** Instantiate undetermined type variable to its minimal upper bound.
06bc494ca11e Initial load
duke
parents:
diff changeset
   208
     *  Throw a NoInstanceException if this not possible.
06bc494ca11e Initial load
duke
parents:
diff changeset
   209
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   210
    void maximizeInst(UndetVar that, Warner warn) throws NoInstanceException {
8044
7fd529d4472c 6943278: spurious error message for inference and type-variable with erroneous bound
mcimadamore
parents: 8036
diff changeset
   211
        List<Type> hibounds = Type.filter(that.hibounds, errorFilter);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   212
        if (that.inst == null) {
8044
7fd529d4472c 6943278: spurious error message for inference and type-variable with erroneous bound
mcimadamore
parents: 8036
diff changeset
   213
            if (hibounds.isEmpty())
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   214
                that.inst = syms.objectType;
8044
7fd529d4472c 6943278: spurious error message for inference and type-variable with erroneous bound
mcimadamore
parents: 8036
diff changeset
   215
            else if (hibounds.tail.isEmpty())
7fd529d4472c 6943278: spurious error message for inference and type-variable with erroneous bound
mcimadamore
parents: 8036
diff changeset
   216
                that.inst = hibounds.head;
1991
aafb4bf914ee 6315770: javac inference allows creation of strange types: Integer & Runnable
mcimadamore
parents: 1257
diff changeset
   217
            else
8044
7fd529d4472c 6943278: spurious error message for inference and type-variable with erroneous bound
mcimadamore
parents: 8036
diff changeset
   218
                that.inst = types.glb(hibounds);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   219
        }
1991
aafb4bf914ee 6315770: javac inference allows creation of strange types: Integer & Runnable
mcimadamore
parents: 1257
diff changeset
   220
        if (that.inst == null ||
3139
01d76d311f8e 6835428: regression: return-type inference rejects valid code
mcimadamore
parents: 2212
diff changeset
   221
            that.inst.isErroneous())
1991
aafb4bf914ee 6315770: javac inference allows creation of strange types: Integer & Runnable
mcimadamore
parents: 1257
diff changeset
   222
            throw ambiguousNoInstanceException
aafb4bf914ee 6315770: javac inference allows creation of strange types: Integer & Runnable
mcimadamore
parents: 1257
diff changeset
   223
                .setMessage("no.unique.maximal.instance.exists",
8044
7fd529d4472c 6943278: spurious error message for inference and type-variable with erroneous bound
mcimadamore
parents: 8036
diff changeset
   224
                            that.qtype, hibounds);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   225
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   226
    //where
06bc494ca11e Initial load
duke
parents:
diff changeset
   227
        private boolean isSubClass(Type t, final List<Type> ts) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   228
            t = t.baseType();
06bc494ca11e Initial load
duke
parents:
diff changeset
   229
            if (t.tag == TYPEVAR) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   230
                List<Type> bounds = types.getBounds((TypeVar)t);
06bc494ca11e Initial load
duke
parents:
diff changeset
   231
                for (Type s : ts) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   232
                    if (!types.isSameType(t, s.baseType())) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   233
                        for (Type bound : bounds) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   234
                            if (!isSubClass(bound, List.of(s.baseType())))
06bc494ca11e Initial load
duke
parents:
diff changeset
   235
                                return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   236
                        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   237
                    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   238
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   239
            } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   240
                for (Type s : ts) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   241
                    if (!t.tsym.isSubClass(s.baseType().tsym, types))
06bc494ca11e Initial load
duke
parents:
diff changeset
   242
                        return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   243
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   244
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   245
            return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   246
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   247
8044
7fd529d4472c 6943278: spurious error message for inference and type-variable with erroneous bound
mcimadamore
parents: 8036
diff changeset
   248
    private Filter<Type> errorFilter = new Filter<Type>() {
7fd529d4472c 6943278: spurious error message for inference and type-variable with erroneous bound
mcimadamore
parents: 8036
diff changeset
   249
        @Override
7fd529d4472c 6943278: spurious error message for inference and type-variable with erroneous bound
mcimadamore
parents: 8036
diff changeset
   250
        public boolean accepts(Type t) {
7fd529d4472c 6943278: spurious error message for inference and type-variable with erroneous bound
mcimadamore
parents: 8036
diff changeset
   251
            return !t.isErroneous();
7fd529d4472c 6943278: spurious error message for inference and type-variable with erroneous bound
mcimadamore
parents: 8036
diff changeset
   252
        }
7fd529d4472c 6943278: spurious error message for inference and type-variable with erroneous bound
mcimadamore
parents: 8036
diff changeset
   253
    };
7fd529d4472c 6943278: spurious error message for inference and type-variable with erroneous bound
mcimadamore
parents: 8036
diff changeset
   254
1257
873b053bf757 6557752: Original type of an AST should be made available even if it is replaced with an ErrorType
jjg
parents: 1206
diff changeset
   255
    /** Instantiate undetermined type variable to the lub of all its lower bounds.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   256
     *  Throw a NoInstanceException if this not possible.
06bc494ca11e Initial load
duke
parents:
diff changeset
   257
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   258
    void minimizeInst(UndetVar that, Warner warn) throws NoInstanceException {
8044
7fd529d4472c 6943278: spurious error message for inference and type-variable with erroneous bound
mcimadamore
parents: 8036
diff changeset
   259
        List<Type> lobounds = Type.filter(that.lobounds, errorFilter);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   260
        if (that.inst == null) {
8044
7fd529d4472c 6943278: spurious error message for inference and type-variable with erroneous bound
mcimadamore
parents: 8036
diff changeset
   261
            if (lobounds.isEmpty())
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   262
                that.inst = syms.botType;
8044
7fd529d4472c 6943278: spurious error message for inference and type-variable with erroneous bound
mcimadamore
parents: 8036
diff changeset
   263
            else if (lobounds.tail.isEmpty())
7fd529d4472c 6943278: spurious error message for inference and type-variable with erroneous bound
mcimadamore
parents: 8036
diff changeset
   264
                that.inst = lobounds.head.isPrimitive() ? syms.errType : lobounds.head;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   265
            else {
8044
7fd529d4472c 6943278: spurious error message for inference and type-variable with erroneous bound
mcimadamore
parents: 8036
diff changeset
   266
                that.inst = types.lub(lobounds);
162
6620f2a8e265 6611449: Internal Error thrown during generic method/constructor invocation
mcimadamore
parents: 10
diff changeset
   267
            }
1257
873b053bf757 6557752: Original type of an AST should be made available even if it is replaced with an ErrorType
jjg
parents: 1206
diff changeset
   268
            if (that.inst == null || that.inst.tag == ERROR)
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   269
                    throw ambiguousNoInstanceException
06bc494ca11e Initial load
duke
parents:
diff changeset
   270
                        .setMessage("no.unique.minimal.instance.exists",
8044
7fd529d4472c 6943278: spurious error message for inference and type-variable with erroneous bound
mcimadamore
parents: 8036
diff changeset
   271
                                    that.qtype, lobounds);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   272
            // VGJ: sort of inlined maximizeInst() below.  Adding
06bc494ca11e Initial load
duke
parents:
diff changeset
   273
            // bounds can cause lobounds that are above hibounds.
8044
7fd529d4472c 6943278: spurious error message for inference and type-variable with erroneous bound
mcimadamore
parents: 8036
diff changeset
   274
            List<Type> hibounds = Type.filter(that.hibounds, errorFilter);
10628
dca7012223bc 7086601: Error message bug: cause for method mismatch is 'null'
mcimadamore
parents: 9720
diff changeset
   275
            Type hb = null;
8044
7fd529d4472c 6943278: spurious error message for inference and type-variable with erroneous bound
mcimadamore
parents: 8036
diff changeset
   276
            if (hibounds.isEmpty())
10628
dca7012223bc 7086601: Error message bug: cause for method mismatch is 'null'
mcimadamore
parents: 9720
diff changeset
   277
                hb = syms.objectType;
dca7012223bc 7086601: Error message bug: cause for method mismatch is 'null'
mcimadamore
parents: 9720
diff changeset
   278
            else if (hibounds.tail.isEmpty())
8044
7fd529d4472c 6943278: spurious error message for inference and type-variable with erroneous bound
mcimadamore
parents: 8036
diff changeset
   279
                hb = hibounds.head;
10628
dca7012223bc 7086601: Error message bug: cause for method mismatch is 'null'
mcimadamore
parents: 9720
diff changeset
   280
            else
dca7012223bc 7086601: Error message bug: cause for method mismatch is 'null'
mcimadamore
parents: 9720
diff changeset
   281
                hb = types.glb(hibounds);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   282
            if (hb == null ||
10628
dca7012223bc 7086601: Error message bug: cause for method mismatch is 'null'
mcimadamore
parents: 9720
diff changeset
   283
                hb.isErroneous())
dca7012223bc 7086601: Error message bug: cause for method mismatch is 'null'
mcimadamore
parents: 9720
diff changeset
   284
                throw ambiguousNoInstanceException
dca7012223bc 7086601: Error message bug: cause for method mismatch is 'null'
mcimadamore
parents: 9720
diff changeset
   285
                        .setMessage("incompatible.upper.bounds",
dca7012223bc 7086601: Error message bug: cause for method mismatch is 'null'
mcimadamore
parents: 9720
diff changeset
   286
                                    that.qtype, hibounds);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   287
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   288
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   289
06bc494ca11e Initial load
duke
parents:
diff changeset
   290
/***************************************************************************
06bc494ca11e Initial load
duke
parents:
diff changeset
   291
 * Exported Methods
06bc494ca11e Initial load
duke
parents:
diff changeset
   292
 ***************************************************************************/
06bc494ca11e Initial load
duke
parents:
diff changeset
   293
06bc494ca11e Initial load
duke
parents:
diff changeset
   294
    /** Try to instantiate expression type `that' to given type `to'.
06bc494ca11e Initial load
duke
parents:
diff changeset
   295
     *  If a maximal instantiation exists which makes this type
06bc494ca11e Initial load
duke
parents:
diff changeset
   296
     *  a subtype of type `to', return the instantiated type.
06bc494ca11e Initial load
duke
parents:
diff changeset
   297
     *  If no instantiation exists, or if several incomparable
06bc494ca11e Initial load
duke
parents:
diff changeset
   298
     *  best instantiations exist throw a NoInstanceException.
06bc494ca11e Initial load
duke
parents:
diff changeset
   299
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   300
    public Type instantiateExpr(ForAll that,
06bc494ca11e Initial load
duke
parents:
diff changeset
   301
                                Type to,
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   302
                                Warner warn) throws InferenceException {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   303
        List<Type> undetvars = Type.map(that.tvars, fromTypeVarFun);
06bc494ca11e Initial load
duke
parents:
diff changeset
   304
        for (List<Type> l = undetvars; l.nonEmpty(); l = l.tail) {
3778
38a70273507b 6650759: Inference of formal type parameter (unused in formal parameters) is not performed
mcimadamore
parents: 3140
diff changeset
   305
            UndetVar uv = (UndetVar) l.head;
38a70273507b 6650759: Inference of formal type parameter (unused in formal parameters) is not performed
mcimadamore
parents: 3140
diff changeset
   306
            TypeVar tv = (TypeVar)uv.qtype;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   307
            ListBuffer<Type> hibounds = new ListBuffer<Type>();
6154
c1b0c6641b92 6938454: Unable to determine generic type in program that compiles under Java 6
mcimadamore
parents: 5847
diff changeset
   308
            for (Type t : that.getConstraints(tv, ConstraintKind.EXTENDS)) {
6348
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   309
                hibounds.append(types.subst(t, that.tvars, undetvars));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   310
            }
6348
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   311
3778
38a70273507b 6650759: Inference of formal type parameter (unused in formal parameters) is not performed
mcimadamore
parents: 3140
diff changeset
   312
            List<Type> inst = that.getConstraints(tv, ConstraintKind.EQUAL);
38a70273507b 6650759: Inference of formal type parameter (unused in formal parameters) is not performed
mcimadamore
parents: 3140
diff changeset
   313
            if (inst.nonEmpty() && inst.head.tag != BOT) {
38a70273507b 6650759: Inference of formal type parameter (unused in formal parameters) is not performed
mcimadamore
parents: 3140
diff changeset
   314
                uv.inst = inst.head;
38a70273507b 6650759: Inference of formal type parameter (unused in formal parameters) is not performed
mcimadamore
parents: 3140
diff changeset
   315
            }
38a70273507b 6650759: Inference of formal type parameter (unused in formal parameters) is not performed
mcimadamore
parents: 3140
diff changeset
   316
            uv.hibounds = hibounds.toList();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   317
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   318
        Type qtype1 = types.subst(that.qtype, that.tvars, undetvars);
7331
02ffc087c654 6995200: JDK 7 compiler crashes when type-variable is inferred from expected primitive type
mcimadamore
parents: 6934
diff changeset
   319
        if (!types.isSubtype(qtype1,
02ffc087c654 6995200: JDK 7 compiler crashes when type-variable is inferred from expected primitive type
mcimadamore
parents: 6934
diff changeset
   320
                qtype1.tag == UNDETVAR ? types.boxedTypeOrType(to) : to)) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   321
            throw unambiguousNoInstanceException
6710
b14e6fe7b290 5088624: cannot find symbol message should be more intelligent
mcimadamore
parents: 6592
diff changeset
   322
                .setMessage("infer.no.conforming.instance.exists",
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   323
                            that.tvars, that.qtype, to);
06bc494ca11e Initial load
duke
parents:
diff changeset
   324
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   325
        for (List<Type> l = undetvars; l.nonEmpty(); l = l.tail)
06bc494ca11e Initial load
duke
parents:
diff changeset
   326
            maximizeInst((UndetVar) l.head, warn);
06bc494ca11e Initial load
duke
parents:
diff changeset
   327
        // System.out.println(" = " + qtype1.map(getInstFun));//DEBUG
06bc494ca11e Initial load
duke
parents:
diff changeset
   328
06bc494ca11e Initial load
duke
parents:
diff changeset
   329
        // check bounds
06bc494ca11e Initial load
duke
parents:
diff changeset
   330
        List<Type> targs = Type.map(undetvars, getInstFun);
6348
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   331
        if (Type.containsAny(targs, that.tvars)) {
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   332
            //replace uninferred type-vars
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   333
            targs = types.subst(targs,
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   334
                    that.tvars,
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   335
                    instaniateAsUninferredVars(undetvars, that.tvars));
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   336
        }
3778
38a70273507b 6650759: Inference of formal type parameter (unused in formal parameters) is not performed
mcimadamore
parents: 3140
diff changeset
   337
        return chk.checkType(warn.pos(), that.inst(targs, types), to);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   338
    }
6348
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   339
    //where
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   340
    private List<Type> instaniateAsUninferredVars(List<Type> undetvars, List<Type> tvars) {
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   341
        ListBuffer<Type> new_targs = ListBuffer.lb();
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   342
        //step 1 - create syntethic captured vars
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   343
        for (Type t : undetvars) {
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   344
            UndetVar uv = (UndetVar)t;
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   345
            Type newArg = new CapturedType(t.tsym.name, t.tsym, uv.inst, syms.botType, null);
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   346
            new_targs = new_targs.append(newArg);
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   347
        }
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   348
        //step 2 - replace synthetic vars in their bounds
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   349
        for (Type t : new_targs.toList()) {
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   350
            CapturedType ct = (CapturedType)t;
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   351
            ct.bound = types.subst(ct.bound, tvars, new_targs.toList());
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   352
            WildcardType wt = new WildcardType(ct.bound, BoundKind.EXTENDS, syms.boundClass);
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   353
            ct.wildcard = wt;
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   354
        }
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   355
        return new_targs.toList();
6c9b14d4a438 6369605: Unconstrained type variables fails to include bounds
mcimadamore
parents: 6154
diff changeset
   356
    }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   357
06bc494ca11e Initial load
duke
parents:
diff changeset
   358
    /** Instantiate method type `mt' by finding instantiations of
06bc494ca11e Initial load
duke
parents:
diff changeset
   359
     *  `tvars' so that method can be applied to `argtypes'.
06bc494ca11e Initial load
duke
parents:
diff changeset
   360
     */
5489
e7af65bf7577 6730476: invalid "unchecked generic array" warning
mcimadamore
parents: 3778
diff changeset
   361
    public Type instantiateMethod(final Env<AttrContext> env,
e7af65bf7577 6730476: invalid "unchecked generic array" warning
mcimadamore
parents: 3778
diff changeset
   362
                                  List<Type> tvars,
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   363
                                  MethodType mt,
5846
6df0e6bcb388 6945418: Project Coin: Simplified Varargs Method Invocation
mcimadamore
parents: 5520
diff changeset
   364
                                  final Symbol msym,
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   365
                                  final List<Type> argtypes,
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   366
                                  final boolean allowBoxing,
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   367
                                  final boolean useVarargs,
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   368
                                  final Warner warn) throws InferenceException {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   369
        //-System.err.println("instantiateMethod(" + tvars + ", " + mt + ", " + argtypes + ")"); //DEBUG
06bc494ca11e Initial load
duke
parents:
diff changeset
   370
        List<Type> undetvars = Type.map(tvars, fromTypeVarFun);
06bc494ca11e Initial load
duke
parents:
diff changeset
   371
        List<Type> formals = mt.argtypes;
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   372
        //need to capture exactly once - otherwise subsequent
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   373
        //applicability checks might fail
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   374
        final List<Type> capturedArgs = types.capture(argtypes);
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   375
        List<Type> actuals = capturedArgs;
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   376
        List<Type> actualsNoCapture = argtypes;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   377
        // instantiate all polymorphic argument types and
06bc494ca11e Initial load
duke
parents:
diff changeset
   378
        // set up lower bounds constraints for undetvars
06bc494ca11e Initial load
duke
parents:
diff changeset
   379
        Type varargsFormal = useVarargs ? formals.last() : null;
6710
b14e6fe7b290 5088624: cannot find symbol message should be more intelligent
mcimadamore
parents: 6592
diff changeset
   380
        if (varargsFormal == null &&
b14e6fe7b290 5088624: cannot find symbol message should be more intelligent
mcimadamore
parents: 6592
diff changeset
   381
                actuals.size() != formals.size()) {
b14e6fe7b290 5088624: cannot find symbol message should be more intelligent
mcimadamore
parents: 6592
diff changeset
   382
            throw unambiguousNoInstanceException
b14e6fe7b290 5088624: cannot find symbol message should be more intelligent
mcimadamore
parents: 6592
diff changeset
   383
                .setMessage("infer.arg.length.mismatch");
b14e6fe7b290 5088624: cannot find symbol message should be more intelligent
mcimadamore
parents: 6592
diff changeset
   384
        }
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   385
        while (actuals.nonEmpty() && formals.head != varargsFormal) {
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   386
            Type formal = formals.head;
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   387
            Type actual = actuals.head.baseType();
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   388
            Type actualNoCapture = actualsNoCapture.head.baseType();
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   389
            if (actual.tag == FORALL)
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   390
                actual = instantiateArg((ForAll)actual, formal, tvars, warn);
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   391
            Type undetFormal = types.subst(formal, tvars, undetvars);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   392
            boolean works = allowBoxing
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   393
                ? types.isConvertible(actual, undetFormal, warn)
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   394
                : types.isSubtypeUnchecked(actual, undetFormal, warn);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   395
            if (!works) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   396
                throw unambiguousNoInstanceException
6710
b14e6fe7b290 5088624: cannot find symbol message should be more intelligent
mcimadamore
parents: 6592
diff changeset
   397
                    .setMessage("infer.no.conforming.assignment.exists",
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   398
                                tvars, actualNoCapture, formal);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   399
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   400
            formals = formals.tail;
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   401
            actuals = actuals.tail;
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   402
            actualsNoCapture = actualsNoCapture.tail;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   403
        }
6710
b14e6fe7b290 5088624: cannot find symbol message should be more intelligent
mcimadamore
parents: 6592
diff changeset
   404
b14e6fe7b290 5088624: cannot find symbol message should be more intelligent
mcimadamore
parents: 6592
diff changeset
   405
        if (formals.head != varargsFormal) // not enough args
b14e6fe7b290 5088624: cannot find symbol message should be more intelligent
mcimadamore
parents: 6592
diff changeset
   406
            throw unambiguousNoInstanceException.setMessage("infer.arg.length.mismatch");
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   407
06bc494ca11e Initial load
duke
parents:
diff changeset
   408
        // for varargs arguments as well
06bc494ca11e Initial load
duke
parents:
diff changeset
   409
        if (useVarargs) {
9720
bc06a797f393 7042566: Regression: new ambiguity between varargs method
mcimadamore
parents: 8616
diff changeset
   410
            Type elemType = types.elemtype(varargsFormal);
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   411
            Type elemUndet = types.subst(elemType, tvars, undetvars);
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   412
            while (actuals.nonEmpty()) {
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   413
                Type actual = actuals.head.baseType();
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   414
                Type actualNoCapture = actualsNoCapture.head.baseType();
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   415
                if (actual.tag == FORALL)
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   416
                    actual = instantiateArg((ForAll)actual, elemType, tvars, warn);
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   417
                boolean works = types.isConvertible(actual, elemUndet, warn);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   418
                if (!works) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   419
                    throw unambiguousNoInstanceException
6710
b14e6fe7b290 5088624: cannot find symbol message should be more intelligent
mcimadamore
parents: 6592
diff changeset
   420
                        .setMessage("infer.no.conforming.assignment.exists",
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   421
                                    tvars, actualNoCapture, elemType);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   422
                }
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   423
                actuals = actuals.tail;
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   424
                actualsNoCapture = actualsNoCapture.tail;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   425
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   426
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   427
06bc494ca11e Initial load
duke
parents:
diff changeset
   428
        // minimize as yet undetermined type variables
06bc494ca11e Initial load
duke
parents:
diff changeset
   429
        for (Type t : undetvars)
06bc494ca11e Initial load
duke
parents:
diff changeset
   430
            minimizeInst((UndetVar) t, warn);
06bc494ca11e Initial load
duke
parents:
diff changeset
   431
06bc494ca11e Initial load
duke
parents:
diff changeset
   432
        /** Type variables instantiated to bottom */
06bc494ca11e Initial load
duke
parents:
diff changeset
   433
        ListBuffer<Type> restvars = new ListBuffer<Type>();
06bc494ca11e Initial load
duke
parents:
diff changeset
   434
3778
38a70273507b 6650759: Inference of formal type parameter (unused in formal parameters) is not performed
mcimadamore
parents: 3140
diff changeset
   435
        /** Undet vars instantiated to bottom */
38a70273507b 6650759: Inference of formal type parameter (unused in formal parameters) is not performed
mcimadamore
parents: 3140
diff changeset
   436
        final ListBuffer<Type> restundet = new ListBuffer<Type>();
38a70273507b 6650759: Inference of formal type parameter (unused in formal parameters) is not performed
mcimadamore
parents: 3140
diff changeset
   437
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   438
        /** Instantiated types or TypeVars if under-constrained */
06bc494ca11e Initial load
duke
parents:
diff changeset
   439
        ListBuffer<Type> insttypes = new ListBuffer<Type>();
06bc494ca11e Initial load
duke
parents:
diff changeset
   440
06bc494ca11e Initial load
duke
parents:
diff changeset
   441
        /** Instantiated types or UndetVars if under-constrained */
06bc494ca11e Initial load
duke
parents:
diff changeset
   442
        ListBuffer<Type> undettypes = new ListBuffer<Type>();
06bc494ca11e Initial load
duke
parents:
diff changeset
   443
06bc494ca11e Initial load
duke
parents:
diff changeset
   444
        for (Type t : undetvars) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   445
            UndetVar uv = (UndetVar)t;
06bc494ca11e Initial load
duke
parents:
diff changeset
   446
            if (uv.inst.tag == BOT) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   447
                restvars.append(uv.qtype);
3778
38a70273507b 6650759: Inference of formal type parameter (unused in formal parameters) is not performed
mcimadamore
parents: 3140
diff changeset
   448
                restundet.append(uv);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   449
                insttypes.append(uv.qtype);
06bc494ca11e Initial load
duke
parents:
diff changeset
   450
                undettypes.append(uv);
06bc494ca11e Initial load
duke
parents:
diff changeset
   451
                uv.inst = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   452
            } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   453
                insttypes.append(uv.inst);
06bc494ca11e Initial load
duke
parents:
diff changeset
   454
                undettypes.append(uv.inst);
06bc494ca11e Initial load
duke
parents:
diff changeset
   455
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   456
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   457
        checkWithinBounds(tvars, undettypes.toList(), warn);
06bc494ca11e Initial load
duke
parents:
diff changeset
   458
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   459
        mt = (MethodType)types.subst(mt, tvars, insttypes.toList());
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   460
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   461
        if (!restvars.isEmpty()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   462
            // if there are uninstantiated variables,
06bc494ca11e Initial load
duke
parents:
diff changeset
   463
            // quantify result type with them
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   464
            final List<Type> inferredTypes = insttypes.toList();
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   465
            final List<Type> all_tvars = tvars; //this is the wrong tvars
10816
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10628
diff changeset
   466
            return new UninferredMethodType(env.tree.pos(), msym, mt, restvars.toList()) {
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   467
                @Override
8616
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   468
                List<Type> getConstraints(TypeVar tv, ConstraintKind ck) {
3778
38a70273507b 6650759: Inference of formal type parameter (unused in formal parameters) is not performed
mcimadamore
parents: 3140
diff changeset
   469
                    for (Type t : restundet.toList()) {
38a70273507b 6650759: Inference of formal type parameter (unused in formal parameters) is not performed
mcimadamore
parents: 3140
diff changeset
   470
                        UndetVar uv = (UndetVar)t;
38a70273507b 6650759: Inference of formal type parameter (unused in formal parameters) is not performed
mcimadamore
parents: 3140
diff changeset
   471
                        if (uv.qtype == tv) {
38a70273507b 6650759: Inference of formal type parameter (unused in formal parameters) is not performed
mcimadamore
parents: 3140
diff changeset
   472
                            switch (ck) {
6154
c1b0c6641b92 6938454: Unable to determine generic type in program that compiles under Java 6
mcimadamore
parents: 5847
diff changeset
   473
                                case EXTENDS: return uv.hibounds.appendList(types.subst(types.getBounds(tv), all_tvars, inferredTypes));
3778
38a70273507b 6650759: Inference of formal type parameter (unused in formal parameters) is not performed
mcimadamore
parents: 3140
diff changeset
   474
                                case SUPER: return uv.lobounds;
38a70273507b 6650759: Inference of formal type parameter (unused in formal parameters) is not performed
mcimadamore
parents: 3140
diff changeset
   475
                                case EQUAL: return uv.inst != null ? List.of(uv.inst) : List.<Type>nil();
38a70273507b 6650759: Inference of formal type parameter (unused in formal parameters) is not performed
mcimadamore
parents: 3140
diff changeset
   476
                            }
38a70273507b 6650759: Inference of formal type parameter (unused in formal parameters) is not performed
mcimadamore
parents: 3140
diff changeset
   477
                        }
38a70273507b 6650759: Inference of formal type parameter (unused in formal parameters) is not performed
mcimadamore
parents: 3140
diff changeset
   478
                    }
38a70273507b 6650759: Inference of formal type parameter (unused in formal parameters) is not performed
mcimadamore
parents: 3140
diff changeset
   479
                    return List.nil();
38a70273507b 6650759: Inference of formal type parameter (unused in formal parameters) is not performed
mcimadamore
parents: 3140
diff changeset
   480
                }
38a70273507b 6650759: Inference of formal type parameter (unused in formal parameters) is not performed
mcimadamore
parents: 3140
diff changeset
   481
                @Override
8616
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   482
                void check(List<Type> inferred, Types types) throws NoInstanceException {
8229
39266c1b1b0e 6313164: javac generates code that fails byte code verification for the varargs feature
mcimadamore
parents: 8048
diff changeset
   483
                    // check that actuals conform to inferred formals
8616
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   484
                    checkArgumentsAcceptable(env, capturedArgs, getParameterTypes(), allowBoxing, useVarargs, warn);
3778
38a70273507b 6650759: Inference of formal type parameter (unused in formal parameters) is not performed
mcimadamore
parents: 3140
diff changeset
   485
                    // check that inferred bounds conform to their bounds
38a70273507b 6650759: Inference of formal type parameter (unused in formal parameters) is not performed
mcimadamore
parents: 3140
diff changeset
   486
                    checkWithinBounds(all_tvars,
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   487
                           types.subst(inferredTypes, tvars, inferred), warn);
5489
e7af65bf7577 6730476: invalid "unchecked generic array" warning
mcimadamore
parents: 3778
diff changeset
   488
                    if (useVarargs) {
8616
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   489
                        chk.checkVararg(env.tree.pos(), getParameterTypes(), msym);
5489
e7af65bf7577 6730476: invalid "unchecked generic array" warning
mcimadamore
parents: 3778
diff changeset
   490
                    }
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   491
            }};
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   492
        }
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   493
        else {
8229
39266c1b1b0e 6313164: javac generates code that fails byte code verification for the varargs feature
mcimadamore
parents: 8048
diff changeset
   494
            // check that actuals conform to inferred formals
39266c1b1b0e 6313164: javac generates code that fails byte code verification for the varargs feature
mcimadamore
parents: 8048
diff changeset
   495
            checkArgumentsAcceptable(env, capturedArgs, mt.getParameterTypes(), allowBoxing, useVarargs, warn);
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   496
            // return instantiated version of method type
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   497
            return mt;
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   498
        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   499
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   500
    //where
06bc494ca11e Initial load
duke
parents:
diff changeset
   501
8616
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   502
        /**
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   503
         * A delegated type representing a partially uninferred method type.
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   504
         * The return type of a partially uninferred method type is a ForAll
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   505
         * type - when the return type is instantiated (see Infer.instantiateExpr)
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   506
         * the underlying method type is also updated.
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   507
         */
10816
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10628
diff changeset
   508
        abstract class UninferredMethodType extends DelegatedType {
8616
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   509
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   510
            final List<Type> tvars;
10816
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10628
diff changeset
   511
            final Symbol msym;
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10628
diff changeset
   512
            final DiagnosticPosition pos;
8616
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   513
10816
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10628
diff changeset
   514
            public UninferredMethodType(DiagnosticPosition pos, Symbol msym, MethodType mtype, List<Type> tvars) {
8616
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   515
                super(METHOD, new MethodType(mtype.argtypes, null, mtype.thrown, mtype.tsym));
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   516
                this.tvars = tvars;
10816
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10628
diff changeset
   517
                this.msym = msym;
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10628
diff changeset
   518
                this.pos = pos;
8616
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   519
                asMethodType().restype = new UninferredReturnType(tvars, mtype.restype);
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   520
            }
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   521
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   522
            @Override
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   523
            public MethodType asMethodType() {
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   524
                return qtype.asMethodType();
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   525
            }
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   526
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   527
            @Override
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   528
            public Type map(Mapping f) {
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   529
                return qtype.map(f);
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   530
            }
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   531
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   532
            void instantiateReturnType(Type restype, List<Type> inferred, Types types) throws NoInstanceException {
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   533
                //update method type with newly inferred type-arguments
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   534
                qtype = new MethodType(types.subst(getParameterTypes(), tvars, inferred),
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   535
                                       restype,
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   536
                                       types.subst(UninferredMethodType.this.getThrownTypes(), tvars, inferred),
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   537
                                       UninferredMethodType.this.qtype.tsym);
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   538
                check(inferred, types);
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   539
            }
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   540
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   541
            abstract void check(List<Type> inferred, Types types) throws NoInstanceException;
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   542
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   543
            abstract List<Type> getConstraints(TypeVar tv, ConstraintKind ck);
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   544
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   545
            class UninferredReturnType extends ForAll {
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   546
                public UninferredReturnType(List<Type> tvars, Type restype) {
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   547
                    super(tvars, restype);
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   548
                }
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   549
                @Override
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   550
                public Type inst(List<Type> actuals, Types types) {
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   551
                    Type newRestype = super.inst(actuals, types);
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   552
                    instantiateReturnType(newRestype, actuals, types);
10816
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10628
diff changeset
   553
                    if (rs.verboseResolutionMode.contains(VerboseResolutionMode.DEFERRED_INST)) {
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10628
diff changeset
   554
                        log.note(pos, "deferred.method.inst", msym, UninferredMethodType.this.qtype, newRestype);
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10628
diff changeset
   555
                    }
8616
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   556
                    return newRestype;
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   557
                }
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   558
                @Override
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   559
                public List<Type> getConstraints(TypeVar tv, ConstraintKind ck) {
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   560
                    return UninferredMethodType.this.getConstraints(tv, ck);
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   561
                }
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   562
            }
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   563
        }
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   564
8229
39266c1b1b0e 6313164: javac generates code that fails byte code verification for the varargs feature
mcimadamore
parents: 8048
diff changeset
   565
        private void checkArgumentsAcceptable(Env<AttrContext> env, List<Type> actuals, List<Type> formals,
39266c1b1b0e 6313164: javac generates code that fails byte code verification for the varargs feature
mcimadamore
parents: 8048
diff changeset
   566
                boolean allowBoxing, boolean useVarargs, Warner warn) {
39266c1b1b0e 6313164: javac generates code that fails byte code verification for the varargs feature
mcimadamore
parents: 8048
diff changeset
   567
            try {
39266c1b1b0e 6313164: javac generates code that fails byte code verification for the varargs feature
mcimadamore
parents: 8048
diff changeset
   568
                rs.checkRawArgumentsAcceptable(env, actuals, formals,
39266c1b1b0e 6313164: javac generates code that fails byte code verification for the varargs feature
mcimadamore
parents: 8048
diff changeset
   569
                       allowBoxing, useVarargs, warn);
39266c1b1b0e 6313164: javac generates code that fails byte code verification for the varargs feature
mcimadamore
parents: 8048
diff changeset
   570
            }
39266c1b1b0e 6313164: javac generates code that fails byte code verification for the varargs feature
mcimadamore
parents: 8048
diff changeset
   571
            catch (Resolve.InapplicableMethodException ex) {
39266c1b1b0e 6313164: javac generates code that fails byte code verification for the varargs feature
mcimadamore
parents: 8048
diff changeset
   572
                // inferred method is not applicable
39266c1b1b0e 6313164: javac generates code that fails byte code verification for the varargs feature
mcimadamore
parents: 8048
diff changeset
   573
                throw invalidInstanceException.setMessage(ex.getDiagnostic());
39266c1b1b0e 6313164: javac generates code that fails byte code verification for the varargs feature
mcimadamore
parents: 8048
diff changeset
   574
            }
39266c1b1b0e 6313164: javac generates code that fails byte code verification for the varargs feature
mcimadamore
parents: 8048
diff changeset
   575
        }
39266c1b1b0e 6313164: javac generates code that fails byte code verification for the varargs feature
mcimadamore
parents: 8048
diff changeset
   576
8616
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   577
    /** Try to instantiate argument type `that' to given type `to'.
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   578
     *  If this fails, try to insantiate `that' to `to' where
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   579
     *  every occurrence of a type variable in `tvars' is replaced
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   580
     *  by an unknown type.
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   581
     */
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   582
    private Type instantiateArg(ForAll that,
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   583
                                Type to,
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   584
                                List<Type> tvars,
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   585
                                Warner warn) throws InferenceException {
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   586
        List<Type> targs;
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   587
        try {
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   588
            return instantiateExpr(that, to, warn);
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   589
        } catch (NoInstanceException ex) {
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   590
            Type to1 = to;
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   591
            for (List<Type> l = tvars; l.nonEmpty(); l = l.tail)
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   592
                to1 = types.subst(to1, List.of(l.head), List.of(syms.unknownType));
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   593
            return instantiateExpr(that, to1, warn);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   594
        }
8616
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   595
    }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   596
06bc494ca11e Initial load
duke
parents:
diff changeset
   597
    /** check that type parameters are within their bounds.
06bc494ca11e Initial load
duke
parents:
diff changeset
   598
     */
6154
c1b0c6641b92 6938454: Unable to determine generic type in program that compiles under Java 6
mcimadamore
parents: 5847
diff changeset
   599
    void checkWithinBounds(List<Type> tvars,
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   600
                                   List<Type> arguments,
06bc494ca11e Initial load
duke
parents:
diff changeset
   601
                                   Warner warn)
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   602
        throws InvalidInstanceException {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   603
        for (List<Type> tvs = tvars, args = arguments;
06bc494ca11e Initial load
duke
parents:
diff changeset
   604
             tvs.nonEmpty();
06bc494ca11e Initial load
duke
parents:
diff changeset
   605
             tvs = tvs.tail, args = args.tail) {
8044
7fd529d4472c 6943278: spurious error message for inference and type-variable with erroneous bound
mcimadamore
parents: 8036
diff changeset
   606
            if (args.head instanceof UndetVar ||
7fd529d4472c 6943278: spurious error message for inference and type-variable with erroneous bound
mcimadamore
parents: 8036
diff changeset
   607
                    tvars.head.getUpperBound().isErroneous()) continue;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   608
            List<Type> bounds = types.subst(types.getBounds((TypeVar)tvs.head), tvars, arguments);
06bc494ca11e Initial load
duke
parents:
diff changeset
   609
            if (!types.isSubtypeUnchecked(args.head, bounds, warn))
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   610
                throw invalidInstanceException
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   611
                    .setMessage("inferred.do.not.conform.to.bounds",
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   612
                                args.head, bounds);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   613
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   614
    }
6592
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 6348
diff changeset
   615
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 6348
diff changeset
   616
    /**
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 6348
diff changeset
   617
     * Compute a synthetic method type corresponding to the requested polymorphic
8036
17b976649c61 6992698: JSR 292: remove support for transient syntax in polymorphic signature calls
mcimadamore
parents: 7681
diff changeset
   618
     * method signature. The target return type is computed from the immediately
17b976649c61 6992698: JSR 292: remove support for transient syntax in polymorphic signature calls
mcimadamore
parents: 7681
diff changeset
   619
     * enclosing scope surrounding the polymorphic-signature call.
6592
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 6348
diff changeset
   620
     */
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 6348
diff changeset
   621
    Type instantiatePolymorphicSignatureInstance(Env<AttrContext> env, Type site,
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 6348
diff changeset
   622
                                            Name name,
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 6348
diff changeset
   623
                                            MethodSymbol spMethod,  // sig. poly. method or null if none
8036
17b976649c61 6992698: JSR 292: remove support for transient syntax in polymorphic signature calls
mcimadamore
parents: 7681
diff changeset
   624
                                            List<Type> argtypes) {
6592
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 6348
diff changeset
   625
        final Type restype;
8036
17b976649c61 6992698: JSR 292: remove support for transient syntax in polymorphic signature calls
mcimadamore
parents: 7681
diff changeset
   626
17b976649c61 6992698: JSR 292: remove support for transient syntax in polymorphic signature calls
mcimadamore
parents: 7681
diff changeset
   627
        //The return type for a polymorphic signature call is computed from
17b976649c61 6992698: JSR 292: remove support for transient syntax in polymorphic signature calls
mcimadamore
parents: 7681
diff changeset
   628
        //the enclosing tree E, as follows: if E is a cast, then use the
17b976649c61 6992698: JSR 292: remove support for transient syntax in polymorphic signature calls
mcimadamore
parents: 7681
diff changeset
   629
        //target type of the cast expression as a return type; if E is an
17b976649c61 6992698: JSR 292: remove support for transient syntax in polymorphic signature calls
mcimadamore
parents: 7681
diff changeset
   630
        //expression statement, the return type is 'void' - otherwise the
17b976649c61 6992698: JSR 292: remove support for transient syntax in polymorphic signature calls
mcimadamore
parents: 7681
diff changeset
   631
        //return type is simply 'Object'. A correctness check ensures that
17b976649c61 6992698: JSR 292: remove support for transient syntax in polymorphic signature calls
mcimadamore
parents: 7681
diff changeset
   632
        //env.next refers to the lexically enclosing environment in which
17b976649c61 6992698: JSR 292: remove support for transient syntax in polymorphic signature calls
mcimadamore
parents: 7681
diff changeset
   633
        //the polymorphic signature call environment is nested.
6934
258e5f06880f 6991980: polymorphic signature calls don't share the same CP entries
mcimadamore
parents: 6710
diff changeset
   634
8036
17b976649c61 6992698: JSR 292: remove support for transient syntax in polymorphic signature calls
mcimadamore
parents: 7681
diff changeset
   635
        switch (env.next.tree.getTag()) {
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 10816
diff changeset
   636
            case TYPECAST:
8036
17b976649c61 6992698: JSR 292: remove support for transient syntax in polymorphic signature calls
mcimadamore
parents: 7681
diff changeset
   637
                JCTypeCast castTree = (JCTypeCast)env.next.tree;
17b976649c61 6992698: JSR 292: remove support for transient syntax in polymorphic signature calls
mcimadamore
parents: 7681
diff changeset
   638
                restype = (TreeInfo.skipParens(castTree.expr) == env.tree) ?
17b976649c61 6992698: JSR 292: remove support for transient syntax in polymorphic signature calls
mcimadamore
parents: 7681
diff changeset
   639
                    castTree.clazz.type :
17b976649c61 6992698: JSR 292: remove support for transient syntax in polymorphic signature calls
mcimadamore
parents: 7681
diff changeset
   640
                    syms.objectType;
17b976649c61 6992698: JSR 292: remove support for transient syntax in polymorphic signature calls
mcimadamore
parents: 7681
diff changeset
   641
                break;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 10816
diff changeset
   642
            case EXEC:
8036
17b976649c61 6992698: JSR 292: remove support for transient syntax in polymorphic signature calls
mcimadamore
parents: 7681
diff changeset
   643
                JCTree.JCExpressionStatement execTree =
17b976649c61 6992698: JSR 292: remove support for transient syntax in polymorphic signature calls
mcimadamore
parents: 7681
diff changeset
   644
                        (JCTree.JCExpressionStatement)env.next.tree;
17b976649c61 6992698: JSR 292: remove support for transient syntax in polymorphic signature calls
mcimadamore
parents: 7681
diff changeset
   645
                restype = (TreeInfo.skipParens(execTree.expr) == env.tree) ?
17b976649c61 6992698: JSR 292: remove support for transient syntax in polymorphic signature calls
mcimadamore
parents: 7681
diff changeset
   646
                    syms.voidType :
17b976649c61 6992698: JSR 292: remove support for transient syntax in polymorphic signature calls
mcimadamore
parents: 7681
diff changeset
   647
                    syms.objectType;
17b976649c61 6992698: JSR 292: remove support for transient syntax in polymorphic signature calls
mcimadamore
parents: 7681
diff changeset
   648
                break;
17b976649c61 6992698: JSR 292: remove support for transient syntax in polymorphic signature calls
mcimadamore
parents: 7681
diff changeset
   649
            default:
17b976649c61 6992698: JSR 292: remove support for transient syntax in polymorphic signature calls
mcimadamore
parents: 7681
diff changeset
   650
                restype = syms.objectType;
6592
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 6348
diff changeset
   651
        }
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 6348
diff changeset
   652
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 6348
diff changeset
   653
        List<Type> paramtypes = Type.map(argtypes, implicitArgType);
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 6348
diff changeset
   654
        List<Type> exType = spMethod != null ?
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 6348
diff changeset
   655
            spMethod.getThrownTypes() :
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 6348
diff changeset
   656
            List.of(syms.throwableType); // make it throw all exceptions
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 6348
diff changeset
   657
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 6348
diff changeset
   658
        MethodType mtype = new MethodType(paramtypes,
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 6348
diff changeset
   659
                                          restype,
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 6348
diff changeset
   660
                                          exType,
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 6348
diff changeset
   661
                                          syms.methodClass);
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 6348
diff changeset
   662
        return mtype;
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 6348
diff changeset
   663
    }
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 6348
diff changeset
   664
    //where
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 6348
diff changeset
   665
        Mapping implicitArgType = new Mapping ("implicitArgType") {
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 6348
diff changeset
   666
                public Type apply(Type t) {
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 6348
diff changeset
   667
                    t = types.erasure(t);
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 6348
diff changeset
   668
                    if (t.tag == BOT)
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 6348
diff changeset
   669
                        // nulls type as the marker type Null (which has no instances)
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 6348
diff changeset
   670
                        // infer as java.lang.Void for now
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 6348
diff changeset
   671
                        t = types.boxedClass(syms.voidType).type;
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 6348
diff changeset
   672
                    return t;
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 6348
diff changeset
   673
                }
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 6348
diff changeset
   674
        };
8616
5a47f5535883 7015430: Incorrect thrown type determined for unchecked invocations
mcimadamore
parents: 8229
diff changeset
   675
    }