Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/FileCheck/
H A DFileCheckImpl.h365 std::unique_ptr<ExpressionAST> RightOp) in BinaryOperation() argument
368 RightOperand = std::move(RightOp); in BinaryOperation()
H A DFileCheck.cpp375 Expected<ExpressionValue> RightOp = RightOperand->eval(); in eval() local
379 if (!LeftOp || !RightOp) { in eval()
383 if (!RightOp) in eval()
384 Err = joinErrors(std::move(Err), RightOp.takeError()); in eval()
388 return EvalBinop(*LeftOp, *RightOp); in eval()
/llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp9160 SDValue RightOp = ShiftOperand.getOperand(1); in combineShiftToMULH() local
9172 if (ConstantSDNode *Constant = isConstOrConstSplat(RightOp)) { in combineShiftToMULH()
9182 if (LeftOp.getOpcode() != RightOp.getOpcode()) in combineShiftToMULH()
9185 if (NarrowVT != RightOp.getOperand(0).getValueType()) in combineShiftToMULH()
9187 MulhRightOp = RightOp.getOperand(0); in combineShiftToMULH()
9192 assert((WideVT == RightOp.getValueType()) && in combineShiftToMULH()