gecko-dev/build/clang-plugin/MemMoveAnnotation.h
Boris Zbarsky 135d0b832e Bug 1535651. Whitelist std::__pair_base as memmovable for static analysis purposes. r=emilio
In at least some libstdc++ versions, std::pair (which we want to be
memmovable) inherits from __pair_base.  We have a similar setup
already for __atomic_base.

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

--HG--
extra : moz-landing-system : lando
2019-03-15 16:17:52 +00:00

52 lines
1.9 KiB
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 MemMoveAnnotation_h__
#define MemMoveAnnotation_h__
#include "CustomMatchers.h"
#include "CustomTypeAnnotation.h"
#include "Utils.h"
class MemMoveAnnotation final : public CustomTypeAnnotation {
public:
MemMoveAnnotation()
: CustomTypeAnnotation(moz_non_memmovable, "non-memmove()able") {}
virtual ~MemMoveAnnotation() {}
protected:
std::string getImplicitReason(const TagDecl *D) const override {
// Annotate everything in ::std, with a few exceptions; see bug
// 1201314 for discussion.
if (getDeclarationNamespace(D) == "std") {
// This doesn't check that it's really ::std::pair and not
// ::std::something_else::pair, but should be good enough.
StringRef Name = getNameChecked(D);
if (Name == "pair" || Name == "atomic" ||
// libstdc++ specific names
Name == "__atomic_base" || Name == "atomic_bool" ||
Name == "__pair_base" ||
// MSVCRT specific names
Name == "_Atomic_impl" || Name == "_Atomic_base" ||
Name == "_Atomic_bool" || Name == "_Atomic_char" ||
Name == "_Atomic_schar" || Name == "_Atomic_uchar" ||
Name == "_Atomic_char16_t" || Name == "_Atomic_char32_t" ||
Name == "_Atomic_wchar_t" || Name == "_Atomic_short" ||
Name == "_Atomic_ushort" || Name == "_Atomic_int" ||
Name == "_Atomic_uint" || Name == "_Atomic_long" ||
Name == "_Atomic_ulong" || Name == "_Atomic_llong" ||
Name == "_Atomic_ullong" || Name == "_Atomic_address") {
return "";
}
return "it is an stl-provided type not guaranteed to be memmove-able";
}
return "";
}
};
extern MemMoveAnnotation NonMemMovable;
#endif