langtools/src/share/classes/com/sun/tools/javac/comp/Infer.java
author mcimadamore
Tue, 16 Jun 2009 10:46:37 +0100
changeset 3140 15a274b13051
parent 3139 01d76d311f8e
child 3778 38a70273507b
permissions -rw-r--r--
6638712: Inference with wildcard types causes selection of inapplicable method Summary: Added global sanity check in order to make sure that return type inference does not violate bounds constraints Reviewed-by: jjg
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
2212
1d3dc0e0ba0c 6814575: Update copyright year
xdono
parents: 1991
diff changeset
     2
 * Copyright 1999-2009 Sun Microsystems, Inc.  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
06bc494ca11e Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Sun designates this
06bc494ca11e Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
06bc494ca11e Initial load
duke
parents:
diff changeset
     9
 * by Sun in the LICENSE file that accompanied this code.
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
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    21
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
06bc494ca11e Initial load
duke
parents:
diff changeset
    22
 * CA 95054 USA or visit www.sun.com if you need additional information or
06bc494ca11e Initial load
duke
parents:
diff changeset
    23
 * have any questions.
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
06bc494ca11e Initial load
duke
parents:
diff changeset
    28
import com.sun.tools.javac.util.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    29
import com.sun.tools.javac.util.List;
06bc494ca11e Initial load
duke
parents:
diff changeset
    30
import com.sun.tools.javac.code.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    31
import com.sun.tools.javac.code.Type.*;
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
    32
import com.sun.tools.javac.code.Symbol.*;
1040
c0f5acfd9d15 6730423: Diagnostic formatter should be an instance field of JCDiagnostic
mcimadamore
parents: 735
diff changeset
    33
import com.sun.tools.javac.util.JCDiagnostic;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    34
06bc494ca11e Initial load
duke
parents:
diff changeset
    35
import static com.sun.tools.javac.code.TypeTags.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    36
06bc494ca11e Initial load
duke
parents:
diff changeset
    37
/** Helper class for type parameter inference, used by the attribution phase.
06bc494ca11e Initial load
duke
parents:
diff changeset
    38
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    39
 *  <p><b>This is NOT part of any API supported by Sun Microsystems.  If
06bc494ca11e Initial load
duke
parents:
diff changeset
    40
 *  you write code that depends on this, you do so at your own risk.
06bc494ca11e Initial load
duke
parents:
diff changeset
    41
 *  This code and its internal interfaces are subject to change or
06bc494ca11e Initial load
duke
parents:
diff changeset
    42
 *  deletion without notice.</b>
06bc494ca11e Initial load
duke
parents:
diff changeset
    43
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    44
public class Infer {
06bc494ca11e Initial load
duke
parents:
diff changeset
    45
    protected static final Context.Key<Infer> inferKey =
06bc494ca11e Initial load
duke
parents:
diff changeset
    46
        new Context.Key<Infer>();
06bc494ca11e Initial load
duke
parents:
diff changeset
    47
06bc494ca11e Initial load
duke
parents:
diff changeset
    48
    /** A value for prototypes that admit any type, including polymorphic ones. */
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
    public static final Type anyPoly = new Type(NONE, null);
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
    Symtab syms;
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
    Types types;
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
    53
    Resolve rs;
1040
c0f5acfd9d15 6730423: Diagnostic formatter should be an instance field of JCDiagnostic
mcimadamore
parents: 735
diff changeset
    54
    JCDiagnostic.Factory diags;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
06bc494ca11e Initial load
duke
parents:
diff changeset
    56
    public static Infer instance(Context context) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    57
        Infer instance = context.get(inferKey);
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
        if (instance == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
            instance = new Infer(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
        return instance;
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
    protected Infer(Context context) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
        context.put(inferKey, this);
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
        syms = Symtab.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
        types = Types.instance(context);
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
    67
        rs = Resolve.instance(context);
1040
c0f5acfd9d15 6730423: Diagnostic formatter should be an instance field of JCDiagnostic
mcimadamore
parents: 735
diff changeset
    68
        diags = JCDiagnostic.Factory.instance(context);
c0f5acfd9d15 6730423: Diagnostic formatter should be an instance field of JCDiagnostic
mcimadamore
parents: 735
diff changeset
    69
        ambiguousNoInstanceException =
c0f5acfd9d15 6730423: Diagnostic formatter should be an instance field of JCDiagnostic
mcimadamore
parents: 735
diff changeset
    70
            new NoInstanceException(true, diags);
c0f5acfd9d15 6730423: Diagnostic formatter should be an instance field of JCDiagnostic
mcimadamore
parents: 735
diff changeset
    71
        unambiguousNoInstanceException =
c0f5acfd9d15 6730423: Diagnostic formatter should be an instance field of JCDiagnostic
mcimadamore
parents: 735
diff changeset
    72
            new NoInstanceException(false, diags);
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
    73
        invalidInstanceException =
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
    74
            new InvalidInstanceException(diags);
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
    75
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
    78
    public static class InferenceException extends RuntimeException {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    79
        private static final long serialVersionUID = 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
    80
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
        JCDiagnostic diagnostic;
1040
c0f5acfd9d15 6730423: Diagnostic formatter should be an instance field of JCDiagnostic
mcimadamore
parents: 735
diff changeset
    82
        JCDiagnostic.Factory diags;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    83
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
    84
        InferenceException(JCDiagnostic.Factory diags) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
            this.diagnostic = null;
1040
c0f5acfd9d15 6730423: Diagnostic formatter should be an instance field of JCDiagnostic
mcimadamore
parents: 735
diff changeset
    86
            this.diags = diags;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    87
        }
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
    88
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
    89
        InferenceException setMessage(String key, Object... args) {
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
    90
            this.diagnostic = diags.fragment(key, args);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
            return this;
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
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
        public JCDiagnostic getDiagnostic() {
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
    95
             return diagnostic;
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
    96
         }
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
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
    99
    public static class NoInstanceException extends InferenceException {
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   100
        private static final long serialVersionUID = 1;
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   101
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   102
        boolean isAmbiguous; // exist several incomparable best instances?
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   103
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   104
        NoInstanceException(boolean isAmbiguous, JCDiagnostic.Factory diags) {
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   105
            super(diags);
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   106
            this.isAmbiguous = isAmbiguous;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   107
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   108
    }
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   109
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   110
    public static class InvalidInstanceException extends InferenceException {
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   111
        private static final long serialVersionUID = 2;
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
        InvalidInstanceException(JCDiagnostic.Factory diags) {
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   114
            super(diags);
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   115
        }
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   116
    }
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   117
1040
c0f5acfd9d15 6730423: Diagnostic formatter should be an instance field of JCDiagnostic
mcimadamore
parents: 735
diff changeset
   118
    private final NoInstanceException ambiguousNoInstanceException;
c0f5acfd9d15 6730423: Diagnostic formatter should be an instance field of JCDiagnostic
mcimadamore
parents: 735
diff changeset
   119
    private final NoInstanceException unambiguousNoInstanceException;
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   120
    private final InvalidInstanceException invalidInstanceException;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   121
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
/***************************************************************************
06bc494ca11e Initial load
duke
parents:
diff changeset
   123
 * Auxiliary type values and classes
06bc494ca11e Initial load
duke
parents:
diff changeset
   124
 ***************************************************************************/
06bc494ca11e Initial load
duke
parents:
diff changeset
   125
06bc494ca11e Initial load
duke
parents:
diff changeset
   126
    /** A mapping that turns type variables into undetermined type variables.
06bc494ca11e Initial load
duke
parents:
diff changeset
   127
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   128
    Mapping fromTypeVarFun = new Mapping("fromTypeVarFun") {
06bc494ca11e Initial load
duke
parents:
diff changeset
   129
            public Type apply(Type t) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   130
                if (t.tag == TYPEVAR) return new UndetVar(t);
06bc494ca11e Initial load
duke
parents:
diff changeset
   131
                else return t.map(this);
06bc494ca11e Initial load
duke
parents:
diff changeset
   132
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   133
        };
06bc494ca11e Initial load
duke
parents:
diff changeset
   134
06bc494ca11e Initial load
duke
parents:
diff changeset
   135
    /** A mapping that returns its type argument with every UndetVar replaced
06bc494ca11e Initial load
duke
parents:
diff changeset
   136
     *  by its `inst' field. Throws a NoInstanceException
06bc494ca11e Initial load
duke
parents:
diff changeset
   137
     *  if this not possible because an `inst' field is null.
06bc494ca11e Initial load
duke
parents:
diff changeset
   138
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   139
    Mapping getInstFun = new Mapping("getInstFun") {
06bc494ca11e Initial load
duke
parents:
diff changeset
   140
            public Type apply(Type t) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   141
                switch (t.tag) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   142
                case UNKNOWN:
06bc494ca11e Initial load
duke
parents:
diff changeset
   143
                    throw ambiguousNoInstanceException
06bc494ca11e Initial load
duke
parents:
diff changeset
   144
                        .setMessage("undetermined.type");
06bc494ca11e Initial load
duke
parents:
diff changeset
   145
                case UNDETVAR:
06bc494ca11e Initial load
duke
parents:
diff changeset
   146
                    UndetVar that = (UndetVar) t;
06bc494ca11e Initial load
duke
parents:
diff changeset
   147
                    if (that.inst == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   148
                        throw ambiguousNoInstanceException
06bc494ca11e Initial load
duke
parents:
diff changeset
   149
                            .setMessage("type.variable.has.undetermined.type",
06bc494ca11e Initial load
duke
parents:
diff changeset
   150
                                        that.qtype);
06bc494ca11e Initial load
duke
parents:
diff changeset
   151
                    return apply(that.inst);
06bc494ca11e Initial load
duke
parents:
diff changeset
   152
                default:
06bc494ca11e Initial load
duke
parents:
diff changeset
   153
                    return t.map(this);
06bc494ca11e Initial load
duke
parents:
diff changeset
   154
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   155
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   156
        };
06bc494ca11e Initial load
duke
parents:
diff changeset
   157
06bc494ca11e Initial load
duke
parents:
diff changeset
   158
/***************************************************************************
06bc494ca11e Initial load
duke
parents:
diff changeset
   159
 * Mini/Maximization of UndetVars
06bc494ca11e Initial load
duke
parents:
diff changeset
   160
 ***************************************************************************/
06bc494ca11e Initial load
duke
parents:
diff changeset
   161
06bc494ca11e Initial load
duke
parents:
diff changeset
   162
    /** Instantiate undetermined type variable to its minimal upper bound.
06bc494ca11e Initial load
duke
parents:
diff changeset
   163
     *  Throw a NoInstanceException if this not possible.
06bc494ca11e Initial load
duke
parents:
diff changeset
   164
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   165
    void maximizeInst(UndetVar that, Warner warn) throws NoInstanceException {
06bc494ca11e Initial load
duke
parents:
diff changeset
   166
        if (that.inst == null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   167
            if (that.hibounds.isEmpty())
06bc494ca11e Initial load
duke
parents:
diff changeset
   168
                that.inst = syms.objectType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   169
            else if (that.hibounds.tail.isEmpty())
06bc494ca11e Initial load
duke
parents:
diff changeset
   170
                that.inst = that.hibounds.head;
1991
aafb4bf914ee 6315770: javac inference allows creation of strange types: Integer & Runnable
mcimadamore
parents: 1257
diff changeset
   171
            else
aafb4bf914ee 6315770: javac inference allows creation of strange types: Integer & Runnable
mcimadamore
parents: 1257
diff changeset
   172
                that.inst = types.glb(that.hibounds);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   173
        }
1991
aafb4bf914ee 6315770: javac inference allows creation of strange types: Integer & Runnable
mcimadamore
parents: 1257
diff changeset
   174
        if (that.inst == null ||
3139
01d76d311f8e 6835428: regression: return-type inference rejects valid code
mcimadamore
parents: 2212
diff changeset
   175
            that.inst.isErroneous())
1991
aafb4bf914ee 6315770: javac inference allows creation of strange types: Integer & Runnable
mcimadamore
parents: 1257
diff changeset
   176
            throw ambiguousNoInstanceException
aafb4bf914ee 6315770: javac inference allows creation of strange types: Integer & Runnable
mcimadamore
parents: 1257
diff changeset
   177
                .setMessage("no.unique.maximal.instance.exists",
aafb4bf914ee 6315770: javac inference allows creation of strange types: Integer & Runnable
mcimadamore
parents: 1257
diff changeset
   178
                            that.qtype, that.hibounds);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   179
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   180
    //where
06bc494ca11e Initial load
duke
parents:
diff changeset
   181
        private boolean isSubClass(Type t, final List<Type> ts) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   182
            t = t.baseType();
06bc494ca11e Initial load
duke
parents:
diff changeset
   183
            if (t.tag == TYPEVAR) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   184
                List<Type> bounds = types.getBounds((TypeVar)t);
06bc494ca11e Initial load
duke
parents:
diff changeset
   185
                for (Type s : ts) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   186
                    if (!types.isSameType(t, s.baseType())) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   187
                        for (Type bound : bounds) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   188
                            if (!isSubClass(bound, List.of(s.baseType())))
06bc494ca11e Initial load
duke
parents:
diff changeset
   189
                                return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   190
                        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   191
                    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   192
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   193
            } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   194
                for (Type s : ts) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   195
                    if (!t.tsym.isSubClass(s.baseType().tsym, types))
06bc494ca11e Initial load
duke
parents:
diff changeset
   196
                        return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   197
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   198
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   199
            return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   200
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   201
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
   202
    /** Instantiate undetermined type variable to the lub of all its lower bounds.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   203
     *  Throw a NoInstanceException if this not possible.
06bc494ca11e Initial load
duke
parents:
diff changeset
   204
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   205
    void minimizeInst(UndetVar that, Warner warn) throws NoInstanceException {
06bc494ca11e Initial load
duke
parents:
diff changeset
   206
        if (that.inst == null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   207
            if (that.lobounds.isEmpty())
06bc494ca11e Initial load
duke
parents:
diff changeset
   208
                that.inst = syms.botType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   209
            else if (that.lobounds.tail.isEmpty())
162
6620f2a8e265 6611449: Internal Error thrown during generic method/constructor invocation
mcimadamore
parents: 10
diff changeset
   210
                that.inst = that.lobounds.head.isPrimitive() ? syms.errType : that.lobounds.head;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   211
            else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   212
                that.inst = types.lub(that.lobounds);
162
6620f2a8e265 6611449: Internal Error thrown during generic method/constructor invocation
mcimadamore
parents: 10
diff changeset
   213
            }
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
   214
            if (that.inst == null || that.inst.tag == ERROR)
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   215
                    throw ambiguousNoInstanceException
06bc494ca11e Initial load
duke
parents:
diff changeset
   216
                        .setMessage("no.unique.minimal.instance.exists",
06bc494ca11e Initial load
duke
parents:
diff changeset
   217
                                    that.qtype, that.lobounds);
06bc494ca11e Initial load
duke
parents:
diff changeset
   218
            // VGJ: sort of inlined maximizeInst() below.  Adding
06bc494ca11e Initial load
duke
parents:
diff changeset
   219
            // bounds can cause lobounds that are above hibounds.
06bc494ca11e Initial load
duke
parents:
diff changeset
   220
            if (that.hibounds.isEmpty())
06bc494ca11e Initial load
duke
parents:
diff changeset
   221
                return;
06bc494ca11e Initial load
duke
parents:
diff changeset
   222
            Type hb = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   223
            if (that.hibounds.tail.isEmpty())
06bc494ca11e Initial load
duke
parents:
diff changeset
   224
                hb = that.hibounds.head;
06bc494ca11e Initial load
duke
parents:
diff changeset
   225
            else for (List<Type> bs = that.hibounds;
06bc494ca11e Initial load
duke
parents:
diff changeset
   226
                      bs.nonEmpty() && hb == null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   227
                      bs = bs.tail) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   228
                if (isSubClass(bs.head, that.hibounds))
06bc494ca11e Initial load
duke
parents:
diff changeset
   229
                    hb = types.fromUnknownFun.apply(bs.head);
06bc494ca11e Initial load
duke
parents:
diff changeset
   230
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   231
            if (hb == null ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   232
                !types.isSubtypeUnchecked(hb, that.hibounds, warn) ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   233
                !types.isSubtypeUnchecked(that.inst, hb, warn))
06bc494ca11e Initial load
duke
parents:
diff changeset
   234
                throw ambiguousNoInstanceException;
06bc494ca11e Initial load
duke
parents:
diff changeset
   235
        }
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
 * Exported Methods
06bc494ca11e Initial load
duke
parents:
diff changeset
   240
 ***************************************************************************/
06bc494ca11e Initial load
duke
parents:
diff changeset
   241
06bc494ca11e Initial load
duke
parents:
diff changeset
   242
    /** Try to instantiate expression type `that' to given type `to'.
06bc494ca11e Initial load
duke
parents:
diff changeset
   243
     *  If a maximal instantiation exists which makes this type
06bc494ca11e Initial load
duke
parents:
diff changeset
   244
     *  a subtype of type `to', return the instantiated type.
06bc494ca11e Initial load
duke
parents:
diff changeset
   245
     *  If no instantiation exists, or if several incomparable
06bc494ca11e Initial load
duke
parents:
diff changeset
   246
     *  best instantiations exist throw a NoInstanceException.
06bc494ca11e Initial load
duke
parents:
diff changeset
   247
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   248
    public Type instantiateExpr(ForAll that,
06bc494ca11e Initial load
duke
parents:
diff changeset
   249
                                Type to,
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   250
                                Warner warn) throws InferenceException {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   251
        List<Type> undetvars = Type.map(that.tvars, fromTypeVarFun);
06bc494ca11e Initial load
duke
parents:
diff changeset
   252
        for (List<Type> l = undetvars; l.nonEmpty(); l = l.tail) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   253
            UndetVar v = (UndetVar) l.head;
06bc494ca11e Initial load
duke
parents:
diff changeset
   254
            ListBuffer<Type> hibounds = new ListBuffer<Type>();
06bc494ca11e Initial load
duke
parents:
diff changeset
   255
            for (List<Type> l1 = types.getBounds((TypeVar) v.qtype); l1.nonEmpty(); l1 = l1.tail) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   256
                if (!l1.head.containsSome(that.tvars)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   257
                    hibounds.append(l1.head);
06bc494ca11e Initial load
duke
parents:
diff changeset
   258
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   259
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   260
            v.hibounds = hibounds.toList();
06bc494ca11e Initial load
duke
parents:
diff changeset
   261
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   262
        Type qtype1 = types.subst(that.qtype, that.tvars, undetvars);
06bc494ca11e Initial load
duke
parents:
diff changeset
   263
        if (!types.isSubtype(qtype1, to)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   264
            throw unambiguousNoInstanceException
06bc494ca11e Initial load
duke
parents:
diff changeset
   265
                .setMessage("no.conforming.instance.exists",
06bc494ca11e Initial load
duke
parents:
diff changeset
   266
                            that.tvars, that.qtype, to);
06bc494ca11e Initial load
duke
parents:
diff changeset
   267
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   268
        for (List<Type> l = undetvars; l.nonEmpty(); l = l.tail)
06bc494ca11e Initial load
duke
parents:
diff changeset
   269
            maximizeInst((UndetVar) l.head, warn);
06bc494ca11e Initial load
duke
parents:
diff changeset
   270
        // System.out.println(" = " + qtype1.map(getInstFun));//DEBUG
06bc494ca11e Initial load
duke
parents:
diff changeset
   271
06bc494ca11e Initial load
duke
parents:
diff changeset
   272
        // check bounds
06bc494ca11e Initial load
duke
parents:
diff changeset
   273
        List<Type> targs = Type.map(undetvars, getInstFun);
06bc494ca11e Initial load
duke
parents:
diff changeset
   274
        targs = types.subst(targs, that.tvars, targs);
06bc494ca11e Initial load
duke
parents:
diff changeset
   275
        checkWithinBounds(that.tvars, targs, warn);
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   276
        return that.inst(targs, types);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   277
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   278
06bc494ca11e Initial load
duke
parents:
diff changeset
   279
    /** Instantiate method type `mt' by finding instantiations of
06bc494ca11e Initial load
duke
parents:
diff changeset
   280
     *  `tvars' so that method can be applied to `argtypes'.
06bc494ca11e Initial load
duke
parents:
diff changeset
   281
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   282
    public Type instantiateMethod(List<Type> tvars,
06bc494ca11e Initial load
duke
parents:
diff changeset
   283
                                  MethodType mt,
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   284
                                  final List<Type> argtypes,
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   285
                                  final boolean allowBoxing,
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   286
                                  final boolean useVarargs,
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   287
                                  final Warner warn) throws InferenceException {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   288
        //-System.err.println("instantiateMethod(" + tvars + ", " + mt + ", " + argtypes + ")"); //DEBUG
06bc494ca11e Initial load
duke
parents:
diff changeset
   289
        List<Type> undetvars = Type.map(tvars, fromTypeVarFun);
06bc494ca11e Initial load
duke
parents:
diff changeset
   290
        List<Type> formals = mt.argtypes;
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   291
        //need to capture exactly once - otherwise subsequent
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   292
        //applicability checks might fail
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   293
        final List<Type> capturedArgs = types.capture(argtypes);
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   294
        List<Type> actuals = capturedArgs;
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   295
        List<Type> actualsNoCapture = argtypes;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   296
        // instantiate all polymorphic argument types and
06bc494ca11e Initial load
duke
parents:
diff changeset
   297
        // set up lower bounds constraints for undetvars
06bc494ca11e Initial load
duke
parents:
diff changeset
   298
        Type varargsFormal = useVarargs ? formals.last() : null;
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   299
        while (actuals.nonEmpty() && formals.head != varargsFormal) {
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   300
            Type formal = formals.head;
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   301
            Type actual = actuals.head.baseType();
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   302
            Type actualNoCapture = actualsNoCapture.head.baseType();
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   303
            if (actual.tag == FORALL)
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   304
                actual = instantiateArg((ForAll)actual, formal, tvars, warn);
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   305
            Type undetFormal = types.subst(formal, tvars, undetvars);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   306
            boolean works = allowBoxing
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   307
                ? types.isConvertible(actual, undetFormal, warn)
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   308
                : types.isSubtypeUnchecked(actual, undetFormal, warn);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   309
            if (!works) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   310
                throw unambiguousNoInstanceException
06bc494ca11e Initial load
duke
parents:
diff changeset
   311
                    .setMessage("no.conforming.assignment.exists",
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   312
                                tvars, actualNoCapture, formal);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   313
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   314
            formals = formals.tail;
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   315
            actuals = actuals.tail;
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   316
            actualsNoCapture = actualsNoCapture.tail;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   317
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   318
        if (formals.head != varargsFormal || // not enough args
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   319
            !useVarargs && actuals.nonEmpty()) { // too many args
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   320
            // argument lists differ in length
06bc494ca11e Initial load
duke
parents:
diff changeset
   321
            throw unambiguousNoInstanceException
06bc494ca11e Initial load
duke
parents:
diff changeset
   322
                .setMessage("arg.length.mismatch");
06bc494ca11e Initial load
duke
parents:
diff changeset
   323
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   324
06bc494ca11e Initial load
duke
parents:
diff changeset
   325
        // for varargs arguments as well
06bc494ca11e Initial load
duke
parents:
diff changeset
   326
        if (useVarargs) {
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   327
            Type elemType = types.elemtype(varargsFormal);
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   328
            Type elemUndet = types.subst(elemType, tvars, undetvars);
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   329
            while (actuals.nonEmpty()) {
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   330
                Type actual = actuals.head.baseType();
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   331
                Type actualNoCapture = actualsNoCapture.head.baseType();
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   332
                if (actual.tag == FORALL)
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   333
                    actual = instantiateArg((ForAll)actual, elemType, tvars, warn);
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   334
                boolean works = types.isConvertible(actual, elemUndet, warn);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   335
                if (!works) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   336
                    throw unambiguousNoInstanceException
06bc494ca11e Initial load
duke
parents:
diff changeset
   337
                        .setMessage("no.conforming.assignment.exists",
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   338
                                    tvars, actualNoCapture, elemType);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   339
                }
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   340
                actuals = actuals.tail;
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   341
                actualsNoCapture = actualsNoCapture.tail;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   342
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   343
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   344
06bc494ca11e Initial load
duke
parents:
diff changeset
   345
        // minimize as yet undetermined type variables
06bc494ca11e Initial load
duke
parents:
diff changeset
   346
        for (Type t : undetvars)
06bc494ca11e Initial load
duke
parents:
diff changeset
   347
            minimizeInst((UndetVar) t, warn);
06bc494ca11e Initial load
duke
parents:
diff changeset
   348
06bc494ca11e Initial load
duke
parents:
diff changeset
   349
        /** Type variables instantiated to bottom */
06bc494ca11e Initial load
duke
parents:
diff changeset
   350
        ListBuffer<Type> restvars = new ListBuffer<Type>();
06bc494ca11e Initial load
duke
parents:
diff changeset
   351
06bc494ca11e Initial load
duke
parents:
diff changeset
   352
        /** Instantiated types or TypeVars if under-constrained */
06bc494ca11e Initial load
duke
parents:
diff changeset
   353
        ListBuffer<Type> insttypes = new ListBuffer<Type>();
06bc494ca11e Initial load
duke
parents:
diff changeset
   354
06bc494ca11e Initial load
duke
parents:
diff changeset
   355
        /** Instantiated types or UndetVars if under-constrained */
06bc494ca11e Initial load
duke
parents:
diff changeset
   356
        ListBuffer<Type> undettypes = new ListBuffer<Type>();
06bc494ca11e Initial load
duke
parents:
diff changeset
   357
06bc494ca11e Initial load
duke
parents:
diff changeset
   358
        for (Type t : undetvars) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   359
            UndetVar uv = (UndetVar)t;
06bc494ca11e Initial load
duke
parents:
diff changeset
   360
            if (uv.inst.tag == BOT) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   361
                restvars.append(uv.qtype);
06bc494ca11e Initial load
duke
parents:
diff changeset
   362
                insttypes.append(uv.qtype);
06bc494ca11e Initial load
duke
parents:
diff changeset
   363
                undettypes.append(uv);
06bc494ca11e Initial load
duke
parents:
diff changeset
   364
                uv.inst = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   365
            } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   366
                insttypes.append(uv.inst);
06bc494ca11e Initial load
duke
parents:
diff changeset
   367
                undettypes.append(uv.inst);
06bc494ca11e Initial load
duke
parents:
diff changeset
   368
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   369
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   370
        checkWithinBounds(tvars, undettypes.toList(), warn);
06bc494ca11e Initial load
duke
parents:
diff changeset
   371
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   372
        mt = (MethodType)types.subst(mt, tvars, insttypes.toList());
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   373
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   374
        if (!restvars.isEmpty()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   375
            // if there are uninstantiated variables,
06bc494ca11e Initial load
duke
parents:
diff changeset
   376
            // quantify result type with them
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   377
            final List<Type> inferredTypes = insttypes.toList();
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   378
            final List<Type> all_tvars = tvars; //this is the wrong tvars
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   379
            final MethodType mt2 = new MethodType(mt.argtypes, null, mt.thrown, syms.methodClass);
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   380
            mt2.restype = new ForAll(restvars.toList(), mt.restype) {
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   381
                @Override
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   382
                public Type inst(List<Type> inferred, Types types) throws NoInstanceException {
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   383
                    List<Type> formals = types.subst(mt2.argtypes, tvars, inferred);
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   384
                   if (!rs.argumentsAcceptable(capturedArgs, formals,
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   385
                           allowBoxing, useVarargs, warn)) {
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   386
                      // inferred method is not applicable
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   387
                      throw invalidInstanceException.setMessage("inferred.do.not.conform.to.params", formals, argtypes);
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   388
                   }
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   389
                   // check that inferred bounds conform to their bounds
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   390
                   checkWithinBounds(all_tvars,
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   391
                           types.subst(inferredTypes, tvars, inferred), warn);
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   392
                   return super.inst(inferred, types);
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   393
            }};
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   394
            return mt2;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   395
        }
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   396
        else if (!rs.argumentsAcceptable(capturedArgs, mt.getParameterTypes(), allowBoxing, useVarargs, warn)) {
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   397
            // inferred method is not applicable
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   398
            throw invalidInstanceException.setMessage("inferred.do.not.conform.to.params", mt.getParameterTypes(), argtypes);
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   399
        }
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   400
        else {
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   401
            // return instantiated version of method type
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   402
            return mt;
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   403
        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   404
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   405
    //where
06bc494ca11e Initial load
duke
parents:
diff changeset
   406
06bc494ca11e Initial load
duke
parents:
diff changeset
   407
        /** Try to instantiate argument type `that' to given type `to'.
06bc494ca11e Initial load
duke
parents:
diff changeset
   408
         *  If this fails, try to insantiate `that' to `to' where
06bc494ca11e Initial load
duke
parents:
diff changeset
   409
         *  every occurrence of a type variable in `tvars' is replaced
06bc494ca11e Initial load
duke
parents:
diff changeset
   410
         *  by an unknown type.
06bc494ca11e Initial load
duke
parents:
diff changeset
   411
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   412
        private Type instantiateArg(ForAll that,
06bc494ca11e Initial load
duke
parents:
diff changeset
   413
                                    Type to,
06bc494ca11e Initial load
duke
parents:
diff changeset
   414
                                    List<Type> tvars,
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   415
                                    Warner warn) throws InferenceException {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   416
            List<Type> targs;
06bc494ca11e Initial load
duke
parents:
diff changeset
   417
            try {
06bc494ca11e Initial load
duke
parents:
diff changeset
   418
                return instantiateExpr(that, to, warn);
06bc494ca11e Initial load
duke
parents:
diff changeset
   419
            } catch (NoInstanceException ex) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   420
                Type to1 = to;
06bc494ca11e Initial load
duke
parents:
diff changeset
   421
                for (List<Type> l = tvars; l.nonEmpty(); l = l.tail)
06bc494ca11e Initial load
duke
parents:
diff changeset
   422
                    to1 = types.subst(to1, List.of(l.head), List.of(syms.unknownType));
06bc494ca11e Initial load
duke
parents:
diff changeset
   423
                return instantiateExpr(that, to1, warn);
06bc494ca11e Initial load
duke
parents:
diff changeset
   424
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   425
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   426
06bc494ca11e Initial load
duke
parents:
diff changeset
   427
    /** check that type parameters are within their bounds.
06bc494ca11e Initial load
duke
parents:
diff changeset
   428
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   429
    private void checkWithinBounds(List<Type> tvars,
06bc494ca11e Initial load
duke
parents:
diff changeset
   430
                                   List<Type> arguments,
06bc494ca11e Initial load
duke
parents:
diff changeset
   431
                                   Warner warn)
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   432
        throws InvalidInstanceException {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   433
        for (List<Type> tvs = tvars, args = arguments;
06bc494ca11e Initial load
duke
parents:
diff changeset
   434
             tvs.nonEmpty();
06bc494ca11e Initial load
duke
parents:
diff changeset
   435
             tvs = tvs.tail, args = args.tail) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   436
            if (args.head instanceof UndetVar) continue;
06bc494ca11e Initial load
duke
parents:
diff changeset
   437
            List<Type> bounds = types.subst(types.getBounds((TypeVar)tvs.head), tvars, arguments);
06bc494ca11e Initial load
duke
parents:
diff changeset
   438
            if (!types.isSubtypeUnchecked(args.head, bounds, warn))
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   439
                throw invalidInstanceException
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   440
                    .setMessage("inferred.do.not.conform.to.bounds",
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 3139
diff changeset
   441
                                args.head, bounds);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   442
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   443
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   444
}