Searched refs:RightValue (Results 1 – 5 of 5) sorted by relevance
/external/llvm-project/llvm/lib/FileCheck/ |
D | FileCheck.cpp | 190 int64_t RightValue = cantFail(RightOperand.getSignedValue()); in operator +() local 191 Optional<int64_t> Result = checkedAdd<int64_t>(LeftValue, RightValue); in operator +() 208 uint64_t RightValue = cantFail(RightOperand.getUnsignedValue()); in operator +() local 210 checkedAddUnsigned<uint64_t>(LeftValue, RightValue); in operator +() 222 uint64_t RightValue = cantFail(RightOperand.getUnsignedValue()); in operator -() local 224 if (RightValue > (uint64_t)std::numeric_limits<int64_t>::max()) in operator -() 227 checkedSub(LeftValue, static_cast<int64_t>(RightValue)); in operator -() 244 uint64_t RightValue = cantFail(RightOperand.getUnsignedValue()); in operator -() local 245 if (LeftValue >= RightValue) in operator -() 246 return ExpressionValue(LeftValue - RightValue); in operator -() [all …]
|
/external/llvm/lib/Transforms/Scalar/ |
D | InductiveRangeCheckElimination.cpp | 673 Value *RightValue = ICI->getOperand(1); in parseLoopStructure() local 674 const SCEV *RightSCEV = SE.getSCEV(RightValue); in parseLoopStructure() 680 std::swap(LeftValue, RightValue); in parseLoopStructure() 767 RightValue = B.CreateAdd(RightValue, One); in parseLoopStructure() 789 RightValue = B.CreateSub(RightValue, One); in parseLoopStructure() 821 Result.LoopExitAt = RightValue; in parseLoopStructure()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | InductiveRangeCheckElimination.cpp | 800 Value *RightValue = ICI->getOperand(1); in parseLoopStructure() local 801 const SCEV *RightSCEV = SE.getSCEV(RightValue); in parseLoopStructure() 807 std::swap(LeftValue, RightValue); in parseLoopStructure() 933 RightValue = B.CreateAdd(RightValue, One); in parseLoopStructure() 1000 RightValue = B.CreateSub(RightValue, One); in parseLoopStructure() 1032 Result.LoopExitAt = RightValue; in parseLoopStructure()
|
/external/llvm-project/llvm/lib/Transforms/Scalar/ |
D | InductiveRangeCheckElimination.cpp | 805 Value *RightValue = ICI->getOperand(1); in parseLoopStructure() local 806 const SCEV *RightSCEV = SE.getSCEV(RightValue); in parseLoopStructure() 812 std::swap(LeftValue, RightValue); in parseLoopStructure() 878 if (auto *I = dyn_cast<Instruction>(RightValue)) in parseLoopStructure() 1029 RightValue = in parseLoopStructure() 1047 Result.LoopExitAt = RightValue; in parseLoopStructure()
|
/external/llvm-project/llvm/unittests/FileCheck/ |
D | FileCheckTest.cpp | 360 T1 LeftValue, T2 RightValue) { in doValueOperation() argument 362 ExpressionValue RightOperand(RightValue); in doValueOperation() 382 T2 RightValue, TR ResultValue) { in expectOperationValueResult() argument 384 doValueOperation(Operation, LeftValue, RightValue); in expectOperationValueResult() 391 T2 RightValue) { in expectOperationValueResult() argument 394 doValueOperation(Operation, LeftValue, RightValue).takeError()); in expectOperationValueResult()
|