gecko-dev/build/clang-plugin/CustomAttributes.h
Mike Hommey f8798bbeb2 Bug 1487622 - Refactor the clang plugin wrt attributes r=andi
- We forcefully remove annotations from the AST so that they don't end
up impacting codegen.
- We change the API such that we use identifiers instead of strings,
reducing the chances of typo errors.

Differential Revision: https://phabricator.services.mozilla.com/D5493

--HG--
extra : moz-landing-system : lando
2018-09-18 13:03:33 +00:00

41 lines
997 B
C++

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef CustomAttributes_h__
#define CustomAttributes_h__
#include "clang/AST/DeclBase.h"
#include "llvm/ADT/StringRef.h"
enum CustomAttributes {
#define ATTR(a) a,
#include "CustomAttributes.inc"
#undef ATTR
};
struct CustomAttributesSet {
#define ATTR(a) bool has_ ## a: 1;
#include "CustomAttributes.inc"
#undef ATTR
};
template<CustomAttributes A>
bool hasCustomAttribute(const clang::Decl* D) {
return false;
}
extern CustomAttributesSet GetAttributes(const clang::Decl* D);
#define ATTR(name) \
template<> \
inline bool hasCustomAttribute<name>(const clang::Decl* D) { \
return GetAttributes(D).has_ ## name; \
}
#include "CustomAttributes.inc"
#undef ATTR
extern bool hasCustomAttribute(const clang::Decl* D, CustomAttributes A);
#endif /* CustomAttributes_h__ */