jdk.nashorn.internal.objects.annotations.SpecializedFunction.LinkLogic Java Examples

The following examples show how to use jdk.nashorn.internal.objects.annotations.SpecializedFunction.LinkLogic. 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: CompiledFunction.java    From jdk8u60 with GNU General Public License v2.0 6 votes vote down vote up
@Override
public String toString() {
    final StringBuilder sb = new StringBuilder();
    final Class<? extends LinkLogic> linkLogicClass = getLinkLogicClass();

    sb.append("[invokerType=").
        append(invoker.type()).
        append(" ctor=").
        append(constructor).
        append(" weight=").
        append(weight()).
        append(" linkLogic=").
        append(linkLogicClass != null ? linkLogicClass.getSimpleName() : "none");

    return sb.toString();
}
 
Example #2
Source File: ScriptFunction.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Some receivers are primitive, in that case, according to the Spec we
 * create a new native object per callsite with the wrap filter. We can only
 * apply optimistic builtins if there is no per instance state saved for
 * these wrapped objects (e.g. currently NativeStrings), otherwise we can't
 * create optimistic versions
 *
 * @param self receiver
 * @param linkLogicClass linkLogicClass, or null if no link logic exists
 * @return link logic instance, or null if one could not be constructed for
 * this receiver
 */
private static LinkLogic getLinkLogic(final Object self, final Class<? extends LinkLogic> linkLogicClass) {
    if (linkLogicClass == null) {
        return LinkLogic.EMPTY_INSTANCE; //always OK to link this, specialization but without special linking logic
    }

    if (!Context.getContextTrusted().getEnv()._optimistic_types) {
        return null; //if optimistic types are off, optimistic builtins are too
    }

    final Object wrappedSelf = wrapFilter(self);
    if (wrappedSelf instanceof OptimisticBuiltins) {
        if (wrappedSelf != self && ((OptimisticBuiltins) wrappedSelf).hasPerInstanceAssumptions()) {
            return null; //pessimistic - we created a wrapped object different from the primitive, but the assumptions have instance state
        }
        return ((OptimisticBuiltins) wrappedSelf).getLinkLogic(linkLogicClass);
    }
    return null;
}
 
Example #3
Source File: CompiledFunction.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 6 votes vote down vote up
@Override
public String toString() {
    final StringBuilder sb = new StringBuilder();
    final Class<? extends LinkLogic> linkLogicClass = getLinkLogicClass();

    sb.append("[invokerType=").
        append(invoker.type()).
        append(" ctor=").
        append(constructor).
        append(" weight=").
        append(weight()).
        append(" linkLogic=").
        append(linkLogicClass != null ? linkLogicClass.getSimpleName() : "none");

    return sb.toString();
}
 
Example #4
Source File: CompiledFunction.java    From openjdk-jdk8u with GNU General Public License v2.0 6 votes vote down vote up
@Override
public String toString() {
    final StringBuilder sb = new StringBuilder();
    final Class<? extends LinkLogic> linkLogicClass = getLinkLogicClass();

    sb.append("[invokerType=").
        append(invoker.type()).
        append(" ctor=").
        append(constructor).
        append(" weight=").
        append(weight()).
        append(" linkLogic=").
        append(linkLogicClass != null ? linkLogicClass.getSimpleName() : "none");

    return sb.toString();
}
 
Example #5
Source File: ScriptFunction.java    From openjdk-jdk8u with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Some receivers are primitive, in that case, according to the Spec we
 * create a new native object per callsite with the wrap filter. We can only
 * apply optimistic builtins if there is no per instance state saved for
 * these wrapped objects (e.g. currently NativeStrings), otherwise we can't
 * create optimistic versions
 *
 * @param self receiver
 * @param linkLogicClass linkLogicClass, or null if no link logic exists
 * @return link logic instance, or null if one could not be constructed for
 * this receiver
 */
private static LinkLogic getLinkLogic(final Object self, final Class<? extends LinkLogic> linkLogicClass) {
    if (linkLogicClass == null) {
        return LinkLogic.EMPTY_INSTANCE; //always OK to link this, specialization but without special linking logic
    }

    if (!Context.getContextTrusted().getEnv()._optimistic_types) {
        return null; //if optimistic types are off, optimistic builtins are too
    }

    final Object wrappedSelf = wrapFilter(self);
    if (wrappedSelf instanceof OptimisticBuiltins) {
        if (wrappedSelf != self && ((OptimisticBuiltins) wrappedSelf).hasPerInstanceAssumptions()) {
            return null; //pessimistic - we created a wrapped object different from the primitive, but the assumptions have instance state
        }
        return ((OptimisticBuiltins) wrappedSelf).getLinkLogic(linkLogicClass);
    }
    return null;
}
 
Example #6
Source File: ScriptFunction.java    From openjdk-jdk9 with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Some receivers are primitive, in that case, according to the Spec we
 * create a new native object per callsite with the wrap filter. We can only
 * apply optimistic builtins if there is no per instance state saved for
 * these wrapped objects (e.g. currently NativeStrings), otherwise we can't
 * create optimistic versions
 *
 * @param self receiver
 * @param linkLogicClass linkLogicClass, or null if no link logic exists
 * @return link logic instance, or null if one could not be constructed for
 * this receiver
 */
private static LinkLogic getLinkLogic(final Object self, final Class<? extends LinkLogic> linkLogicClass) {
    if (linkLogicClass == null) {
        return LinkLogic.EMPTY_INSTANCE; //always OK to link this, specialization but without special linking logic
    }

    if (!Context.getContextTrusted().getEnv()._optimistic_types) {
        return null; //if optimistic types are off, optimistic builtins are too
    }

    final Object wrappedSelf = wrapFilter(self);
    if (wrappedSelf instanceof OptimisticBuiltins) {
        if (wrappedSelf != self && ((OptimisticBuiltins) wrappedSelf).hasPerInstanceAssumptions()) {
            return null; //pessimistic - we created a wrapped object different from the primitive, but the assumptions have instance state
        }
        return ((OptimisticBuiltins) wrappedSelf).getLinkLogic(linkLogicClass);
    }
    return null;
}
 
Example #7
Source File: CompiledFunction.java    From openjdk-jdk9 with GNU General Public License v2.0 6 votes vote down vote up
@Override
public String toString() {
    final StringBuilder sb = new StringBuilder();
    final Class<? extends LinkLogic> linkLogicClass = getLinkLogicClass();

    sb.append("[invokerType=").
        append(invoker.type()).
        append(" ctor=").
        append(constructor).
        append(" weight=").
        append(weight()).
        append(" linkLogic=").
        append(linkLogicClass != null ? linkLogicClass.getSimpleName() : "none");

    return sb.toString();
}
 
Example #8
Source File: ScriptFunction.java    From jdk8u60 with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Some receivers are primitive, in that case, according to the Spec we create a new
 * native object per callsite with the wrap filter. We can only apply optimistic builtins
 * if there is no per instance state saved for these wrapped objects (e.g. currently NativeStrings),
 * otherwise we can't create optimistic versions
 *
 * @param self            receiver
 * @param linkLogicClass  linkLogicClass, or null if no link logic exists
 * @return link logic instance, or null if one could not be constructed for this receiver
 */
private static LinkLogic getLinkLogic(final Object self, final Class<? extends LinkLogic> linkLogicClass) {
    if (linkLogicClass == null) {
        return LinkLogic.EMPTY_INSTANCE; //always OK to link this, specialization but without special linking logic
    }

    if (!Context.getContextTrusted().getEnv()._optimistic_types) {
        return null; //if optimistic types are off, optimistic builtins are too
    }

    final Object wrappedSelf = wrapFilter(self);
    if (wrappedSelf instanceof OptimisticBuiltins) {
        if (wrappedSelf != self && ((OptimisticBuiltins)wrappedSelf).hasPerInstanceAssumptions()) {
            return null; //pessimistic - we created a wrapped object different from the primitive, but the assumptions have instance state
        }
        return ((OptimisticBuiltins)wrappedSelf).getLinkLogic(linkLogicClass);
    }
    return null;
}
 
Example #9
Source File: ScriptFunction.java    From hottub with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Some receivers are primitive, in that case, according to the Spec we
 * create a new native object per callsite with the wrap filter. We can only
 * apply optimistic builtins if there is no per instance state saved for
 * these wrapped objects (e.g. currently NativeStrings), otherwise we can't
 * create optimistic versions
 *
 * @param self receiver
 * @param linkLogicClass linkLogicClass, or null if no link logic exists
 * @return link logic instance, or null if one could not be constructed for
 * this receiver
 */
private static LinkLogic getLinkLogic(final Object self, final Class<? extends LinkLogic> linkLogicClass) {
    if (linkLogicClass == null) {
        return LinkLogic.EMPTY_INSTANCE; //always OK to link this, specialization but without special linking logic
    }

    if (!Context.getContextTrusted().getEnv()._optimistic_types) {
        return null; //if optimistic types are off, optimistic builtins are too
    }

    final Object wrappedSelf = wrapFilter(self);
    if (wrappedSelf instanceof OptimisticBuiltins) {
        if (wrappedSelf != self && ((OptimisticBuiltins) wrappedSelf).hasPerInstanceAssumptions()) {
            return null; //pessimistic - we created a wrapped object different from the primitive, but the assumptions have instance state
        }
        return ((OptimisticBuiltins) wrappedSelf).getLinkLogic(linkLogicClass);
    }
    return null;
}
 
Example #10
Source File: CompiledFunction.java    From jdk8u_nashorn with GNU General Public License v2.0 6 votes vote down vote up
@Override
public String toString() {
    final StringBuilder sb = new StringBuilder();
    final Class<? extends LinkLogic> linkLogicClass = getLinkLogicClass();

    sb.append("[invokerType=").
        append(invoker.type()).
        append(" ctor=").
        append(constructor).
        append(" weight=").
        append(weight()).
        append(" linkLogic=").
        append(linkLogicClass != null ? linkLogicClass.getSimpleName() : "none");

    return sb.toString();
}
 
Example #11
Source File: ScriptFunction.java    From jdk8u_nashorn with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Some receivers are primitive, in that case, according to the Spec we
 * create a new native object per callsite with the wrap filter. We can only
 * apply optimistic builtins if there is no per instance state saved for
 * these wrapped objects (e.g. currently NativeStrings), otherwise we can't
 * create optimistic versions
 *
 * @param self receiver
 * @param linkLogicClass linkLogicClass, or null if no link logic exists
 * @return link logic instance, or null if one could not be constructed for
 * this receiver
 */
private static LinkLogic getLinkLogic(final Object self, final Class<? extends LinkLogic> linkLogicClass) {
    if (linkLogicClass == null) {
        return LinkLogic.EMPTY_INSTANCE; //always OK to link this, specialization but without special linking logic
    }

    if (!Context.getContextTrusted().getEnv()._optimistic_types) {
        return null; //if optimistic types are off, optimistic builtins are too
    }

    final Object wrappedSelf = wrapFilter(self);
    if (wrappedSelf instanceof OptimisticBuiltins) {
        if (wrappedSelf != self && ((OptimisticBuiltins) wrappedSelf).hasPerInstanceAssumptions()) {
            return null; //pessimistic - we created a wrapped object different from the primitive, but the assumptions have instance state
        }
        return ((OptimisticBuiltins) wrappedSelf).getLinkLogic(linkLogicClass);
    }
    return null;
}
 
Example #12
Source File: CompiledFunction.java    From TencentKona-8 with GNU General Public License v2.0 6 votes vote down vote up
@Override
public String toString() {
    final StringBuilder sb = new StringBuilder();
    final Class<? extends LinkLogic> linkLogicClass = getLinkLogicClass();

    sb.append("[invokerType=").
        append(invoker.type()).
        append(" ctor=").
        append(constructor).
        append(" weight=").
        append(weight()).
        append(" linkLogic=").
        append(linkLogicClass != null ? linkLogicClass.getSimpleName() : "none");

    return sb.toString();
}
 
Example #13
Source File: CompiledFunction.java    From hottub with GNU General Public License v2.0 6 votes vote down vote up
@Override
public String toString() {
    final StringBuilder sb = new StringBuilder();
    final Class<? extends LinkLogic> linkLogicClass = getLinkLogicClass();

    sb.append("[invokerType=").
        append(invoker.type()).
        append(" ctor=").
        append(constructor).
        append(" weight=").
        append(weight()).
        append(" linkLogic=").
        append(linkLogicClass != null ? linkLogicClass.getSimpleName() : "none");

    return sb.toString();
}
 
Example #14
Source File: ScriptFunction.java    From TencentKona-8 with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Some receivers are primitive, in that case, according to the Spec we
 * create a new native object per callsite with the wrap filter. We can only
 * apply optimistic builtins if there is no per instance state saved for
 * these wrapped objects (e.g. currently NativeStrings), otherwise we can't
 * create optimistic versions
 *
 * @param self receiver
 * @param linkLogicClass linkLogicClass, or null if no link logic exists
 * @return link logic instance, or null if one could not be constructed for
 * this receiver
 */
private static LinkLogic getLinkLogic(final Object self, final Class<? extends LinkLogic> linkLogicClass) {
    if (linkLogicClass == null) {
        return LinkLogic.EMPTY_INSTANCE; //always OK to link this, specialization but without special linking logic
    }

    if (!Context.getContextTrusted().getEnv()._optimistic_types) {
        return null; //if optimistic types are off, optimistic builtins are too
    }

    final Object wrappedSelf = wrapFilter(self);
    if (wrappedSelf instanceof OptimisticBuiltins) {
        if (wrappedSelf != self && ((OptimisticBuiltins) wrappedSelf).hasPerInstanceAssumptions()) {
            return null; //pessimistic - we created a wrapped object different from the primitive, but the assumptions have instance state
        }
        return ((OptimisticBuiltins) wrappedSelf).getLinkLogic(linkLogicClass);
    }
    return null;
}
 
Example #15
Source File: CompiledFunction.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
Class<? extends LinkLogic> getLinkLogicClass() {
    if (isSpecialization()) {
        final Class<? extends LinkLogic> linkLogicClass = specialization.getLinkLogicClass();
        assert !LinkLogic.isEmpty(linkLogicClass) : "empty link logic classes should have been removed by nasgen";
        return linkLogicClass;
    }
    return null;
}
 
Example #16
Source File: CompiledFunction.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
Class<? extends LinkLogic> getLinkLogicClass() {
    if (isSpecialization()) {
        final Class<? extends LinkLogic> linkLogicClass = specialization.getLinkLogicClass();
        assert !LinkLogic.isEmpty(linkLogicClass) : "empty link logic classes should have been removed by nasgen";
        return linkLogicClass;
    }
    return null;
}
 
Example #17
Source File: CompiledFunction.java    From jdk8u_nashorn with GNU General Public License v2.0 5 votes vote down vote up
Class<? extends LinkLogic> getLinkLogicClass() {
    if (isSpecialization()) {
        final Class<? extends LinkLogic> linkLogicClass = specialization.getLinkLogicClass();
        assert !LinkLogic.isEmpty(linkLogicClass) : "empty link logic classes should have been removed by nasgen";
        return linkLogicClass;
    }
    return null;
}
 
Example #18
Source File: NativeString.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
@Override
public LinkLogic getLinkLogic(final Class<? extends LinkLogic> clazz) {
    if (clazz == CharCodeAtLinkLogic.class) {
        return CharCodeAtLinkLogic.INSTANCE;
    }
    return null;
}
 
Example #19
Source File: NativeArray.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
@Override
public SpecializedFunction.LinkLogic getLinkLogic(final Class<? extends LinkLogic> clazz) {
    if (clazz == PushLinkLogic.class) {
        return PushLinkLogic.INSTANCE;
    } else if (clazz == PopLinkLogic.class) {
        return PopLinkLogic.INSTANCE;
    } else if (clazz == ConcatLinkLogic.class) {
        return ConcatLinkLogic.INSTANCE;
    }
    return null;
}
 
Example #20
Source File: Specialization.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Constructor
 *
 * @param mh  invoker method handler
 * @param linkLogicClass extra link logic needed for this function. Instances of this class also contains logic for checking
 *  if this can be linked on its first encounter, which is needed as per our standard linker semantics
 * @param isOptimistic is this an optimistic native method, i.e. can it throw {@link UnwarrantedOptimismException}
 *   which would have to lead to a relink and return value processing
 * @param convertsNumericArgs true if it is safe to convert arguments to numbers
 */
public Specialization(final MethodHandle mh, final Class<? extends LinkLogic> linkLogicClass,
                      final boolean isOptimistic, final boolean convertsNumericArgs) {
    this.mh             = mh;
    this.isOptimistic   = isOptimistic;
    this.convertsNumericArgs = convertsNumericArgs;
    if (linkLogicClass != null) {
        //null out the "empty" link logic class for optimization purposes
        //we only use the empty instance because we can't default class annotations
        //to null
        this.linkLogicClass = LinkLogic.isEmpty(linkLogicClass) ? null : linkLogicClass;
    } else {
        this.linkLogicClass = null;
    }
 }
 
Example #21
Source File: Specialization.java    From jdk8u_nashorn with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Constructor
 *
 * @param mh  invoker method handler
 * @param linkLogicClass extra link logic needed for this function. Instances of this class also contains logic for checking
 *  if this can be linked on its first encounter, which is needed as per our standard linker semantics
 * @param isOptimistic is this an optimistic native method, i.e. can it throw {@link UnwarrantedOptimismException}
 *   which would have to lead to a relink and return value processing
 */
public Specialization(final MethodHandle mh, final Class<? extends LinkLogic> linkLogicClass, final boolean isOptimistic) {
    this.mh             = mh;
    this.isOptimistic   = isOptimistic;
    if (linkLogicClass != null) {
        //null out the "empty" link logic class for optimization purposes
        //we only use the empty instance because we can't default class annotations
        //to null
        this.linkLogicClass = LinkLogic.isEmpty(linkLogicClass) ? null : linkLogicClass;
    } else {
        this.linkLogicClass = null;
    }
 }
 
Example #22
Source File: NativeString.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
@Override
public LinkLogic getLinkLogic(final Class<? extends LinkLogic> clazz) {
    if (clazz == CharCodeAtLinkLogic.class) {
        return CharCodeAtLinkLogic.INSTANCE;
    }
    return null;
}
 
Example #23
Source File: NativeArray.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
@Override
public SpecializedFunction.LinkLogic getLinkLogic(final Class<? extends LinkLogic> clazz) {
    if (clazz == PushLinkLogic.class) {
        return PushLinkLogic.INSTANCE;
    } else if (clazz == PopLinkLogic.class) {
        return PopLinkLogic.INSTANCE;
    } else if (clazz == ConcatLinkLogic.class) {
        return ConcatLinkLogic.INSTANCE;
    }
    return null;
}
 
Example #24
Source File: NativeArray.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
@Override
public SpecializedFunction.LinkLogic getLinkLogic(final Class<? extends LinkLogic> clazz) {
    if (clazz == PushLinkLogic.class) {
        return PushLinkLogic.INSTANCE;
    } else if (clazz == PopLinkLogic.class) {
        return PopLinkLogic.INSTANCE;
    } else if (clazz == ConcatLinkLogic.class) {
        return ConcatLinkLogic.INSTANCE;
    }
    return null;
}
 
Example #25
Source File: Specialization.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Constructor
 *
 * @param mh  invoker method handler
 * @param linkLogicClass extra link logic needed for this function. Instances of this class also contains logic for checking
 *  if this can be linked on its first encounter, which is needed as per our standard linker semantics
 * @param isOptimistic is this an optimistic native method, i.e. can it throw {@link UnwarrantedOptimismException}
 *   which would have to lead to a relink and return value processing
 */
public Specialization(final MethodHandle mh, final Class<? extends LinkLogic> linkLogicClass, final boolean isOptimistic) {
    this.mh             = mh;
    this.isOptimistic   = isOptimistic;
    if (linkLogicClass != null) {
        //null out the "empty" link logic class for optimization purposes
        //we only use the empty instance because we can't default class annotations
        //to null
        this.linkLogicClass = LinkLogic.isEmpty(linkLogicClass) ? null : linkLogicClass;
    } else {
        this.linkLogicClass = null;
    }
 }
 
Example #26
Source File: NativeArray.java    From jdk8u_nashorn with GNU General Public License v2.0 5 votes vote down vote up
@Override
public SpecializedFunction.LinkLogic getLinkLogic(final Class<? extends LinkLogic> clazz) {
    if (clazz == PushLinkLogic.class) {
        return PushLinkLogic.INSTANCE;
    } else if (clazz == PopLinkLogic.class) {
        return PopLinkLogic.INSTANCE;
    } else if (clazz == ConcatLinkLogic.class) {
        return ConcatLinkLogic.INSTANCE;
    }
    return null;
}
 
Example #27
Source File: NativeString.java    From jdk8u_nashorn with GNU General Public License v2.0 5 votes vote down vote up
@Override
public LinkLogic getLinkLogic(final Class<? extends LinkLogic> clazz) {
    if (clazz == CharCodeAtLinkLogic.class) {
        return CharCodeAtLinkLogic.INSTANCE;
    }
    return null;
}
 
Example #28
Source File: CompiledFunction.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
Class<? extends LinkLogic> getLinkLogicClass() {
    if (isSpecialization()) {
        final Class<? extends LinkLogic> linkLogicClass = specialization.getLinkLogicClass();
        assert !LinkLogic.isEmpty(linkLogicClass) : "empty link logic classes should have been removed by nasgen";
        return linkLogicClass;
    }
    return null;
}
 
Example #29
Source File: Specialization.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Constructor
 *
 * @param mh  invoker method handler
 * @param linkLogicClass extra link logic needed for this function. Instances of this class also contains logic for checking
 *  if this can be linked on its first encounter, which is needed as per our standard linker semantics
 * @param isOptimistic is this an optimistic native method, i.e. can it throw {@link UnwarrantedOptimismException}
 *   which would have to lead to a relink and return value processing
 */
public Specialization(final MethodHandle mh, final Class<? extends LinkLogic> linkLogicClass, final boolean isOptimistic) {
    this.mh             = mh;
    this.isOptimistic   = isOptimistic;
    if (linkLogicClass != null) {
        //null out the "empty" link logic class for optimization purposes
        //we only use the empty instance because we can't default class annotations
        //to null
        this.linkLogicClass = LinkLogic.isEmpty(linkLogicClass) ? null : linkLogicClass;
    } else {
        this.linkLogicClass = null;
    }
 }
 
Example #30
Source File: NativeString.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
@Override
public LinkLogic getLinkLogic(final Class<? extends LinkLogic> clazz) {
    if (clazz == CharCodeAtLinkLogic.class) {
        return CharCodeAtLinkLogic.INSTANCE;
    }
    return null;
}