/external/v8/src/objects/ |
D | fixed-array-inl.h | 82 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
|
D | fixed-array.h | 124 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/ |
D | js-heap-broker.h | 349 bool is_the_hole(int i) const; 357 bool is_the_hole(int i) const;
|
D | js-heap-broker.cc | 913 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()
|
D | js-create-lowering.cc | 1738 if (elements.is_the_hole(i)) { in AllocateFastLiteralElements() 1747 if (elements.is_the_hole(i)) { in AllocateFastLiteralElements()
|
/external/v8/src/builtins/ |
D | builtins-array.cc | 817 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()
|
D | builtins-array-gen.cc | 1259 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/ |
D | elements.cc | 1362 ->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 …]
|
D | objects-debug.cc | 664 if (!is_the_hole(i)) { in FixedDoubleArrayVerify()
|
D | objects-printer.cc | 461 return array->is_the_hole(index); in IsTheHoleAt()
|
D | objects.cc | 8884 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()
|
D | objects-inl.h | 1228 if (double_array->is_the_hole(i)) { in EnsureCanContainElements()
|
D | api.cc | 6394 while (last >= 0 && list->is_the_hole(isolate, last)) last--; in GetSerializedDataFromFixedArray()
|
/external/v8/src/runtime/ |
D | runtime-array.cc | 230 if (elements->is_the_hole(i)) { in RemoveArrayHoles() 237 if (elements->is_the_hole(holes)) { in RemoveArrayHoles()
|
D | runtime-scopes.cc | 919 Handle<Context>::cast(holder)->is_the_hole(isolate, index)) { in StoreLookupSlot()
|
/external/v8/src/ic/ |
D | accessor-assembler.cc | 614 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()
|