Searched refs:LeftOp (Results 1 – 3 of 3) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/llvm/lib/FileCheck/ |
| H A D | FileCheckImpl.h | 364 std::unique_ptr<ExpressionAST> LeftOp, in BinaryOperation() argument 367 LeftOperand = std::move(LeftOp); in BinaryOperation() 833 std::unique_ptr<ExpressionAST> LeftOp, bool IsLegacyLineExpr,
|
| H A D | FileCheck.cpp | 374 Expected<ExpressionValue> LeftOp = LeftOperand->eval(); in eval() local 379 if (!LeftOp || !RightOp) { in eval() 381 if (!LeftOp) in eval() 382 Err = joinErrors(std::move(Err), LeftOp.takeError()); in eval() 388 return EvalBinop(*LeftOp, *RightOp); in eval() 648 std::unique_ptr<ExpressionAST> LeftOp, in parseBinop() argument 653 return std::move(LeftOp); in parseBinop() 687 return std::make_unique<BinaryOperation>(Expr, EvalBinop, std::move(LeftOp), in parseBinop()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | DAGCombiner.cpp | 8502 SDValue LeftOp = ShiftOperand.getOperand(0); in combineShiftToMULH() local 8504 bool IsSignExt = LeftOp.getOpcode() == ISD::SIGN_EXTEND; in combineShiftToMULH() 8505 bool IsZeroExt = LeftOp.getOpcode() == ISD::ZERO_EXTEND; in combineShiftToMULH() 8507 if ((!(IsSignExt || IsZeroExt)) || LeftOp.getOpcode() != RightOp.getOpcode()) in combineShiftToMULH() 8510 EVT WideVT1 = LeftOp.getValueType(); in combineShiftToMULH() 8517 EVT NarrowVT = LeftOp.getOperand(0).getValueType(); in combineShiftToMULH() 8543 SDValue Result = DAG.getNode(MulhOpcode, DL, NarrowVT, LeftOp.getOperand(0), in combineShiftToMULH() 21558 SmallVectorImpl<int> &Mask, bool LeftOp, in visitVECTOR_SHUFFLE() 21561 SDValue Op0 = LeftOp ? Op00 : Op01; in visitVECTOR_SHUFFLE() 21562 SDValue Op1 = LeftOp ? Op10 : Op11; in visitVECTOR_SHUFFLE()
|