blob: 2a103ab0bf4afb32a4335d911bf34b3296fc3466 [file] [log] [blame]
/*
* Copyright (C) 1999-2000 Harri Porten (porten@kde.org)
* Copyright (C) 2003-2019 Apple Inc. All Rights Reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#include "config.h"
#include "RegExpPrototype.h"
#include "ArrayPrototype.h"
#include "BuiltinNames.h"
#include "Error.h"
#include "JSArray.h"
#include "JSCBuiltins.h"
#include "JSCInlines.h"
#include "JSCJSValue.h"
#include "JSFunction.h"
#include "JSStringInlines.h"
#include "Lexer.h"
#include "ObjectPrototype.h"
#include "RegExpCache.h"
#include "RegExpObject.h"
#include "RegExpObjectInlines.h"
#include "StringObject.h"
#include "StringRecursionChecker.h"
#include "YarrFlags.h"
#include <wtf/text/StringBuilder.h>
namespace JSC {
static EncodedJSValue JSC_HOST_CALL regExpProtoFuncExec(JSGlobalObject*, CallFrame*);
static EncodedJSValue JSC_HOST_CALL regExpProtoFuncCompile(JSGlobalObject*, CallFrame*);
static EncodedJSValue JSC_HOST_CALL regExpProtoFuncToString(JSGlobalObject*, CallFrame*);
static EncodedJSValue JSC_HOST_CALL regExpProtoGetterGlobal(JSGlobalObject*, CallFrame*);
static EncodedJSValue JSC_HOST_CALL regExpProtoGetterIgnoreCase(JSGlobalObject*, CallFrame*);
static EncodedJSValue JSC_HOST_CALL regExpProtoGetterMultiline(JSGlobalObject*, CallFrame*);
static EncodedJSValue JSC_HOST_CALL regExpProtoGetterDotAll(JSGlobalObject*, CallFrame*);
static EncodedJSValue JSC_HOST_CALL regExpProtoGetterSticky(JSGlobalObject*, CallFrame*);
static EncodedJSValue JSC_HOST_CALL regExpProtoGetterUnicode(JSGlobalObject*, CallFrame*);
static EncodedJSValue JSC_HOST_CALL regExpProtoGetterSource(JSGlobalObject*, CallFrame*);
static EncodedJSValue JSC_HOST_CALL regExpProtoGetterFlags(JSGlobalObject*, CallFrame*);
const ClassInfo RegExpPrototype::s_info = { "Object", &Base::s_info, nullptr, nullptr, CREATE_METHOD_TABLE(RegExpPrototype) };
RegExpPrototype::RegExpPrototype(VM& vm, Structure* structure)
: JSNonFinalObject(vm, structure)
{
}
void RegExpPrototype::finishCreation(VM& vm, JSGlobalObject* globalObject)
{
Base::finishCreation(vm);
ASSERT(inherits(vm, info()));
JSC_NATIVE_FUNCTION_WITHOUT_TRANSITION(vm.propertyNames->compile, regExpProtoFuncCompile, static_cast<unsigned>(PropertyAttribute::DontEnum), 2);
JSC_NATIVE_INTRINSIC_FUNCTION_WITHOUT_TRANSITION(vm.propertyNames->exec, regExpProtoFuncExec, static_cast<unsigned>(PropertyAttribute::DontEnum), 1, RegExpExecIntrinsic);
JSC_NATIVE_FUNCTION_WITHOUT_TRANSITION(vm.propertyNames->toString, regExpProtoFuncToString, static_cast<unsigned>(PropertyAttribute::DontEnum), 0);
JSC_NATIVE_GETTER_WITHOUT_TRANSITION(vm.propertyNames->global, regExpProtoGetterGlobal, PropertyAttribute::DontEnum | PropertyAttribute::Accessor);
JSC_NATIVE_GETTER_WITHOUT_TRANSITION(vm.propertyNames->dotAll, regExpProtoGetterDotAll, PropertyAttribute::DontEnum | PropertyAttribute::Accessor);
JSC_NATIVE_GETTER_WITHOUT_TRANSITION(vm.propertyNames->ignoreCase, regExpProtoGetterIgnoreCase, PropertyAttribute::DontEnum | PropertyAttribute::Accessor);
JSC_NATIVE_GETTER_WITHOUT_TRANSITION(vm.propertyNames->multiline, regExpProtoGetterMultiline, PropertyAttribute::DontEnum | PropertyAttribute::Accessor);
JSC_NATIVE_GETTER_WITHOUT_TRANSITION(vm.propertyNames->sticky, regExpProtoGetterSticky, PropertyAttribute::DontEnum | PropertyAttribute::Accessor);
JSC_NATIVE_GETTER_WITHOUT_TRANSITION(vm.propertyNames->unicode, regExpProtoGetterUnicode, PropertyAttribute::DontEnum | PropertyAttribute::Accessor);
JSC_NATIVE_GETTER_WITHOUT_TRANSITION(vm.propertyNames->source, regExpProtoGetterSource, PropertyAttribute::DontEnum | PropertyAttribute::Accessor);
JSC_NATIVE_GETTER_WITHOUT_TRANSITION(vm.propertyNames->flags, regExpProtoGetterFlags, PropertyAttribute::DontEnum | PropertyAttribute::Accessor);
JSC_BUILTIN_FUNCTION_WITHOUT_TRANSITION(vm.propertyNames->matchSymbol, regExpPrototypeMatchCodeGenerator, static_cast<unsigned>(PropertyAttribute::DontEnum));
JSC_BUILTIN_FUNCTION_WITHOUT_TRANSITION(vm.propertyNames->matchAllSymbol, regExpPrototypeMatchAllCodeGenerator, static_cast<unsigned>(PropertyAttribute::DontEnum));
JSC_BUILTIN_FUNCTION_WITHOUT_TRANSITION(vm.propertyNames->replaceSymbol, regExpPrototypeReplaceCodeGenerator, static_cast<unsigned>(PropertyAttribute::DontEnum));
JSC_BUILTIN_FUNCTION_WITHOUT_TRANSITION(vm.propertyNames->searchSymbol, regExpPrototypeSearchCodeGenerator, static_cast<unsigned>(PropertyAttribute::DontEnum));
JSC_BUILTIN_FUNCTION_WITHOUT_TRANSITION(vm.propertyNames->splitSymbol, regExpPrototypeSplitCodeGenerator, static_cast<unsigned>(PropertyAttribute::DontEnum));
JSC_BUILTIN_FUNCTION_WITHOUT_TRANSITION(vm.propertyNames->test, regExpPrototypeTestCodeGenerator, static_cast<unsigned>(PropertyAttribute::DontEnum));
}
// ------------------------------ Functions ---------------------------
EncodedJSValue JSC_HOST_CALL regExpProtoFuncTestFast(JSGlobalObject* globalObject, CallFrame* callFrame)
{
VM& vm = globalObject->vm();
auto scope = DECLARE_THROW_SCOPE(vm);
JSValue thisValue = callFrame->thisValue();
auto* regexp = jsDynamicCast<RegExpObject*>(vm, thisValue);
if (UNLIKELY(!regexp))
return throwVMTypeError(globalObject, scope);
JSString* string = callFrame->argument(0).toStringOrNull(globalObject);
EXCEPTION_ASSERT(!!scope.exception() == !string);
if (!string)
return JSValue::encode(jsUndefined());
RELEASE_AND_RETURN(scope, JSValue::encode(jsBoolean(regexp->test(globalObject, string))));
}
EncodedJSValue JSC_HOST_CALL regExpProtoFuncExec(JSGlobalObject* globalObject, CallFrame* callFrame)
{
VM& vm = globalObject->vm();
auto scope = DECLARE_THROW_SCOPE(vm);
JSValue thisValue = callFrame->thisValue();
auto* regexp = jsDynamicCast<RegExpObject*>(vm, thisValue);
if (UNLIKELY(!regexp))
return throwVMTypeError(globalObject, scope, "Builtin RegExp exec can only be called on a RegExp object");
JSString* string = callFrame->argument(0).toStringOrNull(globalObject);
EXCEPTION_ASSERT(!!scope.exception() == !string);
if (!string)
return JSValue::encode(jsUndefined());
RELEASE_AND_RETURN(scope, JSValue::encode(regexp->exec(globalObject, string)));
}
EncodedJSValue JSC_HOST_CALL regExpProtoFuncMatchFast(JSGlobalObject* globalObject, CallFrame* callFrame)
{
RegExpObject* thisObject = jsCast<RegExpObject*>(callFrame->thisValue());
JSString* string = jsCast<JSString*>(callFrame->uncheckedArgument(0));
if (!thisObject->regExp()->global())
return JSValue::encode(thisObject->exec(globalObject, string));
return JSValue::encode(thisObject->matchGlobal(globalObject, string));
}
EncodedJSValue JSC_HOST_CALL regExpProtoFuncCompile(JSGlobalObject* globalObject, CallFrame* callFrame)
{
VM& vm = globalObject->vm();
auto scope = DECLARE_THROW_SCOPE(vm);
JSValue thisValue = callFrame->thisValue();
auto* thisRegExp = jsDynamicCast<RegExpObject*>(vm, thisValue);
if (UNLIKELY(!thisRegExp))
return throwVMTypeError(globalObject, scope);
RegExp* regExp;
JSValue arg0 = callFrame->argument(0);
JSValue arg1 = callFrame->argument(1);
if (auto* regExpObject = jsDynamicCast<RegExpObject*>(vm, arg0)) {
if (!arg1.isUndefined())
return throwVMTypeError(globalObject, scope, "Cannot supply flags when constructing one RegExp from another."_s);
regExp = regExpObject->regExp();
} else {
String pattern = arg0.isUndefined() ? emptyString() : arg0.toWTFString(globalObject);
RETURN_IF_EXCEPTION(scope, encodedJSValue());
auto flags = arg1.isUndefined() ? makeOptional(OptionSet<Yarr::Flags> { }) : Yarr::parseFlags(arg1.toWTFString(globalObject));
RETURN_IF_EXCEPTION(scope, encodedJSValue());
if (!flags)
return throwVMError(globalObject, scope, createSyntaxError(globalObject, "Invalid flags supplied to RegExp constructor."_s));
regExp = RegExp::create(vm, pattern, flags.value());
}
if (!regExp->isValid())
return throwVMError(globalObject, scope, regExp->errorToThrow(globalObject));
thisRegExp->setRegExp(vm, regExp);
scope.release();
thisRegExp->setLastIndex(globalObject, 0);
return JSValue::encode(thisRegExp);
}
typedef std::array<char, 6 + 1> FlagsString; // 6 different flags and a null character terminator.
static inline FlagsString flagsString(JSGlobalObject* globalObject, JSObject* regexp)
{
FlagsString string;
string[0] = 0;
VM& vm = globalObject->vm();
auto scope = DECLARE_THROW_SCOPE(vm);
JSValue globalValue = regexp->get(globalObject, vm.propertyNames->global);
RETURN_IF_EXCEPTION(scope, string);
JSValue ignoreCaseValue = regexp->get(globalObject, vm.propertyNames->ignoreCase);
RETURN_IF_EXCEPTION(scope, string);
JSValue multilineValue = regexp->get(globalObject, vm.propertyNames->multiline);
RETURN_IF_EXCEPTION(scope, string);
JSValue dotAllValue = regexp->get(globalObject, vm.propertyNames->dotAll);
RETURN_IF_EXCEPTION(scope, string);
JSValue unicodeValue = regexp->get(globalObject, vm.propertyNames->unicode);
RETURN_IF_EXCEPTION(scope, string);
JSValue stickyValue = regexp->get(globalObject, vm.propertyNames->sticky);
RETURN_IF_EXCEPTION(scope, string);
unsigned index = 0;
if (globalValue.toBoolean(globalObject))
string[index++] = 'g';
if (ignoreCaseValue.toBoolean(globalObject))
string[index++] = 'i';
if (multilineValue.toBoolean(globalObject))
string[index++] = 'm';
if (dotAllValue.toBoolean(globalObject))
string[index++] = 's';
if (unicodeValue.toBoolean(globalObject))
string[index++] = 'u';
if (stickyValue.toBoolean(globalObject))
string[index++] = 'y';
ASSERT(index < string.size());
string[index] = 0;
return string;
}
EncodedJSValue JSC_HOST_CALL regExpProtoFuncToString(JSGlobalObject* globalObject, CallFrame* callFrame)
{
VM& vm = globalObject->vm();
auto scope = DECLARE_THROW_SCOPE(vm);
JSValue thisValue = callFrame->thisValue();
if (!thisValue.isObject())
return throwVMTypeError(globalObject, scope);
JSObject* thisObject = asObject(thisValue);
StringRecursionChecker checker(globalObject, thisObject);
EXCEPTION_ASSERT(!scope.exception() || checker.earlyReturnValue());
if (JSValue earlyReturnValue = checker.earlyReturnValue())
return JSValue::encode(earlyReturnValue);
JSValue sourceValue = thisObject->get(globalObject, vm.propertyNames->source);
RETURN_IF_EXCEPTION(scope, encodedJSValue());
String source = sourceValue.toWTFString(globalObject);
RETURN_IF_EXCEPTION(scope, encodedJSValue());
JSValue flagsValue = thisObject->get(globalObject, vm.propertyNames->flags);
RETURN_IF_EXCEPTION(scope, encodedJSValue());
String flags = flagsValue.toWTFString(globalObject);
RETURN_IF_EXCEPTION(scope, encodedJSValue());
RELEASE_AND_RETURN(scope, JSValue::encode(jsMakeNontrivialString(globalObject, '/', source, '/', flags)));
}
EncodedJSValue JSC_HOST_CALL regExpProtoGetterGlobal(JSGlobalObject* globalObject, CallFrame* callFrame)
{
VM& vm = globalObject->vm();
auto scope = DECLARE_THROW_SCOPE(vm);
JSValue thisValue = callFrame->thisValue();
auto* regexp = jsDynamicCast<RegExpObject*>(vm, thisValue);
if (UNLIKELY(!regexp)) {
if (thisValue.inherits<RegExpPrototype>(vm))
return JSValue::encode(jsUndefined());
return throwVMTypeError(globalObject, scope, "The RegExp.prototype.global getter can only be called on a RegExp object"_s);
}
return JSValue::encode(jsBoolean(regexp->regExp()->global()));
}
EncodedJSValue JSC_HOST_CALL regExpProtoGetterIgnoreCase(JSGlobalObject* globalObject, CallFrame* callFrame)
{
VM& vm = globalObject->vm();
auto scope = DECLARE_THROW_SCOPE(vm);
JSValue thisValue = callFrame->thisValue();
auto* regexp = jsDynamicCast<RegExpObject*>(vm, thisValue);
if (UNLIKELY(!regexp)) {
if (thisValue.inherits<RegExpPrototype>(vm))
return JSValue::encode(jsUndefined());
return throwVMTypeError(globalObject, scope, "The RegExp.prototype.ignoreCase getter can only be called on a RegExp object"_s);
}
return JSValue::encode(jsBoolean(regexp->regExp()->ignoreCase()));
}
EncodedJSValue JSC_HOST_CALL regExpProtoGetterMultiline(JSGlobalObject* globalObject, CallFrame* callFrame)
{
VM& vm = globalObject->vm();
auto scope = DECLARE_THROW_SCOPE(vm);
JSValue thisValue = callFrame->thisValue();
auto* regexp = jsDynamicCast<RegExpObject*>(vm, thisValue);
if (UNLIKELY(!regexp)) {
if (thisValue.inherits<RegExpPrototype>(vm))
return JSValue::encode(jsUndefined());
return throwVMTypeError(globalObject, scope, "The RegExp.prototype.multiline getter can only be called on a RegExp object"_s);
}
return JSValue::encode(jsBoolean(regexp->regExp()->multiline()));
}
EncodedJSValue JSC_HOST_CALL regExpProtoGetterDotAll(JSGlobalObject* globalObject, CallFrame* callFrame)
{
VM& vm = globalObject->vm();
auto scope = DECLARE_THROW_SCOPE(vm);
JSValue thisValue = callFrame->thisValue();
auto* regexp = jsDynamicCast<RegExpObject*>(vm, thisValue);
if (UNLIKELY(!regexp)) {
if (thisValue.inherits<RegExpPrototype>(vm))
return JSValue::encode(jsUndefined());
return throwVMTypeError(globalObject, scope, "The RegExp.prototype.dotAll getter can only be called on a RegExp object"_s);
}
return JSValue::encode(jsBoolean(regexp->regExp()->dotAll()));
}
EncodedJSValue JSC_HOST_CALL regExpProtoGetterSticky(JSGlobalObject* globalObject, CallFrame* callFrame)
{
VM& vm = globalObject->vm();
auto scope = DECLARE_THROW_SCOPE(vm);
JSValue thisValue = callFrame->thisValue();
auto* regexp = jsDynamicCast<RegExpObject*>(vm, thisValue);
if (UNLIKELY(!regexp)) {
if (thisValue.inherits<RegExpPrototype>(vm))
return JSValue::encode(jsUndefined());
return throwVMTypeError(globalObject, scope, "The RegExp.prototype.sticky getter can only be called on a RegExp object"_s);
}
return JSValue::encode(jsBoolean(regexp->regExp()->sticky()));
}
EncodedJSValue JSC_HOST_CALL regExpProtoGetterUnicode(JSGlobalObject* globalObject, CallFrame* callFrame)
{
VM& vm = globalObject->vm();
auto scope = DECLARE_THROW_SCOPE(vm);
JSValue thisValue = callFrame->thisValue();
auto* regexp = jsDynamicCast<RegExpObject*>(vm, thisValue);
if (UNLIKELY(!regexp)) {
if (thisValue.inherits<RegExpPrototype>(vm))
return JSValue::encode(jsUndefined());
return throwVMTypeError(globalObject, scope, "The RegExp.prototype.unicode getter can only be called on a RegExp object"_s);
}
return JSValue::encode(jsBoolean(regexp->regExp()->unicode()));
}
EncodedJSValue JSC_HOST_CALL regExpProtoGetterFlags(JSGlobalObject* globalObject, CallFrame* callFrame)
{
VM& vm = globalObject->vm();
auto scope = DECLARE_THROW_SCOPE(vm);
JSValue thisValue = callFrame->thisValue();
if (UNLIKELY(!thisValue.isObject()))
return throwVMTypeError(globalObject, scope, "The RegExp.prototype.flags getter can only be called on an object"_s);
auto flags = flagsString(globalObject, asObject(thisValue));
RETURN_IF_EXCEPTION(scope, encodedJSValue());
return JSValue::encode(jsString(vm, flags.data()));
}
template <typename CharacterType>
static inline void appendLineTerminatorEscape(StringBuilder&, CharacterType);
template <>
inline void appendLineTerminatorEscape<LChar>(StringBuilder& builder, LChar lineTerminator)
{
if (lineTerminator == '\n')
builder.append('n');
else
builder.append('r');
}
template <>
inline void appendLineTerminatorEscape<UChar>(StringBuilder& builder, UChar lineTerminator)
{
if (lineTerminator == '\n')
builder.append('n');
else if (lineTerminator == '\r')
builder.append('r');
else if (lineTerminator == 0x2028)
builder.appendLiteral("u2028");
else
builder.appendLiteral("u2029");
}
template <typename CharacterType>
static inline JSValue regExpProtoGetterSourceInternal(JSGlobalObject* globalObject, const String& pattern, const CharacterType* characters, unsigned length)
{
VM& vm = globalObject->vm();
bool previousCharacterWasBackslash = false;
bool inBrackets = false;
bool shouldEscape = false;
// 15.10.6.4 specifies that RegExp.prototype.toString must return '/' + source + '/',
// and also states that the result must be a valid RegularExpressionLiteral. '//' is
// not a valid RegularExpressionLiteral (since it is a single line comment), and hence
// source cannot ever validly be "". If the source is empty, return a different Pattern
// that would match the same thing.
if (!length)
return jsNontrivialString(vm, "(?:)"_s);
// early return for strings that don't contain a forwards slash and LineTerminator
for (unsigned i = 0; i < length; ++i) {
CharacterType ch = characters[i];
if (!previousCharacterWasBackslash) {
if (inBrackets) {
if (ch == ']')
inBrackets = false;
} else {
if (ch == '/') {
shouldEscape = true;
break;
}
if (ch == '[')
inBrackets = true;
}
}
if (Lexer<CharacterType>::isLineTerminator(ch)) {
shouldEscape = true;
break;
}
if (previousCharacterWasBackslash)
previousCharacterWasBackslash = false;
else
previousCharacterWasBackslash = ch == '\\';
}
if (!shouldEscape)
return jsString(vm, pattern);
previousCharacterWasBackslash = false;
inBrackets = false;
StringBuilder result;
for (unsigned i = 0; i < length; ++i) {
CharacterType ch = characters[i];
if (!previousCharacterWasBackslash) {
if (inBrackets) {
if (ch == ']')
inBrackets = false;
} else {
if (ch == '/')
result.append('\\');
else if (ch == '[')
inBrackets = true;
}
}
// escape LineTerminator
if (Lexer<CharacterType>::isLineTerminator(ch)) {
if (!previousCharacterWasBackslash)
result.append('\\');
appendLineTerminatorEscape<CharacterType>(result, ch);
} else
result.append(ch);
if (previousCharacterWasBackslash)
previousCharacterWasBackslash = false;
else
previousCharacterWasBackslash = ch == '\\';
}
return jsString(vm, result.toString());
}
EncodedJSValue JSC_HOST_CALL regExpProtoGetterSource(JSGlobalObject* globalObject, CallFrame* callFrame)
{
VM& vm = globalObject->vm();
auto scope = DECLARE_THROW_SCOPE(vm);
JSValue thisValue = callFrame->thisValue();
auto* regexp = jsDynamicCast<RegExpObject*>(vm, thisValue);
if (UNLIKELY(!regexp)) {
if (thisValue.inherits<RegExpPrototype>(vm))
return JSValue::encode(jsString(vm, "(?:)"_s));
return throwVMTypeError(globalObject, scope, "The RegExp.prototype.source getter can only be called on a RegExp object"_s);
}
String pattern = regexp->regExp()->pattern();
if (pattern.is8Bit())
return JSValue::encode(regExpProtoGetterSourceInternal(globalObject, pattern, pattern.characters8(), pattern.length()));
return JSValue::encode(regExpProtoGetterSourceInternal(globalObject, pattern, pattern.characters16(), pattern.length()));
}
EncodedJSValue JSC_HOST_CALL regExpProtoFuncSearchFast(JSGlobalObject* globalObject, CallFrame* callFrame)
{
VM& vm = globalObject->vm();
auto scope = DECLARE_THROW_SCOPE(vm);
JSValue thisValue = callFrame->thisValue();
RegExp* regExp = jsCast<RegExpObject*>(thisValue)->regExp();
JSString* string = callFrame->uncheckedArgument(0).toString(globalObject);
String s = string->value(globalObject);
RETURN_IF_EXCEPTION(scope, encodedJSValue());
MatchResult result = globalObject->regExpGlobalData().performMatch(vm, globalObject, regExp, string, s, 0);
RETURN_IF_EXCEPTION(scope, encodedJSValue());
return JSValue::encode(result ? jsNumber(result.start) : jsNumber(-1));
}
static inline unsigned advanceStringIndex(String str, unsigned strSize, unsigned index, bool isUnicode)
{
if (!isUnicode)
return ++index;
return advanceStringUnicode(str, strSize, index);
}
enum SplitControl {
ContinueSplit,
AbortSplit
};
template<typename ControlFunc, typename PushFunc>
void genericSplit(
VM& vm, RegExp* regexp, const String& input, unsigned inputSize, unsigned& position,
unsigned& matchPosition, bool regExpIsSticky, bool regExpIsUnicode,
const ControlFunc& control, const PushFunc& push)
{
Vector<int> ovector;
while (matchPosition < inputSize) {
if (control() == AbortSplit)
return;
ovector.shrink(0);
// a. Perform ? Set(splitter, "lastIndex", q, true).
// b. Let z be ? RegExpExec(splitter, S).
int mpos = regexp->match(vm, input, matchPosition, ovector);
// c. If z is null, let q be AdvanceStringIndex(S, q, unicodeMatching).
if (mpos < 0) {
if (!regExpIsSticky)
break;
matchPosition = advanceStringIndex(input, inputSize, matchPosition, regExpIsUnicode);
continue;
}
if (static_cast<unsigned>(mpos) >= inputSize) {
// The spec redoes the RegExpExec starting at the next character of the input.
// But in our case, mpos < 0 means that the native regexp already searched all permutations
// and know that we won't be able to find a match for the separator even if we redo the
// RegExpExec starting at the next character of the input. So, just bail.
break;
}
// d. Else, z is not null
// i. Let e be ? ToLength(? Get(splitter, "lastIndex")).
// ii. Let e be min(e, size).
matchPosition = mpos;
unsigned matchEnd = ovector[1];
// iii. If e = p, let q be AdvanceStringIndex(S, q, unicodeMatching).
if (matchEnd == position) {
matchPosition = advanceStringIndex(input, inputSize, matchPosition, regExpIsUnicode);
continue;
}
// if matchEnd == 0 then position should also be zero and thus matchEnd should equal position.
ASSERT(matchEnd);
// iv. Else e != p,
unsigned numberOfCaptures = regexp->numSubpatterns();
// 1. Let T be a String value equal to the substring of S consisting of the elements at indices p (inclusive) through q (exclusive).
// 2. Perform ! CreateDataProperty(A, ! ToString(lengthA), T).
if (push(true, position, matchPosition - position) == AbortSplit)
return;
// 5. Let p be e.
position = matchEnd;
// 6. Let numberOfCaptures be ? ToLength(? Get(z, "length")).
// 7. Let numberOfCaptures be max(numberOfCaptures-1, 0).
// 8. Let i be 1.
// 9. Repeat, while i <= numberOfCaptures,
for (unsigned i = 1; i <= numberOfCaptures; ++i) {
// a. Let nextCapture be ? Get(z, ! ToString(i)).
// b. Perform ! CreateDataProperty(A, ! ToString(lengthA), nextCapture).
int sub = ovector[i * 2];
if (push(sub >= 0, sub, ovector[i * 2 + 1] - sub) == AbortSplit)
return;
}
// 10. Let q be p.
matchPosition = position;
}
}
// ES 21.2.5.11 RegExp.prototype[@@split](string, limit)
EncodedJSValue JSC_HOST_CALL regExpProtoFuncSplitFast(JSGlobalObject* globalObject, CallFrame* callFrame)
{
VM& vm = globalObject->vm();
auto scope = DECLARE_THROW_SCOPE(vm);
// 1. [handled by JS builtin] Let rx be the this value.
// 2. [handled by JS builtin] If Type(rx) is not Object, throw a TypeError exception.
JSValue thisValue = callFrame->thisValue();
RegExp* regexp = jsCast<RegExpObject*>(thisValue)->regExp();
// 3. [handled by JS builtin] Let S be ? ToString(string).
JSString* inputString = callFrame->argument(0).toString(globalObject);
String input = inputString->value(globalObject);
RETURN_IF_EXCEPTION(scope, encodedJSValue());
ASSERT(!input.isNull());
// 4. [handled by JS builtin] Let C be ? SpeciesConstructor(rx, %RegExp%).
// 5. [handled by JS builtin] Let flags be ? ToString(? Get(rx, "flags")).
// 6. [handled by JS builtin] If flags contains "u", let unicodeMatching be true.
// 7. [handled by JS builtin] Else, let unicodeMatching be false.
// 8. [handled by JS builtin] If flags contains "y", let newFlags be flags.
// 9. [handled by JS builtin] Else, let newFlags be the string that is the concatenation of flags and "y".
// 10. [handled by JS builtin] Let splitter be ? Construct(C, « rx, newFlags »).
// 11. Let A be ArrayCreate(0).
// 12. Let lengthA be 0.
JSArray* result = constructEmptyArray(globalObject, 0);
RETURN_IF_EXCEPTION(scope, encodedJSValue());
unsigned resultLength = 0;
// 13. If limit is undefined, let lim be 2^32-1; else let lim be ? ToUint32(limit).
JSValue limitValue = callFrame->argument(1);
unsigned limit = limitValue.isUndefined() ? 0xFFFFFFFFu : limitValue.toUInt32(globalObject);
RETURN_IF_EXCEPTION(scope, encodedJSValue());
// 14. Let size be the number of elements in S.
unsigned inputSize = input.length();
// 15. Let p = 0.
unsigned position = 0;
// 16. If lim == 0, return A.
if (!limit)
return JSValue::encode(result);
// 17. If size == 0, then
if (input.isEmpty()) {
// a. Let z be ? RegExpExec(splitter, S).
// b. If z is not null, return A.
// c. Perform ! CreateDataProperty(A, "0", S).
// d. Return A.
if (!regexp->match(vm, input, 0)) {
result->putDirectIndex(globalObject, 0, inputString);
RETURN_IF_EXCEPTION(scope, encodedJSValue());
}
return JSValue::encode(result);
}
// 18. Let q = p.
unsigned matchPosition = position;
// 19. Repeat, while q < size
bool regExpIsSticky = regexp->sticky();
bool regExpIsUnicode = regexp->unicode();
unsigned maxSizeForDirectPath = 100000;
genericSplit(
vm, regexp, input, inputSize, position, matchPosition, regExpIsSticky, regExpIsUnicode,
[&] () -> SplitControl {
if (resultLength >= maxSizeForDirectPath)
return AbortSplit;
return ContinueSplit;
},
[&] (bool isDefined, unsigned start, unsigned length) -> SplitControl {
result->putDirectIndex(globalObject, resultLength++, isDefined ? jsSubstringOfResolved(vm, inputString, start, length) : jsUndefined());
RETURN_IF_EXCEPTION(scope, AbortSplit);
if (resultLength >= limit)
return AbortSplit;
return ContinueSplit;
});
RETURN_IF_EXCEPTION(scope, encodedJSValue());
if (resultLength >= limit)
return JSValue::encode(result);
if (resultLength < maxSizeForDirectPath) {
// 20. Let T be a String value equal to the substring of S consisting of the elements at indices p (inclusive) through size (exclusive).
// 21. Perform ! CreateDataProperty(A, ! ToString(lengthA), T).
scope.release();
result->putDirectIndex(globalObject, resultLength, jsSubstringOfResolved(vm, inputString, position, inputSize - position));
// 22. Return A.
return JSValue::encode(result);
}
// Now do a dry run to see how big things get. Give up if they get absurd.
unsigned savedPosition = position;
unsigned savedMatchPosition = matchPosition;
unsigned dryRunCount = 0;
genericSplit(
vm, regexp, input, inputSize, position, matchPosition, regExpIsSticky, regExpIsUnicode,
[&] () -> SplitControl {
if (resultLength + dryRunCount > MAX_STORAGE_VECTOR_LENGTH)
return AbortSplit;
return ContinueSplit;
},
[&] (bool, unsigned, unsigned) -> SplitControl {
dryRunCount++;
if (resultLength + dryRunCount >= limit)
return AbortSplit;
return ContinueSplit;
});
if (resultLength + dryRunCount > MAX_STORAGE_VECTOR_LENGTH) {
throwOutOfMemoryError(globalObject, scope);
return encodedJSValue();
}
// OK, we know that if we finish the split, we won't have to OOM.
position = savedPosition;
matchPosition = savedMatchPosition;
genericSplit(
vm, regexp, input, inputSize, position, matchPosition, regExpIsSticky, regExpIsUnicode,
[&] () -> SplitControl {
return ContinueSplit;
},
[&] (bool isDefined, unsigned start, unsigned length) -> SplitControl {
result->putDirectIndex(globalObject, resultLength++, isDefined ? jsSubstringOfResolved(vm, inputString, start, length) : jsUndefined());
RETURN_IF_EXCEPTION(scope, AbortSplit);
if (resultLength >= limit)
return AbortSplit;
return ContinueSplit;
});
RETURN_IF_EXCEPTION(scope, encodedJSValue());
if (resultLength >= limit)
return JSValue::encode(result);
// 20. Let T be a String value equal to the substring of S consisting of the elements at indices p (inclusive) through size (exclusive).
// 21. Perform ! CreateDataProperty(A, ! ToString(lengthA), T).
scope.release();
result->putDirectIndex(globalObject, resultLength, jsSubstringOfResolved(vm, inputString, position, inputSize - position));
// 22. Return A.
return JSValue::encode(result);
}
} // namespace JSC