/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
deps/v8/src/builtins/builtins-string.cc
501 строка
18 KB
Michaël Zasso
deps: update V8 to 14.6.202.33
24 апр 2026, 19:01
Не верифицирован
24 апр 2026, 19:01
f1e0b83
Код
Авторство
О чём код?
// Copyright 2016 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include <optional> #include "src/builtins/builtins-utils-inl.h" #include "src/builtins/builtins.h" #include "src/logging/counters.h" #include "src/numbers/conversions.h" #include "src/objects/objects-inl.h" #ifdef V8_INTL_SUPPORT #include "src/objects/intl-objects.h" #endif #include "src/base/strings.h" #include "src/regexp/regexp-utils.h" #include "src/strings/string-builder-inl.h" #include "src/strings/string-case.h" #include "src/strings/unicode-inl.h" #include "src/strings/unicode.h" namespace v8 { namespace internal { namespace { // for String.fromCodePoint bool IsValidCodePoint(Isolate* isolate, DirectHandle<Object> value) { if (!IsNumber(*value) && !Object::ToNumber(isolate, value).ToHandle(&value)) { return false; } if (Object::IntegerValue(isolate, value).ToChecked() != Object::NumberValue(*value)) { return false; } if (Object::NumberValue(*value) < 0 || Object::NumberValue(*value) > 0x10FFFF) { return false; } return true; } static constexpr base::uc32 kInvalidCodePoint = static_cast<base::uc32>(-1); base::uc32 NextCodePoint(Isolate* isolate, BuiltinArguments args, int index) { DirectHandle<Object> value = args.at(1 + index); ASSIGN_RETURN_ON_EXCEPTION_VALUE( isolate, value, Object::ToNumber(isolate, value), kInvalidCodePoint); if (!IsValidCodePoint(isolate, value)) { isolate->Throw(*isolate->factory()->NewRangeError( MessageTemplate::kInvalidCodePoint, value)); return kInvalidCodePoint; } return DoubleToUint32(Object::NumberValue(*value)); } } // namespace // ES6 section 21.1.2.2 String.fromCodePoint ( ...codePoints ) BUILTIN(StringFromCodePoint) { HandleScope scope(isolate); int const length = args.length() - 1; if (length == 0) return ReadOnlyRoots(isolate).empty_string(); DCHECK_LT(0, length); // Optimistically assume that the resulting String contains only one byte // characters. std::vector<uint8_t> one_byte_buffer; one_byte_buffer.reserve(length); base::uc32 code = 0; int index; for (index = 0; index < length; index++) { code = NextCodePoint(isolate, args, index); if (code == kInvalidCodePoint) { return ReadOnlyRoots(isolate).exception(); } if (code > String::kMaxOneByteCharCode) { break; } one_byte_buffer.push_back(code); } if (index == length) { RETURN_RESULT_OR_FAILURE( isolate, isolate->factory()->NewStringFromOneByte(base::Vector<uint8_t>( one_byte_buffer.data(), one_byte_buffer.size()))); } std::vector<base::uc16> two_byte_buffer; two_byte_buffer.reserve(length - index); while (true) { if (code <= static_cast<base::uc32>(unibrow::Utf16::kMaxNonSurrogateCharCode)) { two_byte_buffer.push_back(code); } else { two_byte_buffer.push_back(unibrow::Utf16::LeadSurrogate(code)); two_byte_buffer.push_back(unibrow::Utf16::TrailSurrogate(code)); } if (++index == length) { break; } code = NextCodePoint(isolate, args, index); if (code == kInvalidCodePoint) { return ReadOnlyRoots(isolate).exception(); } } DirectHandle<SeqTwoByteString> result; ASSIGN_RETURN_FAILURE_ON_EXCEPTION( isolate, result, isolate->factory()->NewRawTwoByteString( static_cast<int>(one_byte_buffer.size() + two_byte_buffer.size()))); DisallowGarbageCollection no_gc; CopyChars(result->GetChars(no_gc), one_byte_buffer.data(), one_byte_buffer.size()); CopyChars(result->GetChars(no_gc) + one_byte_buffer.size(), two_byte_buffer.data(), two_byte_buffer.size()); return *result; } // ES6 section 21.1.3.9 // String.prototype.lastIndexOf ( searchString [ , position ] ) BUILTIN(StringPrototypeLastIndexOf) { HandleScope handle_scope(isolate); return String::LastIndexOf(isolate, args.receiver(), args.atOrUndefined(isolate, 1), args.atOrUndefined(isolate, 2)); } #ifndef V8_INTL_SUPPORT // ES6 section 21.1.3.10 String.prototype.localeCompare ( that ) // // For now, we do not do anything locale specific. // If internationalization is enabled, then intl.js will override this function // and provide the proper functionality, so this is just a fallback. BUILTIN(StringPrototypeLocaleCompare) { HandleScope handle_scope(isolate); isolate->CountUsage(v8::Isolate::UseCounterFeature::kStringLocaleCompare); static const char* const kMethod = "String.prototype.localeCompare"; DCHECK_LE(2, args.length()); TO_THIS_STRING(str1, kMethod); DirectHandle<String> str2; ASSIGN_RETURN_FAILURE_ON_EXCEPTION(isolate, str2, Object::ToString(isolate, args.at(1))); if (str1.is_identical_to(str2)) return Smi::zero(); // Equal. int str1_length = str1->length(); int str2_length = str2->length(); // Decide trivial cases without flattening. if (str1_length == 0) { if (str2_length == 0) return Smi::zero(); // Equal. return Smi::FromInt(-str2_length); } else { if (str2_length == 0) return Smi::FromInt(str1_length); } int end = str1_length < str2_length ? str1_length : str2_length; // No need to flatten if we are going to find the answer on the first // character. At this point we know there is at least one character // in each string, due to the trivial case handling above. int d = str1->Get(0) - str2->Get(0); if (d != 0) return Smi::FromInt(d); str1 = String::Flatten(isolate, str1); str2 = String::Flatten(isolate, str2); DisallowGarbageCollection no_gc; String::FlatContent flat1 = str1->GetFlatContent(no_gc); String::FlatContent flat2 = str2->GetFlatContent(no_gc); for (int i = 0; i < end; i++) { if (flat1.Get(i) != flat2.Get(i)) { return Smi::FromInt(flat1.Get(i) - flat2.Get(i)); } } return Smi::FromInt(str1_length - str2_length); } // ES6 section 21.1.3.12 String.prototype.normalize ( [form] ) // // Simply checks the argument is valid and returns the string itself. // If internationalization is enabled, then intl.js will override this function // and provide the proper functionality, so this is just a fallback. BUILTIN(StringPrototypeNormalize) { HandleScope handle_scope(isolate); TO_THIS_STRING(string, "String.prototype.normalize"); DirectHandle<Object> form_input = args.atOrUndefined(isolate, 1); if (IsUndefined(*form_input, isolate)) return *string; DirectHandle<String> form; ASSIGN_RETURN_FAILURE_ON_EXCEPTION(isolate, form, Object::ToString(isolate, form_input)); if (!(String::Equals(isolate, form, isolate->factory()->NFC_string()) || String::Equals(isolate, form, isolate->factory()->NFD_string()) || String::Equals(isolate, form, isolate->factory()->NFKC_string()) || String::Equals(isolate, form, isolate->factory()->NFKD_string()))) { DirectHandle<String> valid_forms = isolate->factory()->NewStringFromStaticChars("NFC, NFD, NFKC, NFKD"); THROW_NEW_ERROR_RETURN_FAILURE( isolate, NewRangeError(MessageTemplate::kNormalizationForm, valid_forms)); } return *string; } #endif // !V8_INTL_SUPPORT #ifndef V8_INTL_SUPPORT namespace { inline bool ToUpperOverflows(base::uc32 character) { // y with umlauts and the micro sign are the only characters that stop // fitting into one-byte when converting to uppercase. static const base::uc32 yuml_code = 0xFF; static const base::uc32 micro_code = 0xB5; return (character == yuml_code || character == micro_code); } template <class Converter> V8_WARN_UNUSED_RESULT static Tagged<Object> ConvertCaseHelper( Isolate* isolate, Tagged<String> string, Tagged<SeqString> result, uint32_t result_length, unibrow::Mapping<Converter, 128>* mapping) { DisallowGarbageCollection no_gc; // We try this twice, once with the assumption that the result is no longer // than the input and, if that assumption breaks, again with the exact // length. This may not be pretty, but it is nicer than what was here before // and I hereby claim my vaffel-is. // // NOTE: This assumes that the upper/lower case of an ASCII // character is also ASCII. This is currently the case, but it // might break in the future if we implement more context and locale // dependent upper/lower conversions. bool has_changed_character = false; // Convert all characters to upper case, assuming that they will fit // in the buffer StringCharacterStream stream(string); unibrow::uchar chars[Converter::kMaxWidth]; // We can assume that the string is not empty base::uc32 current = stream.GetNext(); bool ignore_overflow = Converter::kIsToLower || IsSeqTwoByteString(result); for (uint32_t i = 0; i < result_length;) { bool has_next = stream.HasMore(); base::uc32 next = has_next ? stream.GetNext() : 0; uint32_t char_length = mapping->get(current, next, chars); if (char_length == 0) { // The case conversion of this character is the character itself. result->Set(i, current); i++; } else if (char_length == 1 && (ignore_overflow || !ToUpperOverflows(current))) { // Common case: converting the letter resulted in one character. DCHECK(static_cast<base::uc32>(chars[0]) != current); result->Set(i, chars[0]); has_changed_character = true; i++; } else if (result_length == string->length()) { bool overflows = ToUpperOverflows(current); // We've assumed that the result would be as long as the // input but here is a character that converts to several // characters. No matter, we calculate the exact length // of the result and try the whole thing again. // // Note that this leaves room for optimization. We could just // memcpy what we already have to the result string. Also, // the result string is the last object allocated we could // "realloc" it and probably, in the vast majority of cases, // extend the existing string to be able to hold the full // result. uint32_t next_length = 0; if (has_next) { overflows |= ToUpperOverflows(next); next_length = mapping->get(next, 0, chars); if (next_length == 0) next_length = 1; } uint32_t current_length = i + char_length + next_length; while (stream.HasMore()) { current = stream.GetNext(); overflows |= ToUpperOverflows(current); // NOTE: we use 0 as the next character here because, while // the next character may affect what a character converts to, // it does not in any case affect the length of what it convert // to. int char_len = mapping->get(current, 0, chars); if (char_len == 0) char_len = 1; current_length += char_len; if (current_length > String::kMaxLength) { AllowGarbageCollection allocate_error_and_return; THROW_NEW_ERROR_RETURN_FAILURE(isolate, NewInvalidStringLengthError()); } } // Try again with the real length. Return signed if we need // to allocate a two-byte string for to uppercase. return (overflows && !ignore_overflow) ? Smi::FromInt(-current_length) : Smi::FromInt(current_length); } else { for (uint32_t j = 0; j < char_length; j++) { result->Set(i, chars[j]); i++; } has_changed_character = true; } current = next; } if (has_changed_character) { return result; } else { // If we didn't actually change anything in doing the conversion // we simple return the result and let the converted string // become garbage; there is no reason to keep two identical strings // alive. return string; } } template <class Converter> V8_WARN_UNUSED_RESULT static Tagged<Object> ConvertCase( DirectHandle<String> s, Isolate* isolate, unibrow::Mapping<Converter, 128>* mapping) { s = String::Flatten(isolate, s); uint32_t length = s->length(); // Assume that the string is not empty; we need this assumption later if (length == 0) return *s; // Simpler handling of ASCII strings. // // NOTE: This assumes that the upper/lower case of an ASCII // character is also ASCII. This is currently the case, but it // might break in the future if we implement more context and locale // dependent upper/lower conversions. if (String::IsOneByteRepresentationUnderneath(*s)) { uint32_t prefix; { DisallowGarbageCollection no_gc; String::FlatContent flat = s->GetFlatContent(no_gc); prefix = FastAsciiCasePrefixLength<Converter>( reinterpret_cast<const char*>(flat.ToOneByteVector().begin()), length); if (prefix == length) return *s; } // Same length as input. DirectHandle<SeqOneByteString> result = isolate->factory()->NewRawOneByteString(length).ToHandleChecked(); DisallowGarbageCollection no_gc; String::FlatContent flat = s->GetFlatContent(no_gc); DCHECK(flat.IsFlat()); uint8_t* dest = result->GetChars(no_gc); base::Vector<const uint8_t> src = flat.ToOneByteVector(); std::memcpy(dest, src.begin(), prefix); uint32_t index_to_first_unprocessed = FastAsciiConvert<Converter>( reinterpret_cast<char*>(dest + prefix), reinterpret_cast<const char*>(src.begin() + prefix), length - prefix) + prefix; // If not ASCII, we discard the result and take the 2 byte path. if (index_to_first_unprocessed == length) return *result; } DirectHandle<SeqString> result; // Same length as input. if (s->IsOneByteRepresentation()) { result = isolate->factory()->NewRawOneByteString(length).ToHandleChecked(); } else { result = isolate->factory()->NewRawTwoByteString(length).ToHandleChecked(); } Tagged<Object> answer = ConvertCaseHelper(isolate, *s, *result, length, mapping); if (IsExceptionHole(answer, isolate) || IsString(answer)) return answer; DCHECK(IsSmi(answer)); // In this case we need to retry with a new string of the given length. // If the value is negative, the string must be a two-byte string. int int_answer = Smi::ToInt(answer); if (s->IsOneByteRepresentation() && int_answer > 0) { length = int_answer; ASSIGN_RETURN_FAILURE_ON_EXCEPTION( isolate, result, isolate->factory()->NewRawOneByteString(length)); } else { length = abs(int_answer); ASSIGN_RETURN_FAILURE_ON_EXCEPTION( isolate, result, isolate->factory()->NewRawTwoByteString(length)); } return ConvertCaseHelper(isolate, *s, *result, length, mapping); } } // namespace BUILTIN(StringPrototypeToLocaleLowerCase) { HandleScope scope(isolate); TO_THIS_STRING(string, "String.prototype.toLocaleLowerCase"); return ConvertCase(string, isolate, isolate->runtime_state()->to_lower_mapping()); } BUILTIN(StringPrototypeToLocaleUpperCase) { HandleScope scope(isolate); TO_THIS_STRING(string, "String.prototype.toLocaleUpperCase"); return ConvertCase(string, isolate, isolate->runtime_state()->to_upper_mapping()); } BUILTIN(StringPrototypeToLowerCase) { HandleScope scope(isolate); TO_THIS_STRING(string, "String.prototype.toLowerCase"); return ConvertCase(string, isolate, isolate->runtime_state()->to_lower_mapping()); } BUILTIN(StringPrototypeToUpperCase) { HandleScope scope(isolate); TO_THIS_STRING(string, "String.prototype.toUpperCase"); return ConvertCase(string, isolate, isolate->runtime_state()->to_upper_mapping()); } #endif // !V8_INTL_SUPPORT // ES6 #sec-string.prototype.raw BUILTIN(StringRaw) { HandleScope scope(isolate); DirectHandle<Object> templ = args.atOrUndefined(isolate, 1); const uint32_t argc = args.length(); DirectHandle<String> raw_string = isolate->factory()->NewStringFromAsciiChecked("raw"); DirectHandle<JSReceiver> cooked; ASSIGN_RETURN_FAILURE_ON_EXCEPTION(isolate, cooked, Object::ToObject(isolate, templ)); DirectHandle<JSAny> raw; ASSIGN_RETURN_FAILURE_ON_EXCEPTION( isolate, raw, Cast<JSAny>(Object::GetProperty(isolate, cooked, raw_string))); ASSIGN_RETURN_FAILURE_ON_EXCEPTION(isolate, raw, Object::ToObject(isolate, raw)); DirectHandle<Object> raw_len; ASSIGN_RETURN_FAILURE_ON_EXCEPTION( isolate, raw_len, Object::GetProperty(isolate, raw, isolate->factory()->length_string())); ASSIGN_RETURN_FAILURE_ON_EXCEPTION(isolate, raw_len, Object::ToLength(isolate, raw_len)); IncrementalStringBuilder result_builder(isolate); // Intentional spec violation: we ignore {length} values >= 2^32, because // assuming non-empty chunks they would generate too-long strings anyway. const double raw_len_number = Object::NumberValue(*raw_len); const uint32_t length = raw_len_number > std::numeric_limits<uint32_t>::max() ? std::numeric_limits<uint32_t>::max() : static_cast<uint32_t>(raw_len_number); if (length > 0) { DirectHandle<Object> first_element; ASSIGN_RETURN_FAILURE_ON_EXCEPTION(isolate, first_element, Object::GetElement(isolate, raw, 0)); DirectHandle<String> first_string; ASSIGN_RETURN_FAILURE_ON_EXCEPTION( isolate, first_string, Object::ToString(isolate, first_element)); result_builder.AppendString(first_string); for (uint32_t i = 1, arg_i = 2; i < length; i++, arg_i++) { if (arg_i < argc) { DirectHandle<String> argument_string; ASSIGN_RETURN_FAILURE_ON_EXCEPTION( isolate, argument_string, Object::ToString(isolate, args.at(arg_i))); result_builder.AppendString(argument_string); } DirectHandle<Object> element; ASSIGN_RETURN_FAILURE_ON_EXCEPTION(isolate, element, Object::GetElement(isolate, raw, i)); DirectHandle<String> element_string; ASSIGN_RETURN_FAILURE_ON_EXCEPTION(isolate, element_string, Object::ToString(isolate, element)); result_builder.AppendString(element_string); } } RETURN_RESULT_OR_FAILURE(isolate, result_builder.Finish()); } } // namespace internal } // namespace v8