| /freebsd-9-stable/contrib/ntp/lib/isc/win32/ |
| D | libisc.mak | 2 !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)" == "libisc - Win32 Debug" 697 !IF "$(CFG)" == "libisc - Win32 Release" || "$(CFG)" == "libisc - Win32 Debug" [all …]
|
| /freebsd-9-stable/contrib/llvm/tools/clang/include/clang/Analysis/ |
| D | CFG.h | 42 class CFG; variable 409 CFG *Parent; 412 explicit CFGBlock(unsigned blockid, BumpVectorContext &C, CFG *parent) in CFGBlock() 557 CFG *getParent() const { return Parent; } in getParent() 559 void dump(const CFG *cfg, const LangOptions &LO, bool ShowColors = false) const; 560 void print(raw_ostream &OS, const CFG* cfg, const LangOptions &LO, 619 class CFG { 712 static CFG* buildCFG(const Decl *D, Stmt *AST, ASTContext *C, 848 CFG() : Entry(NULL), Exit(NULL), IndirectGotoBlock(NULL), NumBlockIDs(0), in CFG() function 955 template <> struct GraphTraits< ::clang::CFG* > [all …]
|
| D | AnalysisContext.h | 72 OwningPtr<CFG> cfg, completeCFG; 75 CFG::BuildOptions cfgBuildOptions; 76 CFG::BuildOptions::ForcedBlkExprs *forcedBlkExprs; 95 const CFG::BuildOptions &BuildOptions); 109 CFG::BuildOptions &getCFGBuildOptions() { in getCFGBuildOptions() 113 const CFG::BuildOptions &getCFGBuildOptions() const { in getCFGBuildOptions() 146 CFG *getCFG(); 153 CFG *getUnoptimizedCFG(); 232 CFG *getCFG() const { return getAnalysisDeclContext()->getCFG(); } in getCFG() 400 CFG::BuildOptions cfgBuildOptions; [all …]
|
| D | CFGStmtMap.h | 22 class CFG; variable 38 static CFGStmtMap *Build(CFG* C, ParentMap *PM);
|
| /freebsd-9-stable/contrib/llvm/tools/clang/include/clang/Analysis/FlowSensitive/ |
| D | DataflowSolver.h | 151 void runOnCFG(CFG& cfg, bool recordStmtValues = false) { 177 void runOnBlock(CFG::iterator &I, bool recordStmtValues) { 180 void runOnBlock(CFG::const_iterator &I, bool recordStmtValues) { 184 void runOnAllBlocks(const CFG& cfg, bool recordStmtValues = false) { 185 for (CFG::const_iterator I=cfg.begin(), E=cfg.end(); I!=E; ++I) 197 void SolveDataflowEquations(CFG& cfg, bool recordStmtValues) { 208 void EnqueueBlocksOnWorklist(CFG &cfg, dataflow::forward_analysis_tag) { 211 for (CFG::iterator I=cfg.begin(), E=cfg.end(); I!=E; ++I) 215 void EnqueueBlocksOnWorklist(CFG &cfg, dataflow::backward_analysis_tag) { 220 for (CFG::reverse_iterator I=cfg.rbegin(), E=cfg.rend(); I!=E; ++I) [all …]
|
| /freebsd-9-stable/contrib/llvm/tools/clang/lib/Analysis/ |
| D | AnalysisDeclContext.cpp | 40 const CFG::BuildOptions &buildOptions) in AnalysisDeclContext() 142 forcedBlkExprs = new CFG::BuildOptions::ForcedBlkExprs(); in registerForcedBlockExpression() 154 CFG::BuildOptions::ForcedBlkExprs::const_iterator itr = in getBlockForRegisteredExpression() 162 static void addParentsForSyntheticStmts(const CFG *TheCFG, ParentMap &PM) { in addParentsForSyntheticStmts() 166 for (CFG::synthetic_stmt_iterator I = TheCFG->synthetic_stmt_begin(), in addParentsForSyntheticStmts() 173 CFG *AnalysisDeclContext::getCFG() { in getCFG() 178 cfg.reset(CFG::buildCFG(D, getBody(), in getCFG() 190 CFG *AnalysisDeclContext::getUnoptimizedCFG() { in getUnoptimizedCFG() 194 completeCFG.reset(CFG::buildCFG(D, getBody(), &D->getASTContext(), in getUnoptimizedCFG() 210 if (CFG *c = getCFG()) { in getCFGStmtMap() [all …]
|
| D | UninitializedValues.cpp | 107 const CFG &cfg; 112 CFGBlockValues(const CFG &cfg); 142 CFGBlockValues::CFGBlockValues(const CFG &c) : cfg(c), vals(0) {} in CFGBlockValues() 211 DataflowWorklist(const CFG &cfg, PostOrderCFGView &view) in DataflowWorklist() 434 const CFG &cfg; 442 TransferFunctions(CFGBlockValues &vals, const CFG &cfg, in TransferFunctions() 573 for (CFG::const_iterator BI = cfg.begin(), BE = cfg.end(); BI != BE; ++BI) { in getUninitUse() 742 static bool runOnBlock(const CFGBlock *block, const CFG &cfg, in runOnBlock() 808 const CFG &cfg, in runUninitializedVariablesAnalysis() 855 for (CFG::const_iterator BI = cfg.begin(), BE = cfg.end(); BI != BE; ++BI) { in runUninitializedVariablesAnalysis()
|
| D | PostOrderCFGView.cpp | 20 PostOrderCFGView::PostOrderCFGView(const CFG *cfg) { in PostOrderCFGView() 32 const CFG *cfg = ctx.getCFG(); in create()
|
| D | CFGStmtMap.cpp | 78 CFGStmtMap *CFGStmtMap::Build(CFG *C, ParentMap *PM) { in Build() 86 for (CFG::iterator I = C->begin(), E = C->end(); I != E; ++I) in Build()
|
| D | ReachableCode.cpp | 296 CFG *cfg = AC.getCFG(); in FindUnreachableCode() 310 for (CFG::try_block_iterator I = cfg->try_blocks_begin(), in FindUnreachableCode() 320 for (CFG::iterator I = cfg->begin(), E = cfg->end(); I != E; ++I) { in FindUnreachableCode()
|
| D | LiveVariables.cpp | 35 DataflowWorklist(const CFG &cfg, AnalysisDeclContext &Ctx) in DataflowWorklist() 493 const CFG *cfg = getImpl(impl).analysisContext.getCFG(); in runOnAllBlocks() 494 for (CFG::const_iterator it = cfg->begin(), ei = cfg->end(); it != ei; ++it) in runOnAllBlocks() 509 CFG *cfg = AC.getCFG(); in computeLiveness() 526 for (CFG::const_iterator it = cfg->begin(), ei = cfg->end(); it != ei; ++it) { in computeLiveness()
|
| /freebsd-9-stable/tools/tools/nanobsd/gateworks/ |
| D | common | 318 CFG=${NANO_DISKIMGDIR}/_.disk.cfg 319 echo ""; echo "Creating config partition ${CFG}..." 322 pprint 2 "${NANO_MAKEFS} -s ${SIZE} ${CFG} ${NANO_CFGDIR}" 323 ${NANO_MAKEFS} -s ${SIZE} ${CFG} ${NANO_CFGDIR} 324 pprint 2 "dd if=${CFG} of=/dev/${MD}s3 bs=${BS}" 325 dd if=${CFG} of=/dev/${MD}s3 bs=${BS} 326 pprint 2 "rm ${CFG}" 327 rm ${CFG}; CFG= # NB: disable printing below 354 test "${CFG}" && echo "/cfg partition: ${CFG}"
|
| /freebsd-9-stable/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ |
| D | PostOrderCFGView.h | 46 CFGBlockSet(const CFG *G) : VisitedBlockIDs(G->getNumBlockIDs(), false) {} in CFGBlockSet() 72 typedef llvm::po_iterator<const CFG*, CFGBlockSet, true> po_iterator; 81 PostOrderCFGView(const CFG *cfg);
|
| D | CFGReachabilityAnalysis.h | 24 class CFG; variable 38 CFGReverseBlockReachabilityAnalysis(const CFG &cfg);
|
| D | UninitializedValues.h | 24 class CFG; variable 120 void runUninitializedVariablesAnalysis(const DeclContext &dc, const CFG &cfg,
|
| D | Dominators.h | 89 for (CFG::const_iterator I = cfg->begin(), in dump() 155 CFG *cfg;
|
| /freebsd-9-stable/tools/tools/nanobsd/rescue/ |
| D | build.sh | 15 CFG="${1}" 18 sh ../nanobsd.sh $* -c ${CFG}
|
| /freebsd-9-stable/tools/tools/nanobsd/pcengines/ |
| D | build.sh | 15 CFG="${1}" 18 sh ../nanobsd.sh $* -c ${CFG}
|
| /freebsd-9-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ |
| D | DeadStoresChecker.cpp | 68 const CFG &cfg; 71 ReachableCode(const CFG &cfg) in ReachableCode() 124 const CFG &cfg; 137 DeadStoreObs(const CFG &cfg, ASTContext &ctx, in DeadStoreObs() 434 CFG &cfg = *mgr.getCFG(D); in checkASTCodeBody()
|
| D | AnalyzerStatsChecker.cpp | 44 const CFG *C = 0; in checkEndAnalysis() 75 for (CFG::const_iterator I = C->begin(); I != C->end(); ++I) { in checkEndAnalysis()
|
| D | DebugCheckers.cpp | 78 if (CFG *cfg = mgr.getCFG(D)) { in checkASTCodeBody() 98 if (CFG *cfg = mgr.getCFG(D)) { in checkASTCodeBody()
|
| /freebsd-9-stable/contrib/gcc/ |
| D | timevar.def | 50 /* Time spent by constructing CFG. */ 52 /* Time spent by cleaning up CFG. */ 54 DEFTIMEVAR (TV_CFG_VERIFY , "CFG verifier") 72 DEFTIMEVAR (TV_TREE_CFG , "tree CFG construction") 73 DEFTIMEVAR (TV_TREE_CLEANUP_CFG , "tree CFG cleanup")
|
| /freebsd-9-stable/contrib/gcc/doc/ |
| D | cfg.texi | 12 @cindex CFG, Control Flow Graph 15 A control flow graph (CFG) is a data structure built on top of the 18 being compiled. The CFG is a directed graph where the vertices 28 * Maintaining the CFG:: Keeping the control flow graph and up to date. 47 transparently by the provided API for manipulating the CFG@. The macro 446 not be easily integrated with the CFG manipulation API@. Many of the 447 functions and hooks to modify the CFG, such as 454 given to this issue in each pass that modifies the CFG@. 464 @node Maintaining the CFG 465 @section Maintaining the CFG [all …]
|
| /freebsd-9-stable/contrib/dialog/samples/copifuncs/ |
| D | copi.ifman2 | 127 open(CFG, $cfgfile) || die "Can't open ifmail config file"; 129 while (<CFG>) { 136 close(CFG);
|
| /freebsd-9-stable/contrib/ntp/include/ |
| D | mbg_gps166.h | 301 typedef uint16_t CFG; ///< an SV's 4 bit configuration code typedef 784 CFG cfg[N_SVNO_GPS]; ///< 4 bit SV configuration code from page 63 968 void get_mbg_cfg (unsigned char **, CFG *);
|