Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DAttributes.h602 removeAttributeAtIndex(LLVMContext &C, unsigned Index,
608 removeAttributeAtIndex(LLVMContext &C, unsigned Index, StringRef Kind) const;
611 return removeAttributeAtIndex(C, Index, Kind);
629 return removeAttributeAtIndex(C, FunctionIndex, Kind);
636 return removeAttributeAtIndex(C, FunctionIndex, Kind);
656 return removeAttributeAtIndex(C, ReturnIndex, Kind);
663 return removeAttributeAtIndex(C, ReturnIndex, Kind);
679 return removeAttributeAtIndex(C, ArgNo + FirstArgIndex, Kind);
686 return removeAttributeAtIndex(C, ArgNo + FirstArgIndex, Kind);
711 auto Attrs = removeAttributeAtIndex(C, ArgNo, Kind);
H A DFunction.h378 void removeAttributeAtIndex(unsigned i, Attribute::AttrKind Kind);
381 void removeAttributeAtIndex(unsigned i, StringRef Kind);
H A DInstrTypes.h1622 void removeAttributeAtIndex(unsigned i, Attribute::AttrKind Kind) {
1623 Attrs = Attrs.removeAttributeAtIndex(getContext(), i, Kind);
1627 void removeAttributeAtIndex(unsigned i, StringRef Kind) {
1628 Attrs = Attrs.removeAttributeAtIndex(getContext(), i, Kind);
/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DFunction.cpp616 void Function::removeAttributeAtIndex(unsigned i, Attribute::AttrKind Kind) { in removeAttributeAtIndex() function in Function
617 AttributeSets = AttributeSets.removeAttributeAtIndex(getContext(), i, Kind); in removeAttributeAtIndex()
620 void Function::removeAttributeAtIndex(unsigned i, StringRef Kind) { in removeAttributeAtIndex() function in Function
621 AttributeSets = AttributeSets.removeAttributeAtIndex(getContext(), i, Kind); in removeAttributeAtIndex()
H A DAttributes.cpp1409 AttributeList::removeAttributeAtIndex(LLVMContext &C, unsigned Index, in removeAttributeAtIndex() function in AttributeList
1418 AttributeList AttributeList::removeAttributeAtIndex(LLVMContext &C, in removeAttributeAtIndex() function in AttributeList
H A DCore.cpp2433 unwrap<Function>(F)->removeAttributeAtIndex(Idx, (Attribute::AttrKind)KindID); in LLVMRemoveEnumAttributeAtIndex()
2438 unwrap<Function>(F)->removeAttributeAtIndex(Idx, StringRef(K, KLen)); in LLVMRemoveStringAttributeAtIndex()
2875 unwrap<CallBase>(C)->removeAttributeAtIndex(Idx, (Attribute::AttrKind)KindID); in LLVMRemoveCallSiteEnumAttribute()
2880 unwrap<CallBase>(C)->removeAttributeAtIndex(Idx, StringRef(K, KLen)); in LLVMRemoveCallSiteStringAttribute()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp1664 return Attrs.removeAttributeAtIndex(C, AttrIndex, A); in StripAttr()