Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/FileCheck/
H A DFileCheck.cpp207 int64_t LeftValue = cantFail(LeftOperand.getSignedValue()); in operator +() local
209 std::optional<int64_t> Result = checkedAdd<int64_t>(LeftValue, RightValue); in operator +()
225 uint64_t LeftValue = cantFail(LeftOperand.getUnsignedValue()); in operator +() local
228 checkedAddUnsigned<uint64_t>(LeftValue, RightValue); in operator +()
239 int64_t LeftValue = cantFail(LeftOperand.getSignedValue()); in operator -() local
245 checkedSub(LeftValue, static_cast<int64_t>(RightValue)); in operator -()
261 uint64_t LeftValue = cantFail(LeftOperand.getUnsignedValue()); in operator -() local
263 if (LeftValue >= RightValue) in operator -()
264 return ExpressionValue(LeftValue - RightValue); in operator -()
266 uint64_t AbsoluteDifference = RightValue - LeftValue; in operator -()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DInductiveRangeCheckElimination.cpp798 Value *LeftValue = ICI->getOperand(0); in parseLoopStructure() local
799 const SCEV *LeftSCEV = SE.getSCEV(LeftValue); in parseLoopStructure()
800 IntegerType *IndVarTy = cast<IntegerType>(LeftValue->getType()); in parseLoopStructure()
809 std::swap(LeftValue, RightValue); in parseLoopStructure()
1046 Result.IndVarBase = LeftValue; in parseLoopStructure()