/third_party/node/deps/v8/src/api/ |
H A D | api-arguments.cc | 28 HeapObject the_hole = ReadOnlyRoots(isolate).the_hole_value(); in PropertyCallbackArguments() local 29 slot_at(T::kReturnValueDefaultValueIndex).store(the_hole); in PropertyCallbackArguments() 30 slot_at(T::kReturnValueIndex).store(the_hole); in PropertyCallbackArguments() 46 HeapObject the_hole = ReadOnlyRoots(isolate).the_hole_value(); in FunctionCallbackArguments() local 47 slot_at(T::kReturnValueDefaultValueIndex).store(the_hole); in FunctionCallbackArguments() 48 slot_at(T::kReturnValueIndex).store(the_hole); in FunctionCallbackArguments()
|
H A D | api.cc | 2957 i::Object the_hole = i::ReadOnlyRoots(isolate_).the_hole_value(); in ResetInternal() local 2958 exception_ = reinterpret_cast<void*>(the_hole.ptr()); in ResetInternal() 2959 message_obj_ = reinterpret_cast<void*>(the_hole.ptr()); in ResetInternal() 7500 i::Oddball the_hole = i::ReadOnlyRoots(isolate).the_hole_value(); in MapAsArray() local 7504 if (key == the_hole) continue; in MapAsArray() 7604 i::Oddball the_hole = i::ReadOnlyRoots(isolate).the_hole_value(); in SetAsArray() local 7608 if (key == the_hole) continue; in SetAsArray()
|
/third_party/node/deps/v8/src/objects/ |
H A D | dictionary-inl.h | 149 Object the_hole = this->GetReadOnlyRoots().the_hole_value(); in ClearEntry() local 151 Derived::cast(*this).SetEntry(entry, the_hole, the_hole, details); in ClearEntry() 253 Object the_hole = this->GetReadOnlyRoots().the_hole_value(); in ClearEntry() local 254 set(EntryToIndex(entry) + kEntryKeyIndex, the_hole); in ClearEntry()
|
H A D | hash-table-inl.h | 170 Object the_hole = roots.the_hole_value(); in FindEntry() local 178 if (Shape::kMatchNeedsHoleCheck && element == the_hole) continue; in FindEntry()
|
H A D | fixed-array-inl.h | 58 Object the_hole = GetReadOnlyRoots().the_hole_value(); in ContainsOnlySmisOrHoles() local 62 if (!candidate.IsSmi() && candidate != the_hole) return false; in ContainsOnlySmisOrHoles()
|
H A D | value-serializer.cc | 850 Oddball the_hole = ReadOnlyRoots(isolate_).the_hole_value(); in WriteJSMap() local 854 if (key == the_hole) continue; in WriteJSMap() 882 Oddball the_hole = ReadOnlyRoots(isolate_).the_hole_value(); in WriteJSSet() local 886 if (key == the_hole) continue; in WriteJSSet()
|
H A D | js-objects-inl.h | 176 Object the_hole = object->GetReadOnlyRoots().the_hole_value(); in EnsureCanContainElements() 179 if (current == the_hole) { in EnsureCanContainElements()
|
H A D | elements.cc | 368 Object the_hole = from.GetReadOnlyRoots().the_hole_value(); in CopySmiToDoubleElements() local 372 if (hole_or_smi == the_hole) { in CopySmiToDoubleElements() 429 Object the_hole = from.GetReadOnlyRoots().the_hole_value(); in CopyObjectToDoubleElements() local 433 if (hole_or_object == the_hole) { in CopyObjectToDoubleElements() 1686 Object the_hole = ReadOnlyRoots(isolate).the_hole_value(); in IncludesValueFastPath() local 1694 if (k == the_hole) continue; in IncludesValueFastPath() 2243 Object the_hole = ReadOnlyRoots(isolate).the_hole_value(); in IncludesValueImpl() local 2273 if (element_k == the_hole || element_k == undefined) { in IncludesValueImpl() 2306 if (element_k == the_hole) continue; in IncludesValueImpl()
|
H A D | objects.cc | 2070 os << "<the_hole>"; in HeapObjectShortPrint() 5837 Object the_hole = roots.the_hole_value(); in Rehash() local 5841 if (KeyAt(cage_base, current) == the_hole) { in Rehash() 5959 Object the_hole = roots.the_hole_value(); in TryFindPropertyCellForConcurrentLookupIterator() local 5966 if (ShapeT::kMatchNeedsHoleCheck && element == the_hole) continue; in TryFindPropertyCellForConcurrentLookupIterator()
|
/third_party/node/deps/v8/src/handles/ |
H A D | global-handles.cc | 1764 Object the_hole = ReadOnlyRoots(isolate).the_hole_value(); in Create() 1765 DCHECK_NE(the_hole, object); in Create() 1771 MemsetPointer(FullObjectSlot(next_block), the_hole, kSize); in Create() local 1774 DCHECK_EQ(the_hole.ptr(), blocks_[block][offset]); in Create()
|
/third_party/node/deps/v8/src/builtins/ |
H A D | builtins-array.cc | 1361 Object the_hole = ReadOnlyRoots(isolate).the_hole_value(); in Slow_ArrayConcat() local 1365 if (element == the_hole) { in Slow_ArrayConcat()
|
/third_party/node/deps/v8/src/heap/ |
H A D | factory.cc | 617 Oddball the_hole = read_only_roots().the_hole_value(); in NewPropertyDescriptorObject() local 618 object.set_value(the_hole, SKIP_WRITE_BARRIER); in NewPropertyDescriptorObject() 619 object.set_get(the_hole, SKIP_WRITE_BARRIER); in NewPropertyDescriptorObject() 620 object.set_set(the_hole, SKIP_WRITE_BARRIER); in NewPropertyDescriptorObject()
|
H A D | setup-heap-internal.cc | 248 ALLOCATE_PARTIAL_MAP(ODDBALL_TYPE, Oddball::kSize, the_hole); in CreateInitialMaps()
|
H A D | mark-compact.cc | 1364 Object the_hole = ReadOnlyRoots(heap_).the_hole_value(); variable 1377 p.store(the_hole);
|
/third_party/node/deps/v8/src/compiler/ |
H A D | effect-control-linearizer.cc | 3605 Node* the_hole = in LowerNewDoubleElements() local 3619 __ StoreElement(access, result, index, the_hole); in LowerNewDoubleElements() 3650 Node* the_hole = __ TheHoleConstant(); in LowerNewSmiOrObjectElements() local 3660 // Storing "the_hole" doesn't need a write barrier. in LowerNewSmiOrObjectElements() 3664 __ StoreElement(access, result, index, the_hole); in LowerNewSmiOrObjectElements()
|
/third_party/node/deps/v8/src/codegen/ |
H A D | code-stub-assembler.cc | 8635 TNode<Oddball> the_hole = TheHoleConstant(); 8659 GotoIf(TaggedEqual(current, the_hole), &next_probe); 10020 TNode<Oddball> the_hole = TheHoleConstant(); 10021 Branch(TaggedEqual(element, the_hole), if_not_found, if_found);
|