Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/include/llvm/IR/
H A DAttributes.h590 LLVM_NODISCARD AttributeList removeAttributeAtIndex(
595 LLVM_NODISCARD AttributeList removeAttributeAtIndex(LLVMContext &C,
600 return removeAttributeAtIndex(C, Index, Kind);
617 return removeAttributeAtIndex(C, FunctionIndex, Kind);
624 return removeAttributeAtIndex(C, FunctionIndex, Kind);
644 return removeAttributeAtIndex(C, ReturnIndex, Kind);
651 return removeAttributeAtIndex(C, ReturnIndex, Kind);
665 return removeAttributeAtIndex(C, ArgNo + FirstArgIndex, Kind);
673 return removeAttributeAtIndex(C, ArgNo + FirstArgIndex, Kind);
697 auto Attrs = removeAttributeAtIndex(C, ArgNo, Kind);
H A DFunction.h354 void removeAttributeAtIndex(unsigned i, Attribute::AttrKind Kind);
357 void removeAttributeAtIndex(unsigned i, StringRef Kind);
H A DInstrTypes.h1538 void removeAttributeAtIndex(unsigned i, Attribute::AttrKind Kind) {
1539 Attrs = Attrs.removeAttributeAtIndex(getContext(), i, Kind);
1543 void removeAttributeAtIndex(unsigned i, StringRef Kind) {
1544 Attrs = Attrs.removeAttributeAtIndex(getContext(), i, Kind);
/llvm-project-15.0.7/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
H A DRenderScriptx86ABIFixups.cpp237 call_inst->removeAttributeAtIndex(I, llvm::Attribute::ByVal); in fixupRSAllocationStructByValCalls()
/llvm-project-15.0.7/llvm/lib/IR/
H A DFunction.cpp578 void Function::removeAttributeAtIndex(unsigned i, Attribute::AttrKind Kind) { in removeAttributeAtIndex() function in Function
579 AttributeSets = AttributeSets.removeAttributeAtIndex(getContext(), i, Kind); in removeAttributeAtIndex()
582 void Function::removeAttributeAtIndex(unsigned i, StringRef Kind) { in removeAttributeAtIndex() function in Function
583 AttributeSets = AttributeSets.removeAttributeAtIndex(getContext(), i, Kind); in removeAttributeAtIndex()
H A DAttributes.cpp1292 AttributeList::removeAttributeAtIndex(LLVMContext &C, unsigned Index, in removeAttributeAtIndex() function in AttributeList
1306 AttributeList AttributeList::removeAttributeAtIndex(LLVMContext &C, in removeAttributeAtIndex() function in AttributeList
H A DCore.cpp2470 unwrap<Function>(F)->removeAttributeAtIndex(Idx, (Attribute::AttrKind)KindID); in LLVMRemoveEnumAttributeAtIndex()
2475 unwrap<Function>(F)->removeAttributeAtIndex(Idx, StringRef(K, KLen)); in LLVMRemoveStringAttributeAtIndex()
2885 unwrap<CallBase>(C)->removeAttributeAtIndex(Idx, (Attribute::AttrKind)KindID); in LLVMRemoveCallSiteEnumAttribute()
2890 unwrap<CallBase>(C)->removeAttributeAtIndex(Idx, StringRef(K, KLen)); in LLVMRemoveCallSiteStringAttribute()
/llvm-project-15.0.7/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp1713 return Attrs.removeAttributeAtIndex(C, AttrIndex, A); in StripAttr()
H A DAttributor.cpp701 Attrs = Attrs.removeAttributeAtIndex(Ctx, AttrIdx, Kind); in addIfNotExistent()
/llvm-project-15.0.7/llvm/include/llvm/Transforms/IPO/
H A DAttributor.h726 AttrList = AttrList.removeAttributeAtIndex(Ctx, getAttrIdx(), AK);