Searched refs:if_notsmi (Results 1 – 3 of 3) sorted by relevance
/third_party/node/deps/v8/src/interpreter/ |
D | interpreter-generator.cc | 2132 Label if_object(this), if_notobject(this, Label::kDeferred), if_notsmi(this); in IGNITION_HANDLER() local 2133 Branch(TaggedIsSmi(accumulator), &if_notobject, &if_notsmi); in IGNITION_HANDLER() 2135 BIND(&if_notsmi); in IGNITION_HANDLER() 2152 Label if_object(this), if_notobject(this), if_notsmi(this); in IGNITION_HANDLER() local 2153 Branch(TaggedIsSmi(accumulator), &if_notobject, &if_notsmi); in IGNITION_HANDLER() 2155 BIND(&if_notsmi); in IGNITION_HANDLER()
|
/third_party/node/deps/v8/src/compiler/ |
D | effect-control-linearizer.cc | 6583 auto if_notsmi = __ MakeDeferredLabel(); in LowerFindOrderedHashMapEntryForInt32Key() local 6584 __ GotoIfNot(ObjectIsSmi(candidate_key), &if_notsmi); in LowerFindOrderedHashMapEntryForInt32Key() 6588 __ Bind(&if_notsmi); in LowerFindOrderedHashMapEntryForInt32Key()
|
/third_party/node/deps/v8/src/codegen/ |
D | code-stub-assembler.cc | 1479 Label if_smi(this), if_notsmi(this), if_heapnumber(this, Label::kDeferred), in BranchIfToBooleanIsTrue() local 1485 Branch(TaggedIsSmi(value), &if_smi, &if_notsmi); in BranchIfToBooleanIsTrue() 1493 BIND(&if_notsmi); in BranchIfToBooleanIsTrue()
|