Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DFileCheck.cpp38 Expected<uint64_t> RightOp = RightOperand->eval(); in eval() local
42 if (!LeftOp || !RightOp) { in eval()
46 if (!RightOp) in eval()
47 Err = joinErrors(std::move(Err), RightOp.takeError()); in eval()
51 return EvalBinop(*LeftOp, *RightOp); in eval()
208 static uint64_t add(uint64_t LeftOp, uint64_t RightOp) { in add() argument
209 return LeftOp + RightOp; in add()
212 static uint64_t sub(uint64_t LeftOp, uint64_t RightOp) { in sub() argument
213 return LeftOp - RightOp; in sub()
DFileCheckImpl.h155 std::unique_ptr<ExpressionAST> RightOp) in BinaryOperation() argument
158 RightOperand = std::move(RightOp); in BinaryOperation()
/external/llvm-project/llvm/lib/FileCheck/
DFileCheckImpl.h362 std::unique_ptr<ExpressionAST> RightOp) in BinaryOperation() argument
365 RightOperand = std::move(RightOp); in BinaryOperation()
DFileCheck.cpp357 Expected<ExpressionValue> RightOp = RightOperand->eval(); in eval() local
361 if (!LeftOp || !RightOp) { in eval()
365 if (!RightOp) in eval()
366 Err = joinErrors(std::move(Err), RightOp.takeError()); in eval()
370 return EvalBinop(*LeftOp, *RightOp); in eval()
/external/llvm-project/llvm/lib/CodeGen/SelectionDAG/
DDAGCombiner.cpp8297 SDValue RightOp = ShiftOperand.getOperand(1); in combineShiftToMULH() local
8301 if ((!(IsSignExt || IsZeroExt)) || LeftOp.getOpcode() != RightOp.getOpcode()) in combineShiftToMULH()
8305 EVT WideVT2 = RightOp.getValueType(); in combineShiftToMULH()
8313 if (NarrowVT != RightOp.getOperand(0).getValueType()) in combineShiftToMULH()
8338 RightOp.getOperand(0)); in combineShiftToMULH()