Home
last modified time | relevance | path

Searched refs:AttrsToRemove (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DAttributes.h415 removeAttributes(LLVMContext &C, const AttributeMask &AttrsToRemove) const;
686 LLVMContext &C, unsigned Index, const AttributeMask &AttrsToRemove) const;
710 removeFnAttributes(LLVMContext &C, const AttributeMask &AttrsToRemove) const {
711 return removeAttributesAtIndex(C, FunctionIndex, AttrsToRemove);
738 const AttributeMask &AttrsToRemove) const {
739 return removeAttributesAtIndex(C, ReturnIndex, AttrsToRemove);
761 const AttributeMask &AttrsToRemove) const {
762 return removeAttributesAtIndex(C, ArgNo + FirstArgIndex, AttrsToRemove);
H A DInstrTypes.h1534 void removeFnAttrs(const AttributeMask &AttrsToRemove) {
1535 Attrs = Attrs.removeFnAttributes(getContext(), AttrsToRemove);
1554 void removeRetAttrs(const AttributeMask &AttrsToRemove) {
1555 Attrs = Attrs.removeRetAttributes(getContext(), AttrsToRemove);
1571 void removeParamAttrs(unsigned ArgNo, const AttributeMask &AttrsToRemove) {
1572 Attrs = Attrs.removeParamAttributes(getContext(), ArgNo, AttrsToRemove);
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DDeadStoreElimination.cpp591 AttributeMask AttrsToRemove; in adjustArgAttributes() local
612 AttrsToRemove.addAttribute(Attr); in adjustArgAttributes()
616 Intrinsic->removeParamAttrs(ArgNo, AttrsToRemove); in adjustArgAttributes()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DAttributes.cpp1778 LLVMContext &C, unsigned Index, const AttributeMask &AttrsToRemove) const { in removeAttributesAtIndex()
1780 AttributeSet NewAttrs = Attrs.removeAttributes(C, AttrsToRemove); in removeAttributesAtIndex()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCall.cpp2174 llvm::AttributeMask AttrsToRemove; in mergeDefaultFunctionDefinitionAttributes() local
2188 AttrsToRemove.addAttribute("denormal-fp-math"); in mergeDefaultFunctionDefinitionAttributes()
2196 AttrsToRemove.addAttribute("denormal-fp-math-f32"); in mergeDefaultFunctionDefinitionAttributes()
2203 F.removeFnAttrs(AttrsToRemove); in mergeDefaultFunctionDefinitionAttributes()