=?utf-8?q?Donát?= Nagy <donat.n...@ericsson.com> Message-ID: In-Reply-To: <llvm.org/llvm/llvm-project/pull/83...@github.com>
================ @@ -27,20 +27,48 @@ class IdentifierInfo; namespace clang { namespace ento { - -enum CallDescriptionFlags : unsigned { - CDF_None = 0, - - /// Describes a C standard function that is sometimes implemented as a macro - /// that expands to a compiler builtin with some __builtin prefix. - /// The builtin may as well have a few extra arguments on top of the requested - /// number of arguments. - CDF_MaybeBuiltin = 1 << 0, -}; - -/// This class represents a description of a function call using the number of -/// arguments and the name of the function. +/// A `CallDescription` is a pattern that can be used to _match_ calls +/// based on the qualified name and the argument/parameter counts. class CallDescription { +public: + enum class Mode { + /// Match calls to functions from the C standard library. On some platforms + /// some functions may be implemented as macros that expand to calls to + /// built-in variants of the given functions, so in this mode we use some + /// heuristics to recognize these implementation-defined variants: + /// - We also accept calls where the name is derived from the specified + /// name by adding "__builtin" or similar prefixes/suffixes. + /// - We also accept calls where the number of arguments or parameters is + /// greater than the specified value. ---------------- NagyDonat wrote: I assume that it does, but I don't know how to generate the doxygen docs and I feel that messing with them is a waste of time. https://github.com/llvm/llvm-project/pull/83432 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits