Searched refs:m_BitCast (Results 1 – 9 of 9) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86LowerAMXIntrinsics.cpp | 502 if (match(I, m_BitCast(m_Value(Vec)))) { in lowerTileDP() 546 if (match(I, m_BitCast(m_Value(Vec)))) { in lowerTileLoadStore() 564 if (match(I, m_BitCast(m_Value(Vec)))) { in lowerTileZero()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineCasts.cpp | 410 if (!match(TruncOp, m_CombineOr(m_BitCast(m_Value(VecInput)), in foldVecTruncToExtElt() 411 m_LShr(m_BitCast(m_Value(VecInput)), in foldVecTruncToExtElt() 2388 if (match(BO->getOperand(0), m_OneUse(m_BitCast(m_Value(X)))) && in foldBitCastBitwiseLogic() 2389 match(BO->getOperand(1), m_OneUse(m_BitCast(m_Value(Y))))) { in foldBitCastBitwiseLogic() 2412 if (match(BO->getOperand(0), m_OneUse(m_BitCast(m_Value(X)))) && in foldBitCastBitwiseLogic() 2419 if (match(BO->getOperand(1), m_OneUse(m_BitCast(m_Value(X)))) && in foldBitCastBitwiseLogic() 2467 if (match(TVal, m_OneUse(m_BitCast(m_Value(X)))) && X->getType() == DestTy && in foldBitCastSelect() 2474 if (match(FVal, m_OneUse(m_BitCast(m_Value(X)))) && X->getType() == DestTy && in foldBitCastSelect() 2732 if (match(Src, m_OneUse(m_InsertElt(m_OneUse(m_BitCast(m_Value(X))), in visitBitCast()
|
H A D | InstCombineVectorOps.cpp | 186 if (!match(Ext.getVectorOperand(), m_BitCast(m_Value(X))) || in foldBitcastExtElt() 1637 match(ScalarOp, m_OneUse(m_BitCast(m_Value(ScalarSrc)))) && in visitInsertElementInst() 1653 if (match(VecOp, m_BitCast(m_Value(VecSrc))) && in visitInsertElementInst() 1654 match(ScalarOp, m_BitCast(m_Value(ScalarSrc))) && in visitInsertElementInst() 2391 if (!match(Shuf.getOperand(0), m_BitCast(m_Value(X))) || in foldTruncShuffle() 2565 if (match(Op0, m_BitCast(m_InsertElt(m_Value(), m_Value(X), m_Zero()))) && in foldIdentityExtractShuffle() 2821 if (match(LHS, m_BitCast(m_Value(X))) && match(RHS, m_BitCast(m_Value(Y))) && in visitShuffleVectorInst() 2839 if (match(LHS, m_BitCast(m_Value(X))) && match(RHS, m_Undef()) && in visitShuffleVectorInst()
|
H A D | InstCombineSelect.cpp | 2335 if (!match(A, m_BitCast(m_Value(C))) || !match(B, m_BitCast(m_Value(D)))) in foldSelectCmpBitcasts() 2340 if (!match(TVal, m_BitCast(m_Value(TSrc))) || in foldSelectCmpBitcasts() 2341 !match(FVal, m_BitCast(m_Value(FSrc)))) in foldSelectCmpBitcasts()
|
H A D | InstructionCombining.cpp | 4602 else if (match(U, m_BitCast(m_Specific(V))) && isUsedWithinShuffleVector(U)) in isUsedWithinShuffleVector()
|
H A D | InstCombineAndOrXor.cpp | 4557 …if (match(NotOp, m_OneUse(m_BitCast(m_OneUse(m_SExt(m_Value(X)))))) && X->getType()->isIntOrIntVec… in foldNot()
|
H A D | InstCombineCompares.cpp | 7162 m_OneUse(m_BitCast(m_OneUse( in foldReductionIdiom()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
H A D | VectorCombine.cpp | 700 if (!match(&I, m_BitCast(m_OneUse( in foldBitcastShuffle()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | PatternMatch.h | 1959 m_BitCast(const OpTy &Op) { in m_BitCast() function
|