/third_party/node/deps/v8/src/builtins/ |
H A D | builtins-object-gen.cc | 469 if_fast(this), if_slow(this, Label::kDeferred), if_join(this); in TF_BUILTIN() 472 GotoIf(TaggedIsSmi(object), &if_slow); in TF_BUILTIN() local 480 &if_slow); in TF_BUILTIN() local 487 &if_slow); in TF_BUILTIN() local 529 BIND(&if_slow); in TF_BUILTIN() 590 if_slow(this, Label::kDeferred), if_join(this); in TF_BUILTIN() 594 GotoIf(TaggedIsSmi(object), &if_slow); in TF_BUILTIN() local 598 GotoIf(IsCustomElementsReceiverInstanceType(instance_type), &if_slow); in TF_BUILTIN() local 602 &if_slow); in TF_BUILTIN() local 617 GotoIfNot(WordEqual(object_enum_length, number_descriptors), &if_slow); in TF_BUILTIN() local [all...] |
H A D | builtins-async-generator-gen.cc | 536 Label if_fast(this), if_slow(this, Label::kDeferred), return_promise(this); in TF_BUILTIN() 537 GotoIfForceSlowPath(&if_slow); in TF_BUILTIN() 538 GotoIf(IsIsolatePromiseHookEnabledOrHasAsyncEventDelegate(), &if_slow); in TF_BUILTIN() local 539 Branch(IsPromiseThenProtectorCellInvalid(), &if_slow, &if_fast); in TF_BUILTIN() local 549 BIND(&if_slow); in TF_BUILTIN()
|
H A D | builtins-internal-gen.cc | 1235 if_slow(this, Label::kDeferred); in TF_BUILTIN() 1260 lookup_element_in_holder, &if_notfound, &if_slow, in TF_BUILTIN() 1266 BIND(&if_slow); in TF_BUILTIN() 1290 if_slow(this, Label::kDeferred); in TF_BUILTIN() 1315 lookup_element_in_holder, &if_notfound, &if_slow, in TF_BUILTIN() 1330 BIND(&if_slow); in TF_BUILTIN() 1340 GotoIf(IsPrivateSymbol(name), &if_slow); in TF_BUILTIN() local
|
/third_party/node/deps/v8/src/interpreter/ |
H A D | interpreter-generator.cc | 2481 Label if_fast(this), if_slow(this, Label::kDeferred); in IGNITION_HANDLER() 2483 &if_slow); in IGNITION_HANDLER() local 2493 BIND(&if_slow); in IGNITION_HANDLER() 2898 Label if_fast(this), if_slow(this, Label::kDeferred); in IGNITION_HANDLER() 2900 Branch(TaggedEqual(receiver_map, cache_type), &if_fast, &if_slow); in IGNITION_HANDLER() local 2907 BIND(&if_slow); in IGNITION_HANDLER()
|
/third_party/node/deps/v8/src/ic/ |
H A D | accessor-assembler.cc | 1243 if_slow(this); in HandleStoreICHandlerCase() 1261 GotoIf(Word32Equal(handler_kind, STORE_KIND(kSlow)), &if_slow); in HandleStoreICHandlerCase() local 1270 p->IsAnyDefineOwn() ? &if_slow : &dictionary_found, &var_name_index, in HandleStoreICHandlerCase() 1345 BIND(&if_slow); in HandleStoreICHandlerCase() 1850 if_accessor(this), if_native_data_property(this), if_slow(this); in HandleStoreICProtoHandler() 1859 GotoIf(Word32Equal(handler_kind, STORE_KIND(kSlow)), &if_slow); in HandleStoreICProtoHandler() local 1881 BIND(&if_slow); in HandleStoreICProtoHandler() 1964 GotoIf(IsSideEffectFreeDebuggingActive(), &if_slow); in HandleStoreICProtoHandler() local
|
/third_party/node/deps/v8/src/codegen/ |
H A D | code-stub-assembler.cc | 1787 Label* if_slow) { 1788 GotoIf(IsStringWrapperElementsKind(map), if_slow); 1789 GotoIf(IsSpecialReceiverMap(map), if_slow); 1790 GotoIf(IsDictionaryMap(map), if_slow); 13532 Label if_fast(this), if_slow(this, Label::kDeferred), out(this); 13533 Branch(IsMap(enumerator), &if_fast, &if_slow); 13564 BIND(&if_slow); 14806 Label* if_slow) { 14828 GotoIfNot(IsJSArrayMap(object_map.value()), if_slow); 14831 if_slow); [all...] |
H A D | code-stub-assembler.h | 1372 void GotoIfMapHasSlowProperties(TNode<Map> map, Label* if_slow); 3793 Label* if_slow);
|