1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
|
/*
* Copyright (C) 1999-2001 Harri Porten (porten@kde.org)
* Copyright (C) 2004-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 "StringConstructor.h"
#include "JSCInlines.h"
#include "StringPrototype.h"
#include <wtf/text/StringBuilder.h>
namespace JSC {
static JSC_DECLARE_HOST_FUNCTION(stringFromCharCode);
static JSC_DECLARE_HOST_FUNCTION(stringFromCodePoint);
}
#include "StringConstructor.lut.h"
namespace JSC {
const ClassInfo StringConstructor::s_info = { "Function"_s, &Base::s_info, &stringConstructorTable, nullptr, CREATE_METHOD_TABLE(StringConstructor) };
/* Source for StringConstructor.lut.h
@begin stringConstructorTable
fromCharCode stringFromCharCode DontEnum|Function 1 FromCharCodeIntrinsic
fromCodePoint stringFromCodePoint DontEnum|Function 1
raw JSBuiltin DontEnum|Function 1
@end
*/
STATIC_ASSERT_IS_TRIVIALLY_DESTRUCTIBLE(StringConstructor);
static JSC_DECLARE_HOST_FUNCTION(callStringConstructor);
static JSC_DECLARE_HOST_FUNCTION(constructWithStringConstructor);
StringConstructor::StringConstructor(VM& vm, NativeExecutable* executable, JSGlobalObject* globalObject, Structure* structure)
: Base(vm, executable, globalObject, structure)
{
}
void StringConstructor::finishCreation(VM& vm, StringPrototype* stringPrototype)
{
Base::finishCreation(vm);
putDirectWithoutTransition(vm, vm.propertyNames->prototype, stringPrototype, PropertyAttribute::ReadOnly | PropertyAttribute::DontEnum | PropertyAttribute::DontDelete);
putDirectWithoutTransition(vm, vm.propertyNames->length, jsNumber(1), PropertyAttribute::DontEnum | PropertyAttribute::ReadOnly);
putDirectWithoutTransition(vm, vm.propertyNames->name, jsString(vm, vm.propertyNames->String.string()), PropertyAttribute::ReadOnly | PropertyAttribute::DontEnum);
}
StringConstructor* StringConstructor::create(VM& vm, Structure* structure, StringPrototype* stringPrototype)
{
JSGlobalObject* globalObject = structure->globalObject();
NativeExecutable* executable = vm.getHostFunction(callStringConstructor, ImplementationVisibility::Public, StringConstructorIntrinsic, constructWithStringConstructor, nullptr, vm.propertyNames->String.string());
StringConstructor* constructor = new (NotNull, allocateCell<StringConstructor>(vm)) StringConstructor(vm, executable, globalObject, structure);
constructor->finishCreation(vm, stringPrototype);
return constructor;
}
// ------------------------------ Functions --------------------------------
JSC_DEFINE_HOST_FUNCTION(stringFromCharCode, (JSGlobalObject* globalObject, CallFrame* callFrame))
{
VM& vm = globalObject->vm();
auto scope = DECLARE_THROW_SCOPE(vm);
unsigned length = callFrame->argumentCount();
if (LIKELY(length == 1)) {
scope.release();
UChar code = callFrame->uncheckedArgument(0).toUInt32(globalObject);
// Not checking for an exception here is ok because jsSingleCharacterString will just fetch an unused string if there's an exception.
return JSValue::encode(jsSingleCharacterString(vm, code));
}
std::span<LChar> buf8Bit;
auto impl8Bit = StringImpl::createUninitialized(length, buf8Bit);
for (unsigned i = 0; i < length; ++i) {
UChar character = static_cast<UChar>(callFrame->uncheckedArgument(i).toUInt32(globalObject));
RETURN_IF_EXCEPTION(scope, encodedJSValue());
if (UNLIKELY(!isLatin1(character))) {
std::span<UChar> buf16Bit;
auto impl16Bit = StringImpl::createUninitialized(length, buf16Bit);
StringImpl::copyCharacters(buf16Bit, buf8Bit.first(i));
buf16Bit[i] = character;
++i;
for (; i < length; ++i) {
buf16Bit[i] = static_cast<UChar>(callFrame->uncheckedArgument(i).toUInt32(globalObject));
RETURN_IF_EXCEPTION(scope, encodedJSValue());
}
RELEASE_AND_RETURN(scope, JSValue::encode(jsString(vm, WTFMove(impl16Bit))));
}
buf8Bit[i] = static_cast<LChar>(character);
}
RELEASE_AND_RETURN(scope, JSValue::encode(jsString(vm, WTFMove(impl8Bit))));
}
JSString* stringFromCharCode(JSGlobalObject* globalObject, int32_t arg)
{
return jsSingleCharacterString(globalObject->vm(), static_cast<UChar>(arg));
}
JSC_DEFINE_HOST_FUNCTION(stringFromCodePoint, (JSGlobalObject* globalObject, CallFrame* callFrame))
{
VM& vm = globalObject->vm();
auto scope = DECLARE_THROW_SCOPE(vm);
unsigned length = callFrame->argumentCount();
StringBuilder builder;
builder.reserveCapacity(length);
for (unsigned i = 0; i < length; ++i) {
double codePointAsDouble = callFrame->uncheckedArgument(i).toNumber(globalObject);
RETURN_IF_EXCEPTION(scope, encodedJSValue());
uint32_t codePoint = static_cast<uint32_t>(codePointAsDouble);
if (codePoint != codePointAsDouble || codePoint > UCHAR_MAX_VALUE)
return throwVMError(globalObject, scope, createRangeError(globalObject, "Arguments contain a value that is out of range of code points"_s));
if (U_IS_BMP(codePoint))
builder.append(static_cast<UChar>(codePoint));
else {
builder.append(U16_LEAD(codePoint));
builder.append(U16_TRAIL(codePoint));
}
}
RELEASE_AND_RETURN(scope, JSValue::encode(jsString(vm, builder.toString())));
}
JSC_DEFINE_HOST_FUNCTION(constructWithStringConstructor, (JSGlobalObject* globalObject, CallFrame* callFrame))
{
VM& vm = globalObject->vm();
auto scope = DECLARE_THROW_SCOPE(vm);
JSObject* newTarget = asObject(callFrame->newTarget());
Structure* structure = JSC_GET_DERIVED_STRUCTURE(vm, stringObjectStructure, newTarget, callFrame->jsCallee());
RETURN_IF_EXCEPTION(scope, { });
if (!callFrame->argumentCount())
return JSValue::encode(StringObject::create(vm, structure));
JSString* str = callFrame->uncheckedArgument(0).toString(globalObject);
RETURN_IF_EXCEPTION(scope, encodedJSValue());
return JSValue::encode(StringObject::create(vm, structure, str));
}
JSString* stringConstructor(JSGlobalObject* globalObject, JSValue argument)
{
VM& vm = globalObject->vm();
if (argument.isSymbol())
return jsNontrivialString(vm, asSymbol(argument)->descriptiveString());
return argument.toString(globalObject);
}
JSC_DEFINE_HOST_FUNCTION(callStringConstructor, (JSGlobalObject* globalObject, CallFrame* callFrame))
{
VM& vm = globalObject->vm();
if (!callFrame->argumentCount())
return JSValue::encode(jsEmptyString(vm));
return JSValue::encode(stringConstructor(globalObject, callFrame->uncheckedArgument(0)));
}
} // namespace JSC
|