Home
last modified time | relevance | path

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

/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()
1449 return static_cast<uint64>(res) < static_cast<uint64>(cstA); in IntegerOpIsOverflow()
1453 static_cast<uint64>(cstA) >> 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()
1463 return (static_cast<uint64>(cstA) >> rightShiftNumToGetSignFlag != in IntegerOpIsOverflow()
1466 static_cast<uint64>(cstA) >> rightShiftNumToGetSignFlag); in IntegerOpIsOverflow()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/mpl2mpl/include/
H A Dconstantfold.h55 static bool IntegerOpIsOverflow(Opcode op, PrimType primType, int64 cstA, int64 cstB);

Completed in 4 milliseconds