Lines Matching defs:TTI
62 const TargetTransformInfo &TTI);
185 Value *Size, const TargetTransformInfo &TTI) {
191 : TTI.getMaxMemIntrinsicInlineSizeThreshold();
219 const TargetTransformInfo &TTI = LookupTTI(*ParentFunc);
220 if (shouldExpandMemIntrinsicWithSize(Memcpy->getLength(), TTI)) {
226 expandMemCpyAsLoop(Memcpy, TTI);
242 const TargetTransformInfo &TTI = LookupTTI(*ParentFunc);
243 expandMemCpyAsLoop(Memcpy, TTI);
251 const TargetTransformInfo &TTI = LookupTTI(*ParentFunc);
252 if (shouldExpandMemIntrinsicWithSize(Memmove->getLength(), TTI)) {
257 if (expandMemMoveAsLoop(Memmove, TTI)) {
268 const TargetTransformInfo &TTI = LookupTTI(*ParentFunc);
269 if (shouldExpandMemIntrinsicWithSize(Memset->getLength(), TTI)) {