Searched refs:RightValue (Results 1 – 2 of 2) sorted by relevance
208 int64_t RightValue = cantFail(RightOperand.getSignedValue()); in operator +() local209 std::optional<int64_t> Result = checkedAdd<int64_t>(LeftValue, RightValue); in operator +()226 uint64_t RightValue = cantFail(RightOperand.getUnsignedValue()); in operator +() local228 checkedAddUnsigned<uint64_t>(LeftValue, RightValue); in operator +()240 uint64_t RightValue = cantFail(RightOperand.getUnsignedValue()); in operator -() local242 if (RightValue > (uint64_t)std::numeric_limits<int64_t>::max()) in operator -()245 checkedSub(LeftValue, static_cast<int64_t>(RightValue)); in operator -()262 uint64_t RightValue = cantFail(RightOperand.getUnsignedValue()); in operator -() local263 if (LeftValue >= RightValue) in operator -()264 return ExpressionValue(LeftValue - RightValue); in operator -()[all …]
802 Value *RightValue = ICI->getOperand(1); in parseLoopStructure() local803 const SCEV *RightSCEV = SE.getSCEV(RightValue); in parseLoopStructure()809 std::swap(LeftValue, RightValue); in parseLoopStructure()879 if (auto *I = dyn_cast<Instruction>(RightValue)) in parseLoopStructure()1030 RightValue = in parseLoopStructure()1048 Result.LoopExitAt = RightValue; in parseLoopStructure()