| /openbsd-src/gnu/llvm/llvm/include/llvm/IR/ |
| H A D | Attributes.h | 599 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 D | Function.h | 353 void removeAttributeAtIndex(unsigned i, Attribute::AttrKind Kind); 356 void removeAttributeAtIndex(unsigned i, StringRef Kind);
|
| H A D | InstrTypes.h | 1548 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 D | RenderScriptx86ABIFixups.cpp | 237 call_inst->removeAttributeAtIndex(I, llvm::Attribute::ByVal); in fixupRSAllocationStructByValCalls()
|
| /openbsd-src/gnu/llvm/llvm/lib/IR/ |
| H A D | Function.cpp | 590 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 D | Attributes.cpp | 1380 AttributeList::removeAttributeAtIndex(LLVMContext &C, unsigned Index, in removeAttributeAtIndex() function in AttributeList 1389 AttributeList AttributeList::removeAttributeAtIndex(LLVMContext &C, in removeAttributeAtIndex() function in AttributeList
|
| H A D | Core.cpp | 2449 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 D | GlobalOpt.cpp | 1717 return Attrs.removeAttributeAtIndex(C, AttrIndex, A); in StripAttr()
|
| H A D | Attributor.cpp | 899 Attrs = Attrs.removeAttributeAtIndex(Ctx, AttrIdx, Kind); in addIfNotExistent()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Transforms/IPO/ |
| H A D | Attributor.h | 857 AttrList = AttrList.removeAttributeAtIndex(Ctx, getAttrIdx(), AK);
|