Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/FileCheck/
H A DFileCheckImpl.h315 std::unique_ptr<ExpressionAST> LeftOp, in BinaryOperation() argument
318 LeftOperand = std::move(LeftOp); in BinaryOperation()
784 std::unique_ptr<ExpressionAST> LeftOp, bool IsLegacyLineExpr,
H A DFileCheck.cpp218 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()
492 std::unique_ptr<ExpressionAST> LeftOp, in parseBinop() argument
497 return std::move(LeftOp); in parseBinop()
531 return std::make_unique<BinaryOperation>(Expr, EvalBinop, std::move(LeftOp), in parseBinop()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp10166 SDValue LeftOp = ShiftOperand.getOperand(0); in combineShiftToMULH() local
10169 bool IsSignExt = LeftOp.getOpcode() == ISD::SIGN_EXTEND; in combineShiftToMULH()
10170 bool IsZeroExt = LeftOp.getOpcode() == ISD::ZERO_EXTEND; in combineShiftToMULH()
10175 EVT NarrowVT = LeftOp.getOperand(0).getValueType(); in combineShiftToMULH()
10211 if (LeftOp.getOpcode() != RightOp.getOpcode()) in combineShiftToMULH()
10219 EVT WideVT = LeftOp.getValueType(); in combineShiftToMULH()
10254 DAG.getNode(MulhOpcode, DL, NarrowVT, LeftOp.getOperand(0), MulhRightOp); in combineShiftToMULH()
25959 SmallVectorImpl<int> &Mask, bool LeftOp, in visitVECTOR_SHUFFLE()
25962 SDValue Op0 = LeftOp ? Op00 : Op01; in visitVECTOR_SHUFFLE()
25963 SDValue Op1 = LeftOp ? Op10 : Op11; in visitVECTOR_SHUFFLE()