Home
last modified time | relevance | path

Searched refs:if_fast (Results 1 – 11 of 11) sorted by relevance

/external/v8/src/builtins/
Dbuiltins-promise-gen.h147 Label* if_fast, Label* if_slow);
155 Label* if_fast, Label* if_slow);
162 Node* receiver_map, Label* if_fast,
Dbuiltins-promise-gen.cc544 Label if_fast(this), if_slow(this, Label::kDeferred), done(this, &var_result); in InvokeThen() local
551 BranchIfPromiseThenLookupChainIntact(native_context, receiver_map, &if_fast, in InvokeThen()
554 BIND(&if_fast); in InvokeThen()
588 Label if_fast(this), if_slow(this, Label::kDeferred), done(this, &var_result); in InvokeResolve() local
593 BranchIfPromiseResolveLookupChainIntact(native_context, constructor, &if_fast, in InvokeResolve()
596 BIND(&if_fast); in InvokeResolve()
626 Node* native_context, Node* constructor, Label* if_fast, Label* if_slow) { in BranchIfPromiseResolveLookupChainIntact() argument
633 Branch(IsPromiseResolveProtectorCellInvalid(), if_slow, if_fast); in BranchIfPromiseResolveLookupChainIntact()
637 Node* native_context, Node* promise_map, Label* if_fast, Label* if_slow) { in BranchIfPromiseSpeciesLookupChainIntact() argument
646 Branch(IsPromiseSpeciesProtectorCellInvalid(), if_slow, if_fast); in BranchIfPromiseSpeciesLookupChainIntact()
[all …]
Dbuiltins-async-generator-gen.cc540 Label if_fast(this), if_slow(this, Label::kDeferred), return_promise(this); in TF_BUILTIN() local
543 Branch(IsPromiseThenProtectorCellInvalid(), &if_slow, &if_fast); in TF_BUILTIN()
545 BIND(&if_fast); in TF_BUILTIN()
Dbuiltins-constructor-gen.cc446 Label if_dictionary(this), if_fast(this), done(this); in EmitCreateShallowObjectLiteral() local
448 &if_fast); in EmitCreateShallowObjectLiteral()
457 BIND(&if_fast); in EmitCreateShallowObjectLiteral()
Dbuiltins-object-gen.cc707 if_fast(this), if_slow(this, Label::kDeferred), if_join(this); in TF_BUILTIN() local
728 Branch(WordEqual(object_enum_length, IntPtrConstant(0)), &if_empty, &if_fast); in TF_BUILTIN()
730 BIND(&if_fast); in TF_BUILTIN()
791 if_fast(this), try_fast(this, Label::kDeferred), in TF_BUILTIN() local
818 Branch(WordEqual(object_enum_length, IntPtrConstant(0)), &if_empty, &if_fast); in TF_BUILTIN()
820 BIND(&if_fast); 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()
3175 BIND(&if_fast); 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()
3218 BIND(&if_fast); 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()
526 BIND(&if_fast); in LoadKeyValue()
/external/v8/src/interpreter/
Dinterpreter-generator.cc2502 Label if_fast(this), if_slow(this, Label::kDeferred); in IGNITION_HANDLER() local
2503 Branch(IsSetWord32<CreateClosureFlags::FastNewClosureBit>(flags), &if_fast, in IGNITION_HANDLER()
2506 BIND(&if_fast); 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()
2877 BIND(&if_fast); 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()
2942 BIND(&if_fast); in IGNITION_HANDLER()
/external/v8/src/ic/
Dkeyed-store-generic.cc472 Label if_fast(this), if_in_bounds(this), if_out_of_bounds(this), in EmitGenericElementStore() local
478 Branch(IsFastElementsKind(elements_kind), &if_fast, &if_nonfast); in EmitGenericElementStore()
479 BIND(&if_fast); in EmitGenericElementStore()
/external/v8/src/
Dcode-stub-assembler.cc1069 Label if_false(this, Label::kDeferred), if_fast(this), exit(this); in IsFastJSArrayWithNoCustomIteration() local
1071 BranchIfFastJSArray(object, context, &if_fast, &if_false, true); in IsFastJSArrayWithNoCustomIteration()
1072 BIND(&if_fast); in IsFastJSArrayWithNoCustomIteration()
12429 Label* if_fast, in CheckPrototypeEnumCache() argument
12459 GotoIf(IsNull(object), if_fast); in CheckPrototypeEnumCache()
12472 Label if_fast(this), if_cache(this), if_no_cache(this, Label::kDeferred); in CheckEnumCache() local
12499 CheckPrototypeEnumCache(receiver, receiver_map, &if_fast, if_runtime); in CheckEnumCache()
12501 BIND(&if_fast); in CheckEnumCache()
Dcode-stub-assembler.h2763 Label* if_fast, Label* if_slow);