| /third_party/node/deps/v8/src/builtins/ |
| D | constants-table-builder.cc | 18 DCHECK_EQ(ReadOnlyRoots(isolate_).empty_fixed_array(), in BuiltinsConstantsTableBuilder() 35 DCHECK_EQ(ReadOnlyRoots(isolate_).empty_fixed_array(), in AddObject() 68 DCHECK_EQ(ReadOnlyRoots(isolate).empty_fixed_array(), in CheckPreconditionsForPatching() 103 DCHECK_EQ(ReadOnlyRoots(isolate_).empty_fixed_array(), in Finalize()
|
| D | builtins-typed-array-gen.cc | 40 TNode<FixedArray> empty_fixed_array = EmptyFixedArrayConstant(); in AllocateEmptyOnHeapBuffer() local 46 empty_fixed_array); in AllocateEmptyOnHeapBuffer() 48 empty_fixed_array); in AllocateEmptyOnHeapBuffer()
|
| D | builtins-constructor-gen.cc | 684 TNode<FixedArray> empty_fixed_array = EmptyFixedArrayConstant(); in CreateEmptyObjectLiteral() local 686 AllocateJSObjectFromMap(map, empty_fixed_array, empty_fixed_array); in CreateEmptyObjectLiteral()
|
| /third_party/node/deps/v8/src/objects/ |
| D | js-objects-inl.h | 130 FixedArrayBase empty_fixed_array = roots.empty_fixed_array(); in PrototypeHasNoElements() local 137 if (elements != empty_fixed_array && in PrototypeHasNoElements() 243 (*value == ReadOnlyRoots(isolate).empty_fixed_array()) || in SetMapAndElements() 247 DCHECK((*value == ReadOnlyRoots(isolate).empty_fixed_array()) || in SetMapAndElements() 637 fixed_array == GetReadOnlyRoots(cage_base).empty_fixed_array()); in ACCESSORS() 762 DCHECK(!ObjectInYoungGeneration(roots.empty_fixed_array())); in initialize_properties() 774 WRITE_FIELD(*this, kPropertiesOrHashOffset, roots.empty_fixed_array()); in initialize_properties() 816 if (prop.IsSmi() || prop == GetReadOnlyRoots(cage_base).empty_fixed_array()) { in DEF_GETTER()
|
| D | templates-inl.h | 87 GetReadOnlyRoots(cage_base).empty_fixed_array()) in RARE_ACCESSORS()
|
| D | keys.cc | 101 return isolate_->factory()->empty_fixed_array(); in GetKeys() 420 Handle<FixedArray> indices = isolate->factory()->empty_fixed_array(); in GetFastEnumPropertyKeys() 540 if (object->elements() != ReadOnlyRoots(isolate_).empty_fixed_array() && in GetOwnKeysWithUninitializedEnumCache() 549 return isolate_->factory()->empty_fixed_array(); in GetOwnKeysWithUninitializedEnumCache() 897 return isolate->factory()->empty_fixed_array(); in GetOwnEnumPropertyDictionaryKeys()
|
| D | js-regexp.cc | 99 Handle<FixedArrayBase> elements = isolate->factory()->empty_fixed_array(); in BuildIndices()
|
| D | debug-objects.cc | 52 set_break_points(ReadOnlyRoots(isolate).empty_fixed_array()); in ClearBreakInfo()
|
| D | map-inl.h | 248 result = GetReadOnlyRoots().empty_fixed_array(); in GetInitialElements()
|
| D | literal-objects.cc | 443 : factory->empty_fixed_array(); in CreateTemplates()
|
| /third_party/node/deps/v8/src/debug/ |
| D | debug-property-iterator.cc | 43 current_keys_(isolate_->factory()->empty_fixed_array()), in DebugPropertyIterator() 173 current_keys_ = isolate_->factory()->empty_fixed_array(); in FillKeysForCurrentPrototypeAndStage()
|
| D | debug.cc | 525 : isolate_->factory()->empty_fixed_array(), in Break() 600 OnDebugBreak(isolate_->factory()->empty_fixed_array(), lastStepAction); in Break() 2094 return factory->empty_fixed_array(); in GetLoadedScripts() 2535 OnDebugBreak(break_points.is_null() ? isolate_->factory()->empty_fixed_array() in HandleDebugBreak()
|
| /third_party/node/deps/v8/src/heap/ |
| D | setup-heap-internal.cc | 325 EnumCache::cast(obj).set_keys(roots.empty_fixed_array()); in CreateInitialMaps() 326 EnumCache::cast(obj).set_indices(roots.empty_fixed_array()); in CreateInitialMaps() 588 roots.empty_fixed_array()); in CreateInitialMaps() 642 DCHECK(!InYoungGeneration(roots.empty_fixed_array())); in CreateInitialMaps() 917 set_serialized_objects(roots.empty_fixed_array()); in CreateInitialObjects() 918 set_serialized_global_proxy_sizes(roots.empty_fixed_array()); in CreateInitialObjects() 946 set_builtins_constants_table(roots.empty_fixed_array()); in CreateInitialObjects()
|
| D | factory-base.cc | 101 if (length == 0) return impl()->empty_fixed_array(); in NewFixedArray() 125 if (length == 0) return impl()->empty_fixed_array(); in NewFixedArrayWithHoles() 150 if (length == 0) return impl()->empty_fixed_array(); in NewFixedArrayWithZeroes() 167 if (length == 0) return impl()->empty_fixed_array(); in NewFixedDoubleArray() 294 raw.set_host_defined_options(roots.empty_fixed_array(), SKIP_WRITE_BARRIER); in NewScriptWithId() 1039 *impl()->empty_fixed_array(), SKIP_WRITE_BARRIER); in NewFunctionTemplateRareData()
|
| D | factory.cc | 465 if (length == 0) return empty_fixed_array(); in TryNewFixedArray() 1185 context.set_serialized_objects(*empty_fixed_array()); in NewNativeContext() 1649 result.set_raw_properties_or_hash(*empty_fixed_array(), kRelaxedStore); in NewWasmArrayFromElements() 1679 result.set_raw_properties_or_hash(*empty_fixed_array(), kRelaxedStore); in NewWasmArrayFromMemory() 1695 result.set_raw_properties_or_hash(*empty_fixed_array(), kRelaxedStore); in NewWasmStruct() 2148 if (new_len == 0) return empty_fixed_array(); in CopyFixedArrayUpTo() 2560 InitializeJSObjectFromMap(js_obj, *empty_fixed_array(), *map); in NewJSObjectFromMap() 2601 if (*elements != read_only_roots().empty_fixed_array()) { in NewSlowJSObjectWithPropertiesAndElements() 2617 return NewJSArrayWithElements(empty_fixed_array(), elements_kind, length, in NewJSArray() 2665 raw.set_elements(*empty_fixed_array()); in NewJSArrayStorage() [all …]
|
| D | object-stats.cc | 620 if (elements != ReadOnlyRoots(heap_).empty_fixed_array()) { in RecordVirtualJSObjectDetails() 836 return array != roots.empty_fixed_array() && in CanRecordFixedArray()
|
| /third_party/node/deps/v8/src/diagnostics/ |
| D | objects-debug.cc | 462 CHECK_IMPLIES(indices != ReadOnlyRoots(isolate).empty_fixed_array(), in JSObjectVerify() 472 (elements() == GetReadOnlyRoots().empty_fixed_array()) || in JSObjectVerify() 588 if (*this == ReadOnlyRoots(isolate).empty_fixed_array()) { in FixedArrayVerify() 730 CHECK(arg_elements == ReadOnlyRoots(isolate).empty_fixed_array()); in SloppyArgumentsElementsVerify() 1150 CHECK_EQ(elements(), ReadOnlyRoots(isolate).empty_fixed_array()); in JSArrayVerify() 1164 elements() == ReadOnlyRoots(isolate).empty_fixed_array()); in JSArrayVerify() 1742 CHECK_EQ(ReadOnlyRoots(heap).empty_fixed_array(), keys()); in EnumCacheVerify() 1743 CHECK_EQ(ReadOnlyRoots(heap).empty_fixed_array(), indices()); in EnumCacheVerify()
|
| /third_party/node/deps/v8/src/compiler/ |
| D | js-graph.cc | 138 HeapConstant(factory()->empty_fixed_array()))
|
| /third_party/node/deps/v8/src/interpreter/ |
| D | constant-array-builder.h | 31 V(EmptyFixedArray, empty_fixed_array) \
|
| /third_party/node/deps/v8/src/codegen/ |
| D | compilation-cache.cc | 143 maybe_host_defined_options = isolate->factory()->empty_fixed_array(); in HasOrigin()
|
| /third_party/node/deps/v8/src/wasm/ |
| D | wasm-objects.cc | 227 table_obj->set_dispatch_tables(ReadOnlyRoots(isolate).empty_fixed_array()); in New() 1218 ReadOnlyRoots(isolate).empty_fixed_array()); in New() 1227 instance->set_managed_object_maps(*isolate->factory()->empty_fixed_array()); in New() 1228 instance->set_feedback_vectors(*isolate->factory()->empty_fixed_array()); in New()
|
| /third_party/node/deps/v8/src/execution/ |
| D | isolate.cc | 746 Handle<FixedArray> parameters = isolate_->factory()->empty_fixed_array(); in AppendAsyncFrame() 769 Handle<FixedArray> parameters = isolate_->factory()->empty_fixed_array(); in AppendPromiseCombinatorFrame() 811 isolate_->factory()->empty_fixed_array()); in AppendWasmFrame() 1275 return factory()->empty_fixed_array(); in GetSimpleStackTrace() 1280 return factory()->empty_fixed_array(); in GetSimpleStackTrace() 1328 frames_(isolate_->factory()->empty_fixed_array()), in StackFrameBuilder() 4720 Handle<FixedArray> import_assertions_array = factory()->empty_fixed_array(); in ThrowInternal()
|
| /third_party/node/deps/v8/src/deoptimizer/ |
| D | translated-state.cc | 1635 if (*map == ReadOnlyRoots(isolate()).empty_fixed_array().map() && in EnsureCapturedObjectAllocatedAt() 1637 slot->set_storage(isolate()->factory()->empty_fixed_array()); in EnsureCapturedObjectAllocatedAt() 1897 if (*object_storage == ReadOnlyRoots(isolate()).empty_fixed_array()) { in InitializeObjectWithTaggedFieldsAt()
|
| /third_party/node/deps/v8/src/roots/ |
| D | roots.h | 69 V(FixedArray, empty_fixed_array, EmptyFixedArray) \
|
| /third_party/node/deps/v8/src/snapshot/ |
| D | code-serializer.cc | 174 script_obj.set_host_defined_options(roots.empty_fixed_array()); in SerializeObjectImpl()
|