Lines Matching refs:Provider
2877 BitPart(Value *P, unsigned BW) : Provider(P) { in BitPart()
2882 Value *Provider; member
2950 if (!A || !A->Provider) in collectBitParts()
2955 if (!B || A->Provider != B->Provider) in collectBitParts()
2959 Result = BitPart(A->Provider, BitWidth); in collectBitParts()
3037 Result = BitPart(Res->Provider, BitWidth); in collectBitParts()
3053 Result = BitPart(Res->Provider, BitWidth); in collectBitParts()
3067 Result = BitPart(Res->Provider, BitWidth); in collectBitParts()
3081 Result = BitPart(Res->Provider, BitWidth); in collectBitParts()
3109 if (!LHS || !LHS->Provider) in collectBitParts()
3114 if (!RHS || LHS->Provider != RHS->Provider) in collectBitParts()
3118 Result = BitPart(LHS->Provider, BitWidth); in collectBitParts()
3225 Value *Provider = Res->Provider; in recognizeBSwapOrBitReverseIdiom() local
3228 if (DemandedTy != Provider->getType()) { in recognizeBSwapOrBitReverseIdiom()
3230 CastInst::CreateIntegerCast(Provider, DemandedTy, false, "trunc", I); in recognizeBSwapOrBitReverseIdiom()
3232 Provider = Trunc; in recognizeBSwapOrBitReverseIdiom()
3235 Instruction *Result = CallInst::Create(F, Provider, "rev", I); in recognizeBSwapOrBitReverseIdiom()