Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/compiler/
Dstub_builder.cpp4671 Label leftNotIntOrRightNotInt(env); in FastMod() local
4673 Branch(TaggedIsInt(left), &leftIsInt, &leftNotIntOrRightNotInt); in FastMod()
4677 Branch(TaggedIsInt(right), &rightIsInt, &leftNotIntOrRightNotInt); in FastMod()
4683 … Branch(Int32GreaterThanOrEqual(*intLeft, Int32(0)), &leftGreaterZero, &leftNotIntOrRightNotInt); in FastMod()
4687 … Branch(Int32GreaterThan(*intRight, Int32(0)), &rightGreaterZero, &leftNotIntOrRightNotInt); in FastMod()
4697 Bind(&leftNotIntOrRightNotInt); in FastMod()