X-Git-Url: https://git.saurik.com/apple/javascriptcore.git/blobdiff_plain/4be4e30906bcb8ee30b4d189205cb70bad6707ce..81345200c95645a1b0d2635520f96ad55dfde63f:/builtins/BuiltinExecutables.cpp diff --git a/builtins/BuiltinExecutables.cpp b/builtins/BuiltinExecutables.cpp new file mode 100644 index 0000000..70b43d5 --- /dev/null +++ b/builtins/BuiltinExecutables.cpp @@ -0,0 +1,96 @@ +/* + * Copyright (C) 2014 Apple Inc. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY + * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + + +#include "config.h" +#include "BuiltinExecutables.h" + +#include "BuiltinNames.h" +#include "Executable.h" +#include "JSCInlines.h" +#include "Parser.h" + +namespace JSC { + +BuiltinExecutables::BuiltinExecutables(VM& vm) + : m_vm(vm) +#define INITIALIZE_BUILTIN_SOURCE_MEMBERS(name, functionName, length) , m_##name##Source(makeSource(StringImpl::createFromLiteral(s_##name, length))) + JSC_FOREACH_BUILTIN(INITIALIZE_BUILTIN_SOURCE_MEMBERS) +#undef EXPOSE_BUILTIN_STRINGS +{ +} + +UnlinkedFunctionExecutable* BuiltinExecutables::createBuiltinExecutable(const SourceCode& source, const Identifier& name) +{ + JSTextPosition positionBeforeLastNewline; + ParserError error; + RefPtr program = parse(&m_vm, source, 0, Identifier(), JSParseBuiltin, JSParseProgramCode, error, &positionBeforeLastNewline); + + if (!program) { + dataLog("Fatal error compiling builtin function '", name.string(), "': ", error.m_message); + CRASH(); + } + + StatementNode* exprStatement = program->singleStatement(); + RELEASE_ASSERT(exprStatement); + RELEASE_ASSERT(exprStatement->isExprStatement()); + ExpressionNode* funcExpr = static_cast(exprStatement)->expr(); + RELEASE_ASSERT(funcExpr); + RELEASE_ASSERT(funcExpr->isFuncExprNode()); + FunctionBodyNode* body = static_cast(funcExpr)->body(); + RELEASE_ASSERT(!program->hasCapturedVariables()); + + body->setEndPosition(positionBeforeLastNewline); + RELEASE_ASSERT(body); + RELEASE_ASSERT(body->ident().isNull()); + + // This function assumes an input string that would result in a single anonymous function expression. + body->setEndPosition(positionBeforeLastNewline); + RELEASE_ASSERT(body); + for (const auto& closedVariable : program->closedVariables()) { + if (closedVariable == m_vm.propertyNames->arguments.impl()) + continue; + + if (closedVariable == m_vm.propertyNames->undefinedKeyword.impl()) + continue; + RELEASE_ASSERT(closedVariable->isEmptyUnique()); + } + body->overrideName(name); + UnlinkedFunctionExecutable* functionExecutable = UnlinkedFunctionExecutable::create(&m_vm, source, body, UnlinkedBuiltinFunction); + functionExecutable->m_nameValue.set(m_vm, functionExecutable, jsString(&m_vm, name.string())); + return functionExecutable; +} + +#define DEFINE_BUILTIN_EXECUTABLES(name, functionName, length) \ +UnlinkedFunctionExecutable* BuiltinExecutables::name##Executable() \ +{\ + if (!m_##name##Executable)\ + m_##name##Executable = createBuiltinExecutable(m_##name##Source, m_vm.propertyNames->builtinNames().functionName##PublicName());\ + return m_##name##Executable.get();\ +} +JSC_FOREACH_BUILTIN(DEFINE_BUILTIN_EXECUTABLES) +#undef EXPOSE_BUILTIN_SOURCES + +}