Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DAttributes.h671 [[nodiscard]] LLVM_ABI AttributeList removeAttributeAtIndex(
677 removeAttributeAtIndex(LLVMContext &C, unsigned Index, StringRef Kind) const;
680 return removeAttributeAtIndex(C, Index, Kind);
697 return removeAttributeAtIndex(C, FunctionIndex, Kind);
704 return removeAttributeAtIndex(C, FunctionIndex, Kind);
724 return removeAttributeAtIndex(C, ReturnIndex, Kind);
731 return removeAttributeAtIndex(C, ReturnIndex, Kind);
747 return removeAttributeAtIndex(C, ArgNo + FirstArgIndex, Kind);
754 return removeAttributeAtIndex(C, ArgNo + FirstArgIndex, Kind);
779 auto Attrs = removeAttributeAtIndex(C, ArgNo, Kind);
H A DFunction.h392 void removeAttributeAtIndex(unsigned i, Attribute::AttrKind Kind);
395 void removeAttributeAtIndex(unsigned i, StringRef Kind);
H A DInstrTypes.h1524 void removeAttributeAtIndex(unsigned i, Attribute::AttrKind Kind) {
1525 Attrs = Attrs.removeAttributeAtIndex(getContext(), i, Kind);
1529 void removeAttributeAtIndex(unsigned i, StringRef Kind) {
1530 Attrs = Attrs.removeAttributeAtIndex(getContext(), i, Kind);
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DFunction.cpp677 void Function::removeAttributeAtIndex(unsigned i, Attribute::AttrKind Kind) { in removeAttributeAtIndex() function in Function
678 AttributeSets = AttributeSets.removeAttributeAtIndex(getContext(), i, Kind); in removeAttributeAtIndex()
681 void Function::removeAttributeAtIndex(unsigned i, StringRef Kind) { in removeAttributeAtIndex() function in Function
682 AttributeSets = AttributeSets.removeAttributeAtIndex(getContext(), i, Kind); in removeAttributeAtIndex()
H A DAttributes.cpp1758 AttributeList::removeAttributeAtIndex(LLVMContext &C, unsigned Index, in removeAttributeAtIndex() function in AttributeList
1767 AttributeList AttributeList::removeAttributeAtIndex(LLVMContext &C, in removeAttributeAtIndex() function in AttributeList
H A DCore.cpp2603 unwrap<Function>(F)->removeAttributeAtIndex(Idx, (Attribute::AttrKind)KindID); in LLVMRemoveEnumAttributeAtIndex()
2608 unwrap<Function>(F)->removeAttributeAtIndex(Idx, StringRef(K, KLen)); in LLVMRemoveStringAttributeAtIndex()
3079 unwrap<CallBase>(C)->removeAttributeAtIndex(Idx, (Attribute::AttrKind)KindID); in LLVMRemoveCallSiteEnumAttribute()
3084 unwrap<CallBase>(C)->removeAttributeAtIndex(Idx, StringRef(K, KLen)); in LLVMRemoveCallSiteStringAttribute()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp1693 return Attrs.removeAttributeAtIndex(C, AttrIndex, A); in StripAttr()