Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:Attribute

281         if (cast<CallInst>(I)->paramHasAttr(attrInd, Attribute::Returned) &&
292 if (cast<InvokeInst>(I)->paramHasAttr(attrInd, Attribute::Returned) &&
342 // call. In the simple case with no "returned" attribute, the hope is actually
354 // a "returned" attribute, the search will be blocked immediately and the loop
549 CallerAttrs = CallerAttrs.removeAttribute(Attribute::NoAlias);
550 CalleeAttrs = CalleeAttrs.removeAttribute(Attribute::NoAlias);
553 if (CallerAttrs.contains(Attribute::ZExt)) {
554 if (!CalleeAttrs.contains(Attribute::ZExt))
558 CallerAttrs.removeAttribute(Attribute::ZExt);
559 CalleeAttrs.removeAttribute(Attribute::ZExt);
560 } else if (CallerAttrs.contains(Attribute::SExt)) {
561 if (!CalleeAttrs.contains(Attribute::SExt))
565 CallerAttrs.removeAttribute(Attribute::SExt);
566 CalleeAttrs.removeAttribute(Attribute::SExt);