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

123

/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/
H A DCFGReachabilityAnalysis.h11 // is reachable within the CFG.
23 class CFG;
39 CFGReverseBlockReachabilityAnalysis(const CFG &cfg);
H A DPostOrderCFGView.h1 //===- PostOrderCFGView.h - Post order view of CFG blocks -------*- C++ -*-===//
9 // This file implements post order view of the blocks in a CFG.
17 #include "clang/Analysis/CFG.h"
47 CFGBlockSet(const CFG *G) : VisitedBlockIDs(G->getNumBlockIDs(), false) {}
73 using po_iterator = llvm::po_iterator<const CFG *, CFGBlockSet, true>;
85 PostOrderCFGView(const CFG *cfg);
H A DUninitializedValues.h23 class CFG;
128 void runUninitializedVariablesAnalysis(const DeclContext &dc, const CFG &cfg,
H A DDominators.h1 //- Dominators.h - Implementation of dominators tree for Clang CFG -*- C++ -*-//
17 #include "clang/Analysis/CFG.h"
40 /// Dominator tree builder for Clang's CFG based on llvm::DominatorTreeBase.
50 CFGDominatorTreeImpl(CFG *cfg) {
58 CFG *getCFG() { return cfg; }
86 /// Builds the dominator tree for a given CFG.
87 void buildDominatorTree(CFG *cfg) {
97 for (CFG::const_iterator I = cfg->begin(),
119 "If the immediate dominator node is nullptr, the CFG block "
121 "tree), or if the CFG bloc
[all...]
H A DCalledOnceCheck.h21 class CFG;
109 /// Check given CFG for 'called once' parameter violations.
/netbsd-current/sys/arch/hpc/stand/dspgen/
H A Dgen_template.sh91 CFG="%%% NAME %%% - $ARCH_CFG"
92 echo "!MESSAGE \"$CFG $DEBUG_VER\" (\"$ARCH_CFG $PROJECTTYPE\")" >> $TEMPLATE
93 echo "!MESSAGE \"$CFG $RELEASE_VER\" (\"$ARCH_CFG $PROJECTTYPE\")" >> $TEMPLATE
108 CFG="%%% NAME %%% - $ARCH_CFG"
109 echo "!IF \"\$(CFG)\" == \"$CFG $DEBUG_VER\"" >> $TEMPLATE
120 echo "!IF \"\$(CFG)\" == \"$CFG $RELEASE_VER\"" >> $TEMPLATE
142 CFG="%%% NAME %%% - $ARCH_CFG"
143 echo "# Name \"$CFG
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/lm32/
H A Dcsr.s19 rcsr r0, CFG
20 rcsr r31, CFG
H A Dcsr.d26 40: 90 c0 00 00 rcsr r0,CFG
27 44: 90 c0 f8 00 rcsr ba,CFG
/netbsd-current/external/bsd/ntp/dist/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...]
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Analysis/FlowSensitive/
H A DDataflowWorklist.h16 #include "clang/Analysis/CFG.h"
30 DataflowWorklistBase(const CFG &Cfg, PostOrderCFGView *POV, Comp C)
64 ForwardDataflowWorklist(const CFG &Cfg, AnalysisDeclContext &Ctx)
81 BackwardDataflowWorklist(const CFG &Cfg, AnalysisDeclContext &Ctx)
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Analysis/
H A DCFGStmtMap.h17 #include "clang/Analysis/CFG.h"
33 /// Returns a new CFGMap for the given CFG. It is the caller's
35 static CFGStmtMap *Build(CFG* C, ParentMap *PM);
H A DAnalysisDeclContext.h22 #include "clang/Analysis/CFG.h"
79 std::unique_ptr<CFG> cfg, completeCFG;
82 CFG::BuildOptions cfgBuildOptions;
83 CFG::BuildOptions::ForcedBlkExprs *forcedBlkExprs = nullptr;
100 const CFG::BuildOptions &BuildOptions);
110 CFG::BuildOptions &getCFGBuildOptions() { return cfgBuildOptions; }
112 const CFG::BuildOptions &getCFGBuildOptions() const {
118 /// can appear to be dead in the CFG, analysis passes must cope with that.
152 CFG *getCFG();
158 /// \returns A version of the CFG withou
[all...]
H A DCFG.h1 //===- CFG.h - Classes for representing and building CFGs -------*- C++ -*-===//
9 // This file defines the CFG and CFGBuilder classes for representing and
41 class CFG;
155 /// this is only used by the analyzer's CFG.
183 /// analyzer's CFG.
266 /// This element is is only produced when building the CFG for the static
550 /// Represents a single basic block in a source-level CFG.
782 /// A numerical ID assigned to a CFGBlock during construction of the CFG.
786 /// This class represents a potential adjacent block in the CFG. It encodes
840 /// Keep track of the predecessor / successor CFG block
[all...]
/netbsd-current/external/gpl2/xcvs/dist/diff/
H A Dlibdiff.mak2 !IF "$(CFG)" == ""
3 CFG=libdiff - Win32 Debug macro
7 !IF "$(CFG)" != "libdiff - Win32 Release" && "$(CFG)" != "libdiff - 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 "libdiff.mak" CFG="libdiff - Win32 Debug"
28 !IF "$(CFG)" == "libdiff - Win32 Release"
131 !ELSEIF "$(CFG)" == "libdiff - Win32 Debug"
246 !IF "$(CFG)"
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/lib/Analysis/
H A DPostOrderCFGView.cpp1 //===- PostOrderCFGView.cpp - Post order view of CFG blocks ---------------===//
9 // This file implements post order view of the blocks in a CFG.
15 #include "clang/Analysis/CFG.h"
21 PostOrderCFGView::PostOrderCFGView(const CFG *cfg) {
34 const CFG *cfg = ctx.getCFG();
H A DCFGStmtMap.cpp16 #include "clang/Analysis/CFG.h"
77 CFGStmtMap *CFGStmtMap::Build(CFG *C, ParentMap *PM) {
85 for (CFG::iterator I = C->begin(), E = C->end(); I != E; ++I)
H A DAnalysisDeclContext.cpp30 #include "clang/Analysis/CFG.h"
57 const CFG::BuildOptions &Options)
182 forcedBlkExprs = new CFG::BuildOptions::ForcedBlkExprs();
194 CFG::BuildOptions::ForcedBlkExprs::const_iterator itr =
200 /// Add each synthetic statement in the CFG to the parent map, using the
202 static void addParentsForSyntheticStmts(const CFG *TheCFG, ParentMap &PM) {
206 for (CFG::synthetic_stmt_iterator I = TheCFG->synthetic_stmt_begin(),
213 CFG *AnalysisDeclContext::getCFG() {
218 cfg = CFG::buildCFG(D, getBody(), &D->getASTContext(), cfgBuildOptions);
226 // The Observer should only observe one build of the CFG
[all...]
H A DCFGReachabilityAnalysis.cpp11 // is reachable within the CFG.
16 #include "clang/Analysis/CFG.h"
23 const CFG &cfg)
/netbsd-current/external/apache2/llvm/lib/libclangAnalysis/
H A DMakefile13 CFG.cpp \
/netbsd-current/sys/arch/mips/bonito/
H A Dbonitoreg.h408 #define BONITO_PCIMEMBASECFG_SIZE(WIN,CFG) (((((~(CFG)) & BONITO_PCIMEMBASECFG_MEMBASE##WIN##_MASK)) << (BONITO_PCIMEMBASECFG_ASHIFT - BONITO_PCIMEMBASECFG_MEMBASE##WIN##_MASK_SHIFT)) | BONITO_PCIMEMBASECFG_AMASK)
410 #define BONITO_PCIMEMBASECFG_ADDRMASK(WIN,CFG) ((((CFG) & BONITO_PCIMEMBASECFG_MEMBASE##WIN##_MASK) >> BONITO_PCIMEMBASECFG_MEMBASE##WIN##_MASK_SHIFT) << BONITO_PCIMEMBASECFG_ASHIFT)
411 #define BONITO_PCIMEMBASECFG_ADDRMASK(WIN,CFG) ((((CFG) & BONITO_PCIMEMBASECFG_MEMBASE##WIN##_MASK) >> BONITO_PCIMEMBASECFG_MEMBASE##WIN##_MASK_SHIFT) << BONITO_PCIMEMBASECFG_ASHIFT)
412 #define BONITO_PCIMEMBASECFG_ADDRTRANS(WIN,CFG) ((((CFG) & BONITO_PCIMEMBASECFG_MEMBASE##WIN##_TRANS) >> BONITO_PCIMEMBASECFG_MEMBASE##WIN##_TRANS_SHIFT) << BONITO_PCIMEMBASECFG_ASHIFT)
414 #define BONITO_PCITOPHYS(WIN,ADDR,CFG) ( \
415 (((ADDR) & (~(BONITO_PCIMEMBASECFG_MASK))) & (~(BONITO_PCIMEMBASECFG_ADDRMASK(WIN,CFG)))) | \
[all...]
/netbsd-current/external/gpl2/xcvs/dist/lib/
H A Dlibcvs.mak2 !IF "$(CFG)" == ""
3 CFG=libcvs - Win32 Debug macro
7 !IF "$(CFG)" != "libcvs - Win32 Release" && "$(CFG)" != "libcvs - 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 "libcvs.mak" CFG="libcvs - Win32 Debug"
28 !IF "$(CFG)" == "libcvs - Win32 Release"
211 !ELSEIF "$(CFG)" == "libcvs - Win32 Debug"
403 !IF "$(CFG)"
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
H A DVPlan.cpp29 #include "llvm/IR/CFG.h"
250 VPBasicBlock::createEmptyBasicBlock(VPTransformState::CFGState &CFG) { argument
253 BasicBlock *PrevBB = CFG.PrevBB;
255 PrevBB->getParent(), CFG.LastBB);
262 BasicBlock *PredBB = CFG.VPBB2IRBB[PredVPBB];
273 CFG.VPBBsToFix.push_back(PredVPBB);
299 VPBasicBlock *PrevVPBB = State->CFG.PrevVPBB;
301 BasicBlock *NewBB = State->CFG.PrevBB; // Reuse it if possible.
316 NewBB = createEmptyBasicBlock(State->CFG);
318 // Temporarily terminate with unreachable until CFG i
[all...]
/netbsd-current/external/gpl3/gcc/dist/libphobos/libdruntime/core/internal/
H A Dparseoptions.d35 * initialize members of struct CFG from rt_config options
42 bool initConfigOptions(CFG)(ref CFG cfg, string cfgname)
55 * initialize members of struct CFG from a string of sub-options.
70 bool parseOptions(CFG)(ref CFG cfg, string opt)
72 static if (is(typeof(__traits(getMember, CFG, "errorName"))))
75 string errName = CFG.stringof;
81 static if (is(typeof(__traits(getMember, CFG, "help"))))
96 static foreach (field; __traits(allMembers, CFG))
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Passes/
H A DStandardInstrumentations.h118 // CFG is a map BB -> {(Succ, Multiplicity)}, where BB is a non-leaf basic
121 // unordered the order of successors is not tracked by the CFG. In other words
123 // reporting a CFG change. CFG can be guarded by basic block tracking pointers
125 // then the CFG is treated poisoned and no block pointer of the Graph is used.
126 struct CFG { struct in class:llvm::PreservedCFGCheckerInstrumentation
130 CFG(const Function *F, bool TrackBBLifetime);
132 bool operator==(const CFG &G) const {
142 static void printDiff(raw_ostream &out, const CFG &Before,
143 const CFG
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DAnalyzerStatsChecker.cpp43 const CFG *C = nullptr;
68 // Get the CFG and the Decl of this block.
74 for (CFG::const_iterator I = C->begin(); I != C->end(); ++I) {

Completed in 293 milliseconds

123