Home
last modified time | relevance | path

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

/external/llvm-project/llvm/lib/FileCheck/
DFileCheck.cpp189 int64_t LeftValue = cantFail(LeftOperand.getSignedValue()); in operator +() local
191 Optional<int64_t> Result = checkedAdd<int64_t>(LeftValue, RightValue); in operator +()
207 uint64_t LeftValue = cantFail(LeftOperand.getUnsignedValue()); in operator +() local
210 checkedAddUnsigned<uint64_t>(LeftValue, RightValue); in operator +()
221 int64_t LeftValue = cantFail(LeftOperand.getSignedValue()); in operator -() local
227 checkedSub(LeftValue, static_cast<int64_t>(RightValue)); in operator -()
243 uint64_t LeftValue = cantFail(LeftOperand.getUnsignedValue()); in operator -() local
245 if (LeftValue >= RightValue) in operator -()
246 return ExpressionValue(LeftValue - RightValue); in operator -()
248 uint64_t AbsoluteDifference = RightValue - LeftValue; in operator -()
[all …]
/external/llvm/lib/Transforms/Scalar/
DInductiveRangeCheckElimination.cpp669 Value *LeftValue = ICI->getOperand(0); in parseLoopStructure() local
670 const SCEV *LeftSCEV = SE.getSCEV(LeftValue); in parseLoopStructure()
671 IntegerType *IndVarTy = cast<IntegerType>(LeftValue->getType()); in parseLoopStructure()
680 std::swap(LeftValue, RightValue); in parseLoopStructure()
819 Result.IndVarNext = LeftValue; in parseLoopStructure()
/external/llvm-project/llvm/unittests/FileCheck/
DFileCheckTest.cpp360 T1 LeftValue, T2 RightValue) { in doValueOperation() argument
361 ExpressionValue LeftOperand(LeftValue); in doValueOperation()
381 static void expectOperationValueResult(binop_eval_t Operation, T1 LeftValue, in expectOperationValueResult() argument
384 doValueOperation(Operation, LeftValue, RightValue); in expectOperationValueResult()
390 static void expectOperationValueResult(binop_eval_t Operation, T1 LeftValue, in expectOperationValueResult() argument
394 doValueOperation(Operation, LeftValue, RightValue).takeError()); in expectOperationValueResult()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DInductiveRangeCheckElimination.cpp796 Value *LeftValue = ICI->getOperand(0); in parseLoopStructure() local
797 const SCEV *LeftSCEV = SE.getSCEV(LeftValue); in parseLoopStructure()
798 IntegerType *IndVarTy = cast<IntegerType>(LeftValue->getType()); in parseLoopStructure()
807 std::swap(LeftValue, RightValue); in parseLoopStructure()
1030 Result.IndVarBase = LeftValue; in parseLoopStructure()
/external/llvm-project/llvm/lib/Transforms/Scalar/
DInductiveRangeCheckElimination.cpp801 Value *LeftValue = ICI->getOperand(0); in parseLoopStructure() local
802 const SCEV *LeftSCEV = SE.getSCEV(LeftValue); in parseLoopStructure()
803 IntegerType *IndVarTy = cast<IntegerType>(LeftValue->getType()); in parseLoopStructure()
812 std::swap(LeftValue, RightValue); in parseLoopStructure()
1045 Result.IndVarBase = LeftValue; in parseLoopStructure()