Searched refs:removeAttributeAtIndex (Results 1 – 7 of 7) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | Attributes.h | 671 [[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 D | Function.h | 392 void removeAttributeAtIndex(unsigned i, Attribute::AttrKind Kind); 395 void removeAttributeAtIndex(unsigned i, StringRef Kind);
|
| H A D | InstrTypes.h | 1524 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 D | Function.cpp | 677 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 D | Attributes.cpp | 1758 AttributeList::removeAttributeAtIndex(LLVMContext &C, unsigned Index, in removeAttributeAtIndex() function in AttributeList 1767 AttributeList AttributeList::removeAttributeAtIndex(LLVMContext &C, in removeAttributeAtIndex() function in AttributeList
|
| H A D | Core.cpp | 2603 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 D | GlobalOpt.cpp | 1693 return Attrs.removeAttributeAtIndex(C, AttrIndex, A); in StripAttr()
|