Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/FileCheck/
H A DFileCheckImpl.h321 std::unique_ptr<ExpressionAST> LeftOp, in BinaryOperation() argument
324 LeftOperand = std::move(LeftOp); in BinaryOperation()
810 std::unique_ptr<ExpressionAST> LeftOp, bool IsLegacyLineExpr,
H A DFileCheck.cpp217 APInt LeftOp = *MaybeLeftOp; in eval() local
221 unsigned LeftBitWidth = LeftOp.getBitWidth(); in eval()
224 LeftOp = LeftOp.sext(NewBitWidth); in eval()
227 Expected<APInt> MaybeResult = EvalBinop(LeftOp, RightOp, Overflow); in eval()
235 LeftOp = LeftOp.sext(NewBitWidth); in eval()
535 std::unique_ptr<ExpressionAST> LeftOp, in parseBinop() argument
540 return std::move(LeftOp); in parseBinop()
574 return std::make_unique<BinaryOperation>(Expr, EvalBinop, std::move(LeftOp), in parseBinop()
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp8935 SDValue LeftOp = MulOp.getOperand(0); in combineShiftToMulAddHigh() local
8938 bool IsSignExt = LeftOp.getOpcode() == ISD::SIGN_EXTEND; in combineShiftToMulAddHigh()
8939 bool IsZeroExt = LeftOp.getOpcode() == ISD::ZERO_EXTEND; in combineShiftToMulAddHigh()
8944 EVT NarrowVT = LeftOp.getOperand(0).getValueType(); in combineShiftToMulAddHigh()
8958 if (LeftOp.getOpcode() != RightOp.getOpcode()) in combineShiftToMulAddHigh()
8977 if (LeftOp.getOpcode() != AddOp.getOpcode()) in combineShiftToMulAddHigh()
8985 EVT WideVT = LeftOp.getValueType(); in combineShiftToMulAddHigh()
9013 DL, NarrowVT, LeftOp.getOperand(0), in combineShiftToMulAddHigh()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp10645 SDValue LeftOp = ShiftOperand.getOperand(0); in combineShiftToMULH() local
10648 bool IsSignExt = LeftOp.getOpcode() == ISD::SIGN_EXTEND; in combineShiftToMULH()
10649 bool IsZeroExt = LeftOp.getOpcode() == ISD::ZERO_EXTEND; in combineShiftToMULH()
10654 EVT NarrowVT = LeftOp.getOperand(0).getValueType(); in combineShiftToMULH()
10690 if (LeftOp.getOpcode() != RightOp.getOpcode()) in combineShiftToMULH()
10698 EVT WideVT = LeftOp.getValueType(); in combineShiftToMULH()
10733 DAG.getNode(MulhOpcode, DL, NarrowVT, LeftOp.getOperand(0), MulhRightOp); in combineShiftToMULH()
27426 SmallVectorImpl<int> &Mask, bool LeftOp, in visitVECTOR_SHUFFLE()
27429 SDValue Op0 = LeftOp ? Op00 : Op01; in visitVECTOR_SHUFFLE()
27430 SDValue Op1 = LeftOp ? Op10 : Op11; in visitVECTOR_SHUFFLE()