|
clang 22.0.0git
|
#include "clang/Analysis/FlowSensitive/Transfer.h"#include "clang/AST/Decl.h"#include "clang/AST/DeclBase.h"#include "clang/AST/DeclCXX.h"#include "clang/AST/Expr.h"#include "clang/AST/ExprCXX.h"#include "clang/AST/OperationKinds.h"#include "clang/AST/Stmt.h"#include "clang/AST/StmtVisitor.h"#include "clang/AST/Type.h"#include "clang/Analysis/FlowSensitive/ASTOps.h"#include "clang/Analysis/FlowSensitive/AdornedCFG.h"#include "clang/Analysis/FlowSensitive/DataflowAnalysisContext.h"#include "clang/Analysis/FlowSensitive/DataflowEnvironment.h"#include "clang/Analysis/FlowSensitive/NoopAnalysis.h"#include "clang/Analysis/FlowSensitive/RecordOps.h"#include "clang/Analysis/FlowSensitive/StorageLocation.h"#include "clang/Analysis/FlowSensitive/Value.h"#include "clang/Basic/Builtins.h"#include "clang/Basic/LLVM.h"#include "clang/Basic/OperatorKinds.h"#include "llvm/Support/Casting.h"#include <assert.h>#include <cassert>Go to the source code of this file.
Namespaces | |
| namespace | clang |
| The JSON file list parser is used to communicate input to InstallAPI. | |
| namespace | clang::dataflow |
| Dataflow Directional Tag Classes. | |
Macros | |
| #define | DEBUG_TYPE "dataflow" |
Functions | |
| static BoolValue & | clang::dataflow::evaluateBooleanEquality (const Expr &LHS, const Expr &RHS, Environment &Env) |
| static BoolValue & | clang::dataflow::unpackValue (BoolValue &V, Environment &Env) |
| static Value * | clang::dataflow::maybeUnpackLValueExpr (const Expr &E, Environment &Env) |
| static void | clang::dataflow::propagateValue (const Expr &From, const Expr &To, Environment &Env) |
| static void | clang::dataflow::propagateStorageLocation (const Expr &From, const Expr &To, Environment &Env) |
| static void | clang::dataflow::propagateValueOrStorageLocation (const Expr &From, const Expr &To, Environment &Env) |
| void | clang::dataflow::transfer (const StmtToEnvMap &StmtToEnv, const Stmt &S, Environment &Env, Environment::ValueModel &Model) |
| Evaluates S and updates Env accordingly. | |
| #define DEBUG_TYPE "dataflow" |
Definition at line 39 of file Transfer.cpp.