Home
last modified time | relevance | path

Searched refs:cstB (Results 1 - 2 of 2) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/mpl2mpl/include/
H A Dconstantfold.h55 static bool IntegerOpIsOverflow(Opcode op, PrimType primType, int64 cstA, int64 cstB);
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/mpl2mpl/src/
H A Dconstantfold.cpp1443 bool ConstantFold::IntegerOpIsOverflow(Opcode op, PrimType primType, int64 cstA, int64 cstB) in IntegerOpIsOverflow() argument
1447 int64 res = static_cast<int64>(static_cast<uint64>(cstA) + static_cast<uint64>(cstB)); in IntegerOpIsOverflow()
1455 static_cast<uint64>(cstB) >> rightShiftNumToGetSignFlag); in IntegerOpIsOverflow()
1459 return cstA < cstB; in IntegerOpIsOverflow()
1461 int64 res = static_cast<int64>(static_cast<uint64>(cstA) - static_cast<uint64>(cstB)); in IntegerOpIsOverflow()
1464 static_cast<uint64>(cstB) >> rightShiftNumToGetSignFlag) && in IntegerOpIsOverflow()

Completed in 4 milliseconds