Home
last modified time | relevance | path

Searched refs:if_notcallable (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/builtins/
Dbuiltins-promise-gen.cc120 if_notcallable(this, Label::kDeferred), if_fast_promise_capability(this), in TF_BUILTIN() local
176 GotoIf(TaggedIsSmi(resolve), &if_notcallable); in TF_BUILTIN()
177 GotoIfNot(IsCallable(resolve), &if_notcallable); in TF_BUILTIN()
181 GotoIf(TaggedIsSmi(reject), &if_notcallable); in TF_BUILTIN()
182 GotoIfNot(IsCallable(reject), &if_notcallable); in TF_BUILTIN()
189 BIND(&if_notcallable); in TF_BUILTIN()
825 Label if_notcallable(this, Label::kDeferred); in TF_BUILTIN() local
827 GotoIf(TaggedIsSmi(executor), &if_notcallable); in TF_BUILTIN()
830 GotoIfNot(IsCallableMap(executor_map), &if_notcallable); in TF_BUILTIN()
914 BIND(&if_notcallable); in TF_BUILTIN()
[all …]
Dbuiltins-collections-gen.cc385 Label exit(this), if_notcallable(this, Label::kDeferred); in GetAddFunction() local
386 GotoIf(TaggedIsSmi(add_func), &if_notcallable); in GetAddFunction()
387 GotoIfNot(IsCallable(CAST(add_func)), &if_notcallable); in GetAddFunction()
390 BIND(&if_notcallable); in GetAddFunction()
/external/v8/src/
Dcode-stub-assembler.cc11685 Label if_notcallable(this, Label::kDeferred), in InstanceOf() local
11742 GotoIfNot(IsCallable(callable), &if_notcallable); in InstanceOf()
11751 BIND(&if_notcallable); in InstanceOf()