HomeSort by: relevance | last modified time | path
    Searched refs:LeftOp (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/FileCheck/
FileCheckImpl.h 364 std::unique_ptr<ExpressionAST> LeftOp,
367 LeftOperand = std::move(LeftOp);
824 /// left operand of this binary operation is given in \p LeftOp and \p Expr
833 std::unique_ptr<ExpressionAST> LeftOp, bool IsLegacyLineExpr,
FileCheck.cpp 374 Expected<ExpressionValue> LeftOp = LeftOperand->eval();
379 if (!LeftOp || !RightOp) {
381 if (!LeftOp)
382 Err = joinErrors(std::move(Err), LeftOp.takeError());
388 return EvalBinop(*LeftOp, *RightOp);
648 std::unique_ptr<ExpressionAST> LeftOp,
653 return std::move(LeftOp);
687 return std::make_unique<BinaryOperation>(Expr, EvalBinop, std::move(LeftOp),
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 8464 SDValue LeftOp = ShiftOperand.getOperand(0);
8466 bool IsSignExt = LeftOp.getOpcode() == ISD::SIGN_EXTEND;
8467 bool IsZeroExt = LeftOp.getOpcode() == ISD::ZERO_EXTEND;
8469 if ((!(IsSignExt || IsZeroExt)) || LeftOp.getOpcode() != RightOp.getOpcode())
8472 EVT WideVT1 = LeftOp.getValueType();
8479 EVT NarrowVT = LeftOp.getOperand(0).getValueType();
8505 SDValue Result = DAG.getNode(MulhOpcode, DL, NarrowVT, LeftOp.getOperand(0),
21323 SmallVectorImpl<int> &Mask, bool LeftOp,
21326 SDValue Op0 = LeftOp ? Op00 : Op01;
21327 SDValue Op1 = LeftOp ? Op10 : Op11
    [all...]

Completed in 31 milliseconds