Lines Matching defs:TTI
69 const TargetTransformInfo &TTI);
213 Value *Size, const TargetTransformInfo &TTI) {
219 : TTI.getMaxMemIntrinsicInlineSizeThreshold();
249 const TargetTransformInfo &TTI = LookupTTI(*ParentFunc);
250 if (shouldExpandMemIntrinsicWithSize(Memcpy->getLength(), TTI)) {
256 expandMemCpyAsLoop(Memcpy, TTI);
272 const TargetTransformInfo &TTI = LookupTTI(*ParentFunc);
273 expandMemCpyAsLoop(Memcpy, TTI);
281 const TargetTransformInfo &TTI = LookupTTI(*ParentFunc);
282 if (shouldExpandMemIntrinsicWithSize(Memmove->getLength(), TTI)) {
287 if (expandMemMoveAsLoop(Memmove, TTI)) {
298 const TargetTransformInfo &TTI = LookupTTI(*ParentFunc);
299 if (shouldExpandMemIntrinsicWithSize(Memset->getLength(), TTI)) {
371 const TargetTransformInfo &TTI = LookupTTI(*Parent);
373 VPExpansionDetails ED = expandVectorPredicationIntrinsic(*VPI, TTI);