Home
last modified time | relevance | path

Searched refs:if_notoverflow (Results 1 – 5 of 5) sorted by relevance

/external/v8/src/builtins/
Dbuiltins-math.cc65 Label if_overflow(this, Label::kDeferred), if_notoverflow(this); in TF_BUILTIN() local
66 Branch(overflow, &if_overflow, &if_notoverflow); in TF_BUILTIN()
68 Bind(&if_notoverflow); in TF_BUILTIN()
Dbuiltins-number.cc604 Label if_overflow(this), if_notoverflow(this); in TF_BUILTIN() local
605 Branch(overflow, &if_overflow, &if_notoverflow); in TF_BUILTIN()
614 Bind(&if_notoverflow); in TF_BUILTIN()
945 Label if_overflow(this), if_notoverflow(this); in TF_BUILTIN() local
946 Branch(overflow, &if_overflow, &if_notoverflow); in TF_BUILTIN()
956 Bind(&if_notoverflow); in TF_BUILTIN()
/external/v8/src/interpreter/
Dinterpreter.cc1518 Label if_notoverflow(assembler); in DoAddSmi() local
1519 __ Branch(overflow, &slowpath, &if_notoverflow); in DoAddSmi()
1520 __ Bind(&if_notoverflow); in DoAddSmi()
1572 Label if_notoverflow(assembler); in DoSubSmi() local
1573 __ Branch(overflow, &slowpath, &if_notoverflow); in DoSubSmi()
1574 __ Bind(&if_notoverflow); in DoSubSmi()
1807 Label if_overflow(assembler), if_notoverflow(assembler); in DoInc() local
1808 assembler->Branch(overflow, &if_overflow, &if_notoverflow); in DoInc()
1810 assembler->Bind(&if_notoverflow); in DoInc()
1945 Label if_overflow(assembler), if_notoverflow(assembler); in DoDec() local
[all …]
/external/v8/src/
Dcode-stubs.cc561 Label if_overflow(assembler), if_notoverflow(assembler); in BINARY_OP_STUB() local
562 assembler->Branch(overflow, &if_overflow, &if_notoverflow); in BINARY_OP_STUB()
571 assembler->Bind(&if_notoverflow); in BINARY_OP_STUB()
767 Label if_overflow(assembler), if_notoverflow(assembler); in Generate() local
768 assembler->Branch(overflow, &if_overflow, &if_notoverflow); in Generate()
779 assembler->Bind(&if_notoverflow); in Generate()
Dcode-stub-assembler.cc537 Label if_overflow(this, Label::kDeferred), if_notoverflow(this); in SmiMul() local
538 Branch(overflow, &if_overflow, &if_notoverflow); in SmiMul()
539 Bind(&if_notoverflow); in SmiMul()
2567 Label if_overflow(this, Label::kDeferred), if_notoverflow(this); in ChangeFloat64ToTagged() local
2568 Branch(overflow, &if_overflow, &if_notoverflow); in ChangeFloat64ToTagged()
2571 Bind(&if_notoverflow); in ChangeFloat64ToTagged()
2596 Label if_overflow(this, Label::kDeferred), if_notoverflow(this), in ChangeInt32ToTagged() local
2598 Branch(overflow, &if_overflow, &if_notoverflow); in ChangeInt32ToTagged()
2606 Bind(&if_notoverflow); in ChangeInt32ToTagged()
7951 Label if_overflow(this), if_notoverflow(this); in NumberInc() local
[all …]