Searched refs:RightOp (Results 1 – 5 of 5) sorted by relevance
38 Expected<uint64_t> RightOp = RightOperand->eval(); in eval() local42 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() argument209 return LeftOp + RightOp; in add()212 static uint64_t sub(uint64_t LeftOp, uint64_t RightOp) { in sub() argument213 return LeftOp - RightOp; in sub()
155 std::unique_ptr<ExpressionAST> RightOp) in BinaryOperation() argument158 RightOperand = std::move(RightOp); in BinaryOperation()
362 std::unique_ptr<ExpressionAST> RightOp) in BinaryOperation() argument365 RightOperand = std::move(RightOp); in BinaryOperation()
357 Expected<ExpressionValue> RightOp = RightOperand->eval(); in eval() local361 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()
8297 SDValue RightOp = ShiftOperand.getOperand(1); in combineShiftToMULH() local8301 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()