Home | History | Annotate | Download | only in Target

Lines Matching refs:OptSize

601   /// performance threshold for such a replacement. If OptSize is true,
602 /// return the limit for functions that have OptSize attribute.
604 unsigned getMaxStoresPerMemset(bool OptSize) const {
605 return OptSize ? maxStoresPerMemsetOptSize : maxStoresPerMemset;
610 /// performance threshold for such a replacement. If OptSize is true,
611 /// return the limit for functions that have OptSize attribute.
613 unsigned getMaxStoresPerMemcpy(bool OptSize) const {
614 return OptSize ? maxStoresPerMemcpyOptSize : maxStoresPerMemcpy;
619 /// performance threshold for such a replacement. If OptSize is true,
620 /// return the limit for functions that have OptSize attribute.
622 unsigned getMaxStoresPerMemmove(bool OptSize) const {
623 return OptSize ? maxStoresPerMemmoveOptSize : maxStoresPerMemmove;
1971 /// to memset, used for functions with OptSize attribute.
1987 /// to memcpy, used for functions with OptSize attribute.