/external/v8/src/compiler/ |
D | js-graph.cc | 105 Node* JSGraph::TheHoleConstant() { in TheHoleConstant() function in v8::internal::compiler::JSGraph 163 return TheHoleConstant(); in Constant()
|
D | control-builders.h | 33 Node* the_hole() const { return builder_->jsgraph()->TheHoleConstant(); } in the_hole()
|
D | js-graph.h | 59 Node* TheHoleConstant(); in NON_EXPORTED_BASE()
|
D | ast-graph-builder.cc | 384 env.RawParameterBind(0, jsgraph()->TheHoleConstant()); in CreateGraph() 846 PerformCommand(CMD_BREAK, stmt, builder()->jsgraph()->TheHoleConstant()); in BreakTo() 851 PerformCommand(CMD_CONTINUE, stmt, builder()->jsgraph()->TheHoleConstant()); in ContinueTo() 875 return environment()->Push(jsgraph()->TheHoleConstant()); in VisitForValueOrTheHole() 944 Node* value = jsgraph()->TheHoleConstant(); in VisitVariableDeclaration() 950 Node* value = jsgraph()->TheHoleConstant(); in VisitVariableDeclaration() 2360 Node* the_hole = jsgraph()->TheHoleConstant(); in BuildHoleCheckThenThrow() 2378 Node* the_hole = jsgraph()->TheHoleConstant(); in BuildHoleCheckElseThrow() 2396 Node* the_hole = jsgraph()->TheHoleConstant(); in BuildVariableLoad() 2480 Node* the_hole = jsgraph()->TheHoleConstant(); in BuildVariableAssignment()
|
D | js-create-lowering.cc | 853 Node* extension = jsgraph()->TheHoleConstant(); in ReduceJSCreateFunctionContext() 1067 aa.Store(AccessBuilder::ForFixedArraySlot(i), jsgraph()->TheHoleConstant()); in AllocateAliasedArguments() 1109 value = jsgraph()->TheHoleConstant(); in AllocateElements() 1279 elements_values[i] = jsgraph()->TheHoleConstant(); in AllocateFastLiteralElements()
|
D | representation-change.cc | 317 return jsgraph()->TheHoleConstant(); in GetTaggedPointerRepresentationFor() 385 return jsgraph()->TheHoleConstant(); in GetTaggedRepresentationFor()
|
D | graph-assembler.h | 77 V(TheHoleConstant) \
|
D | js-intrinsic-lowering.cc | 383 Node* value = jsgraph()->TheHoleConstant(); in ReduceTheHole()
|
D | js-inlining.cc | 657 Node* receiver = jsgraph()->TheHoleConstant(); // Implicit receiver. in ReduceJSCall()
|
D | bytecode-graph-builder.cc | 707 Node* node = jsgraph()->TheHoleConstant(); in VisitLdaTheHole() 892 jsgraph()->TheHoleConstant()); in CheckContextExtensions() 2206 jsgraph()->TheHoleConstant()); in BuildJumpIfNotHole()
|
D | effect-control-linearizer.cc | 2138 Node* check = __ WordEqual(value, __ TheHoleConstant()); in LowerCheckTaggedHole() 2149 Node* check = __ WordEqual(value, __ TheHoleConstant()); in LowerConvertTaggedHoleToUndefined()
|
D | js-builtin-reducer.cc | 794 elements, length, jsgraph()->TheHoleConstant(), efalse, if_false); in ReduceArrayPop()
|
/external/v8/src/builtins/ |
D | builtins-constructor.cc | 154 result, JSFunction::kPrototypeOrInitialMapOffset, TheHoleConstant()); in EmitFastNewClosure() 359 TheHoleConstant(), SKIP_WRITE_BARRIER); in EmitFastNewFunctionContext()
|
D | builtins-arguments.cc | 349 Node* the_hole = TheHoleConstant(); in EmitFastNewSloppyArguments()
|
D | builtins-array.cc | 509 GotoIf(WordEqual(value, TheHoleConstant()), &hole_element); in VisitAllFastElements() 1789 GotoIf(WordEqual(element_k, TheHoleConstant()), &return_true); in TF_BUILTIN() 2507 assembler.GotoIf(assembler.WordEqual(value, assembler.TheHoleConstant()), in Generate_ArrayIteratorPrototypeNext()
|
D | builtins-promise.cc | 215 TheHoleConstant()); in CreatePromiseContext()
|
/external/v8/src/ic/ |
D | keyed-store-generic.cc | 266 GotoIf(WordNotEqual(element, TheHoleConstant()), &hole_check_passed); in StoreElementWithCapacity() 586 GotoIf(WordEqual(value, TheHoleConstant()), &next_proto); in LookupPropertyOnPrototypeChain()
|
D | accessor-assembler.cc | 948 GotoIf(WordEqual(element, TheHoleConstant()), if_hole); in EmitElementLoad() 1534 GotoIf(WordEqual(value, TheHoleConstant()), miss); in LoadGlobalIC_TryPropertyCellCase()
|
/external/v8/src/ |
D | code-stub-assembler.cc | 2321 GotoIf(WordEqual(value, TheHoleConstant()), if_hole); in LoadElementAndPrepareForStore() 4473 Node* the_hole = mode == kFindExisting ? nullptr : TheHoleConstant(); in NameDictionaryLookup() 4552 Node* the_hole = TheHoleConstant(); in NumberDictionaryLookup() 5067 GotoIf(WordEqual(value, TheHoleConstant()), if_deleted); in LoadPropertyFromGlobalDictionary() 5226 Node* the_hole = TheHoleConstant(); in TryLookupElement() 5669 Branch(WordEqual(mapped_index, TheHoleConstant()), &if_unmapped, &if_mapped); in EmitKeyedSloppyArguments() 5683 CSA_ASSERT(this, WordNotEqual(result, TheHoleConstant())); in EmitKeyedSloppyArguments() 5704 GotoIf(WordEqual(result, TheHoleConstant()), bailout); in EmitKeyedSloppyArguments()
|
/external/v8/src/interpreter/ |
D | interpreter-assembler.cc | 156 GotoIf(WordNotEqual(extension_slot, TheHoleConstant()), target); in GotoIfHasContextExtensionUpToDepth()
|