Searched refs:AttrsToRemove (Results 1 – 4 of 4) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | Attributes.h | 351 removeAttributes(LLVMContext &C, const AttributeMask &AttrsToRemove) const; 618 const AttributeMask &AttrsToRemove) const; 642 removeFnAttributes(LLVMContext &C, const AttributeMask &AttrsToRemove) const { 643 return removeAttributesAtIndex(C, FunctionIndex, AttrsToRemove); 670 const AttributeMask &AttrsToRemove) const { 671 return removeAttributesAtIndex(C, ReturnIndex, AttrsToRemove); 693 const AttributeMask &AttrsToRemove) const { 694 return removeAttributesAtIndex(C, ArgNo + FirstArgIndex, AttrsToRemove);
|
| H A D | InstrTypes.h | 1632 void removeFnAttrs(const AttributeMask &AttrsToRemove) { 1633 Attrs = Attrs.removeFnAttributes(getContext(), AttrsToRemove); 1652 void removeRetAttrs(const AttributeMask &AttrsToRemove) { 1653 Attrs = Attrs.removeRetAttributes(getContext(), AttrsToRemove); 1669 void removeParamAttrs(unsigned ArgNo, const AttributeMask &AttrsToRemove) { 1670 Attrs = Attrs.removeParamAttributes(getContext(), ArgNo, AttrsToRemove);
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/IR/ |
| H A D | Attributes.cpp | 1429 LLVMContext &C, unsigned Index, const AttributeMask &AttrsToRemove) const { in removeAttributesAtIndex() 1431 AttributeSet NewAttrs = Attrs.removeAttributes(C, AttrsToRemove); in removeAttributesAtIndex()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGCall.cpp | 2093 llvm::AttributeMask AttrsToRemove; in mergeDefaultFunctionDefinitionAttributes() local 2107 AttrsToRemove.addAttribute("denormal-fp-math"); in mergeDefaultFunctionDefinitionAttributes() 2115 AttrsToRemove.addAttribute("denormal-fp-math-f32"); in mergeDefaultFunctionDefinitionAttributes() 2122 F.removeFnAttrs(AttrsToRemove); in mergeDefaultFunctionDefinitionAttributes()
|