Lines Matching refs:Provider
3621 BitPart(Value *P, unsigned BW) : Provider(P) { in BitPart()
3626 Value *Provider; member
3694 if (!A || !A->Provider) in collectBitParts()
3699 if (!B || A->Provider != B->Provider) in collectBitParts()
3703 Result = BitPart(A->Provider, BitWidth); in collectBitParts()
3781 Result = BitPart(Res->Provider, BitWidth); in collectBitParts()
3797 Result = BitPart(Res->Provider, BitWidth); in collectBitParts()
3811 Result = BitPart(Res->Provider, BitWidth); in collectBitParts()
3825 Result = BitPart(Res->Provider, BitWidth); in collectBitParts()
3853 if (!LHS || !LHS->Provider) in collectBitParts()
3858 if (!RHS || LHS->Provider != RHS->Provider) in collectBitParts()
3862 Result = BitPart(LHS->Provider, BitWidth); in collectBitParts()
3970 Value *Provider = Res->Provider; in recognizeBSwapOrBitReverseIdiom() local
3973 if (DemandedTy != Provider->getType()) { in recognizeBSwapOrBitReverseIdiom()
3975 CastInst::CreateIntegerCast(Provider, DemandedTy, false, "trunc", I); in recognizeBSwapOrBitReverseIdiom()
3977 Provider = Trunc; in recognizeBSwapOrBitReverseIdiom()
3980 Instruction *Result = CallInst::Create(F, Provider, "rev", I); in recognizeBSwapOrBitReverseIdiom()