| /llvm-project-15.0.7/llvm/include/llvm/IR/ |
| H A D | Attributes.h | 590 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 D | Function.h | 354 void removeAttributeAtIndex(unsigned i, Attribute::AttrKind Kind); 357 void removeAttributeAtIndex(unsigned i, StringRef Kind);
|
| H A D | InstrTypes.h | 1538 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 D | RenderScriptx86ABIFixups.cpp | 237 call_inst->removeAttributeAtIndex(I, llvm::Attribute::ByVal); in fixupRSAllocationStructByValCalls()
|
| /llvm-project-15.0.7/llvm/lib/IR/ |
| H A D | Function.cpp | 578 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 D | Attributes.cpp | 1292 AttributeList::removeAttributeAtIndex(LLVMContext &C, unsigned Index, in removeAttributeAtIndex() function in AttributeList 1306 AttributeList AttributeList::removeAttributeAtIndex(LLVMContext &C, in removeAttributeAtIndex() function in AttributeList
|
| H A D | Core.cpp | 2470 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 D | GlobalOpt.cpp | 1713 return Attrs.removeAttributeAtIndex(C, AttrIndex, A); in StripAttr()
|
| H A D | Attributor.cpp | 701 Attrs = Attrs.removeAttributeAtIndex(Ctx, AttrIdx, Kind); in addIfNotExistent()
|
| /llvm-project-15.0.7/llvm/include/llvm/Transforms/IPO/ |
| H A D | Attributor.h | 726 AttrList = AttrList.removeAttributeAtIndex(Ctx, getAttrIdx(), AK);
|