Java Code Examples for jdk.nashorn.internal.runtime.linker.NashornCallSiteDescriptor#isDeclaration()

The following examples show how to use jdk.nashorn.internal.runtime.linker.NashornCallSiteDescriptor#isDeclaration() . 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: ScriptObject.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Find the appropriate SET method for an invoke dynamic call.
 *
 * @param desc    the call site descriptor
 * @param request the link request
 *
 * @return GuardedInvocation to be invoked at call site.
 */
protected GuardedInvocation findSetMethod(final CallSiteDescriptor desc, final LinkRequest request) {
    final String name = desc.getNameToken(CallSiteDescriptor.NAME_OPERAND);

    if (request.isCallSiteUnstable() || hasWithScope()) {
        return findMegaMorphicSetMethod(desc, name);
    }

    final boolean explicitInstanceOfCheck = explicitInstanceOfCheck(desc, request);

    /*
     * If doing property set on a scope object, we should stop proto search on the first
     * non-scope object. Without this, for example, when assigning "toString" on global scope,
     * we'll end up assigning it on it's proto - which is Object.prototype.toString !!
     *
     * toString = function() { print("global toString"); } // don't affect Object.prototype.toString
     */
    FindProperty find = findProperty(name, true, this);

    // If it's not a scope search, then we don't want any inherited properties except those with user defined accessors.
    if (find != null && find.isInherited() && !(find.getProperty() instanceof UserAccessorProperty)) {
        // We should still check if inherited data property is not writable
        if (isExtensible() && !find.getProperty().isWritable()) {
            return createEmptySetMethod(desc, explicitInstanceOfCheck, "property.not.writable", true);
        }
        // Otherwise, forget the found property unless this is a scope callsite and the owner is a scope object as well.
        if (!NashornCallSiteDescriptor.isScope(desc) || !find.getOwner().isScope()) {
            find = null;
        }
    }

    if (find != null) {
        if (!find.getProperty().isWritable() && !NashornCallSiteDescriptor.isDeclaration(desc)) {
            if (NashornCallSiteDescriptor.isScope(desc) && find.getProperty().isLexicalBinding()) {
                throw typeError("assign.constant", name); // Overwriting ES6 const should throw also in non-strict mode.
            }
            // Existing, non-writable property
            return createEmptySetMethod(desc, explicitInstanceOfCheck, "property.not.writable", true);
        }
    } else {
        if (!isExtensible()) {
            return createEmptySetMethod(desc, explicitInstanceOfCheck, "object.non.extensible", false);
        }
    }

    final GuardedInvocation inv = new SetMethodCreator(this, find, desc, request).createGuardedInvocation(findBuiltinSwitchPoint(name));

    final GlobalConstants globalConstants = getGlobalConstants();
    if (globalConstants != null) {
        final GuardedInvocation cinv = globalConstants.findSetMethod(find, this, inv, desc, request);
        if (cinv != null) {
            return cinv;
        }
    }

    return inv;
}
 
Example 2
Source File: ScriptObject.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Find the appropriate SET method for an invoke dynamic call.
 *
 * @param desc    the call site descriptor
 * @param request the link request
 *
 * @return GuardedInvocation to be invoked at call site.
 */
protected GuardedInvocation findSetMethod(final CallSiteDescriptor desc, final LinkRequest request) {
    final String name = desc.getNameToken(CallSiteDescriptor.NAME_OPERAND);

    if (request.isCallSiteUnstable() || hasWithScope()) {
        return findMegaMorphicSetMethod(desc, name);
    }

    final boolean explicitInstanceOfCheck = explicitInstanceOfCheck(desc, request);

    /*
     * If doing property set on a scope object, we should stop proto search on the first
     * non-scope object. Without this, for example, when assigning "toString" on global scope,
     * we'll end up assigning it on it's proto - which is Object.prototype.toString !!
     *
     * toString = function() { print("global toString"); } // don't affect Object.prototype.toString
     */
    FindProperty find = findProperty(name, true, this);

    // If it's not a scope search, then we don't want any inherited properties except those with user defined accessors.
    if (find != null && find.isInherited() && !(find.getProperty() instanceof UserAccessorProperty)) {
        // We should still check if inherited data property is not writable
        if (isExtensible() && !find.getProperty().isWritable()) {
            return createEmptySetMethod(desc, explicitInstanceOfCheck, "property.not.writable", true);
        }
        // Otherwise, forget the found property unless this is a scope callsite and the owner is a scope object as well.
        if (!NashornCallSiteDescriptor.isScope(desc) || !find.getOwner().isScope()) {
            find = null;
        }
    }

    if (find != null) {
        if (!find.getProperty().isWritable() && !NashornCallSiteDescriptor.isDeclaration(desc)) {
            if (NashornCallSiteDescriptor.isScope(desc) && find.getProperty().isLexicalBinding()) {
                throw typeError("assign.constant", name); // Overwriting ES6 const should throw also in non-strict mode.
            }
            // Existing, non-writable property
            return createEmptySetMethod(desc, explicitInstanceOfCheck, "property.not.writable", true);
        }
    } else {
        if (!isExtensible()) {
            return createEmptySetMethod(desc, explicitInstanceOfCheck, "object.non.extensible", false);
        }
    }

    final GuardedInvocation inv = new SetMethodCreator(this, find, desc, request).createGuardedInvocation(findBuiltinSwitchPoint(name));

    final GlobalConstants globalConstants = getGlobalConstants();
    if (globalConstants != null) {
        final GuardedInvocation cinv = globalConstants.findSetMethod(find, this, inv, desc, request);
        if (cinv != null) {
            return cinv;
        }
    }

    return inv;
}
 
Example 3
Source File: ScriptObject.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Find the appropriate SET method for an invoke dynamic call.
 *
 * @param desc    the call site descriptor
 * @param request the link request
 *
 * @return GuardedInvocation to be invoked at call site.
 */
protected GuardedInvocation findSetMethod(final CallSiteDescriptor desc, final LinkRequest request) {
    final String name = desc.getNameToken(CallSiteDescriptor.NAME_OPERAND);

    if (request.isCallSiteUnstable() || hasWithScope()) {
        return findMegaMorphicSetMethod(desc, name);
    }

    final boolean explicitInstanceOfCheck = explicitInstanceOfCheck(desc, request);

    /*
     * If doing property set on a scope object, we should stop proto search on the first
     * non-scope object. Without this, for example, when assigning "toString" on global scope,
     * we'll end up assigning it on it's proto - which is Object.prototype.toString !!
     *
     * toString = function() { print("global toString"); } // don't affect Object.prototype.toString
     */
    FindProperty find = findProperty(name, true, this);

    // If it's not a scope search, then we don't want any inherited properties except those with user defined accessors.
    if (find != null && find.isInherited() && !(find.getProperty() instanceof UserAccessorProperty)) {
        // We should still check if inherited data property is not writable
        if (isExtensible() && !find.getProperty().isWritable()) {
            return createEmptySetMethod(desc, explicitInstanceOfCheck, "property.not.writable", true);
        }
        // Otherwise, forget the found property unless this is a scope callsite and the owner is a scope object as well.
        if (!NashornCallSiteDescriptor.isScope(desc) || !find.getOwner().isScope()) {
            find = null;
        }
    }

    if (find != null) {
        if (!find.getProperty().isWritable() && !NashornCallSiteDescriptor.isDeclaration(desc)) {
            if (NashornCallSiteDescriptor.isScope(desc) && find.getProperty().isLexicalBinding()) {
                throw typeError("assign.constant", name); // Overwriting ES6 const should throw also in non-strict mode.
            }
            // Existing, non-writable property
            return createEmptySetMethod(desc, explicitInstanceOfCheck, "property.not.writable", true);
        }
    } else {
        if (!isExtensible()) {
            return createEmptySetMethod(desc, explicitInstanceOfCheck, "object.non.extensible", false);
        }
    }

    final GuardedInvocation inv = new SetMethodCreator(this, find, desc, request).createGuardedInvocation(findBuiltinSwitchPoint(name));

    final GlobalConstants globalConstants = getGlobalConstants();
    if (globalConstants != null) {
        final GuardedInvocation cinv = globalConstants.findSetMethod(find, this, inv, desc, request);
        if (cinv != null) {
            return cinv;
        }
    }

    return inv;
}
 
Example 4
Source File: ScriptObject.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Find the appropriate SET method for an invoke dynamic call.
 *
 * @param desc    the call site descriptor
 * @param request the link request
 *
 * @return GuardedInvocation to be invoked at call site.
 */
protected GuardedInvocation findSetMethod(final CallSiteDescriptor desc, final LinkRequest request) {
    final String name = desc.getNameToken(CallSiteDescriptor.NAME_OPERAND);

    if (request.isCallSiteUnstable() || hasWithScope()) {
        return findMegaMorphicSetMethod(desc, name);
    }

    final boolean explicitInstanceOfCheck = explicitInstanceOfCheck(desc, request);

    /*
     * If doing property set on a scope object, we should stop proto search on the first
     * non-scope object. Without this, for example, when assigning "toString" on global scope,
     * we'll end up assigning it on it's proto - which is Object.prototype.toString !!
     *
     * toString = function() { print("global toString"); } // don't affect Object.prototype.toString
     */
    FindProperty find = findProperty(name, true, this);

    // If it's not a scope search, then we don't want any inherited properties except those with user defined accessors.
    if (find != null && find.isInherited() && !(find.getProperty() instanceof UserAccessorProperty)) {
        // We should still check if inherited data property is not writable
        if (isExtensible() && !find.getProperty().isWritable()) {
            return createEmptySetMethod(desc, explicitInstanceOfCheck, "property.not.writable", true);
        }
        // Otherwise, forget the found property unless this is a scope callsite and the owner is a scope object as well.
        if (!NashornCallSiteDescriptor.isScope(desc) || !find.getOwner().isScope()) {
            find = null;
        }
    }

    if (find != null) {
        if (!find.getProperty().isWritable() && !NashornCallSiteDescriptor.isDeclaration(desc)) {
            if (NashornCallSiteDescriptor.isScope(desc) && find.getProperty().isLexicalBinding()) {
                throw typeError("assign.constant", name); // Overwriting ES6 const should throw also in non-strict mode.
            }
            // Existing, non-writable property
            return createEmptySetMethod(desc, explicitInstanceOfCheck, "property.not.writable", true);
        }
    } else {
        if (!isExtensible()) {
            return createEmptySetMethod(desc, explicitInstanceOfCheck, "object.non.extensible", false);
        }
    }

    final GuardedInvocation inv = new SetMethodCreator(this, find, desc, request).createGuardedInvocation(findBuiltinSwitchPoint(name));

    final GlobalConstants globalConstants = getGlobalConstants();
    if (globalConstants != null) {
        final GuardedInvocation cinv = globalConstants.findSetMethod(find, this, inv, desc, request);
        if (cinv != null) {
            return cinv;
        }
    }

    return inv;
}
 
Example 5
Source File: ScriptObject.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Find the appropriate SET method for an invoke dynamic call.
 *
 * @param desc    the call site descriptor
 * @param request the link request
 *
 * @return GuardedInvocation to be invoked at call site.
 */
protected GuardedInvocation findSetMethod(final CallSiteDescriptor desc, final LinkRequest request) {
    final String name = NashornCallSiteDescriptor.getOperand(desc);

    if (request.isCallSiteUnstable() || hasWithScope()) {
        return findMegaMorphicSetMethod(desc, name);
    }

    final boolean explicitInstanceOfCheck = explicitInstanceOfCheck(desc, request);

    /*
     * If doing property set on a scope object, we should stop proto search on the first
     * non-scope object. Without this, for example, when assigning "toString" on global scope,
     * we'll end up assigning it on it's proto - which is Object.prototype.toString !!
     *
     * toString = function() { print("global toString"); } // don't affect Object.prototype.toString
     */
    FindProperty find = findProperty(name, true, NashornCallSiteDescriptor.isScope(desc), this);

    // If it's not a scope search, then we don't want any inherited properties except those with user defined accessors.
    if (find != null && find.isInheritedOrdinaryProperty()) {
        // We should still check if inherited data property is not writable
        if (isExtensible() && !find.getProperty().isWritable()) {
            return createEmptySetMethod(desc, explicitInstanceOfCheck, "property.not.writable", true);
        }
        // Otherwise, forget the found property unless this is a scope callsite and the owner is a scope object as well.
        if (!NashornCallSiteDescriptor.isScope(desc) || !find.getOwner().isScope()) {
            find = null;
        }
    }

    if (find != null) {
        if (!find.getProperty().isWritable() && !NashornCallSiteDescriptor.isDeclaration(desc)) {
            if (NashornCallSiteDescriptor.isScope(desc) && find.getProperty().isLexicalBinding()) {
                throw typeError("assign.constant", name); // Overwriting ES6 const should throw also in non-strict mode.
            }
            // Existing, non-writable data property
            return createEmptySetMethod(desc, explicitInstanceOfCheck, "property.not.writable", true);
        }
        if (!find.getProperty().hasNativeSetter()) {
            // Existing accessor property without setter
            return createEmptySetMethod(desc, explicitInstanceOfCheck, "property.has.no.setter", true);
        }
    } else {
        if (!isExtensible()) {
            return createEmptySetMethod(desc, explicitInstanceOfCheck, "object.non.extensible", false);
        }
    }

    final GuardedInvocation inv = new SetMethodCreator(this, find, desc, request).createGuardedInvocation(findBuiltinSwitchPoint(name));

    final GlobalConstants globalConstants = getGlobalConstants();
    if (globalConstants != null) {
        final GuardedInvocation cinv = globalConstants.findSetMethod(find, this, inv, desc, request);
        if (cinv != null) {
            return cinv;
        }
    }

    return inv;
}
 
Example 6
Source File: ScriptObject.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Find the appropriate SET method for an invoke dynamic call.
 *
 * @param desc    the call site descriptor
 * @param request the link request
 *
 * @return GuardedInvocation to be invoked at call site.
 */
protected GuardedInvocation findSetMethod(final CallSiteDescriptor desc, final LinkRequest request) {
    final String name = desc.getNameToken(CallSiteDescriptor.NAME_OPERAND);

    if (request.isCallSiteUnstable() || hasWithScope()) {
        return findMegaMorphicSetMethod(desc, name);
    }

    final boolean explicitInstanceOfCheck = explicitInstanceOfCheck(desc, request);

    /*
     * If doing property set on a scope object, we should stop proto search on the first
     * non-scope object. Without this, for example, when assigning "toString" on global scope,
     * we'll end up assigning it on it's proto - which is Object.prototype.toString !!
     *
     * toString = function() { print("global toString"); } // don't affect Object.prototype.toString
     */
    FindProperty find = findProperty(name, true, this);

    // If it's not a scope search, then we don't want any inherited properties except those with user defined accessors.
    if (find != null && find.isInherited() && !(find.getProperty() instanceof UserAccessorProperty)) {
        // We should still check if inherited data property is not writable
        if (isExtensible() && !find.getProperty().isWritable()) {
            return createEmptySetMethod(desc, explicitInstanceOfCheck, "property.not.writable", true);
        }
        // Otherwise, forget the found property unless this is a scope callsite and the owner is a scope object as well.
        if (!NashornCallSiteDescriptor.isScope(desc) || !find.getOwner().isScope()) {
            find = null;
        }
    }

    if (find != null) {
        if (!find.getProperty().isWritable() && !NashornCallSiteDescriptor.isDeclaration(desc)) {
            if (NashornCallSiteDescriptor.isScope(desc) && find.getProperty().isLexicalBinding()) {
                throw typeError("assign.constant", name); // Overwriting ES6 const should throw also in non-strict mode.
            }
            // Existing, non-writable property
            return createEmptySetMethod(desc, explicitInstanceOfCheck, "property.not.writable", true);
        }
    } else {
        if (!isExtensible()) {
            return createEmptySetMethod(desc, explicitInstanceOfCheck, "object.non.extensible", false);
        }
    }

    final GuardedInvocation inv = new SetMethodCreator(this, find, desc, request).createGuardedInvocation(findBuiltinSwitchPoint(name));

    final GlobalConstants globalConstants = getGlobalConstants();
    if (globalConstants != null) {
        final GuardedInvocation cinv = globalConstants.findSetMethod(find, this, inv, desc, request);
        if (cinv != null) {
            return cinv;
        }
    }

    return inv;
}
 
Example 7
Source File: ScriptObject.java    From jdk8u_nashorn with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Find the appropriate SET method for an invoke dynamic call.
 *
 * @param desc    the call site descriptor
 * @param request the link request
 *
 * @return GuardedInvocation to be invoked at call site.
 */
protected GuardedInvocation findSetMethod(final CallSiteDescriptor desc, final LinkRequest request) {
    final String name = desc.getNameToken(CallSiteDescriptor.NAME_OPERAND);

    if (request.isCallSiteUnstable() || hasWithScope()) {
        return findMegaMorphicSetMethod(desc, name);
    }

    final boolean explicitInstanceOfCheck = explicitInstanceOfCheck(desc, request);

    /*
     * If doing property set on a scope object, we should stop proto search on the first
     * non-scope object. Without this, for example, when assigning "toString" on global scope,
     * we'll end up assigning it on it's proto - which is Object.prototype.toString !!
     *
     * toString = function() { print("global toString"); } // don't affect Object.prototype.toString
     */
    FindProperty find = findProperty(name, true, this);

    // If it's not a scope search, then we don't want any inherited properties except those with user defined accessors.
    if (find != null && find.isInherited() && !(find.getProperty() instanceof UserAccessorProperty)) {
        // We should still check if inherited data property is not writable
        if (isExtensible() && !find.getProperty().isWritable()) {
            return createEmptySetMethod(desc, explicitInstanceOfCheck, "property.not.writable", true);
        }
        // Otherwise, forget the found property unless this is a scope callsite and the owner is a scope object as well.
        if (!NashornCallSiteDescriptor.isScope(desc) || !find.getOwner().isScope()) {
            find = null;
        }
    }

    if (find != null) {
        if (!find.getProperty().isWritable() && !NashornCallSiteDescriptor.isDeclaration(desc)) {
            if (NashornCallSiteDescriptor.isScope(desc) && find.getProperty().isLexicalBinding()) {
                throw typeError("assign.constant", name); // Overwriting ES6 const should throw also in non-strict mode.
            }
            // Existing, non-writable property
            return createEmptySetMethod(desc, explicitInstanceOfCheck, "property.not.writable", true);
        }
    } else {
        if (!isExtensible()) {
            return createEmptySetMethod(desc, explicitInstanceOfCheck, "object.non.extensible", false);
        }
    }

    final GuardedInvocation inv = new SetMethodCreator(this, find, desc, request).createGuardedInvocation(findBuiltinSwitchPoint(name));

    final GlobalConstants globalConstants = getGlobalConstants();
    if (globalConstants != null) {
        final GuardedInvocation cinv = globalConstants.findSetMethod(find, this, inv, desc, request);
        if (cinv != null) {
            return cinv;
        }
    }

    return inv;
}