/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
deps/v8/src/objects/js-array-inl.h
95 строк
3 KB
Michaël Zasso
deps: update V8 to 13.7.152.9
18 май 2025, 10:42
18 май 2025, 10:42
fff0d15
Код
Авторство
О чём код?
// Copyright 2017 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. #ifndef V8_OBJECTS_JS_ARRAY_INL_H_ #define V8_OBJECTS_JS_ARRAY_INL_H_ #include "src/objects/js-array.h" // Include the non-inl header before the rest of the headers. #include "src/objects/objects-inl.h" // Needed for write barriers // Has to be the last include (doesn't have include guards): #include "src/objects/object-macros.h" namespace v8 { namespace internal { #include "torque-generated/src/objects/js-array-tq-inl.inc" TQ_OBJECT_CONSTRUCTORS_IMPL(JSArray) TQ_OBJECT_CONSTRUCTORS_IMPL(JSArrayIterator) TQ_OBJECT_CONSTRUCTORS_IMPL(TemplateLiteralObject) DEF_GETTER(JSArray, length, Tagged<Number>) { return TaggedField<Number, kLengthOffset>::load(cage_base, *this); } void JSArray::set_length(Tagged<Number> value, WriteBarrierMode mode) { // Note the relaxed atomic store. TaggedField<Number, kLengthOffset>::Relaxed_Store(*this, value); CONDITIONAL_WRITE_BARRIER(*this, kLengthOffset, value, mode); } Tagged<Number> JSArray::length(PtrComprCageBase cage_base, RelaxedLoadTag tag) const { return TaggedField<Number, kLengthOffset>::Relaxed_Load(cage_base, *this); } void JSArray::set_length(Tagged<Smi> length) { // Don't need a write barrier for a Smi. set_length(Tagged<Number>(length), SKIP_WRITE_BARRIER); } bool JSArray::SetLengthWouldNormalize(Heap* heap, uint32_t new_length) { return new_length > kMaxFastArrayLength; } void JSArray::SetContent(Isolate* isolate, DirectHandle<JSArray> array, DirectHandle<FixedArrayBase> storage) { EnsureCanContainElements(isolate, array, storage, storage->length(), ALLOW_COPIED_DOUBLE_ELEMENTS); #ifdef DEBUG ReadOnlyRoots roots = GetReadOnlyRoots(); Tagged<Map> map = storage->map(); if (map == roots.fixed_double_array_map()) { DCHECK(IsDoubleElementsKind(array->GetElementsKind())); } else { DCHECK_NE(map, roots.fixed_double_array_map()); if (IsSmiElementsKind(array->GetElementsKind())) { auto elems = Cast<FixedArray>(storage); Tagged<Object> the_hole = roots.the_hole_value(); for (int i = 0; i < elems->length(); i++) { Tagged<Object> candidate = elems->get(i); DCHECK(IsSmi(candidate) || candidate == the_hole); } } else { DCHECK(IsObjectElementsKind(array->GetElementsKind())); } } #endif // DEBUG array->set_elements(*storage); array->set_length(Smi::FromInt(storage->length())); } bool JSArray::HasArrayPrototype(Isolate* isolate) { return map()->prototype() == *isolate->initial_array_prototype(); } SMI_ACCESSORS(JSArrayIterator, raw_kind, kKindOffset) IterationKind JSArrayIterator::kind() const { return static_cast<IterationKind>(raw_kind()); } void JSArrayIterator::set_kind(IterationKind kind) { set_raw_kind(static_cast<int>(kind)); } } // namespace internal } // namespace v8 #include "src/objects/object-macros-undef.h" #endif // V8_OBJECTS_JS_ARRAY_INL_H_