Searched refs:intLeft (Results 1 - 2 of 2) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | operations_stub_builder.cpp | 178 GateRef intLeft = TaggedGetInt(left); in Less() local 180 BRANCH(Int32LessThan(intLeft, intRight), &leftLessRight, &leftNotLessRight); in Less() 285 GateRef intLeft = TaggedGetInt(left); in LessEq() local 287 BRANCH(Int32LessThanOrEqual(intLeft, intRight), &leftLessEqRight, &leftNotLessEqRight); in LessEq() 391 GateRef intLeft = TaggedGetInt(left); in Greater() local 393 BRANCH(Int32GreaterThan(intLeft, intRight), &leftGreaterRight, &leftNotGreaterRight); in Greater() 497 GateRef intLeft = TaggedGetInt(left); in GreaterEq() local 499 BRANCH(Int32GreaterThanOrEqual(intLeft, intRight), &leftGreaterEqRight, &leftNotGreaterEQRight); in GreaterEq()
|
H A D | stub_builder.cpp | 7547 GateRef intLeft = GetInt32OfTInt(left); in FastIntDiv() local 7555 BRANCH(Int32Equal(intLeft, Int32(INT_MIN)), &leftIsIntMin, &leftAndRightIsNotBoundary); in FastIntDiv() 7562 BRANCH(Int32Equal(intLeft, Int32(0)), &leftIsZero, &leftIsNotZero); in FastIntDiv() 7569 intResult = Int32Div(intLeft, intRight); in FastIntDiv() 7571 BRANCH(Equal(intLeft, truncated), &exit, bailout); in FastIntDiv() 7602 DEFVARIABLE(intLeft, VariableType::INT32(), Int32(0)); in FastMod() 7616 intLeft = GetInt32OfTInt(left); in FastMod() 7619 BRANCH(Int32GreaterThanOrEqual(*intLeft, Int32(0)), &leftGreaterZero, &leftNotIntOrRightNotInt); in FastMod() 7627 result = IntToTaggedPtr(Int32Mod(*intLeft, *intRight)); in FastMod()
|
Completed in 19 milliseconds