Searched refs:LeftOp (Results 1 – 3 of 3) sorted by relevance
| /llvm-project-15.0.7/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()
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | DAGCombiner.cpp | 9159 SDValue LeftOp = ShiftOperand.getOperand(0); in combineShiftToMULH() local 9162 bool IsSignExt = LeftOp.getOpcode() == ISD::SIGN_EXTEND; in combineShiftToMULH() 9163 bool IsZeroExt = LeftOp.getOpcode() == ISD::ZERO_EXTEND; in combineShiftToMULH() 9168 EVT NarrowVT = LeftOp.getOperand(0).getValueType(); in combineShiftToMULH() 9182 if (LeftOp.getOpcode() != RightOp.getOpcode()) in combineShiftToMULH() 9190 EVT WideVT = LeftOp.getValueType(); in combineShiftToMULH() 9216 DAG.getNode(MulhOpcode, DL, NarrowVT, LeftOp.getOperand(0), MulhRightOp); in combineShiftToMULH() 23031 SmallVectorImpl<int> &Mask, bool LeftOp, in visitVECTOR_SHUFFLE() 23034 SDValue Op0 = LeftOp ? Op00 : Op01; in visitVECTOR_SHUFFLE() 23035 SDValue Op1 = LeftOp ? Op10 : Op11; in visitVECTOR_SHUFFLE()
|