Home
last modified time | relevance | path

Searched refs:if_slow (Results 1 – 9 of 9) sorted by relevance

/external/v8/src/builtins/
Dbuiltins-promise-gen.cc544 Label if_fast(this), if_slow(this, Label::kDeferred), done(this, &var_result); in InvokeThen() local
545 GotoIf(TaggedIsSmi(receiver), &if_slow); in InvokeThen()
552 &if_slow); in InvokeThen()
566 BIND(&if_slow); in InvokeThen()
588 Label if_fast(this), if_slow(this, Label::kDeferred), done(this, &var_result); in InvokeResolve() local
594 &if_slow); in InvokeResolve()
606 BIND(&if_slow); in InvokeResolve()
626 Node* native_context, Node* constructor, Label* if_fast, Label* if_slow) { in BranchIfPromiseResolveLookupChainIntact() argument
629 GotoIfForceSlowPath(if_slow); in BranchIfPromiseResolveLookupChainIntact()
632 GotoIfNot(WordEqual(promise_fun, constructor), if_slow); in BranchIfPromiseResolveLookupChainIntact()
[all …]
Dbuiltins-promise-gen.h147 Label* if_fast, Label* if_slow);
155 Label* if_fast, Label* if_slow);
163 Label* if_slow);
Dbuiltins-object-gen.cc82 void GotoIfMapHasSlowProperties(TNode<Map> map, Label* if_slow);
259 TNode<Map> map, Label* if_slow) { in GotoIfMapHasSlowProperties() argument
260 GotoIf(IsStringWrapperElementsKind(map), if_slow); in GotoIfMapHasSlowProperties()
261 GotoIf(IsSpecialReceiverMap(map), if_slow); in GotoIfMapHasSlowProperties()
262 GotoIf(HasHiddenPrototype(map), if_slow); in GotoIfMapHasSlowProperties()
263 GotoIf(IsDictionaryMap(map), if_slow); in GotoIfMapHasSlowProperties()
707 if_fast(this), if_slow(this, Label::kDeferred), if_join(this); in TF_BUILTIN() local
710 GotoIf(TaggedIsSmi(object), &if_slow); in TF_BUILTIN()
717 &if_slow); in TF_BUILTIN()
724 &if_slow); in TF_BUILTIN()
[all …]
Dbuiltins-async-generator-gen.cc540 Label if_fast(this), if_slow(this, Label::kDeferred), return_promise(this); in TF_BUILTIN() local
541 GotoIfForceSlowPath(&if_slow); in TF_BUILTIN()
542 GotoIf(IsPromiseHookEnabled(), &if_slow); in TF_BUILTIN()
543 Branch(IsPromiseThenProtectorCellInvalid(), &if_slow, &if_fast); in TF_BUILTIN()
553 BIND(&if_slow); in TF_BUILTIN()
Dbuiltins-regexp-gen.cc3172 Label if_fast(this), if_slow(this, Label::kDeferred); in TF_BUILTIN() local
3173 BranchIfFastRegExp(context, iterating_regexp, &if_fast, &if_slow); in TF_BUILTIN()
3187 BIND(&if_slow); in TF_BUILTIN()
3214 Label if_fast(this), if_slow(this, Label::kDeferred); in TF_BUILTIN() local
3217 Branch(var_is_fast_regexp.value(), &if_fast, &if_slow); in TF_BUILTIN()
3252 BIND(&if_slow); in TF_BUILTIN()
Dbuiltins-collections-gen.cc524 Label exit(this), if_fast(this), if_slow(this, Label::kDeferred); in LoadKeyValue() local
525 BranchIfFastJSArray(maybe_array, context, &if_fast, &if_slow); in LoadKeyValue()
590 BIND(&if_slow); in LoadKeyValue()
/external/v8/src/interpreter/
Dinterpreter-generator.cc2502 Label if_fast(this), if_slow(this, Label::kDeferred); in IGNITION_HANDLER() local
2504 &if_slow); in IGNITION_HANDLER()
2514 BIND(&if_slow); in IGNITION_HANDLER()
2874 Label if_fast(this), if_slow(this); in IGNITION_HANDLER() local
2875 Branch(IsMap(enumerator), &if_fast, &if_slow); in IGNITION_HANDLER()
2904 BIND(&if_slow); in IGNITION_HANDLER()
2939 Label if_fast(this), if_slow(this, Label::kDeferred); in IGNITION_HANDLER() local
2941 Branch(WordEqual(receiver_map, cache_type), &if_fast, &if_slow); in IGNITION_HANDLER()
2948 BIND(&if_slow); in IGNITION_HANDLER()
/external/v8/src/
Dcode-stub-assembler.cc12430 Label* if_slow) { in CheckPrototypeEnumCache() argument
12452 GotoIfNot(IsJSArrayMap(object_map), if_slow); in CheckPrototypeEnumCache()
12454 Branch(WordEqual(object_length, SmiConstant(0)), &if_no_elements, if_slow); in CheckPrototypeEnumCache()
12466 Branch(WordEqual(object_enum_length, IntPtrConstant(0)), &loop, if_slow); in CheckPrototypeEnumCache()
Dcode-stub-assembler.h2763 Label* if_fast, Label* if_slow);