Home
last modified time | relevance | path

Searched refs:removeAttributeAtIndex (Results 1 – 7 of 7) sorted by relevance

/src/contrib/llvm-project/llvm/include/llvm/IR/
H A DAttributes.h635 removeAttributeAtIndex(LLVMContext &C, unsigned Index,
641 removeAttributeAtIndex(LLVMContext &C, unsigned Index, StringRef Kind) const;
644 return removeAttributeAtIndex(C, Index, Kind);
662 return removeAttributeAtIndex(C, FunctionIndex, Kind);
669 return removeAttributeAtIndex(C, FunctionIndex, Kind);
689 return removeAttributeAtIndex(C, ReturnIndex, Kind);
696 return removeAttributeAtIndex(C, ReturnIndex, Kind);
712 return removeAttributeAtIndex(C, ArgNo + FirstArgIndex, Kind);
719 return removeAttributeAtIndex(C, ArgNo + FirstArgIndex, Kind);
744 auto Attrs = removeAttributeAtIndex(C, ArgNo, Kind);
H A DFunction.h390 void removeAttributeAtIndex(unsigned i, Attribute::AttrKind Kind);
393 void removeAttributeAtIndex(unsigned i, StringRef Kind);
H A DInstrTypes.h1606 void removeAttributeAtIndex(unsigned i, Attribute::AttrKind Kind) {
1607 Attrs = Attrs.removeAttributeAtIndex(getContext(), i, Kind);
1611 void removeAttributeAtIndex(unsigned i, StringRef Kind) {
1612 Attrs = Attrs.removeAttributeAtIndex(getContext(), i, Kind);
/src/contrib/llvm-project/llvm/lib/IR/
H A DFunction.cpp669 void Function::removeAttributeAtIndex(unsigned i, Attribute::AttrKind Kind) { in removeAttributeAtIndex() function in Function
670 AttributeSets = AttributeSets.removeAttributeAtIndex(getContext(), i, Kind); in removeAttributeAtIndex()
673 void Function::removeAttributeAtIndex(unsigned i, StringRef Kind) { in removeAttributeAtIndex() function in Function
674 AttributeSets = AttributeSets.removeAttributeAtIndex(getContext(), i, Kind); in removeAttributeAtIndex()
H A DAttributes.cpp1539 AttributeList::removeAttributeAtIndex(LLVMContext &C, unsigned Index, in removeAttributeAtIndex() function in AttributeList
1548 AttributeList AttributeList::removeAttributeAtIndex(LLVMContext &C, in removeAttributeAtIndex() function in AttributeList
H A DCore.cpp2592 unwrap<Function>(F)->removeAttributeAtIndex(Idx, (Attribute::AttrKind)KindID); in LLVMRemoveEnumAttributeAtIndex()
2597 unwrap<Function>(F)->removeAttributeAtIndex(Idx, StringRef(K, KLen)); in LLVMRemoveStringAttributeAtIndex()
3028 unwrap<CallBase>(C)->removeAttributeAtIndex(Idx, (Attribute::AttrKind)KindID); in LLVMRemoveCallSiteEnumAttribute()
3033 unwrap<CallBase>(C)->removeAttributeAtIndex(Idx, StringRef(K, KLen)); in LLVMRemoveCallSiteStringAttribute()
/src/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp1676 return Attrs.removeAttributeAtIndex(C, AttrIndex, A); in StripAttr()