Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/FileCheck/
H A DFileCheckImpl.h316 std::unique_ptr<ExpressionAST> RightOp)
319 RightOperand = std::move(RightOp); in getImplicitFormat()
342 BinaryOperation(StringRef ExpressionStr,binop_eval_t EvalBinop,std::unique_ptr<ExpressionAST> LeftOp,std::unique_ptr<ExpressionAST> RightOp) BinaryOperation() argument
H A DFileCheck.cpp219 APInt RightOp = *MaybeRightOp; in eval() local
223 unsigned RightBitWidth = RightOp.getBitWidth(); in eval()
226 RightOp = RightOp.sext(NewBitWidth); in eval()
228 Expected<APInt> MaybeResult = EvalBinop(LeftOp, RightOp, Overflow); in eval()
237 RightOp = RightOp.sext(NewBitWidth); in eval()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp10191 SDValue RightOp = ShiftOperand.getOperand(1); in combineShiftToMULH() local
10225 if (ConstantSDNode *Constant = isConstOrConstSplat(RightOp)) { in combineShiftToMULH()
10235 if (LeftOp.getOpcode() != RightOp.getOpcode()) in combineShiftToMULH()
10238 if (NarrowVT != RightOp.getOperand(0).getValueType()) in combineShiftToMULH()
10240 MulhRightOp = RightOp.getOperand(0); in combineShiftToMULH()
10245 assert((WideVT == RightOp.getValueType()) && in combineShiftToMULH()