Lines Matching defs:AlwaysInline
8131 uint64_t Size, Align Alignment, bool isVol, bool AlwaysInline,
8141 // TODO: In the AlwaysInline case, if the size is big then generate a loop
8162 unsigned Limit = AlwaysInline ? ~0U : TLI.getMaxStoresPerMemcpy(OptSize);
8333 bool isVol, bool AlwaysInline,
8359 unsigned Limit = AlwaysInline ? ~0U : TLI.getMaxStoresPerMemmove(OptSize);
8447 /// \param AlwaysInline Makes sure no function call is generated.
8458 bool AlwaysInline, MachinePointerInfo DstPtrInfo,
8477 unsigned Limit = AlwaysInline ? ~0 : TLI.getMaxStoresPerMemset(OptSize);
8583 Align Alignment, bool isVol, bool AlwaysInline, const CallInst *CI,
8606 *this, dl, Chain, Dst, Src, Size, Alignment, isVol, AlwaysInline,
8614 if (AlwaysInline) {
8615 assert(ConstantSize && "AlwaysInline requires a constant size!");
8826 bool isVol, bool AlwaysInline,
8850 *this, dl, Chain, Dst, Src, Size, Alignment, isVol, AlwaysInline, DstPtrInfo);
8857 if (AlwaysInline) {
8858 assert(ConstantSize && "AlwaysInline requires a constant size!");
8863 "getMemsetStores must return a valid sequence when AlwaysInline");