Searched refs:throw_proxy_non_object (Results 1 – 1 of 1) sorted by relevance
/external/v8/src/builtins/ |
D | builtins-proxy-gen.cc | 175 Label throw_proxy_non_object(this, Label::kDeferred), in TF_BUILTIN() local 179 GotoIf(TaggedIsSmi(target), &throw_proxy_non_object); in TF_BUILTIN() 180 GotoIfNot(IsJSReceiver(target), &throw_proxy_non_object); in TF_BUILTIN() 183 GotoIf(TaggedIsSmi(handler), &throw_proxy_non_object); in TF_BUILTIN() 184 GotoIfNot(IsJSReceiver(handler), &throw_proxy_non_object); in TF_BUILTIN() 199 BIND(&throw_proxy_non_object); in TF_BUILTIN() 213 Label throw_proxy_non_object(this, Label::kDeferred), in TF_BUILTIN() local 217 GotoIf(TaggedIsSmi(target), &throw_proxy_non_object); in TF_BUILTIN() 218 GotoIfNot(IsJSReceiver(target), &throw_proxy_non_object); in TF_BUILTIN() 221 GotoIf(TaggedIsSmi(handler), &throw_proxy_non_object); in TF_BUILTIN() [all …]
|