| /netbsd-src/sys/arch/hpc/stand/dspgen/ |
| H A D | gen_template.sh | 91 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 $DEBUG_VER\"" >> $TEMPLATE 144 echo "# Name \"$CFG $RELEASE_VER\"" >> $TEMPLATE 183 CFG="%%% NAME %%% - $ARCH_CFG" [all …]
|
| /netbsd-src/external/gpl2/xcvs/dist/diff/ |
| H A D | libdiff.mak | 2 !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)" == "libdiff - Win32 Release" || "$(CFG)" == "libdiff - Win32 Debug" 312 !IF "$(CFG)" == "libdiff - Win32 Release" [all …]
|
| H A D | libdiff.dsp | 7 CFG=libdiff - Win32 Debug 14 !MESSAGE by defining the macro CFG on the command line. For example: 16 !MESSAGE NMAKE /f "libdiff.mak" CFG="libdiff - Win32 Debug" 31 !IF "$(CFG)" == "libdiff - Win32 Release" 54 !ELSEIF "$(CFG)" == "libdiff - Win32 Debug"
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Analysis/ |
| H A D | AnalysisDeclContext.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; } in getCFGBuildOptions() 112 const CFG::BuildOptions &getCFGBuildOptions() const { in getCFGBuildOptions() 152 CFG *getCFG(); 159 CFG *getUnoptimizedCFG(); 247 CFG *getCFG() const { return Ctx->getCFG(); } in getCFG() 425 CFG::BuildOptions cfgBuildOptions; [all …]
|
| H A D | CFG.h | 41 class CFG; variable 857 CFG *Parent; 860 explicit CFGBlock(unsigned blockid, BumpVectorContext &C, CFG *parent) in CFGBlock() 1076 CFG *getParent() const { return Parent; } in getParent() 1080 void dump(const CFG *cfg, const LangOptions &LO, bool ShowColors = false) const; 1081 void print(raw_ostream &OS, const CFG* cfg, const LangOptions &LO, 1225 class CFG { 1274 static std::unique_ptr<CFG> buildCFG(const Decl *D, Stmt *AST, ASTContext *C, 1431 CFG() : Blocks(BlkBVC, 10) {} in CFG() function 1539 template <> struct GraphTraits< ::clang::CFG* > [all …]
|
| /netbsd-src/sys/arch/mips/bonito/ |
| H A D | bonitoreg.h | 408 #define BONITO_PCIMEMBASECFG_SIZE(WIN,CFG) (((((~(CFG)) & BONITO_PCIMEMBASECFG_MEMBASE##WIN##_MASK)… argument 410 #define BONITO_PCIMEMBASECFG_ADDRMASK(WIN,CFG) ((((CFG) & BONITO_PCIMEMBASECFG_MEMBASE##WIN##_MASK)… argument 411 #define BONITO_PCIMEMBASECFG_ADDRMASK(WIN,CFG) ((((CFG) & BONITO_PCIMEMBASECFG_MEMBASE##WIN##_MASK)… argument 412 #define BONITO_PCIMEMBASECFG_ADDRTRANS(WIN,CFG) ((((CFG) & BONITO_PCIMEMBASECFG_MEMBASE##WIN##_TRAN… argument 414 #define BONITO_PCITOPHYS(WIN,ADDR,CFG) ( \ argument 415 (((ADDR) & (~(BONITO_PCIMEMBASECFG_MASK))) & (~(BONITO_PCIMEMBASECFG_ADDRMASK(WIN,CFG)))) | \ 416 (BONITO_PCIMEMBASECFG_ADDRTRANS(WIN,CFG)) \
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/ |
| H A D | cfg-flags.def | 120 This flag is only used for the RTL CFG. */ 125 EH edges also have ABNORMAL set for the RTL CFG. */ 130 This flag is only used for the RTL CFG. */ 133 /* Not a real edge. This is used to connect parts of the CFG that do 135 EXIT_BLOCK, so that traversing of the reverse CFG is possible. */ 138 /* A back edge, marked in a depth-first search of the CFG. Back edges 139 are hints that this edge may be part of a loop in the CFG. */ 142 /* Edge in a part of the CFG that is an irreducible loop. */ 146 This is only used for the GIMPLE CFG. */ 150 This is only used for the GIMPLE CFG. */ [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/ |
| H A D | cfg-flags.def | 120 This flag is only used for the RTL CFG. */ 125 EH edges also have ABNORMAL set for the RTL CFG. */ 130 This flag is only used for the RTL CFG. */ 133 /* Not a real edge. This is used to connect parts of the CFG that do 135 EXIT_BLOCK, so that traversing of the reverse CFG is possible. */ 138 /* A back edge, marked in a depth-first search of the CFG. Back edges 139 are hints that this edge may be part of a loop in the CFG. */ 142 /* Edge in a part of the CFG that is an irreducible loop. */ 146 This is only used for the GIMPLE CFG. */ 150 This is only used for the GIMPLE CFG. */ [all …]
|
| /netbsd-src/external/gpl2/xcvs/dist/lib/ |
| H A D | libcvs.mak | 2 !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)" == "libcvs - Win32 Release" || "$(CFG)" == "libcvs - Win32 Debug" 691 !IF "$(CFG)" == "libcvs - Win32 Release" [all …]
|
| H A D | libcvs.dsp | 7 CFG=libcvs - Win32 Debug 14 !MESSAGE by defining the macro CFG on the command line. For example: 16 !MESSAGE NMAKE /f "libcvs.mak" CFG="libcvs - Win32 Debug" 31 !IF "$(CFG)" == "libcvs - Win32 Release" 54 !ELSEIF "$(CFG)" == "libcvs - Win32 Debug" 330 !IF "$(CFG)" == "libcvs - Win32 Release" 340 !ELSEIF "$(CFG)" == "libcvs - Win32 Debug" 413 !IF "$(CFG)" == "libcvs - Win32 Release" 423 !ELSEIF "$(CFG)" == "libcvs - Win32 Debug" 472 !IF "$(CFG)" == "libcvs - Win32 Release" [all …]
|
| H A D | libcvs.dep | 525 !IF "$(CFG)" == "libcvs - Win32 Release" 527 !ELSEIF "$(CFG)" == "libcvs - Win32 Debug" 531 !IF "$(CFG)" == "libcvs - Win32 Release" 533 !ELSEIF "$(CFG)" == "libcvs - Win32 Debug" 537 !IF "$(CFG)" == "libcvs - Win32 Release" 539 !ELSEIF "$(CFG)" == "libcvs - Win32 Debug" 543 !IF "$(CFG)" == "libcvs - Win32 Release" 545 !ELSEIF "$(CFG)" == "libcvs - Win32 Debug"
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/ |
| H A D | Dominators.h | 50 CFGDominatorTreeImpl(CFG *cfg) { in CFGDominatorTreeImpl() 58 CFG *getCFG() { return cfg; } in getCFG() 87 void buildDominatorTree(CFG *cfg) { in buildDominatorTree() 97 for (CFG::const_iterator I = cfg->begin(), in dump() 178 CFG *cfg; 226 ControlDependencyCalculator(CFG *cfg) 255 CFG *cfg = PostDomTree.getCFG();
|
| H A D | PostOrderCFGView.h | 47 CFGBlockSet(const CFG *G) : VisitedBlockIDs(G->getNumBlockIDs(), false) {} in CFGBlockSet() 73 using po_iterator = llvm::po_iterator<const CFG *, CFGBlockSet, true>; 85 PostOrderCFGView(const CFG *cfg);
|
| H A D | CFGReachabilityAnalysis.h | 23 class CFG; variable 39 CFGReverseBlockReachabilityAnalysis(const CFG &cfg);
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/ |
| H A D | VPlan.cpp | 250 VPBasicBlock::createEmptyBasicBlock(VPTransformState::CFGState &CFG) { in createEmptyBasicBlock() argument 253 BasicBlock *PrevBB = CFG.PrevBB; in createEmptyBasicBlock() 255 PrevBB->getParent(), CFG.LastBB); in createEmptyBasicBlock() 262 BasicBlock *PredBB = CFG.VPBB2IRBB[PredVPBB]; in createEmptyBasicBlock() 273 CFG.VPBBsToFix.push_back(PredVPBB); in createEmptyBasicBlock() 299 VPBasicBlock *PrevVPBB = State->CFG.PrevVPBB; in execute() 301 BasicBlock *NewBB = State->CFG.PrevBB; // Reuse it if possible. in execute() 316 NewBB = createEmptyBasicBlock(State->CFG); in execute() 322 Loop *L = State->LI->getLoopFor(State->CFG.LastBB); in execute() 324 State->CFG.PrevBB = NewBB; in execute() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/ |
| H A D | AnalysisDeclContext.cpp | 57 const CFG::BuildOptions &Options) in AnalysisDeclContext() 182 forcedBlkExprs = new CFG::BuildOptions::ForcedBlkExprs(); in registerForcedBlockExpression() 194 CFG::BuildOptions::ForcedBlkExprs::const_iterator itr = in getBlockForRegisteredExpression() 202 static void addParentsForSyntheticStmts(const CFG *TheCFG, ParentMap &PM) { in addParentsForSyntheticStmts() 206 for (CFG::synthetic_stmt_iterator I = TheCFG->synthetic_stmt_begin(), in addParentsForSyntheticStmts() 213 CFG *AnalysisDeclContext::getCFG() { in getCFG() 218 cfg = CFG::buildCFG(D, getBody(), &D->getASTContext(), cfgBuildOptions); in getCFG() 232 CFG *AnalysisDeclContext::getUnoptimizedCFG() { in getUnoptimizedCFG() 237 CFG::buildCFG(D, getBody(), &D->getASTContext(), cfgBuildOptions); in getUnoptimizedCFG() 255 if (CFG *c = getCFG()) { in getCFGStmtMap() [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/internal/ |
| H A D | parseoptions.d | 42 bool initConfigOptions(CFG)(ref CFG cfg, string cfgname) in initConfigOptions() argument 70 bool parseOptions(CFG)(ref CFG cfg, string opt) in parseOptions() argument 72 static if (is(typeof(__traits(getMember, CFG, "errorName")))) in parseOptions() 75 string errName = CFG.stringof; in parseOptions() 81 static if (is(typeof(__traits(getMember, CFG, "help")))) in parseOptions() 96 static foreach (field; __traits(allMembers, CFG)) in parseOptions()
|
| /netbsd-src/sys/arch/hpcmips/stand/dspgen/ |
| H A D | static_library_WCE_MIPS.tmpl | 7 CFG=%%% NAME %%% - Win32 (WCE MIPS) Debug 14 !MESSAGE by defining the macro CFG on the command line. For example: 16 !MESSAGE NMAKE /f "%%% NAME %%%.mak" CFG="%%% NAME %%% - Win32 (WCE MIPS) Debug" 31 !IF "$(CFG)" == "%%% NAME %%% - Win32 (WCE MIPS) Release" 53 !ELSEIF "$(CFG)" == "%%% NAME %%% - Win32 (WCE MIPS) Debug"
|
| H A D | static_library_WCE_MIPS.tmpl.evc3 | 7 CFG=%%% NAME %%% - Win32 (WCE MIPS) Debug 14 !MESSAGE by defining the macro CFG on the command line. For example: 16 !MESSAGE NMAKE /f "%%% NAME %%%.vcn" CFG="%%% NAME %%% - Win32 (WCE MIPS) Debug" 31 !IF "$(CFG)" == "%%% NAME %%% - Win32 (WCE MIPS) Release" 53 !ELSEIF "$(CFG)" == "%%% NAME %%% - Win32 (WCE MIPS) Debug"
|
| H A D | application_WCE_MIPS.tmpl.evc3 | 7 CFG=%%% NAME %%% - Win32 (WCE MIPS) Debug 14 !MESSAGE by defining the macro CFG on the command line. For example: 16 !MESSAGE NMAKE /f "%%% NAME %%%.vcn" CFG="%%% NAME %%% - Win32 (WCE MIPS) Debug" 33 !IF "$(CFG)" == "%%% NAME %%% - Win32 (WCE MIPS) Release" 64 !ELSEIF "$(CFG)" == "%%% NAME %%% - Win32 (WCE MIPS) Debug"
|
| H A D | application_WCE_MIPS.tmpl | 7 CFG=pbsdboot - Win32 (WCE MIPS) Debug 14 !MESSAGE by defining the macro CFG on the command line. For example: 16 !MESSAGE NMAKE /f "pbsdboot.mak" CFG="pbsdboot - Win32 (WCE MIPS) Debug" 33 !IF "$(CFG)" == "pbsdboot - Win32 (WCE MIPS) Release" 64 !ELSEIF "$(CFG)" == "pbsdboot - Win32 (WCE MIPS) Debug"
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Analysis/FlowSensitive/ |
| H A D | DataflowWorklist.h | 30 DataflowWorklistBase(const CFG &Cfg, PostOrderCFGView *POV, Comp C) in DataflowWorklistBase() 64 ForwardDataflowWorklist(const CFG &Cfg, AnalysisDeclContext &Ctx) in ForwardDataflowWorklist() 81 BackwardDataflowWorklist(const CFG &Cfg, AnalysisDeclContext &Ctx) in BackwardDataflowWorklist()
|
| /netbsd-src/sys/arch/hpcmips/stand/libz/ |
| H A D | libz.dsp | 7 CFG=libz - Win32 (WCE MIPS) Debug 14 !MESSAGE by defining the macro CFG on the command line. For example: 16 !MESSAGE NMAKE /f "libz.mak" CFG="libz - Win32 (WCE MIPS) Debug" 31 !IF "$(CFG)" == "libz - Win32 (WCE MIPS) Release" 53 !ELSEIF "$(CFG)" == "libz - Win32 (WCE MIPS) Debug"
|
| /netbsd-src/sys/arch/hpcmips/stand/libsa/ |
| H A D | libsa.dsp | 7 CFG=libsa - Win32 (WCE MIPS) Debug 14 !MESSAGE by defining the macro CFG on the command line. For example: 16 !MESSAGE NMAKE /f "libsa.mak" CFG="libsa - Win32 (WCE MIPS) Debug" 31 !IF "$(CFG)" == "libsa - Win32 (WCE MIPS) Release" 53 !ELSEIF "$(CFG)" == "libsa - Win32 (WCE MIPS) Debug"
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Passes/ |
| H A D | StandardInstrumentations.h | 126 struct CFG { struct 130 CFG(const Function *F, bool TrackBBLifetime); argument 132 bool operator==(const CFG &G) const { 142 static void printDiff(raw_ostream &out, const CFG &Before, argument 143 const CFG &After);
|