Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/FileCheck/
H A DFileCheck.cpp208 int64_t RightValue = cantFail(RightOperand.getSignedValue()); in operator +() local
209 std::optional<int64_t> Result = checkedAdd<int64_t>(LeftValue, RightValue); in operator +()
226 uint64_t RightValue = cantFail(RightOperand.getUnsignedValue()); in operator +() local
228 checkedAddUnsigned<uint64_t>(LeftValue, RightValue); in operator +()
240 uint64_t RightValue = cantFail(RightOperand.getUnsignedValue()); in operator -() local
242 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 -() local
263 if (LeftValue >= RightValue) in operator -()
264 return ExpressionValue(LeftValue - RightValue); in operator -()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DInductiveRangeCheckElimination.cpp802 Value *RightValue = ICI->getOperand(1); in parseLoopStructure() local
803 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()