/external/v8/src/ |
D | isolate-inl.h | 52 thread_local_top_.pending_exception_ = ReadOnlyRoots(this).the_hole_value(); in clear_pending_exception() 74 thread_local_top_.pending_message_obj_ = ReadOnlyRoots(this).the_hole_value(); in clear_pending_message() 88 ReadOnlyRoots(this).the_hole_value(); in has_scheduled_exception() 94 thread_local_top_.scheduled_exception_ = ReadOnlyRoots(this).the_hole_value(); in clear_scheduled_exception()
|
D | api-arguments.cc | 27 HeapObject* the_hole = ReadOnlyRoots(isolate).the_hole_value(); in PropertyCallbackArguments() 46 HeapObject* the_hole = ReadOnlyRoots(isolate).the_hole_value(); in FunctionCallbackArguments()
|
D | property-descriptor.cc | 363 has_value() ? *value_ : ReadOnlyRoots(isolate).the_hole_value()); in ToPropertyDescriptorObject() 365 has_get() ? *get_ : ReadOnlyRoots(isolate).the_hole_value()); in ToPropertyDescriptorObject() 367 has_set() ? *set_ : ReadOnlyRoots(isolate).the_hole_value()); in ToPropertyDescriptorObject()
|
D | bootstrapper.cc | 1265 isolate(), js_global_object_constructor, factory()->the_hole_value(), in CreateNewGlobals() 1281 name, factory()->the_hole_value(), JS_GLOBAL_PROXY_TYPE, in CreateNewGlobals() 1291 isolate(), global_constructor, factory()->the_hole_value(), in CreateNewGlobals() 1360 factory->the_hole_value(), Builtins::kErrorConstructor, DONT_ENUM); in InstallError() 1419 isolate->factory()->empty_string(), isolate->factory()->the_hole_value(), in InstallMakeError() 2148 factory->the_hole_value(), Builtins::kSymbolConstructor); in InitializeGlobal() 2215 factory->the_hole_value(), Builtins::kDateConstructor); in InitializeGlobal() 2354 JSPromise::kSizeWithEmbedderFields, 0, factory->the_hole_value(), in InitializeGlobal() 2492 JSRegExp::kInObjectFieldCount, factory->the_hole_value(), in InitializeGlobal() 2894 0, factory->the_hole_value(), Builtins::kIllegal); in InitializeGlobal() [all …]
|
D | deoptimizer.cc | 892 frame_writer.PushRawObject(roots.the_hole_value(), "padding\n"); in DoComputeInterpretedFrame() 992 frame_writer.PushRawObject(roots.the_hole_value(), "padding\n"); in DoComputeInterpretedFrame() 998 frame_writer.PushRawObject(roots.the_hole_value(), "padding\n"); in DoComputeInterpretedFrame() 1102 frame_writer.PushRawObject(roots.the_hole_value(), "padding\n"); in DoComputeArgumentsAdaptorFrame() 1144 frame_writer.PushRawObject(roots.the_hole_value(), "padding\n"); in DoComputeArgumentsAdaptorFrame() 1221 frame_writer.PushRawObject(roots.the_hole_value(), "padding\n"); in DoComputeConstructStubFrame() 1278 frame_writer.PushRawObject(roots.the_hole_value(), "padding\n"); in DoComputeConstructStubFrame() 1289 frame_writer.PushRawObject(roots.the_hole_value(), "padding\n"); in DoComputeConstructStubFrame() 1569 frame_writer.PushRawObject(roots.the_hole_value(), "padding\n"); in DoComputeBuiltinContinuation() 1582 frame_writer.PushRawObject(roots.the_hole_value(), in DoComputeBuiltinContinuation() [all …]
|
D | elements.cc | 149 roots.the_hole_value(), length); in CopyObjectToObjectElements() 187 ReadOnlyRoots(isolate).the_hole_value(), length); in CopyDictionaryToObjectElements() 236 ReadOnlyRoots(isolate).the_hole_value(), length); in CopyDoubleToObjectElements() 320 Object* the_hole = from->GetReadOnlyRoots().the_hole_value(); in CopySmiToDoubleElements() 393 Object* the_hole = from->GetReadOnlyRoots().the_hole_value(); in CopyObjectToDoubleElements() 1736 Object* the_hole = ReadOnlyRoots(isolate).the_hole_value(); in IncludesValueFastPath() 2347 Object* the_hole = ReadOnlyRoots(isolate).the_hole_value(); in IncludesValueImpl() 3838 obj->GetReadOnlyRoots().the_hole_value()); in DeleteImpl() 4075 ReadOnlyRoots(isolate).the_hole_value()); in ReconfigureImpl()
|
D | roots.h | 26 V(Oddball, the_hole_value, TheHoleValue) \
|
D | execution.cc | 87 if (is_construct) receiver = isolate->factory()->the_hole_value(); in Invoke()
|
D | transitions.cc | 446 MaybeObject::FromObject(ReadOnlyRoots(isolate).the_hole_value()), in Zap()
|
D | objects-inl.h | 1174 Object* the_hole = object->GetReadOnlyRoots().the_hole_value(); in EnsureCanContainElements() 2916 Object* the_hole = this->GetReadOnlyRoots().the_hole_value(); in ClearEntry() 2955 DCHECK_NE(roots.the_hole_value(), k); in IsLive()
|
D | value-serializer.cc | 757 Oddball* the_hole = ReadOnlyRoots(isolate_).the_hole_value(); in WriteJSMap() 788 Oddball* the_hole = ReadOnlyRoots(isolate_).the_hole_value(); in WriteJSSet()
|
/external/v8/src/objects/ |
D | hash-table-inl.h | 83 Object* the_hole = roots.the_hole_value(); in FindEntry() 119 return k != roots.the_hole_value() && k != roots.undefined_value(); in IsLive()
|
D | ordered-hash-table.cc | 211 Object* hole = ReadOnlyRoots(isolate).the_hole_value(); in Delete() 343 ReadOnlyRoots(isolate).the_hole_value(), in Initialize() 348 SetDataEntry(i, j, ReadOnlyRoots(isolate).the_hole_value()); in Initialize() 364 DCHECK_EQ(ReadOnlyRoots(isolate).the_hole_value(), GetDataEntry(i, j)); in Initialize() 453 Object* hole = ReadOnlyRoots(isolate).the_hole_value(); in Delete()
|
D | fixed-array-inl.h | 50 Object* the_hole = GetReadOnlyRoots().the_hole_value(); in ContainsOnlySmisOrHoles() 153 FixedArray::NoWriteBarrierSet(this, index, ro_roots.the_hole_value()); in set_the_hole() 189 return isolate->factory()->the_hole_value(); in get()
|
D | shared-function-info-inl.h | 730 outer_scope_info = ReadOnlyRoots(isolate).the_hole_value(); in DiscardCompiled()
|
/external/v8/src/compiler/ |
D | js-graph.cc | 82 DCHECK(ref.object<Object>().equals(isolate()->factory()->the_hole_value())); in Constant() 174 DEFINE_GETTER(TheHoleConstant, HeapConstant(factory()->the_hole_value()))
|
/external/v8/src/runtime/ |
D | runtime-collections.cc | 18 return ReadOnlyRoots(isolate).the_hole_value(); in RUNTIME_FUNCTION()
|
/external/v8/src/heap/ |
D | factory.cc | 395 *the_hole_value(), pretenure); in NewFixedArrayWithHoles() 1373 context->set_extension(*the_hole_value()); in NewScriptContext() 1420 context->set_extension(*the_hole_value()); in NewFunctionContext() 1433 context->set_extension(*the_hole_value()); in NewCatchContext() 1447 ? Handle<HeapObject>::cast(the_hole_value()) in NewDebugEvaluateContext() 1479 context->set_extension(*the_hole_value()); in NewBlockContext() 1490 context->set_extension(*the_hole_value()); in NewBuiltinContext() 1773 cell->set_value(*the_hole_value()); in NewPropertyCell() 2285 function->set_prototype_or_initial_map(*the_hole_value()); in DEFINE_ERROR() 3043 module->set_exception(roots.the_hole_value()); in NewModule() [all …]
|
D | setup-heap-internal.cc | 647 Oddball::Initialize(isolate(), factory->the_hole_value(), "hole", in CreateInitialObjects() 829 cell->set_value(roots.the_hole_value()); in CreateInitialObjects()
|
/external/v8/src/builtins/ |
D | builtins-api.cc | 226 ReadOnlyRoots(isolate).the_hole_value(); in InvokeApiFunction()
|
/external/v8/src/interpreter/ |
D | constant-array-builder.cc | 378 return isolate->factory()->the_hole_value(); in ToHandle()
|
/external/v8/src/ia32/ |
D | code-stubs-ia32.cc | 276 Immediate(isolate->factory()->the_hole_value())); in CallApiFunctionAndReturn()
|
/external/v8/src/x64/ |
D | code-stubs-x64.cc | 337 __ Cmp(Operand(rdi, 0), factory->the_hole_value()); in CallApiFunctionAndReturn()
|
/external/v8/src/ast/ |
D | ast.cc | 914 return isolate->factory()->the_hole_value(); in BuildValue()
|
/external/v8/src/builtins/arm64/ |
D | builtins-arm64.cc | 1962 Register the_hole_value = x11; in Generate_CallOrConstructVarargs() local 1966 __ LoadRoot(the_hole_value, Heap::kTheHoleValueRootIndex); in Generate_CallOrConstructVarargs() 1974 __ Cmp(scratch, the_hole_value); in Generate_CallOrConstructVarargs()
|