Searched refs:LeftOp (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/FileCheck/ |
H A D | FileCheckImpl.h | 315 std::unique_ptr<ExpressionAST> LeftOp, 318 LeftOperand = std::move(LeftOp); in getImplicitFormat() 775 /// left operand of this binary operation is given in \p LeftOp and \p Expr 784 std::unique_ptr<ExpressionAST> LeftOp, bool IsLegacyLineExpr, 341 BinaryOperation(StringRef ExpressionStr,binop_eval_t EvalBinop,std::unique_ptr<ExpressionAST> LeftOp,std::unique_ptr<ExpressionAST> RightOp) BinaryOperation() argument
|
H A D | FileCheck.cpp | 218 APInt LeftOp = *MaybeLeftOp; in eval() local 222 unsigned LeftBitWidth = LeftOp.getBitWidth(); in eval() 225 LeftOp = LeftOp.sext(NewBitWidth); in eval() 228 Expected<APInt> MaybeResult = EvalBinop(LeftOp, RightOp, Overflow); in eval() 236 LeftOp = LeftOp.sext(NewBitWidth); in eval() 498 std::unique_ptr<ExpressionAST> LeftOp, in parseBinop() argument 503 return std::move(LeftOp); in parseBinop() 537 return std::make_unique<BinaryOperation>(Expr, EvalBinop, std::move(LeftOp), in parseBinop()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | DAGCombiner.cpp | 10190 SDValue LeftOp = ShiftOperand.getOperand(0); in combineShiftToMULH() local 10193 bool IsSignExt = LeftOp.getOpcode() == ISD::SIGN_EXTEND; in combineShiftToMULH() 10194 bool IsZeroExt = LeftOp.getOpcode() == ISD::ZERO_EXTEND; in combineShiftToMULH() 10199 EVT NarrowVT = LeftOp.getOperand(0).getValueType(); in combineShiftToMULH() 10235 if (LeftOp.getOpcode() != RightOp.getOpcode()) in combineShiftToMULH() 10243 EVT WideVT = LeftOp.getValueType(); in combineShiftToMULH() 10278 DAG.getNode(MulhOpcode, DL, NarrowVT, LeftOp.getOperand(0), MulhRightOp); in combineShiftToMULH() 26334 SmallVectorImpl<int> &Mask, bool LeftOp, in visitVECTOR_SHUFFLE() 26337 SDValue Op0 = LeftOp ? Op00 : Op01; in visitVECTOR_SHUFFLE() 26338 SDValue Op1 = LeftOp ? Op10 : Op11; in visitVECTOR_SHUFFLE()
|