/external/v8/src/compiler/ |
D | control-builders.cc | 175 catch_environment_->Push(the_hole()); in BeginTry() 202 finally_environment_->Push(the_hole()); in BeginTry() 203 finally_environment_->Push(the_hole()); in BeginTry()
|
D | ast-graph-builder.cc | 1434 Node* the_hole = jsgraph()->TheHoleConstant(); in VisitTryCatchStatement() local 1435 NewNode(javascript()->StoreMessage(), the_hole); in VisitTryCatchStatement() 1501 Node* the_hole = jsgraph()->TheHoleConstant(); in VisitTryFinallyStatement() local 1502 NewNode(javascript()->StoreMessage(), the_hole); in VisitTryFinallyStatement() 3281 Node* the_hole = jsgraph()->TheHoleConstant(); in BuildHoleCheckSilent() local 3282 Node* check = NewNode(javascript()->StrictEqual(), value, the_hole); in BuildHoleCheckSilent() 3293 Node* the_hole = jsgraph()->TheHoleConstant(); in BuildHoleCheckThenThrow() local 3294 Node* check = NewNode(javascript()->StrictEqual(), value, the_hole); in BuildHoleCheckThenThrow() 3310 Node* the_hole = jsgraph()->TheHoleConstant(); in BuildHoleCheckElseThrow() local 3311 Node* check = NewNode(javascript()->StrictEqual(), value, the_hole); in BuildHoleCheckElseThrow() [all …]
|
D | control-builders.h | 33 Node* the_hole() const { return builder_->jsgraph()->TheHoleConstant(); } in the_hole() function
|
/external/v8/src/arm64/ |
D | codegen-arm64.cc | 292 Register the_hole = x14; in GenerateDoubleToObject() local 293 __ LoadRoot(the_hole, Heap::kTheHoleValueRootIndex); in GenerateDoubleToObject() 305 __ Str(the_hole, MemOperand(dst_elements, kPointerSize, PostIndex)); in GenerateDoubleToObject() 347 __ Str(the_hole, MemOperand(dst_elements, kPointerSize, PostIndex)); in GenerateDoubleToObject()
|
D | code-stubs-arm64.cc | 1912 Register the_hole = x13; in GenerateNewSloppyFast() local 1918 __ LoadRoot(the_hole, Heap::kTheHoleValueRootIndex); in GenerateNewSloppyFast() 1930 __ Str(the_hole, MemOperand(backing_store, x10)); in GenerateNewSloppyFast()
|
/external/v8/src/ |
D | global-handles.cc | 1372 Object* the_hole = isolate->heap()->the_hole_value(); in Create() local 1373 MemsetPointer(next_block, the_hole, kSize); in Create()
|
D | elements.cc | 302 Object* the_hole = from->GetHeap()->the_hole_value(); in CopySmiToDoubleElements() local 306 if (hole_or_smi == the_hole) { in CopySmiToDoubleElements() 375 Object* the_hole = from->GetHeap()->the_hole_value(); in CopyObjectToDoubleElements() local 379 if (hole_or_object == the_hole) { in CopyObjectToDoubleElements()
|
D | deoptimizer.cc | 1743 intptr_t the_hole = reinterpret_cast<intptr_t>( in DoComputeCompiledStubFrame() local 1749 value = the_hole; in DoComputeCompiledStubFrame() 1759 value = arg_count_known ? caller_arg_count : the_hole; in DoComputeCompiledStubFrame()
|
D | objects-inl.h | 1611 Object* the_hole = GetHeap()->the_hole_value(); in ContainsOnlySmisOrHoles() local 1615 if (!candidate->IsSmi() && candidate != the_hole) return false; in ContainsOnlySmisOrHoles() 1887 Object* the_hole = heap->the_hole_value(); in EnsureCanContainElements() local 1890 if (current == the_hole) { in EnsureCanContainElements()
|
D | api.cc | 2256 i::Object* the_hole = isolate_->heap()->the_hole_value(); in ResetInternal() local 2257 exception_ = the_hole; in ResetInternal() 2258 message_obj_ = the_hole; in ResetInternal()
|
/external/v8/test/unittests/compiler/ |
D | js-typed-lowering-unittest.cc | 402 Node* const the_hole = HeapConstant(factory()->the_hole_value()); in TEST_F() local 407 Reduce(graph()->NewNode(javascript()->StrictEqual(), lhs, the_hole, in TEST_F()
|
/external/v8/src/full-codegen/arm64/ |
D | full-codegen-arm64.cc | 4546 Register the_hole = x2; in EmitGeneratorResume() local 4578 __ LoadRoot(the_hole, Heap::kTheHoleValueRootIndex); in EmitGeneratorResume() 4579 __ PushMultipleTimes(the_hole, w10); in EmitGeneratorResume() 4620 __ PushMultipleTimes(the_hole, operand_stack_size); in EmitGeneratorResume()
|
/external/v8/src/crankshaft/ |
D | hydrogen.cc | 714 DEFINE_GET_CONSTANT(Hole, the_hole, the_hole, HType::None(), false) in DEFINE_GET_CONSTANT() 730 DEFINE_IS_CONSTANT(Hole, the_hole)
|
/external/v8/src/heap/ |
D | heap.cc | 2324 ALLOCATE_MAP(ODDBALL_TYPE, Oddball::kSize, the_hole); in CreateInitialMaps()
|