Searched refs:if_empty (Results 1 – 5 of 5) sorted by relevance
/external/v8/src/builtins/ |
D | builtins-object-gen.cc | 91 TNode<IntPtrT> size, TNode<Map> array_map, Label* if_empty); 391 TNode<Map> array_map, Label* if_empty) { in FinalizeValuesOrEntriesJSArray() argument 394 GotoIf(IntPtrEqual(size, IntPtrConstant(0)), if_empty); in FinalizeValuesOrEntriesJSArray() 706 Label if_empty(this, Label::kDeferred), if_empty_elements(this), in TF_BUILTIN() local 728 Branch(WordEqual(object_enum_length, IntPtrConstant(0)), &if_empty, &if_fast); in TF_BUILTIN() 753 BIND(&if_empty); in TF_BUILTIN() 790 Label if_empty(this, Label::kDeferred), if_empty_elements(this), in TF_BUILTIN() local 818 Branch(WordEqual(object_enum_length, IntPtrConstant(0)), &if_empty, &if_fast); in TF_BUILTIN() 854 BIND(&if_empty); in TF_BUILTIN()
|
D | builtins-internal-gen.cc | 94 Label if_empty(this), if_notempty(this); in TF_BUILTIN() local 95 Branch(IntPtrLessThanOrEqual(length, IntPtrConstant(0)), &if_empty, in TF_BUILTIN() 98 BIND(&if_empty); in TF_BUILTIN() 564 Label if_empty(this), if_runtime(this, Label::kDeferred); in TF_BUILTIN() local 565 Node* receiver_map = CheckEnumCache(receiver, &if_empty, &if_runtime); in TF_BUILTIN() 568 BIND(&if_empty); in TF_BUILTIN()
|
/external/v8/src/interpreter/ |
D | interpreter-generator.cc | 2837 Label if_empty(this), if_runtime(this, Label::kDeferred); in IGNITION_HANDLER() local 2838 Node* receiver_map = CheckEnumCache(receiver, &if_empty, &if_runtime); in IGNITION_HANDLER() 2842 BIND(&if_empty); in IGNITION_HANDLER()
|
/external/v8/src/ |
D | code-stub-assembler.h | 2764 Node* CheckEnumCache(Node* receiver, Label* if_empty, Label* if_runtime);
|
D | code-stub-assembler.cc | 12470 Node* CodeStubAssembler::CheckEnumCache(Node* receiver, Label* if_empty, in CheckEnumCache() argument 12493 CheckPrototypeEnumCache(receiver, receiver_map, if_empty, if_runtime); in CheckEnumCache()
|