Home
last modified time | relevance | path

Searched refs:m_BitCast (Results 1 – 7 of 7) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DAssumptionCache.cpp70 if (match(I, m_BitCast(m_Value(Op))) || in findAffectedValues()
DInstructionSimplify.cpp2673 if (match(LHS, m_BitCast(m_UIToFP(m_Value(X))))) { in simplifyICmpWithConstant()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
DInstCombineCasts.cpp465 if (!match(TruncOp, m_CombineOr(m_BitCast(m_Value(VecInput)), in foldVecTruncToExtElt()
466 m_LShr(m_BitCast(m_Value(VecInput)), in foldVecTruncToExtElt()
2132 if (match(BO->getOperand(0), m_OneUse(m_BitCast(m_Value(X)))) && in foldBitCastBitwiseLogic()
2139 if (match(BO->getOperand(1), m_OneUse(m_BitCast(m_Value(X)))) && in foldBitCastBitwiseLogic()
2188 if (match(TVal, m_OneUse(m_BitCast(m_Value(X)))) && X->getType() == DestTy && in foldBitCastSelect()
2195 if (match(FVal, m_OneUse(m_BitCast(m_Value(X)))) && X->getType() == DestTy && in foldBitCastSelect()
DInstCombineLoadStoreAlloca.cpp460 if (!(match(Ptr, m_BitCast(m_Value(NewPtr))) && in combineLoadToNewType()
1326 if (!match(SI.getPointerOperand(), m_BitCast(m_Value()))) in removeBitcastsFromLoadStoreOnMinMax()
1330 if (!match(SI.getValueOperand(), m_Load(m_BitCast(m_Value(LoadAddr))))) in removeBitcastsFromLoadStoreOnMinMax()
DInstCombineVectorOps.cpp167 if (!match(Ext.getVectorOperand(), m_BitCast(m_Value(X))) || in foldBitcastExtElt()
1038 if (match(VecOp, m_BitCast(m_Value(VecSrc))) && in visitInsertElementInst()
1039 match(ScalarOp, m_BitCast(m_Value(ScalarSrc))) && in visitInsertElementInst()
DInstCombineSelect.cpp2014 if (!match(A, m_BitCast(m_Value(C))) || !match(B, m_BitCast(m_Value(D)))) in foldSelectCmpBitcasts()
2019 if (!match(TVal, m_BitCast(m_Value(TSrc))) || in foldSelectCmpBitcasts()
2020 !match(FVal, m_BitCast(m_Value(FSrc)))) in foldSelectCmpBitcasts()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DPatternMatch.h1319 inline CastClass_match<OpTy, Instruction::BitCast> m_BitCast(const OpTy &Op) { in m_BitCast() function