com.sun.tools.javac.comp.Resolve.MethodResolutionPhase Java Examples

The following examples show how to use com.sun.tools.javac.comp.Resolve.MethodResolutionPhase. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: DeferredAttr.java    From openjdk-8 with GNU General Public License v2.0 6 votes vote down vote up
protected DeferredAttr(Context context) {
    context.put(deferredAttrKey, this);
    attr = Attr.instance(context);
    chk = Check.instance(context);
    diags = JCDiagnostic.Factory.instance(context);
    enter = Enter.instance(context);
    infer = Infer.instance(context);
    rs = Resolve.instance(context);
    log = Log.instance(context);
    syms = Symtab.instance(context);
    make = TreeMaker.instance(context);
    types = Types.instance(context);
    Names names = Names.instance(context);
    stuckTree = make.Ident(names.empty).setType(Type.stuckType);
    emptyDeferredAttrContext =
        new DeferredAttrContext(AttrMode.CHECK, null, MethodResolutionPhase.BOX, infer.emptyContext, null, null) {
            @Override
            void addDeferredAttrNode(DeferredType dt, ResultInfo ri, DeferredStuckPolicy deferredStuckPolicy) {
                Assert.error("Empty deferred context!");
            }
            @Override
            void complete() {
                Assert.error("Empty deferred context!");
            }
        };
}
 
Example #2
Source File: DeferredAttr.java    From openjdk-8-source with GNU General Public License v2.0 6 votes vote down vote up
protected DeferredAttr(Context context) {
    context.put(deferredAttrKey, this);
    attr = Attr.instance(context);
    chk = Check.instance(context);
    diags = JCDiagnostic.Factory.instance(context);
    enter = Enter.instance(context);
    infer = Infer.instance(context);
    rs = Resolve.instance(context);
    log = Log.instance(context);
    syms = Symtab.instance(context);
    make = TreeMaker.instance(context);
    types = Types.instance(context);
    Names names = Names.instance(context);
    stuckTree = make.Ident(names.empty).setType(Type.stuckType);
    emptyDeferredAttrContext =
        new DeferredAttrContext(AttrMode.CHECK, null, MethodResolutionPhase.BOX, infer.emptyContext, null, null) {
            @Override
            void addDeferredAttrNode(DeferredType dt, ResultInfo ri, DeferredStuckPolicy deferredStuckPolicy) {
                Assert.error("Empty deferred context!");
            }
            @Override
            void complete() {
                Assert.error("Empty deferred context!");
            }
        };
}
 
Example #3
Source File: DeferredAttr.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
DeferredAttrContext(AttrMode mode, Symbol msym, MethodResolutionPhase phase,
        InferenceContext inferenceContext, DeferredAttrContext parent, Warner warn) {
    this.mode = mode;
    this.msym = msym;
    this.phase = phase;
    this.parent = parent;
    this.warn = warn;
    this.inferenceContext = inferenceContext;
}
 
Example #4
Source File: DeferredAttr.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
DeferredAttrContext(AttrMode mode, Symbol msym, MethodResolutionPhase phase,
        InferenceContext inferenceContext, DeferredAttrContext parent, Warner warn) {
    this.mode = mode;
    this.msym = msym;
    this.phase = phase;
    this.parent = parent;
    this.warn = warn;
    this.inferenceContext = inferenceContext;
}
 
Example #5
Source File: DeferredAttr.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
protected DeferredAttr(Context context) {
    context.put(deferredAttrKey, this);
    attr = Attr.instance(context);
    chk = Check.instance(context);
    diags = JCDiagnostic.Factory.instance(context);
    enter = Enter.instance(context);
    infer = Infer.instance(context);
    rs = Resolve.instance(context);
    log = Log.instance(context);
    syms = Symtab.instance(context);
    make = TreeMaker.instance(context);
    types = Types.instance(context);
    flow = Flow.instance(context);
    names = Names.instance(context);
    stuckTree = make.Ident(names.empty).setType(Type.stuckType);
    typeEnvs = TypeEnvs.instance(context);
    emptyDeferredAttrContext =
        new DeferredAttrContext(AttrMode.CHECK, null, MethodResolutionPhase.BOX, infer.emptyContext, null, null) {
            @Override
            void addDeferredAttrNode(DeferredType dt, ResultInfo ri, DeferredStuckPolicy deferredStuckPolicy) {
                Assert.error("Empty deferred context!");
            }
            @Override
            void complete() {
                Assert.error("Empty deferred context!");
            }

            @Override
            public String toString() {
                return "Empty deferred context!";
            }
        };
}
 
Example #6
Source File: DeferredAttr.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
DeferredAttrContext(AttrMode mode, Symbol msym, MethodResolutionPhase phase,
        InferenceContext inferenceContext, DeferredAttrContext parent, Warner warn) {
    this.mode = mode;
    this.msym = msym;
    this.phase = phase;
    this.parent = parent;
    this.warn = warn;
    this.inferenceContext = inferenceContext;
}
 
Example #7
Source File: DeferredAttr.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Retrieve a speculative cache entry corresponding to given symbol
 * and resolution phase
 */
Entry get(Symbol msym, MethodResolutionPhase phase) {
    List<Entry> entries = cache.get(msym);
    if (entries == null) return null;
    for (Entry e : entries) {
        if (e.matches(phase)) return e;
    }
    return null;
}
 
Example #8
Source File: DeferredAttr.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Retrieve a speculative cache entry corresponding to given symbol
 * and resolution phase
 */
Entry get(Symbol msym, MethodResolutionPhase phase) {
    List<Entry> entries = cache.get(msym);
    if (entries == null) return null;
    for (Entry e : entries) {
        if (e.matches(phase)) return e;
    }
    return null;
}
 
Example #9
Source File: DeferredAttr.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
protected DeferredAttr(Context context) {
    context.put(deferredAttrKey, this);
    attr = Attr.instance(context);
    chk = Check.instance(context);
    diags = JCDiagnostic.Factory.instance(context);
    enter = Enter.instance(context);
    infer = Infer.instance(context);
    rs = Resolve.instance(context);
    log = Log.instance(context);
    syms = Symtab.instance(context);
    make = TreeMaker.instance(context);
    types = Types.instance(context);
    flow = Flow.instance(context);
    names = Names.instance(context);
    stuckTree = make.Ident(names.empty).setType(Type.stuckType);
    typeEnvs = TypeEnvs.instance(context);
    emptyDeferredAttrContext =
        new DeferredAttrContext(AttrMode.CHECK, null, MethodResolutionPhase.BOX, infer.emptyContext, null, null) {
            @Override
            void addDeferredAttrNode(DeferredType dt, ResultInfo ri, DeferredStuckPolicy deferredStuckPolicy) {
                Assert.error("Empty deferred context!");
            }
            @Override
            void complete() {
                Assert.error("Empty deferred context!");
            }

            @Override
            public String toString() {
                return "Empty deferred context!";
            }
        };
}
 
Example #10
Source File: DeferredAttr.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
DeferredAttrContext(AttrMode mode, Symbol msym, MethodResolutionPhase phase,
        InferenceContext inferenceContext, DeferredAttrContext parent, Warner warn) {
    this.mode = mode;
    this.msym = msym;
    this.phase = phase;
    this.parent = parent;
    this.warn = warn;
    this.inferenceContext = inferenceContext;
}
 
Example #11
Source File: DeferredAttr.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
DeferredAttrContext(AttrMode mode, Symbol msym, MethodResolutionPhase phase,
        InferenceContext inferenceContext, DeferredAttrContext parent, Warner warn) {
    this.mode = mode;
    this.msym = msym;
    this.phase = phase;
    this.parent = parent;
    this.warn = warn;
    this.inferenceContext = inferenceContext;
}
 
Example #12
Source File: DeferredAttr.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Retrieve a speculative cache entry corresponding to given symbol
 * and resolution phase
 */
Entry get(Symbol msym, MethodResolutionPhase phase) {
    List<Entry> entries = cache.get(msym);
    if (entries == null) return null;
    for (Entry e : entries) {
        if (e.matches(phase)) return e;
    }
    return null;
}
 
Example #13
Source File: DeferredAttr.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Retrieve a speculative cache entry corresponding to given symbol
 * and resolution phase
 */
Entry get(Symbol msym, MethodResolutionPhase phase) {
    List<Entry> entries = cache.get(msym);
    if (entries == null) return null;
    for (Entry e : entries) {
        if (e.matches(phase)) return e;
    }
    return null;
}
 
Example #14
Source File: DeferredAttr.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
DeferredAttrContext(AttrMode mode, Symbol msym, MethodResolutionPhase phase,
        InferenceContext inferenceContext, DeferredAttrContext parent, Warner warn) {
    this.mode = mode;
    this.msym = msym;
    this.phase = phase;
    this.parent = parent;
    this.warn = warn;
    this.inferenceContext = inferenceContext;
}
 
Example #15
Source File: DeferredAttr.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Retrieve a speculative cache entry corresponding to given symbol
 * and resolution phase
 */
Entry get(Symbol msym, MethodResolutionPhase phase) {
    List<Entry> entries = cache.get(msym);
    if (entries == null) return null;
    for (Entry e : entries) {
        if (e.matches(phase)) return e;
    }
    return null;
}
 
Example #16
Source File: DeferredAttr.java    From lua-for-android with BSD 3-Clause "New" or "Revised" License 5 votes vote down vote up
/**
 * Retrieve a speculative cache entry corresponding to given symbol
 * and resolution phase
 */
Entry get(Symbol msym, MethodResolutionPhase phase) {
    List<Entry> entries = cache.get(msym);
    if (entries == null) return null;
    for (Entry e : entries) {
        if (e.matches(phase)) return e;
    }
    return null;
}
 
Example #17
Source File: DeferredAttr.java    From lua-for-android with BSD 3-Clause "New" or "Revised" License 5 votes vote down vote up
DeferredAttrContext(AttrMode mode, Symbol msym, MethodResolutionPhase phase,
        InferenceContext inferenceContext, DeferredAttrContext parent, Warner warn) {
    this.mode = mode;
    this.msym = msym;
    this.phase = phase;
    this.parent = parent;
    this.warn = warn;
    this.inferenceContext = inferenceContext;
}
 
Example #18
Source File: DeferredAttr.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
DeferredAttrContext(AttrMode mode, Symbol msym, MethodResolutionPhase phase,
        InferenceContext inferenceContext, DeferredAttrContext parent, Warner warn) {
    this.mode = mode;
    this.msym = msym;
    this.phase = phase;
    this.parent = parent;
    this.warn = warn;
    this.inferenceContext = inferenceContext;
}
 
Example #19
Source File: DeferredAttr.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
protected DeferredAttr(Context context) {
    context.put(deferredAttrKey, this);
    attr = Attr.instance(context);
    chk = Check.instance(context);
    diags = JCDiagnostic.Factory.instance(context);
    enter = Enter.instance(context);
    infer = Infer.instance(context);
    rs = Resolve.instance(context);
    log = Log.instance(context);
    syms = Symtab.instance(context);
    make = TreeMaker.instance(context);
    types = Types.instance(context);
    flow = Flow.instance(context);
    names = Names.instance(context);
    stuckTree = make.Ident(names.empty).setType(Type.stuckType);
    typeEnvs = TypeEnvs.instance(context);
    emptyDeferredAttrContext =
        new DeferredAttrContext(AttrMode.CHECK, null, MethodResolutionPhase.BOX, infer.emptyContext, null, null) {
            @Override
            void addDeferredAttrNode(DeferredType dt, ResultInfo ri, DeferredStuckPolicy deferredStuckPolicy) {
                Assert.error("Empty deferred context!");
            }
            @Override
            void complete() {
                Assert.error("Empty deferred context!");
            }

            @Override
            public String toString() {
                return "Empty deferred context!";
            }
        };
}
 
Example #20
Source File: DeferredAttr.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Retrieve a speculative cache entry corresponding to given symbol
 * and resolution phase
 */
Entry get(Symbol msym, MethodResolutionPhase phase) {
    List<Entry> entries = cache.get(msym);
    if (entries == null) return null;
    for (Entry e : entries) {
        if (e.matches(phase)) return e;
    }
    return null;
}
 
Example #21
Source File: DeferredAttr.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
protected DeferredAttr(Context context) {
    context.put(deferredAttrKey, this);
    attr = Attr.instance(context);
    chk = Check.instance(context);
    diags = JCDiagnostic.Factory.instance(context);
    enter = Enter.instance(context);
    infer = Infer.instance(context);
    rs = Resolve.instance(context);
    log = Log.instance(context);
    syms = Symtab.instance(context);
    make = TreeMaker.instance(context);
    types = Types.instance(context);
    flow = Flow.instance(context);
    names = Names.instance(context);
    stuckTree = make.Ident(names.empty).setType(Type.stuckType);
    typeEnvs = TypeEnvs.instance(context);
    emptyDeferredAttrContext =
        new DeferredAttrContext(AttrMode.CHECK, null, MethodResolutionPhase.BOX, infer.emptyContext, null, null) {
            @Override
            void addDeferredAttrNode(DeferredType dt, ResultInfo ri, DeferredStuckPolicy deferredStuckPolicy) {
                Assert.error("Empty deferred context!");
            }
            @Override
            void complete() {
                Assert.error("Empty deferred context!");
            }

            @Override
            public String toString() {
                return "Empty deferred context!";
            }
        };
}
 
Example #22
Source File: DeferredAttr.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
DeferredAttrContext(AttrMode mode, Symbol msym, MethodResolutionPhase phase,
        InferenceContext inferenceContext, DeferredAttrContext parent, Warner warn) {
    this.mode = mode;
    this.msym = msym;
    this.phase = phase;
    this.parent = parent;
    this.warn = warn;
    this.inferenceContext = inferenceContext;
}
 
Example #23
Source File: DeferredAttr.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Retrieve a speculative cache entry corresponding to given symbol
 * and resolution phase
 */
Entry get(Symbol msym, MethodResolutionPhase phase) {
    List<Entry> entries = cache.get(msym);
    if (entries == null) return null;
    for (Entry e : entries) {
        if (e.matches(phase)) return e;
    }
    return null;
}
 
Example #24
Source File: ArgumentAttr.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
@Override
Type speculativeType(Symbol msym, MethodResolutionPhase phase) {
    if (pertinentToApplicability) {
        for (Map.Entry<ResultInfo, Type> _entry : speculativeTypes.entrySet()) {
            DeferredAttrContext deferredAttrContext = _entry.getKey().checkContext.deferredAttrContext();
            if (deferredAttrContext.phase == phase && deferredAttrContext.msym == msym) {
                return _entry.getValue();
            }
        }
        return Type.noType;
    } else {
        return super.speculativeType(msym, phase);
    }
}
 
Example #25
Source File: DeferredAttr.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
protected DeferredAttr(Context context) {
    context.put(deferredAttrKey, this);
    attr = Attr.instance(context);
    chk = Check.instance(context);
    diags = JCDiagnostic.Factory.instance(context);
    enter = Enter.instance(context);
    infer = Infer.instance(context);
    rs = Resolve.instance(context);
    log = Log.instance(context);
    syms = Symtab.instance(context);
    make = TreeMaker.instance(context);
    types = Types.instance(context);
    flow = Flow.instance(context);
    names = Names.instance(context);
    stuckTree = make.Ident(names.empty).setType(Type.stuckType);
    typeEnvs = TypeEnvs.instance(context);
    emptyDeferredAttrContext =
        new DeferredAttrContext(AttrMode.CHECK, null, MethodResolutionPhase.BOX, infer.emptyContext, null, null) {
            @Override
            void addDeferredAttrNode(DeferredType dt, ResultInfo ri, DeferredStuckPolicy deferredStuckPolicy) {
                Assert.error("Empty deferred context!");
            }
            @Override
            void complete() {
                Assert.error("Empty deferred context!");
            }

            @Override
            public String toString() {
                return "Empty deferred context!";
            }
        };
}
 
Example #26
Source File: DeferredAttr.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Retrieve a speculative cache entry corresponding to given symbol
 * and resolution phase
 */
Entry get(Symbol msym, MethodResolutionPhase phase) {
    List<Entry> entries = cache.get(msym);
    if (entries == null) return null;
    for (Entry e : entries) {
        if (e.matches(phase)) return e;
    }
    return null;
}
 
Example #27
Source File: ArgumentAttr.java    From lua-for-android with BSD 3-Clause "New" or "Revised" License 5 votes vote down vote up
@Override
Type speculativeType(Symbol msym, MethodResolutionPhase phase) {
    if (pertinentToApplicability) {
        for (Map.Entry<ResultInfo, Type> _entry : speculativeTypes.entrySet()) {
            DeferredAttrContext deferredAttrContext = _entry.getKey().checkContext.deferredAttrContext();
            if (deferredAttrContext.phase == phase && deferredAttrContext.msym == msym) {
                return _entry.getValue();
            }
        }
        return Type.noType;
    } else {
        return super.speculativeType(msym, phase);
    }
}
 
Example #28
Source File: DeferredAttr.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
protected DeferredTypeMap(AttrMode mode, Symbol msym, MethodResolutionPhase phase) {
    super(String.format("deferredTypeMap[%s]", mode));
    this.deferredAttrContext = new DeferredAttrContext(mode, msym, phase,
            infer.emptyContext, emptyDeferredAttrContext, types.noWarnings);
}
 
Example #29
Source File: DeferredAttr.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
boolean matches(MethodResolutionPhase phase) {
    return resultInfo.checkContext.deferredAttrContext().phase == phase;
}
 
Example #30
Source File: DeferredAttr.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Get the type that has been computed during a speculative attribution round
 */
Type speculativeType(Symbol msym, MethodResolutionPhase phase) {
    SpeculativeCache.Entry e = speculativeCache.get(msym, phase);
    return e != null ? e.speculativeTree.type : Type.noType;
}