Searched refs:addAttributeAtIndex (Results 1 – 6 of 6) sorted by relevance
| /src/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | Attributes.h | 533 addAttributeAtIndex(LLVMContext &C, unsigned Index, 539 addAttributeAtIndex(LLVMContext &C, unsigned Index, StringRef Kind, 545 addAttributeAtIndex(LLVMContext &C, unsigned Index, Attribute A) const; 557 return addAttributeAtIndex(C, FunctionIndex, Kind); 564 return addAttributeAtIndex(C, FunctionIndex, Attr); 572 return addAttributeAtIndex(C, FunctionIndex, Kind, Value); 586 return addAttributeAtIndex(C, ReturnIndex, Kind); 593 return addAttributeAtIndex(C, ReturnIndex, Attr); 608 return addAttributeAtIndex(C, ArgNo + FirstArgIndex, Kind); 616 return addAttributeAtIndex(C, ArgNo + FirstArgIndex, Kind, Value); [all …]
|
| H A D | InstrTypes.h | 1564 void addAttributeAtIndex(unsigned i, Attribute::AttrKind Kind) { 1565 Attrs = Attrs.addAttributeAtIndex(getContext(), i, Kind); 1569 void addAttributeAtIndex(unsigned i, Attribute Attr) { 1570 Attrs = Attrs.addAttributeAtIndex(getContext(), i, Attr);
|
| H A D | Function.h | 357 void addAttributeAtIndex(unsigned i, Attribute Attr);
|
| /src/contrib/llvm-project/llvm/lib/IR/ |
| H A D | Attributes.cpp | 1461 AttributeList::addAttributeAtIndex(LLVMContext &C, unsigned Index, in addAttributeAtIndex() function in AttributeList 1472 AttributeList AttributeList::addAttributeAtIndex(LLVMContext &C, unsigned Index, in addAttributeAtIndex() function in AttributeList 1480 AttributeList AttributeList::addAttributeAtIndex(LLVMContext &C, unsigned Index, in addAttributeAtIndex() function in AttributeList
|
| H A D | Function.cpp | 625 void Function::addAttributeAtIndex(unsigned i, Attribute Attr) { in addAttributeAtIndex() function in Function 626 AttributeSets = AttributeSets.addAttributeAtIndex(getContext(), i, Attr); in addAttributeAtIndex()
|
| H A D | Core.cpp | 2561 unwrap<Function>(F)->addAttributeAtIndex(Idx, unwrap(A)); in LLVMAddAttributeAtIndex() 2989 Call->addAttributeAtIndex(Idx, AlignAttr); in LLVMSetInstrParamAlignment() 2994 unwrap<CallBase>(C)->addAttributeAtIndex(Idx, unwrap(A)); in LLVMAddCallSiteAttribute()
|