Searched refs:if_fast (Results 1 - 8 of 8) sorted by relevance
/third_party/node/deps/v8/src/builtins/ |
H A D | builtins-constructor-gen.cc | 547 Label if_dictionary(this), if_fast(this), done(this); in CreateShallowObjectLiteral() 549 &if_dictionary, &if_fast); in CreateShallowObjectLiteral() local 563 BIND(&if_fast); in CreateShallowObjectLiteral()
|
H A D | builtins-async-generator-gen.cc | 536 Label if_fast(this), if_slow(this, Label::kDeferred), return_promise(this); in TF_BUILTIN() 539 Branch(IsPromiseThenProtectorCellInvalid(), &if_slow, &if_fast); in TF_BUILTIN() local 541 BIND(&if_fast); in TF_BUILTIN()
|
H A D | builtins-object-gen.cc | 469 if_fast(this), if_slow(this, Label::kDeferred), if_join(this); in TF_BUILTIN() 491 Branch(WordEqual(object_enum_length, IntPtrConstant(0)), &if_empty, &if_fast); in TF_BUILTIN() local 494 // ObjectKeys and for ObjectGetOwnPropertyNames. In particular, if_fast seem in TF_BUILTIN() 496 BIND(&if_fast); in TF_BUILTIN() 589 if_fast(this), try_fast(this, Label::kDeferred), in TF_BUILTIN() 620 Branch(WordEqual(object_enum_length, IntPtrConstant(0)), &if_empty, &if_fast); in TF_BUILTIN() local 623 // ObjectKeys and for ObjectGetOwnPropertyNames. In particular, if_fast seem in TF_BUILTIN() 625 BIND(&if_fast); in TF_BUILTIN()
|
/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() 2482 Branch(IsSetWord32<CreateClosureFlags::FastNewClosureBit>(flags), &if_fast, in IGNITION_HANDLER() local 2485 BIND(&if_fast); 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 2901 BIND(&if_fast); in IGNITION_HANDLER()
|
/third_party/node/deps/v8/src/ic/ |
H A D | keyed-store-generic.cc | 571 Label if_fast(this), if_in_bounds(this), if_increment_length_by_one(this), in EmitGenericElementStore() 576 Branch(IsFastElementsKind(elements_kind), &if_fast, &if_nonfast); in EmitGenericElementStore() local 577 BIND(&if_fast); in EmitGenericElementStore()
|
H A D | accessor-assembler.cc | 2314 Label if_rab_gsab_typed_array(this), if_typed_array(this), if_fast(this), in EmitElementLoad() 2319 &if_nonfast, &if_fast); in EmitElementLoad() local 2321 BIND(&if_fast); in EmitElementLoad()
|
/third_party/node/deps/v8/src/codegen/ |
H A D | code-stub-assembler.cc | 13532 Label if_fast(this), if_slow(this, Label::kDeferred), out(this); 13533 Branch(IsMap(enumerator), &if_fast, &if_slow); 13535 BIND(&if_fast); 14805 Label* if_fast, 14836 GotoIf(IsNull(object), if_fast); 14849 Label if_fast(this), if_cache(this), if_no_cache(this, Label::kDeferred); 14900 CheckPrototypeEnumCache(receiver, receiver_map, &if_fast, if_runtime); 14902 BIND(&if_fast);
|
H A D | code-stub-assembler.h | 3792 TNode<Map> receiver_map, Label* if_fast,
|
Completed in 50 milliseconds