clang 19.0.0git
NoopAnalysis.h
Go to the documentation of this file.
1//===-- NoopAnalysis.h ------------------------------------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file defines a NoopAnalysis class that just uses the builtin transfer.
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef LLVM_CLANG_ANALYSIS_FLOWSENSITIVE_NOOPANALYSIS_H
14#define LLVM_CLANG_ANALYSIS_FLOWSENSITIVE_NOOPANALYSIS_H
15
17#include "clang/Analysis/CFG.h"
21
22namespace clang {
23namespace dataflow {
24
25class NoopAnalysis : public DataflowAnalysis<NoopAnalysis, NoopLattice> {
26public:
29
31 : DataflowAnalysis<NoopAnalysis, NoopLattice>(Context, Options) {}
32
33 static NoopLattice initialElement() { return {}; }
34
36};
37
38} // namespace dataflow
39} // namespace clang
40
41#endif // LLVM_CLANG_ANALYSIS_FLOWSENSITIVE_NOOPANALYSIS_H
Defines the clang::ASTContext interface.
const Environment & Env
Definition: HTMLLogger.cpp:148
Holds long-lived AST nodes (such as types and decls) that can be referred to throughout the semantic ...
Definition: ASTContext.h:182
Represents a top-level expression in a basic block.
Definition: CFG.h:55
Base class template for dataflow analyses built on a single lattice type.
Holds the state of the program (store and heap) at a given program point.
NoopAnalysis(ASTContext &Context, DataflowAnalysisOptions Options)
Definition: NoopAnalysis.h:30
void transfer(const CFGElement &E, NoopLattice &L, Environment &Env)
Definition: NoopAnalysis.h:35
NoopAnalysis(ASTContext &Context)
Definition: NoopAnalysis.h:27
static NoopLattice initialElement()
Definition: NoopAnalysis.h:33
Trivial lattice for dataflow analysis with exactly one element.
Definition: NoopLattice.h:25
The JSON file list parser is used to communicate input to InstallAPI.