Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/include/llvm/IR/
H A DAttributes.h599 removeAttributeAtIndex(LLVMContext &C, unsigned Index,
605 removeAttributeAtIndex(LLVMContext &C, unsigned Index, StringRef Kind) const;
608 return removeAttributeAtIndex(C, Index, Kind);
626 return removeAttributeAtIndex(C, FunctionIndex, Kind);
633 return removeAttributeAtIndex(C, FunctionIndex, Kind);
653 return removeAttributeAtIndex(C, ReturnIndex, Kind);
660 return removeAttributeAtIndex(C, ReturnIndex, Kind);
676 return removeAttributeAtIndex(C, ArgNo + FirstArgIndex, Kind);
683 return removeAttributeAtIndex(C, ArgNo + FirstArgIndex, Kind);
708 auto Attrs = removeAttributeAtIndex(C, ArgNo, Kind);
H A DFunction.h353 void removeAttributeAtIndex(unsigned i, Attribute::AttrKind Kind);
356 void removeAttributeAtIndex(unsigned i, StringRef Kind);
H A DInstrTypes.h1548 void removeAttributeAtIndex(unsigned i, Attribute::AttrKind Kind) {
1549 Attrs = Attrs.removeAttributeAtIndex(getContext(), i, Kind);
1553 void removeAttributeAtIndex(unsigned i, StringRef Kind) {
1554 Attrs = Attrs.removeAttributeAtIndex(getContext(), i, Kind);
/openbsd-src/gnu/llvm/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
H A DRenderScriptx86ABIFixups.cpp237 call_inst->removeAttributeAtIndex(I, llvm::Attribute::ByVal); in fixupRSAllocationStructByValCalls()
/openbsd-src/gnu/llvm/llvm/lib/IR/
H A DFunction.cpp590 void Function::removeAttributeAtIndex(unsigned i, Attribute::AttrKind Kind) { in removeAttributeAtIndex() function in Function
591 AttributeSets = AttributeSets.removeAttributeAtIndex(getContext(), i, Kind); in removeAttributeAtIndex()
594 void Function::removeAttributeAtIndex(unsigned i, StringRef Kind) { in removeAttributeAtIndex() function in Function
595 AttributeSets = AttributeSets.removeAttributeAtIndex(getContext(), i, Kind); in removeAttributeAtIndex()
H A DAttributes.cpp1380 AttributeList::removeAttributeAtIndex(LLVMContext &C, unsigned Index, in removeAttributeAtIndex() function in AttributeList
1389 AttributeList AttributeList::removeAttributeAtIndex(LLVMContext &C, in removeAttributeAtIndex() function in AttributeList
H A DCore.cpp2449 unwrap<Function>(F)->removeAttributeAtIndex(Idx, (Attribute::AttrKind)KindID); in LLVMRemoveEnumAttributeAtIndex()
2454 unwrap<Function>(F)->removeAttributeAtIndex(Idx, StringRef(K, KLen)); in LLVMRemoveStringAttributeAtIndex()
2863 unwrap<CallBase>(C)->removeAttributeAtIndex(Idx, (Attribute::AttrKind)KindID); in LLVMRemoveCallSiteEnumAttribute()
2868 unwrap<CallBase>(C)->removeAttributeAtIndex(Idx, StringRef(K, KLen)); in LLVMRemoveCallSiteStringAttribute()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp1717 return Attrs.removeAttributeAtIndex(C, AttrIndex, A); in StripAttr()
H A DAttributor.cpp899 Attrs = Attrs.removeAttributeAtIndex(Ctx, AttrIdx, Kind); in addIfNotExistent()
/openbsd-src/gnu/llvm/llvm/include/llvm/Transforms/IPO/
H A DAttributor.h857 AttrList = AttrList.removeAttributeAtIndex(Ctx, getAttrIdx(), AK);