Home
last modified time | relevance | path

Searched refs:if_not_callable (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/builtins/
Dbuiltins-iterator-gen.cc35 Label if_not_callable(this, Label::kDeferred), if_callable(this); in GetIterator() local
36 GotoIf(TaggedIsSmi(method), &if_not_callable); in GetIterator()
37 Branch(IsCallable(method), &if_callable, &if_not_callable); in GetIterator()
39 BIND(&if_not_callable); in GetIterator()
Dbuiltins-array-gen.cc3936 Label if_not_callable(this, Label::kDeferred); in TF_BUILTIN() local
3937 GotoIf(TaggedIsSmi(mapper_function), &if_not_callable); in TF_BUILTIN()
3938 GotoIfNot(IsCallable(mapper_function), &if_not_callable); in TF_BUILTIN()
3956 BIND(&if_not_callable); in TF_BUILTIN()