Searched refs:if_same (Results 1 - 4 of 4) sorted by relevance
/third_party/node/deps/v8/src/builtins/ |
H A D | builtins-collections-gen.cc | 535 Label* if_same, Label* if_not_same); 541 TNode<Object> candidate_key, Label* if_same, 552 Label* if_same, Label* if_not_same); 571 TNode<Object> candidate_key, Label* if_same, 824 Label* if_same, 827 GotoIf(TaggedEqual(candidate_key, key_smi), if_same); 841 GotoIf(Float64Equal(candidate_key_number, key_number), if_same); 1176 [&](TNode<Object> other_key, Label* if_same, Label* if_not_same) { 1177 SameValueZeroSmi(smi_key, other_key, if_same, if_not_same); 1191 [&](TNode<Object> other_key, Label* if_same, Labe [all...] |
H A D | builtins-collections-gen.h | 169 std::function<void(TNode<Object> entry_key, Label* if_same)>;
|
/third_party/node/deps/v8/src/compiler/ |
H A D | effect-control-linearizer.cc | 4473 auto if_same = __ MakeLabel(); in LowerCheckEqualsInternalizedString() local 4479 __ Branch(__ TaggedEqual(exp, val), &if_same, &if_notsame); in LowerCheckEqualsInternalizedString() local 4528 __ Goto(&if_same); in LowerCheckEqualsInternalizedString() 4538 __ Goto(&if_same); in LowerCheckEqualsInternalizedString() 4542 __ Bind(&if_same); in LowerCheckEqualsInternalizedString()
|
/third_party/node/deps/v8/src/codegen/ |
H A D | code-stub-assembler.cc | 12999 Label if_same(this), if_notsame(this); 13000 Branch(TaggedEqual(lhs, rhs), &if_same, &if_notsame); 13002 BIND(&if_same);
|
Completed in 28 milliseconds