Searched refs:RightValue (Results 1 – 3 of 3) sorted by relevance
| /llvm-project-15.0.7/llvm/lib/FileCheck/ |
| H A D | FileCheck.cpp | 208 int64_t RightValue = cantFail(RightOperand.getSignedValue()); in operator +() local 228 checkedAddUnsigned<uint64_t>(LeftValue, RightValue); in operator +() 245 checkedSub(LeftValue, static_cast<int64_t>(RightValue)); in operator -() 263 if (LeftValue >= RightValue) in operator -() 264 return ExpressionValue(LeftValue - RightValue); in operator -() 266 uint64_t AbsoluteDifference = RightValue - LeftValue; in operator -() 310 checkedMulUnsigned<uint64_t>(LeftValue, RightValue); in operator *() 334 return ExpressionValue(LeftValue / RightValue); in operator /() 341 int64_t RightValue = cantFail(RightOperand.getSignedValue()); in max() local 342 return ExpressionValue(std::max(LeftValue, RightValue)); in max() [all …]
|
| /llvm-project-15.0.7/llvm/lib/Transforms/Scalar/ |
| H A D | InductiveRangeCheckElimination.cpp | 803 Value *RightValue = ICI->getOperand(1); in parseLoopStructure() local 804 const SCEV *RightSCEV = SE.getSCEV(RightValue); in parseLoopStructure() 810 std::swap(LeftValue, RightValue); in parseLoopStructure() 876 if (auto *I = dyn_cast<Instruction>(RightValue)) in parseLoopStructure() 1027 RightValue = in parseLoopStructure() 1045 Result.LoopExitAt = RightValue; in parseLoopStructure()
|
| /llvm-project-15.0.7/llvm/unittests/FileCheck/ |
| H A D | FileCheckTest.cpp | 399 T1 LeftValue, T2 RightValue) { in doValueOperation() argument 401 ExpressionValue RightOperand(RightValue); in doValueOperation() 421 T2 RightValue, TR ResultValue) { in expectOperationValueResult() argument 423 doValueOperation(Operation, LeftValue, RightValue); in expectOperationValueResult() 430 T2 RightValue) { in expectOperationValueResult() argument 433 doValueOperation(Operation, LeftValue, RightValue).takeError()); in expectOperationValueResult()
|