Home | History | Annotate | Download | only in Scalar

Lines Matching refs:SplatValue

155                                  Value *SplatValue, Instruction *TheStore,
953 Value *SplatValue = isBytewiseValue(StoredVal);
958 if (SplatValue && TLI->has(LibFunc::memset) &&
961 CurLoop->isLoopInvariant(SplatValue)) {
962 // Keep and use SplatValue.
967 SplatValue = 0;
1018 if (SplatValue)
1019 NewCall = Builder.CreateMemSet(BasePtr, SplatValue,NumBytes,StoreAlignment);