Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/FileCheck/
H A DFileCheck.cpp207 int64_t LeftValue = cantFail(LeftOperand.getSignedValue()); in operator +() local
228 checkedAddUnsigned<uint64_t>(LeftValue, RightValue); in operator +()
239 int64_t LeftValue = cantFail(LeftOperand.getSignedValue()); in operator -() local
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 /()
340 int64_t LeftValue = cantFail(LeftOperand.getSignedValue()); in max() local
342 return ExpressionValue(std::max(LeftValue, RightValue)); in max()
[all …]
/llvm-project-15.0.7/llvm/unittests/FileCheck/
H A DFileCheckTest.cpp399 T1 LeftValue, T2 RightValue) { in doValueOperation() argument
400 ExpressionValue LeftOperand(LeftValue); in doValueOperation()
420 static void expectOperationValueResult(binop_eval_t Operation, T1 LeftValue, in expectOperationValueResult() argument
423 doValueOperation(Operation, LeftValue, RightValue); in expectOperationValueResult()
429 static void expectOperationValueResult(binop_eval_t Operation, T1 LeftValue, in expectOperationValueResult() argument
433 doValueOperation(Operation, LeftValue, RightValue).takeError()); in expectOperationValueResult()
/llvm-project-15.0.7/llvm/lib/Transforms/Scalar/
H A DInductiveRangeCheckElimination.cpp799 Value *LeftValue = ICI->getOperand(0); in parseLoopStructure() local
800 const SCEV *LeftSCEV = SE.getSCEV(LeftValue); in parseLoopStructure()
801 IntegerType *IndVarTy = cast<IntegerType>(LeftValue->getType()); in parseLoopStructure()
810 std::swap(LeftValue, RightValue); in parseLoopStructure()
1043 Result.IndVarBase = LeftValue; in parseLoopStructure()