Searched refs:CFG (Results 1 - 25 of 63) sorted by relevance

123

/freebsd-11.0-release/tools/tools/nanobsd/pcengines/
H A Dbuild.sh15 CFG="${1}"
18 sh ../nanobsd.sh $* -c ${CFG}
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/
H A DCFGReachabilityAnalysis.h12 // is reachable within the CFG.
24 class CFG;
38 CFGReverseBlockReachabilityAnalysis(const CFG &cfg);
H A DPostOrderCFGView.h1 //===- PostOrderCFGView.h - Post order view of CFG blocks ---------*- C++ --*-//
10 // This file implements post order view of the blocks in a CFG.
25 #include "clang/Analysis/CFG.h"
46 CFGBlockSet(const CFG *G) : VisitedBlockIDs(G->getNumBlockIDs(), false) {}
72 typedef llvm::po_iterator<const CFG*, CFGBlockSet, true> po_iterator;
82 PostOrderCFGView(const CFG *cfg);
H A DUninitializedValues.h24 class CFG;
120 void runUninitializedVariablesAnalysis(const DeclContext &dc, const CFG &cfg,
H A DDominators.h1 //==- Dominators.h - Implementation of dominators tree for Clang CFG C++ -*-==//
18 #include "clang/Analysis/CFG.h"
36 /// This class implements the dominators tree functionality given a Clang CFG.
80 /// \brief This method builds the dominator tree for a given CFG
81 /// The CFG information is passed via AnalysisDeclContext
93 for (CFG::const_iterator I = cfg->begin(),
120 /// \brief This method finds the nearest common dominator CFG block
121 /// for CFG block A and B. If there is no such block then return NULL.
159 CFG *cfg;
H A DLiveVariables.h24 class CFG;
71 /// Compute the liveness information for a given CFG.
H A DThreadSafetyCommon.h14 // * Generalize clang CFG visitors.
15 // * Conversion of the clang CFG to SSA form.
79 // This class defines the interface of a clang CFG Visitor.
83 // Enter the CFG for Decl D, and perform any initial setup operations.
84 void enterCFG(CFG *Cfg, const NamedDecl *D, const CFGBlock *First) {}
122 // Leave the CFG, and perform any final cleanup operations.
127 // Walks the clang CFG, and invokes methods on a given CFGVisitor.
133 // if there are multiple passes over the CFG.
151 // Traverse the CFG, calling methods on V as appropriate.
235 const CFG *getGrap
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Analysis/
H A DCFGStmtMap.h18 #include "clang/Analysis/CFG.h"
22 class CFG;
36 /// Returns a new CFGMap for the given CFG. It is the caller's
38 static CFGStmtMap *Build(CFG* C, ParentMap *PM);
H A DAnalysisContext.h19 #include "clang/Analysis/CFG.h"
73 std::unique_ptr<CFG> cfg, completeCFG;
76 CFG::BuildOptions cfgBuildOptions;
77 CFG::BuildOptions::ForcedBlkExprs *forcedBlkExprs;
96 const CFG::BuildOptions &BuildOptions);
109 /// Return the build options used to construct the CFG.
110 CFG::BuildOptions &getCFGBuildOptions() {
114 const CFG::BuildOptions &getCFGBuildOptions() const {
120 /// reachable from them can appear to be dead in the CFG, analysis passes must
155 CFG *getCF
[all...]
H A DCFG.h1 //===--- CFG.h - Classes for representing and building CFGs------*- C++ -*-===//
10 // This file defines the CFG and CFGBuilder classes for representing and
43 class CFG;
327 /// CFGBlock - Represents a single basic block in a source-level CFG.
412 /// of the CFG.
416 /// This class represents a potential adjacent block in the CFG. It encodes
471 /// CFG blocks.
487 /// Parent - The parent CFG that owns this CFGBlock.
488 CFG *Parent;
491 explicit CFGBlock(unsigned blockid, BumpVectorContext &C, CFG *paren
721 class CFG { class in class:clang::CFGBlock
950 CFG() function in class:clang::CFGBlock::CFG
[all...]
/freebsd-11.0-release/tools/tools/nanobsd/rescue/
H A Dbuild.sh17 CFG="${1}"
24 sh ../nanobsd.sh $* -c ${CFG}
/freebsd-11.0-release/contrib/ntp/lib/isc/win32/
H A Dlibisc.mak2 !IF "$(CFG)" == ""
3 CFG=libisc - Win32 Debug macro
7 !IF "$(CFG)" != "libisc - Win32 Release" && "$(CFG)" != "libisc - Win32 Debug"
8 !MESSAGE Invalid configuration "$(CFG)" specified.
10 !MESSAGE by defining the macro CFG on the command line. For example:
12 !MESSAGE NMAKE /f "libisc.mak" CFG="libisc - Win32 Debug"
33 !IF "$(CFG)" == "libisc - Win32 Release"
108 !IF "$(CFG)" == "libisc - Win32 Release"
298 !ELSEIF "$(CFG)"
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Analysis/
H A DPostOrderCFGView.cpp1 //===- PostOrderCFGView.cpp - Post order view of CFG blocks -------*- C++ --*-//
10 // This file implements post order view of the blocks in a CFG.
20 PostOrderCFGView::PostOrderCFGView(const CFG *cfg) {
32 const CFG *cfg = ctx.getCFG();
H A DCFGStmtMap.cpp17 #include "clang/Analysis/CFG.h"
78 CFGStmtMap *CFGStmtMap::Build(CFG *C, ParentMap *PM) {
86 for (CFG::iterator I = C->begin(), E = C->end(); I != E; ++I)
H A DAnalysisDeclContext.cpp26 #include "clang/Analysis/CFG.h"
40 const CFG::BuildOptions &buildOptions)
173 forcedBlkExprs = new CFG::BuildOptions::ForcedBlkExprs();
185 CFG::BuildOptions::ForcedBlkExprs::const_iterator itr =
191 /// Add each synthetic statement in the CFG to the parent map, using the
193 static void addParentsForSyntheticStmts(const CFG *TheCFG, ParentMap &PM) {
197 for (CFG::synthetic_stmt_iterator I = TheCFG->synthetic_stmt_begin(),
204 CFG *AnalysisDeclContext::getCFG() {
209 cfg = CFG::buildCFG(D, getBody(), &D->getASTContext(), cfgBuildOptions);
217 // The Observer should only observe one build of the CFG
[all...]
H A DCFGReachabilityAnalysis.cpp12 // is reachable within the CFG.
18 #include "clang/Analysis/CFG.h"
22 CFGReverseBlockReachabilityAnalysis::CFGReverseBlockReachabilityAnalysis(const CFG &cfg)
/freebsd-11.0-release/contrib/apr-util/
H A DMakefile.win179 $(MAKE) $(MAKEOPT) -f apr.mak CFG="apr - $(ARCH)" RECURSE=0 $(CTARGET)
180 $(MAKE) $(MAKEOPT) -f libapr.mak CFG="libapr - $(ARCH)" RECURSE=0 $(CTARGET)
182 $(MAKE) $(MAKEOPT) -f aprapp.mak CFG="aprapp - $(ARCH)" RECURSE=0 $(CTARGET)
183 $(MAKE) $(MAKEOPT) -f libaprapp.mak CFG="libaprapp - $(ARCH)" RECURSE=0 $(CTARGET)
186 $(MAKE) $(MAKEOPT) -f apriconv.mak CFG="apriconv - $(ARCH)" RECURSE=0 $(CTARGET)
187 $(MAKE) $(MAKEOPT) -f libapriconv.mak CFG="libapriconv - $(ARCH)" RECURSE=0 $(CTARGET)
201 $(MAKE) $(MAKEOPT) -f xml.mak CFG="xml - $(ARCH)" RECURSE=0 $(CTARGET)
203 $(MAKE) $(MAKEOPT) -f aprutil.mak CFG="aprutil - $(ARCH)" RECURSE=0 $(CTARGET)
204 $(MAKE) $(MAKEOPT) -f libaprutil.mak CFG="libaprutil - $(ARCH)" RECURSE=0 $(CTARGET)
206 $(MAKE) $(MAKEOPT) -f apr_ldap.mak CFG
[all...]
/freebsd-11.0-release/lib/clang/libclanganalysis/
H A DMakefile10 CFG.cpp \
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DAnalyzerStatsChecker.cpp44 const CFG *C = nullptr;
69 // Get the CFG and the Decl of this block.
75 for (CFG::const_iterator I = C->begin(); I != C->end(); ++I) {
H A DDeadStoresChecker.cpp68 const CFG &cfg;
71 ReachableCode(const CFG &cfg)
124 const CFG &cfg;
138 DeadStoreObs(const CFG &cfg, ASTContext &ctx, BugReporter &br,
169 // Compute reachable blocks within the CFG for trivial cases
392 // Driver function to invoke the Dead-Stores checker on a CFG.
465 CFG &cfg = *mgr.getCFG(D);
/freebsd-11.0-release/contrib/apr/
H A DMakefile.win108 $(MAKE) $(MAKEOPT) -f apr.mak CFG="apr - $(ARCH)" RECURSE=0 $(CTARGET)
109 $(MAKE) $(MAKEOPT) -f libapr.mak CFG="libapr - $(ARCH)" RECURSE=0 $(CTARGET)
111 $(MAKE) $(MAKEOPT) -f aprapp.mak CFG="aprapp - $(ARCH)" RECURSE=0 $(CTARGET)
112 $(MAKE) $(MAKEOPT) -f libaprapp.mak CFG="libaprapp - $(ARCH)" RECURSE=0 $(CTARGET)
H A Dapr.mak2 !IF "$(CFG)" == ""
3 CFG=apr - Win32 Release macro
7 !IF "$(CFG)" != "apr - Win32 Release" && "$(CFG)" != "apr - Win32 Debug" && "$(CFG)" != "apr - Win32 Release9x" && "$(CFG)" != "apr - Win32 Debug9x" && "$(CFG)" != "apr - x64 Release" && "$(CFG)" != "apr - x64 Debug"
8 !MESSAGE Invalid configuration "$(CFG)" specified.
10 !MESSAGE by defining the macro CFG o
[all...]
H A Dlibapr.mak2 !IF "$(CFG)" == ""
3 CFG=libapr - Win32 Release macro
7 !IF "$(CFG)" != "libapr - Win32 Release" && "$(CFG)" != "libapr - Win32 Debug" && "$(CFG)" != "libapr - Win32 Release9x" && "$(CFG)" != "libapr - Win32 Debug9x" && "$(CFG)" != "libapr - x64 Release" && "$(CFG)" != "libapr - x64 Debug"
8 !MESSAGE Invalid configuration "$(CFG)" specified.
10 !MESSAGE by defining the macro CFG o
[all...]
/freebsd-11.0-release/lib/clang/libllvmanalysis/
H A DMakefile16 CFG.cpp \
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DAnalysisManager.h113 CFG *getCFG(Decl const *D) {

Completed in 255 milliseconds

123