Lines Matching defs:AlwaysInline
7805 bool isVol, bool AlwaysInline,
7816 // TODO: In the AlwaysInline case, if the size is big then generate a loop
7837 unsigned Limit = AlwaysInline ? ~0U : TLI.getMaxStoresPerMemcpy(OptSize);
8008 bool isVol, bool AlwaysInline,
8034 unsigned Limit = AlwaysInline ? ~0U : TLI.getMaxStoresPerMemmove(OptSize);
8122 /// \param AlwaysInline Makes sure no function call is generated.
8133 bool AlwaysInline, MachinePointerInfo DstPtrInfo,
8152 unsigned Limit = AlwaysInline ? ~0 : TLI.getMaxStoresPerMemset(OptSize);
8258 Align Alignment, bool isVol, bool AlwaysInline, const CallInst *CI,
8280 *this, dl, Chain, Dst, Src, Size, Alignment, isVol, AlwaysInline,
8288 if (AlwaysInline) {
8289 assert(ConstantSize && "AlwaysInline requires a constant size!");
8499 bool isVol, bool AlwaysInline,
8523 *this, dl, Chain, Dst, Src, Size, Alignment, isVol, AlwaysInline, DstPtrInfo);
8530 if (AlwaysInline) {
8531 assert(ConstantSize && "AlwaysInline requires a constant size!");
8536 "getMemsetStores must return a valid sequence when AlwaysInline");