mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-03 11:23:58 +00:00
[analyzer][NFC] Separate CallDescription from CallEvent
`CallDescriptions` deserve its own translation unit. This patch simply moves the corresponding parts. Also includes the `CallDescription.h` where it's necessary. Reviewed By: martong, xazax.hun, Szelethus Differential Revision: https://reviews.llvm.org/D113587
This commit is contained in:
parent
441de2536b
commit
0b9d3a6e53
@ -0,0 +1,121 @@
|
||||
//===- CallDescription.h - function/method call matching --*- C++ -*-===//
|
||||
//
|
||||
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
||||
// See https://llvm.org/LICENSE.txt for license information.
|
||||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
/// \file This file defines a generic mechanism for matching for function and
|
||||
/// method calls of C, C++, and Objective-C languages. Instances of these
|
||||
/// classes are frequently used together with the CallEvent classes.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef LLVM_CLANG_STATICANALYZER_CORE_PATHSENSITIVE_CALLDESCRIPTION_H
|
||||
#define LLVM_CLANG_STATICANALYZER_CORE_PATHSENSITIVE_CALLDESCRIPTION_H
|
||||
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h"
|
||||
#include "llvm/ADT/ArrayRef.h"
|
||||
#include "llvm/ADT/Optional.h"
|
||||
#include <vector>
|
||||
|
||||
namespace clang {
|
||||
class IdentifierInfo;
|
||||
} // namespace clang
|
||||
|
||||
namespace clang {
|
||||
namespace ento {
|
||||
|
||||
enum CallDescriptionFlags : int {
|
||||
/// 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.
|
||||
class CallDescription {
|
||||
friend class CallEvent;
|
||||
mutable Optional<const IdentifierInfo *> II;
|
||||
// The list of the qualified names used to identify the specified CallEvent,
|
||||
// e.g. "{a, b}" represent the qualified names, like "a::b".
|
||||
std::vector<const char *> QualifiedName;
|
||||
Optional<unsigned> RequiredArgs;
|
||||
Optional<size_t> RequiredParams;
|
||||
int Flags;
|
||||
|
||||
public:
|
||||
/// Constructs a CallDescription object.
|
||||
///
|
||||
/// @param QualifiedName The list of the name qualifiers of the function that
|
||||
/// will be matched. The user is allowed to skip any of the qualifiers.
|
||||
/// For example, {"std", "basic_string", "c_str"} would match both
|
||||
/// std::basic_string<...>::c_str() and std::__1::basic_string<...>::c_str().
|
||||
///
|
||||
/// @param RequiredArgs The number of arguments that is expected to match a
|
||||
/// call. Omit this parameter to match every occurrence of call with a given
|
||||
/// name regardless the number of arguments.
|
||||
CallDescription(int Flags, ArrayRef<const char *> QualifiedName,
|
||||
Optional<unsigned> RequiredArgs = None,
|
||||
Optional<size_t> RequiredParams = None);
|
||||
|
||||
/// Construct a CallDescription with default flags.
|
||||
CallDescription(ArrayRef<const char *> QualifiedName,
|
||||
Optional<unsigned> RequiredArgs = None,
|
||||
Optional<size_t> RequiredParams = None);
|
||||
|
||||
/// Get the name of the function that this object matches.
|
||||
StringRef getFunctionName() const { return QualifiedName.back(); }
|
||||
|
||||
/// Get the qualified name parts in reversed order.
|
||||
/// E.g. { "std", "vector", "data" } -> "vector", "std"
|
||||
auto begin_qualified_name_parts() const {
|
||||
return std::next(QualifiedName.rbegin());
|
||||
}
|
||||
auto end_qualified_name_parts() const { return QualifiedName.rend(); }
|
||||
|
||||
/// It's false, if and only if we expect a single identifier, such as
|
||||
/// `getenv`. It's true for `std::swap`, or `my::detail::container::data`.
|
||||
bool hasQualifiedNameParts() const { return QualifiedName.size() > 1; }
|
||||
};
|
||||
|
||||
/// An immutable map from CallDescriptions to arbitrary data. Provides a unified
|
||||
/// way for checkers to react on function calls.
|
||||
template <typename T> class CallDescriptionMap {
|
||||
// Some call descriptions aren't easily hashable (eg., the ones with qualified
|
||||
// names in which some sections are omitted), so let's put them
|
||||
// in a simple vector and use linear lookup.
|
||||
// TODO: Implement an actual map for fast lookup for "hashable" call
|
||||
// descriptions (eg., the ones for C functions that just match the name).
|
||||
std::vector<std::pair<CallDescription, T>> LinearMap;
|
||||
|
||||
public:
|
||||
CallDescriptionMap(
|
||||
std::initializer_list<std::pair<CallDescription, T>> &&List)
|
||||
: LinearMap(List) {}
|
||||
|
||||
~CallDescriptionMap() = default;
|
||||
|
||||
// These maps are usually stored once per checker, so let's make sure
|
||||
// we don't do redundant copies.
|
||||
CallDescriptionMap(const CallDescriptionMap &) = delete;
|
||||
CallDescriptionMap &operator=(const CallDescription &) = delete;
|
||||
|
||||
const T *lookup(const CallEvent &Call) const {
|
||||
// Slow path: linear lookup.
|
||||
// TODO: Implement some sort of fast path.
|
||||
for (const std::pair<CallDescription, T> &I : LinearMap)
|
||||
if (Call.isCalled(I.first))
|
||||
return &I.second;
|
||||
|
||||
return nullptr;
|
||||
}
|
||||
};
|
||||
|
||||
} // namespace ento
|
||||
} // namespace clang
|
||||
|
||||
#endif // LLVM_CLANG_STATICANALYZER_CORE_PATHSENSITIVE_CALLDESCRIPTION_H
|
@ -1225,110 +1225,6 @@ public:
|
||||
}
|
||||
};
|
||||
|
||||
enum CallDescriptionFlags : int {
|
||||
/// 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.
|
||||
class CallDescription {
|
||||
friend CallEvent;
|
||||
mutable Optional<const IdentifierInfo *> II;
|
||||
// The list of the qualified names used to identify the specified CallEvent,
|
||||
// e.g. "{a, b}" represent the qualified names, like "a::b".
|
||||
std::vector<const char *> QualifiedName;
|
||||
Optional<unsigned> RequiredArgs;
|
||||
Optional<size_t> RequiredParams;
|
||||
int Flags;
|
||||
|
||||
// A constructor helper.
|
||||
static Optional<size_t> readRequiredParams(Optional<unsigned> RequiredArgs,
|
||||
Optional<size_t> RequiredParams) {
|
||||
if (RequiredParams)
|
||||
return RequiredParams;
|
||||
if (RequiredArgs)
|
||||
return static_cast<size_t>(*RequiredArgs);
|
||||
return None;
|
||||
}
|
||||
|
||||
public:
|
||||
/// Constructs a CallDescription object.
|
||||
///
|
||||
/// @param QualifiedName The list of the name qualifiers of the function that
|
||||
/// will be matched. The user is allowed to skip any of the qualifiers.
|
||||
/// For example, {"std", "basic_string", "c_str"} would match both
|
||||
/// std::basic_string<...>::c_str() and std::__1::basic_string<...>::c_str().
|
||||
///
|
||||
/// @param RequiredArgs The number of arguments that is expected to match a
|
||||
/// call. Omit this parameter to match every occurrence of call with a given
|
||||
/// name regardless the number of arguments.
|
||||
CallDescription(int Flags, ArrayRef<const char *> QualifiedName,
|
||||
Optional<unsigned> RequiredArgs = None,
|
||||
Optional<size_t> RequiredParams = None)
|
||||
: QualifiedName(QualifiedName), RequiredArgs(RequiredArgs),
|
||||
RequiredParams(readRequiredParams(RequiredArgs, RequiredParams)),
|
||||
Flags(Flags) {
|
||||
assert(!QualifiedName.empty());
|
||||
}
|
||||
|
||||
/// Construct a CallDescription with default flags.
|
||||
CallDescription(ArrayRef<const char *> QualifiedName,
|
||||
Optional<unsigned> RequiredArgs = None,
|
||||
Optional<size_t> RequiredParams = None)
|
||||
: CallDescription(0, QualifiedName, RequiredArgs, RequiredParams) {}
|
||||
|
||||
/// Get the name of the function that this object matches.
|
||||
StringRef getFunctionName() const { return QualifiedName.back(); }
|
||||
|
||||
/// Get the qualified name parts in reversed order.
|
||||
/// E.g. { "std", "vector", "data" } -> "vector", "std"
|
||||
auto begin_qualified_name_parts() const {
|
||||
return std::next(QualifiedName.rbegin());
|
||||
}
|
||||
auto end_qualified_name_parts() const { return QualifiedName.rend(); }
|
||||
|
||||
/// It's false, if and only if we expect a single identifier, such as
|
||||
/// `getenv`. It's true for `std::swap`, or `my::detail::container::data`.
|
||||
bool hasQualifiedNameParts() const { return QualifiedName.size() > 1; }
|
||||
};
|
||||
|
||||
/// An immutable map from CallDescriptions to arbitrary data. Provides a unified
|
||||
/// way for checkers to react on function calls.
|
||||
template <typename T> class CallDescriptionMap {
|
||||
// Some call descriptions aren't easily hashable (eg., the ones with qualified
|
||||
// names in which some sections are omitted), so let's put them
|
||||
// in a simple vector and use linear lookup.
|
||||
// TODO: Implement an actual map for fast lookup for "hashable" call
|
||||
// descriptions (eg., the ones for C functions that just match the name).
|
||||
std::vector<std::pair<CallDescription, T>> LinearMap;
|
||||
|
||||
public:
|
||||
CallDescriptionMap(
|
||||
std::initializer_list<std::pair<CallDescription, T>> &&List)
|
||||
: LinearMap(List) {}
|
||||
|
||||
~CallDescriptionMap() = default;
|
||||
|
||||
// These maps are usually stored once per checker, so let's make sure
|
||||
// we don't do redundant copies.
|
||||
CallDescriptionMap(const CallDescriptionMap &) = delete;
|
||||
CallDescriptionMap &operator=(const CallDescription &) = delete;
|
||||
|
||||
const T *lookup(const CallEvent &Call) const {
|
||||
// Slow path: linear lookup.
|
||||
// TODO: Implement some sort of fast path.
|
||||
for (const std::pair<CallDescription, T> &I : LinearMap)
|
||||
if (Call.isCalled(I.first))
|
||||
return &I.second;
|
||||
|
||||
return nullptr;
|
||||
}
|
||||
};
|
||||
|
||||
/// Manages the lifetime of CallEvent objects.
|
||||
///
|
||||
/// CallEventManager provides a way to create arbitrary CallEvents "on the
|
||||
|
@ -12,7 +12,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "clang/StaticAnalyzer/Checkers/BuiltinCheckerRegistration.h"
|
||||
#include "clang/AST/ASTContext.h"
|
||||
#include "clang/AST/DeclObjC.h"
|
||||
#include "clang/AST/Expr.h"
|
||||
@ -20,9 +19,11 @@
|
||||
#include "clang/AST/StmtObjC.h"
|
||||
#include "clang/Analysis/DomainSpecific/CocoaConventions.h"
|
||||
#include "clang/Analysis/SelectorExtras.h"
|
||||
#include "clang/StaticAnalyzer/Checkers/BuiltinCheckerRegistration.h"
|
||||
#include "clang/StaticAnalyzer/Core/BugReporter/BugType.h"
|
||||
#include "clang/StaticAnalyzer/Core/Checker.h"
|
||||
#include "clang/StaticAnalyzer/Core/CheckerManager.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallDescription.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/ExplodedGraph.h"
|
||||
|
@ -17,6 +17,7 @@
|
||||
#include "clang/StaticAnalyzer/Checkers/BuiltinCheckerRegistration.h"
|
||||
#include "clang/StaticAnalyzer/Core/BugReporter/BugType.h"
|
||||
#include "clang/StaticAnalyzer/Core/Checker.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallDescription.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
|
||||
|
||||
|
@ -17,6 +17,7 @@
|
||||
#include "clang/StaticAnalyzer/Core/BugReporter/BugType.h"
|
||||
#include "clang/StaticAnalyzer/Core/Checker.h"
|
||||
#include "clang/StaticAnalyzer/Core/CheckerManager.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallDescription.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/DynamicExtent.h"
|
||||
|
@ -20,6 +20,7 @@
|
||||
#include "clang/StaticAnalyzer/Checkers/BuiltinCheckerRegistration.h"
|
||||
#include "clang/StaticAnalyzer/Core/Checker.h"
|
||||
#include "clang/StaticAnalyzer/Core/CheckerManager.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallDescription.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/DynamicType.h"
|
||||
|
@ -14,6 +14,7 @@
|
||||
#include "clang/StaticAnalyzer/Core/BugReporter/BugType.h"
|
||||
#include "clang/StaticAnalyzer/Core/Checker.h"
|
||||
#include "clang/StaticAnalyzer/Core/CheckerManager.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallDescription.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h"
|
||||
|
@ -10,11 +10,12 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "clang/StaticAnalyzer/Checkers/BuiltinCheckerRegistration.h"
|
||||
#include "clang/AST/DeclTemplate.h"
|
||||
#include "clang/Driver/DriverDiagnostic.h"
|
||||
#include "clang/StaticAnalyzer/Checkers/BuiltinCheckerRegistration.h"
|
||||
#include "clang/StaticAnalyzer/Core/BugReporter/BugType.h"
|
||||
#include "clang/StaticAnalyzer/Core/Checker.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallDescription.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/DynamicType.h"
|
||||
|
@ -13,6 +13,7 @@
|
||||
#include "clang/StaticAnalyzer/Checkers/BuiltinCheckerRegistration.h"
|
||||
#include "clang/StaticAnalyzer/Core/BugReporter/BugType.h"
|
||||
#include "clang/StaticAnalyzer/Core/Checker.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallDescription.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
|
||||
|
||||
|
@ -13,6 +13,7 @@
|
||||
#include "clang/StaticAnalyzer/Checkers/BuiltinCheckerRegistration.h"
|
||||
#include "clang/StaticAnalyzer/Core/BugReporter/BugType.h"
|
||||
#include "clang/StaticAnalyzer/Core/Checker.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallDescription.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
|
||||
|
||||
|
@ -13,11 +13,12 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "AllocationState.h"
|
||||
#include "clang/StaticAnalyzer/Checkers/BuiltinCheckerRegistration.h"
|
||||
#include "InterCheckerAPI.h"
|
||||
#include "clang/StaticAnalyzer/Checkers/BuiltinCheckerRegistration.h"
|
||||
#include "clang/StaticAnalyzer/Core/BugReporter/BugType.h"
|
||||
#include "clang/StaticAnalyzer/Core/BugReporter/CommonBugCategories.h"
|
||||
#include "clang/StaticAnalyzer/Core/Checker.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallDescription.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
|
||||
|
||||
|
@ -64,10 +64,11 @@
|
||||
// making an assumption e.g. `S1 + n == S2 + m` we store `S1 - S2 == m - n` as
|
||||
// a constraint which we later retrieve when doing an actual comparison.
|
||||
|
||||
#include "clang/StaticAnalyzer/Checkers/BuiltinCheckerRegistration.h"
|
||||
#include "clang/AST/DeclTemplate.h"
|
||||
#include "clang/StaticAnalyzer/Checkers/BuiltinCheckerRegistration.h"
|
||||
#include "clang/StaticAnalyzer/Core/BugReporter/BugType.h"
|
||||
#include "clang/StaticAnalyzer/Core/Checker.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallDescription.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/DynamicType.h"
|
||||
|
@ -14,10 +14,10 @@
|
||||
#include "clang/StaticAnalyzer/Checkers/BuiltinCheckerRegistration.h"
|
||||
#include "clang/StaticAnalyzer/Core/BugReporter/BugType.h"
|
||||
#include "clang/StaticAnalyzer/Core/Checker.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallDescription.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
|
||||
|
||||
|
||||
#include "Iterator.h"
|
||||
|
||||
using namespace clang;
|
||||
|
@ -27,6 +27,7 @@
|
||||
#include "clang/StaticAnalyzer/Core/BugReporter/BugType.h"
|
||||
#include "clang/StaticAnalyzer/Core/Checker.h"
|
||||
#include "clang/StaticAnalyzer/Core/CheckerManager.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallDescription.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
|
||||
|
||||
|
@ -64,6 +64,7 @@
|
||||
#include "clang/StaticAnalyzer/Core/BugReporter/CommonBugCategories.h"
|
||||
#include "clang/StaticAnalyzer/Core/Checker.h"
|
||||
#include "clang/StaticAnalyzer/Core/CheckerManager.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallDescription.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerHelpers.h"
|
||||
|
@ -17,6 +17,7 @@
|
||||
#include "clang/StaticAnalyzer/Core/BugReporter/BugType.h"
|
||||
#include "clang/StaticAnalyzer/Core/Checker.h"
|
||||
#include "clang/StaticAnalyzer/Core/CheckerManager.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallDescription.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
|
||||
|
||||
|
@ -21,6 +21,7 @@
|
||||
#include "clang/StaticAnalyzer/Core/BugReporter/BugType.h"
|
||||
#include "clang/StaticAnalyzer/Core/Checker.h"
|
||||
#include "clang/StaticAnalyzer/Core/CheckerManager.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallDescription.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
|
||||
|
||||
|
@ -14,6 +14,7 @@
|
||||
#include "clang/StaticAnalyzer/Checkers/BuiltinCheckerRegistration.h"
|
||||
#include "clang/StaticAnalyzer/Core/Checker.h"
|
||||
#include "clang/StaticAnalyzer/Core/CheckerManager.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallDescription.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
|
||||
#include "llvm/ADT/Optional.h"
|
||||
|
@ -12,6 +12,7 @@
|
||||
|
||||
#include "clang/StaticAnalyzer/Checkers/BuiltinCheckerRegistration.h"
|
||||
#include "clang/StaticAnalyzer/Core/Checker.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallDescription.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
|
||||
|
||||
|
@ -17,6 +17,7 @@
|
||||
#include "clang/StaticAnalyzer/Checkers/BuiltinCheckerRegistration.h"
|
||||
#include "clang/StaticAnalyzer/Core/BugReporter/BugType.h"
|
||||
#include "clang/StaticAnalyzer/Core/Checker.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallDescription.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
|
||||
#include <utility>
|
||||
|
@ -23,6 +23,7 @@
|
||||
#include "clang/StaticAnalyzer/Core/BugReporter/BugType.h"
|
||||
#include "clang/StaticAnalyzer/Core/Checker.h"
|
||||
#include "clang/StaticAnalyzer/Core/CheckerManager.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallDescription.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerHelpers.h"
|
||||
|
@ -14,6 +14,7 @@
|
||||
#include "clang/StaticAnalyzer/Core/BugReporter/BugType.h"
|
||||
#include "clang/StaticAnalyzer/Core/Checker.h"
|
||||
#include "clang/StaticAnalyzer/Core/CheckerManager.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallDescription.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h"
|
||||
|
@ -14,6 +14,7 @@
|
||||
|
||||
#include "clang/StaticAnalyzer/Checkers/BuiltinCheckerRegistration.h"
|
||||
#include "clang/StaticAnalyzer/Core/BugReporter/BugType.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallDescription.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
|
||||
|
||||
|
@ -15,6 +15,7 @@
|
||||
#include "clang/StaticAnalyzer/Core/BugReporter/BugType.h"
|
||||
#include "clang/StaticAnalyzer/Core/Checker.h"
|
||||
#include "clang/StaticAnalyzer/Core/CheckerManager.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallDescription.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
|
||||
|
||||
|
@ -18,6 +18,7 @@
|
||||
#include "clang/StaticAnalyzer/Core/BugReporter/BugType.h"
|
||||
#include "clang/StaticAnalyzer/Core/Checker.h"
|
||||
#include "clang/StaticAnalyzer/Core/CheckerManager.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallDescription.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
|
||||
|
||||
|
@ -17,6 +17,7 @@
|
||||
#include "clang/StaticAnalyzer/Core/BugReporter/BugType.h"
|
||||
#include "clang/StaticAnalyzer/Core/Checker.h"
|
||||
#include "clang/StaticAnalyzer/Core/CheckerManager.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallDescription.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/MemRegion.h"
|
||||
|
@ -11,6 +11,7 @@ add_clang_library(clangStaticAnalyzerCore
|
||||
BlockCounter.cpp
|
||||
BugReporter.cpp
|
||||
BugReporterVisitors.cpp
|
||||
CallDescription.cpp
|
||||
CallEvent.cpp
|
||||
Checker.cpp
|
||||
CheckerContext.cpp
|
||||
|
48
clang/lib/StaticAnalyzer/Core/CallDescription.cpp
Normal file
48
clang/lib/StaticAnalyzer/Core/CallDescription.cpp
Normal file
@ -0,0 +1,48 @@
|
||||
//===- CallDescription.cpp - function/method call matching --*- C++ -*-===//
|
||||
//
|
||||
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
||||
// See https://llvm.org/LICENSE.txt for license information.
|
||||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
/// \file This file defines a generic mechanism for matching for function and
|
||||
/// method calls of C, C++, and Objective-C languages. Instances of these
|
||||
/// classes are frequently used together with the CallEvent classes.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallDescription.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h"
|
||||
#include "llvm/ADT/ArrayRef.h"
|
||||
#include "llvm/ADT/Optional.h"
|
||||
|
||||
using namespace llvm;
|
||||
using namespace clang;
|
||||
|
||||
// A constructor helper.
|
||||
static Optional<size_t> readRequiredParams(Optional<unsigned> RequiredArgs,
|
||||
Optional<size_t> RequiredParams) {
|
||||
if (RequiredParams)
|
||||
return RequiredParams;
|
||||
if (RequiredArgs)
|
||||
return static_cast<size_t>(*RequiredArgs);
|
||||
return None;
|
||||
}
|
||||
|
||||
ento::CallDescription::CallDescription(
|
||||
int Flags, ArrayRef<const char *> QualifiedName,
|
||||
Optional<unsigned> RequiredArgs /*= None*/,
|
||||
Optional<size_t> RequiredParams /*= None*/)
|
||||
: QualifiedName(QualifiedName), RequiredArgs(RequiredArgs),
|
||||
RequiredParams(readRequiredParams(RequiredArgs, RequiredParams)),
|
||||
Flags(Flags) {
|
||||
assert(!QualifiedName.empty());
|
||||
}
|
||||
|
||||
/// Construct a CallDescription with default flags.
|
||||
ento::CallDescription::CallDescription(
|
||||
ArrayRef<const char *> QualifiedName,
|
||||
Optional<unsigned> RequiredArgs /*= None*/,
|
||||
Optional<size_t> RequiredParams /*= None*/)
|
||||
: CallDescription(0, QualifiedName, RequiredArgs, RequiredParams) {}
|
@ -36,6 +36,7 @@
|
||||
#include "clang/Basic/SourceManager.h"
|
||||
#include "clang/Basic/Specifiers.h"
|
||||
#include "clang/CrossTU/CrossTranslationUnit.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallDescription.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/DynamicType.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/DynamicTypeInfo.h"
|
||||
|
@ -12,6 +12,7 @@
|
||||
#include "clang/StaticAnalyzer/Core/BugReporter/BugType.h"
|
||||
#include "clang/StaticAnalyzer/Core/Checker.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/AnalysisManager.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallDescription.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
|
||||
#include "clang/StaticAnalyzer/Frontend/AnalysisConsumer.h"
|
||||
|
@ -9,6 +9,7 @@
|
||||
#include "Reusables.h"
|
||||
|
||||
#include "clang/AST/ExprCXX.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallDescription.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h"
|
||||
#include "clang/Tooling/Tooling.h"
|
||||
#include "gtest/gtest.h"
|
||||
|
@ -8,6 +8,7 @@
|
||||
|
||||
#include "CheckerRegistration.h"
|
||||
#include "clang/StaticAnalyzer/Core/Checker.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallDescription.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h"
|
||||
#include "clang/StaticAnalyzer/Frontend/CheckerRegistry.h"
|
||||
#include "gtest/gtest.h"
|
||||
|
@ -12,6 +12,7 @@
|
||||
#include "clang/StaticAnalyzer/Core/BugReporter/BugReporter.h"
|
||||
#include "clang/StaticAnalyzer/Core/BugReporter/BugType.h"
|
||||
#include "clang/StaticAnalyzer/Core/Checker.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallDescription.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
|
||||
#include "clang/StaticAnalyzer/Frontend/AnalysisConsumer.h"
|
||||
|
@ -14,6 +14,7 @@
|
||||
#include "clang/StaticAnalyzer/Core/BugReporter/CommonBugCategories.h"
|
||||
#include "clang/StaticAnalyzer/Core/Checker.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/AnalysisManager.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallDescription.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
|
||||
#include "clang/StaticAnalyzer/Core/PathSensitive/ExplodedGraph.h"
|
||||
|
@ -20,6 +20,7 @@ static_library("Core") {
|
||||
"BlockCounter.cpp",
|
||||
"BugReporter.cpp",
|
||||
"BugReporterVisitors.cpp",
|
||||
"CallDescription.cpp",
|
||||
"CallEvent.cpp",
|
||||
"Checker.cpp",
|
||||
"CheckerContext.cpp",
|
||||
|
Loading…
Reference in New Issue
Block a user