Home
last modified time | relevance | path

Searched refs:is_the_hole (Results 1 – 16 of 16) sorted by relevance

/external/v8/src/objects/
Dfixed-array-inl.h82 bool FixedArray::is_the_hole(Isolate* isolate, int index) { in is_the_hole() function
174 DCHECK(!is_the_hole(index)); in get_scalar()
188 if (array->is_the_hole(index)) { in get()
204 DCHECK(!is_the_hole(index)); in set()
218 bool FixedDoubleArray::is_the_hole(Isolate* isolate, int index) { in is_the_hole() function
219 return is_the_hole(index); in is_the_hole()
222 bool FixedDoubleArray::is_the_hole(int index) { in is_the_hole() function
Dfixed-array.h124 inline bool is_the_hole(Isolate* isolate, int index);
231 inline bool is_the_hole(Isolate* isolate, int index);
232 inline bool is_the_hole(int index);
/external/v8/src/compiler/
Djs-heap-broker.h349 bool is_the_hole(int i) const;
357 bool is_the_hole(int i) const;
Djs-heap-broker.cc913 bool FixedArrayRef::is_the_hole(int i) const { in is_the_hole() function in v8::internal::compiler::FixedArrayRef
915 return object<FixedArray>()->is_the_hole(broker()->isolate(), i); in is_the_hole()
925 bool FixedDoubleArrayRef::is_the_hole(int i) const { in is_the_hole() function in v8::internal::compiler::FixedDoubleArrayRef
927 return object<FixedDoubleArray>()->is_the_hole(i); in is_the_hole()
Djs-create-lowering.cc1738 if (elements.is_the_hole(i)) { in AllocateFastLiteralElements()
1747 if (elements.is_the_hole(i)) { in AllocateFastLiteralElements()
/external/v8/src/builtins/
Dbuiltins-array.cc817 if (!elements->is_the_hole(i)) element_count++; in EstimateElementCount()
882 if (!elements->is_the_hole(i)) { in CollectElementIndices()
1069 if (!elements->is_the_hole(j)) { in IterateElements()
1242 if (elements->is_the_hole(i)) { in Slow_ArrayConcat()
Dbuiltins-array-gen.cc1259 Label is_the_hole(this), done(this); in HandleFastSlice() local
1260 GotoIf(IsTheHole(context_index), &is_the_hole); in HandleFastSlice()
1266 BIND(&is_the_hole); in HandleFastSlice()
/external/v8/src/
Delements.cc1362 ->is_the_hole(isolate, index) in GetEntryForIndexImpl()
1970 if (BackingStore::cast(*store)->is_the_hole(isolate, i)) continue; in NormalizeImpl()
1991 if (!backing_store->is_the_hole(isolate, entry - 1)) break; in DeleteAtEnd()
2056 if (!backing_store->is_the_hole(isolate, i)) break; in DeleteCommon()
2065 if (!backing_store->is_the_hole(isolate, i)) { in DeleteCommon()
2125 return !BackingStore::cast(backing_store)->is_the_hole(isolate, entry); in HasEntryImpl()
2177 backing_store->is_the_hole(isolate, i))); in ValidateContents()
2182 DCHECK(!backing_store->is_the_hole(isolate, i)); in ValidateContents()
2395 elements->is_the_hole(k)) { in IncludesValueImpl()
2434 elements->is_the_hole(k)) { in IncludesValueImpl()
[all …]
Dobjects-debug.cc664 if (!is_the_hole(i)) { in FixedDoubleArrayVerify()
Dobjects-printer.cc461 return array->is_the_hole(index); in IsTheHoleAt()
Dobjects.cc8884 if (!elements->is_the_hole(isolate, i)) return true; in HasEnumerableElements()
8897 if (!elements->is_the_hole(i)) return true; in HasEnumerableElements()
16023 if (!store->is_the_hole(isolate, i)) ++used; in HoleyElementsUsage()
18614 bool is_the_hole = cell->value()->IsTheHole(isolate); in InvalidateEntry() local
18617 details = details.set_cell_type(is_the_hole ? PropertyCellType::kUninitialized in InvalidateEntry()
18621 if (is_the_hole) { in InvalidateEntry()
Dobjects-inl.h1228 if (double_array->is_the_hole(i)) { in EnsureCanContainElements()
Dapi.cc6394 while (last >= 0 && list->is_the_hole(isolate, last)) last--; in GetSerializedDataFromFixedArray()
/external/v8/src/runtime/
Druntime-array.cc230 if (elements->is_the_hole(i)) { in RemoveArrayHoles()
237 if (elements->is_the_hole(holes)) { in RemoveArrayHoles()
Druntime-scopes.cc919 Handle<Context>::cast(holder)->is_the_hole(isolate, index)) { in StoreLookupSlot()
/external/v8/src/ic/
Daccessor-assembler.cc614 Label is_the_hole(this, Label::kDeferred); in HandleLoadICSmiHandlerCase() local
615 GotoIf(IsTheHole(value), &is_the_hole); in HandleLoadICSmiHandlerCase()
618 BIND(&is_the_hole); in HandleLoadICSmiHandlerCase()