Home
last modified time | relevance | path

Searched refs:BinOp0 (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/SandboxVectorizer/Passes/
H A DBottomUpVec.cpp138 auto *BinOp0 = cast<BinaryOperator>(Bndl[0]); in createVectorInstr() local
142 BinOp0->getOpcode(), LHS, RHS, BinOp0, WhereIt, Ctx, "Vec"); in createVectorInstr()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp633 Value *BinOp0 = BinOp->getOperand(0); in narrowBinOp() local
643 if (match(BinOp0, m_Constant(C))) { in narrowBinOp()
652 Value *TruncX = Builder.CreateTrunc(BinOp0, DestTy); in narrowBinOp()
656 if (match(BinOp0, m_ZExtOrSExt(m_Value(X))) && X->getType() == DestTy) { in narrowBinOp()
663 Value *NarrowOp0 = Builder.CreateTrunc(BinOp0, DestTy); in narrowBinOp()
673 if (match(BinOp0, m_Trunc(m_Value(A))) && match(BinOp1, m_Constant(C))) { in narrowBinOp()