Home
last modified time | relevance | path

Searched refs:fixed_array_map (Results 1 – 21 of 21) sorted by relevance

/third_party/node/deps/v8/src/compiler/
Djs-create-lowering.cc409 MapRef fixed_array_map = MakeRef(broker(), factory()->fixed_array_map()); in ReduceJSCreateGeneratorObject() local
411 if (!ab.CanAllocateArray(length, fixed_array_map)) { in ReduceJSCreateGeneratorObject()
414 ab.AllocateArray(length, fixed_array_map); in ReduceJSCreateGeneratorObject()
782 MapRef fixed_array_map = MakeRef(broker(), factory()->fixed_array_map()); in ReduceJSCreateAsyncFunctionObject() local
784 CHECK(ab.CanAllocateArray(register_count, fixed_array_map)); in ReduceJSCreateAsyncFunctionObject()
785 ab.AllocateArray(register_count, fixed_array_map); in ReduceJSCreateAsyncFunctionObject()
895 MapRef fixed_array_map = MakeRef(broker(), factory()->fixed_array_map()); in ReduceJSCreateBoundFunction() local
897 CHECK(ab.CanAllocateArray(arity, fixed_array_map)); in ReduceJSCreateBoundFunction()
898 ab.AllocateArray(arity, fixed_array_map); in ReduceJSCreateBoundFunction()
1048 aa.AllocateArray(2, MakeRef(broker(), factory()->fixed_array_map())); in ReduceJSCreateKeyValueArray()
[all …]
Djs-graph.cc142 DEFINE_GETTER(FixedArrayMapConstant, HeapConstant(factory()->fixed_array_map()))
Dload-elimination.cc794 ZoneHandleSet<Map> fixed_array_maps(factory()->fixed_array_map()); in ReduceEnsureWritableFastElements()
826 ZoneHandleSet<Map> fixed_array_maps(factory()->fixed_array_map()); in ReduceMaybeGrowFastElements()
Djs-native-context-specialization.cc238 MapRef fixed_array_map = MakeRef(broker(), factory()->fixed_array_map()); in ReduceJSAsyncFunctionEnter() local
240 if (!ab.CanAllocateArray(register_count, fixed_array_map)) { in ReduceJSAsyncFunctionEnter()
2905 ZoneHandleSet<Map>(factory()->fixed_array_map())), in BuildElementAccess()
Djs-call-reducer.cc2791 MapRef fixed_array_map = MakeRef(broker(), factory()->fixed_array_map()); in ReduceFunctionPrototypeBind() local
2793 if (!ab.CanAllocateArray(arity, fixed_array_map)) { in ReduceFunctionPrototypeBind()
/third_party/node/deps/v8/src/objects/
Dfixed-array-inl.h363 map() != GetReadOnlyRoots().fixed_array_map()); in get_scalar()
371 map() != GetReadOnlyRoots().fixed_array_map()); in get_representation()
389 map() != GetReadOnlyRoots().fixed_array_map()); in set()
406 map() != GetReadOnlyRoots().fixed_array_map()); in set_the_hole()
Djs-objects-inl.h211 DCHECK(elements->map() == roots.fixed_array_map() || in EnsureCanContainElements()
245 (value->map() == ReadOnlyRoots(isolate).fixed_array_map() || in SetMapAndElements()
633 DCHECK(map == GetReadOnlyRoots(cage_base).fixed_array_map() || in ACCESSORS()
Djs-objects.tq25 // mode: fixed_array_map, fixed_double_array_map,
Dordered-hash-table.cc209 result->set_map(ReadOnlyRoots(isolate).fixed_array_map()); in ConvertToKeysArray()
Djs-objects.cc2346 elems, isolate->factory()->fixed_array_map()); in EnsureWritableFastElements()
Delements.cc2128 if (map == ReadOnlyRoots(heap).fixed_array_map()) DCHECK_EQ(0u, length); in ValidateContents()
/third_party/node/deps/v8/src/heap/
Dsetup-heap-internal.cc241 DCHECK_NE(roots.fixed_array_map(), roots.fixed_cow_array_map()); in CreateInitialMaps()
257 obj.set_map_after_allocation(roots.fixed_array_map(), SKIP_WRITE_BARRIER); in CreateInitialMaps()
341 FinalizePartialMap(roots.fixed_array_map()); in CreateInitialMaps()
Dfactory-base.cc156 result.set_map_after_allocation(read_only_roots().fixed_array_map(), in NewFixedArrayWithZeroes()
Dfactory.cc477 result.set_map_after_allocation(*fixed_array_map(), SKIP_WRITE_BARRIER); in TryNewFixedArray()
2151 heap_object.set_map_after_allocation(*fixed_array_map(), SKIP_WRITE_BARRIER); in CopyFixedArrayUpTo()
/third_party/node/deps/v8/src/roots/
Droots.h50 V(Map, fixed_array_map, FixedArrayMap) \
/third_party/node/deps/v8/src/runtime/
Druntime-regexp.cc1208 cached_fixed_array, isolate->factory()->fixed_array_map()); in SearchRegExpMultiple()
1335 result_fixed_array, isolate->factory()->fixed_array_map()); in SearchRegExpMultiple()
/third_party/node/deps/v8/src/diagnostics/
Dobjects-debug.cc474 (elements().map() == GetReadOnlyRoots().fixed_array_map() || in JSObjectVerify()
590 CHECK_EQ(map(), ReadOnlyRoots(isolate).fixed_array_map()); in FixedArrayVerify()
/third_party/node/deps/v8/src/codegen/
Dcode-stub-assembler.cc3729 TNode<Map> fixed_array_map = in AllocateOrderedHashTableWithCapacity() local
3733 AllocationFlag::kAllowLargeObjectAllocation, fixed_array_map)); in AllocateOrderedHashTableWithCapacity()
4294 base::Optional<TNode<Map>> fixed_array_map) { in AllocateFixedArray() argument
4327 if (fixed_array_map) { in AllocateFixedArray()
4335 StoreMapNoWriteBarrier(array, *fixed_array_map); in AllocateFixedArray()
4337 StoreMap(array, *fixed_array_map); in AllocateFixedArray()
4461 TNode<TIndex> capacity, TNode<Map> fixed_array_map, in ExtractFixedDoubleArrayFillingHoles() argument
4469 CSA_DCHECK(this, IsFixedDoubleArrayMap(fixed_array_map)); in ExtractFixedDoubleArrayFillingHoles()
4474 AllocateFixedArray(kind, capacity, allocation_flags, fixed_array_map); in ExtractFixedDoubleArrayFillingHoles()
4532 ExtractToFixedArray(from_array, first, count, capacity, fixed_array_map, in ExtractFixedDoubleArrayFillingHoles()
Dcode-stub-assembler.h154 V(FixedArrayMap, fixed_array_map, FixedArrayMap) \
2026 base::Optional<TNode<Map>> fixed_array_map = base::nullopt);
/third_party/node/deps/v8/src/deoptimizer/
Dtranslated-state.cc920 frame.Add(TranslatedValue::NewTagged(this, roots.fixed_array_map())); in CreateArgumentsElementsTranslatedValues()
/third_party/node/deps/v8/src/profiler/
Dheap-snapshot-generator.cc2044 object != roots.fixed_array_map() && object != roots.cell_map() && in IsEssentialObject()