HomeSort by relevance Sort by last modified time
    Searched refs:CFG (Results 1 - 25 of 48) sorted by null

1 2

  /external/clang/include/clang/Analysis/Analyses/
CFGReachabilityAnalysis.h 12 // is reachable within the CFG.
24 class CFG;
38 CFGReverseBlockReachabilityAnalysis(const CFG &cfg);
PostOrderCFGView.h 1 //===- 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;
81 PostOrderCFGView(const CFG *cfg);
UninitializedValues.h 23 class CFG;
101 void runUninitializedVariablesAnalysis(const DeclContext &dc, const CFG &cfg,
  /external/clang/include/clang/Analysis/
CFGStmtMap.h 18 #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);
AnalysisContext.h 20 #include "clang/Analysis/CFG.h"
77 OwningPtr<CFG> cfg, completeCFG; member in class:clang::AnalysisDeclContext
80 CFG::BuildOptions cfgBuildOptions;
81 CFG::BuildOptions::ForcedBlkExprs *forcedBlkExprs;
103 const CFG::BuildOptions &BuildOptions);
110 /// Return the build options used to construct the CFG.
111 CFG::BuildOptions &getCFGBuildOptions() {
115 const CFG::BuildOptions &getCFGBuildOptions() const {
121 /// reachable from them can appear to be dead in the CFG, analysis passes mus
    [all...]
CFG.h 1 //===--- CFG.h - Classes for representing and building CFGs------*- C++ -*-===//
10 // This file defines the CFG and CFGBuilder classes for representing and
41 class CFG;
243 /// CFGBlock - Represents a single basic block in a source-level CFG.
328 /// of the CFG.
332 /// CFG blocks.
348 /// Parent - The parent CFG that owns this CFGBlock.
349 CFG *Parent;
352 explicit CFGBlock(unsigned blockid, BumpVectorContext &C, CFG *parent)
382 // CFG iterator
    [all...]
  /external/icu4c/extra/uconv/
makedata.mak 12 !IF "$(CFG)" == ""
13 CFG=Debug
18 !IF "$(CFG)" != "Release" && "$(CFG)" != "release" && "$(CFG)" != "Debug" && "$(CFG)" != "debug" && "$(CFG)" != "x86\Release" && "$(CFG)" != "x86\Debug" && "$(CFG)" != "x64\Release" && "$(CFG)" != "x64\Debug
    [all...]
  /external/icu4c/test/testdata/
testdata.mak 80 @"$(ICUTOOLS)\genrb\$(CFG)\genrb" -q -s"$(TESTDATA)" -d"$(TESTDATABLD)" $<
84 @"$(ICUTOOLS)\genrb\$(CFG)\genrb" -s"$(TESTDATA)" -eISCII,version=0 -d"$(TESTDATABLD)" iscii.bin
88 @"$(ICUTOOLS)\genrb\$(CFG)\genrb" -s"$(TESTDATA)" -d"$(TESTDATABLD)" idna_rules.txt
91 "$(TESTDATABLD)\test.icu" : {"$(ICUTOOLS)\gentest\$(CFG)"}gentest.exe
92 "$(ICUTOOLS)\gentest\$(CFG)\gentest" -d"$(TESTDATABLD)"
95 "$(TESTDATABLD)\testtable32.txt" : {"$(ICUTOOLS)\gentest\$(CFG)"}gentest.exe
96 "$(ICUTOOLS)\gentest\$(CFG)\gentest" -r -d"$(TESTDATABLD)"
99 "$(ICUTOOLS)\genrb\$(CFG)\genrb" -s"$(TESTDATABLD)" -d"$(TESTDATABLD)" testtable32.txt
102 "$(TESTDATABLD)\nfscsi.spp" : {"$(ICUTOOLS)\gensprep\$(CFG)"}gensprep.exe "$(TESTDATA)\nfs4_cs_prep_ci.txt"
104 @"$(ICUTOOLS)\gensprep\$(CFG)\gensprep" -s "$(TESTDATA)" -d "$(TESTDATABLD)\\" -b nfscsi -u 3.2.0 nfs4_cs_prep_ci.tx
    [all...]
  /external/quake/quake/src/QW/client/
qwcl.mak 6 !IF "$(CFG)" == ""
7 CFG=qwcl - Win32 GL Debug
11 !IF "$(CFG)" != "qwcl - Win32 Release" && "$(CFG)" != "qwcl - Win32 Debug" &&\
12 "$(CFG)" != "qwcl - Win32 GL Debug" && "$(CFG)" != "qwcl - Win32 GL Release"
13 !MESSAGE Invalid configuration "$(CFG)" specified.
15 !MESSAGE by defining the macro CFG on the command line. For example:
17 !MESSAGE NMAKE /f "qwcl.mak" CFG="qwcl - Win32 GL Debug"
41 !IF "$(CFG)" == "qwcl - Win32 Release"
    [all...]
  /external/clang/include/clang/Analysis/FlowSensitive/
DataflowSolver.h 17 #include "clang/Analysis/CFG.h"
151 /// runOnCFG - Computes dataflow values for all blocks in a CFG.
152 void runOnCFG(CFG& cfg, bool recordStmtValues = false) {
154 D.InitializeValues(cfg);
157 SolveDataflowEquations(cfg, recordStmtValues);
178 void runOnBlock(CFG::iterator &I, bool recordStmtValues) {
181 void runOnBlock(CFG::const_iterator &I, bool recordStmtValues) {
185 void runOnAllBlocks(const CFG& cfg, bool recordStmtValues = false)
    [all...]
  /external/clang/lib/Analysis/
CFGStmtMap.cpp 17 #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)
PostOrderCFGView.cpp 1 //===- 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) {
21 Blocks.reserve(cfg->getNumBlockIDs());
22 CFGBlockSet BSet(cfg);
24 for (po_iterator I = po_iterator::begin(cfg, BSet),
25 E = po_iterator::end(cfg, BSet); I != E; ++I) {
32 const CFG *cfg = ctx.getCFG() local
    [all...]
Android.mk 20 CFG.cpp \
AnalysisDeclContext.cpp 25 #include "clang/Analysis/CFG.h"
38 const CFG::BuildOptions &buildOptions)
112 forcedBlkExprs = new CFG::BuildOptions::ForcedBlkExprs();
124 CFG::BuildOptions::ForcedBlkExprs::const_iterator itr =
130 CFG *AnalysisDeclContext::getCFG() {
135 cfg.reset(CFG::buildCFG(D, getBody(),
137 // Even when the cfg is not successfully built, we don't
141 return cfg.get();
144 CFG *AnalysisDeclContext::getUnoptimizedCFG()
    [all...]
  /bionic/libc/kernel/arch-mips/asm/mips-boards/
bonito64.h 354 #define BONITO_PCIMEMBASECFG_SIZE(WIN, CFG) (((((~(CFG)) & BONITO_PCIMEMBASECFG_MEMBASE##WIN##_MASK)) << (BONITO_PCIMEMBASECFG_ASHIFT - BONITO_PCIMEMBASECFG_MEMBASE##WIN##_MASK_SHIFT)) | BONITO_PCIMEMBASECFG_AMASK)
355 #define BONITO_PCIMEMBASECFG_ADDRMASK(WIN, CFG) ((((CFG) & BONITO_PCIMEMBASECFG_MEMBASE##WIN##_MASK) >> BONITO_PCIMEMBASECFG_MEMBASE##WIN##_MASK_SHIFT) << BONITO_PCIMEMBASECFG_ASHIFT)
356 #define BONITO_PCIMEMBASECFG_ADDRMASK(WIN, CFG) ((((CFG) & BONITO_PCIMEMBASECFG_MEMBASE##WIN##_MASK) >> BONITO_PCIMEMBASECFG_MEMBASE##WIN##_MASK_SHIFT) << BONITO_PCIMEMBASECFG_ASHIFT)
357 #define BONITO_PCIMEMBASECFG_ADDRTRANS(WIN, CFG) ((((CFG) & BONITO_PCIMEMBASECFG_MEMBASE##WIN##_TRANS) >> BONITO_PCIMEMBASECFG_MEMBASE##WIN##_TRANS_SHIFT) << BONITO_PCIMEMBASECFG_ASHIFT)
359 #define BONITO_PCITOPHYS(WIN, ADDR, CFG) ( (((ADDR) & (~(BONITO_PCIMEMBASECFG_MASK))) & (~(BONITO_PCIMEMBASECFG_ADDRMASK(WIN, CFG)))) | (BONITO_PCIMEMBASECFG_ADDRTRANS(WIN, CFG))
    [all...]
  /development/ndk/platforms/android-9/arch-mips/include/asm/mips-boards/
bonito64.h 354 #define BONITO_PCIMEMBASECFG_SIZE(WIN, CFG) (((((~(CFG)) & BONITO_PCIMEMBASECFG_MEMBASE##WIN##_MASK)) << (BONITO_PCIMEMBASECFG_ASHIFT - BONITO_PCIMEMBASECFG_MEMBASE##WIN##_MASK_SHIFT)) | BONITO_PCIMEMBASECFG_AMASK)
355 #define BONITO_PCIMEMBASECFG_ADDRMASK(WIN, CFG) ((((CFG) & BONITO_PCIMEMBASECFG_MEMBASE##WIN##_MASK) >> BONITO_PCIMEMBASECFG_MEMBASE##WIN##_MASK_SHIFT) << BONITO_PCIMEMBASECFG_ASHIFT)
356 #define BONITO_PCIMEMBASECFG_ADDRMASK(WIN, CFG) ((((CFG) & BONITO_PCIMEMBASECFG_MEMBASE##WIN##_MASK) >> BONITO_PCIMEMBASECFG_MEMBASE##WIN##_MASK_SHIFT) << BONITO_PCIMEMBASECFG_ASHIFT)
357 #define BONITO_PCIMEMBASECFG_ADDRTRANS(WIN, CFG) ((((CFG) & BONITO_PCIMEMBASECFG_MEMBASE##WIN##_TRANS) >> BONITO_PCIMEMBASECFG_MEMBASE##WIN##_TRANS_SHIFT) << BONITO_PCIMEMBASECFG_ASHIFT)
359 #define BONITO_PCITOPHYS(WIN, ADDR, CFG) ( (((ADDR) & (~(BONITO_PCIMEMBASECFG_MASK))) & (~(BONITO_PCIMEMBASECFG_ADDRMASK(WIN, CFG)))) | (BONITO_PCIMEMBASECFG_ADDRTRANS(WIN, CFG))
    [all...]
  /external/kernel-headers/original/asm-mips/mips-boards/
bonito64.h 418 #define BONITO_PCIMEMBASECFG_SIZE(WIN, CFG) (((((~(CFG)) & BONITO_PCIMEMBASECFG_MEMBASE##WIN##_MASK)) << (BONITO_PCIMEMBASECFG_ASHIFT - BONITO_PCIMEMBASECFG_MEMBASE##WIN##_MASK_SHIFT)) | BONITO_PCIMEMBASECFG_AMASK)
421 #define BONITO_PCIMEMBASECFG_ADDRMASK(WIN, CFG) ((((CFG) & BONITO_PCIMEMBASECFG_MEMBASE##WIN##_MASK) >> BONITO_PCIMEMBASECFG_MEMBASE##WIN##_MASK_SHIFT) << BONITO_PCIMEMBASECFG_ASHIFT)
422 #define BONITO_PCIMEMBASECFG_ADDRMASK(WIN, CFG) ((((CFG) & BONITO_PCIMEMBASECFG_MEMBASE##WIN##_MASK) >> BONITO_PCIMEMBASECFG_MEMBASE##WIN##_MASK_SHIFT) << BONITO_PCIMEMBASECFG_ASHIFT)
423 #define BONITO_PCIMEMBASECFG_ADDRTRANS(WIN, CFG) ((((CFG) & BONITO_PCIMEMBASECFG_MEMBASE##WIN##_TRANS) >> BONITO_PCIMEMBASECFG_MEMBASE##WIN##_TRANS_SHIFT) << BONITO_PCIMEMBASECFG_ASHIFT)
425 #define BONITO_PCITOPHYS(WIN, ADDR, CFG) ( \
426 (((ADDR) & (~(BONITO_PCIMEMBASECFG_MASK))) & (~(BONITO_PCIMEMBASECFG_ADDRMASK(WIN, CFG)))) | \
    [all...]
  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/asm/mips-boards/
bonito64.h 354 #define BONITO_PCIMEMBASECFG_SIZE(WIN, CFG) (((((~(CFG)) & BONITO_PCIMEMBASECFG_MEMBASE##WIN##_MASK)) << (BONITO_PCIMEMBASECFG_ASHIFT - BONITO_PCIMEMBASECFG_MEMBASE##WIN##_MASK_SHIFT)) | BONITO_PCIMEMBASECFG_AMASK)
355 #define BONITO_PCIMEMBASECFG_ADDRMASK(WIN, CFG) ((((CFG) & BONITO_PCIMEMBASECFG_MEMBASE##WIN##_MASK) >> BONITO_PCIMEMBASECFG_MEMBASE##WIN##_MASK_SHIFT) << BONITO_PCIMEMBASECFG_ASHIFT)
356 #define BONITO_PCIMEMBASECFG_ADDRMASK(WIN, CFG) ((((CFG) & BONITO_PCIMEMBASECFG_MEMBASE##WIN##_MASK) >> BONITO_PCIMEMBASECFG_MEMBASE##WIN##_MASK_SHIFT) << BONITO_PCIMEMBASECFG_ASHIFT)
357 #define BONITO_PCIMEMBASECFG_ADDRTRANS(WIN, CFG) ((((CFG) & BONITO_PCIMEMBASECFG_MEMBASE##WIN##_TRANS) >> BONITO_PCIMEMBASECFG_MEMBASE##WIN##_TRANS_SHIFT) << BONITO_PCIMEMBASECFG_ASHIFT)
359 #define BONITO_PCITOPHYS(WIN, ADDR, CFG) ( (((ADDR) & (~(BONITO_PCIMEMBASECFG_MASK))) & (~(BONITO_PCIMEMBASECFG_ADDRMASK(WIN, CFG)))) | (BONITO_PCIMEMBASECFG_ADDRTRANS(WIN, CFG))
    [all...]
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/asm/mips-boards/
bonito64.h 354 #define BONITO_PCIMEMBASECFG_SIZE(WIN, CFG) (((((~(CFG)) & BONITO_PCIMEMBASECFG_MEMBASE##WIN##_MASK)) << (BONITO_PCIMEMBASECFG_ASHIFT - BONITO_PCIMEMBASECFG_MEMBASE##WIN##_MASK_SHIFT)) | BONITO_PCIMEMBASECFG_AMASK)
355 #define BONITO_PCIMEMBASECFG_ADDRMASK(WIN, CFG) ((((CFG) & BONITO_PCIMEMBASECFG_MEMBASE##WIN##_MASK) >> BONITO_PCIMEMBASECFG_MEMBASE##WIN##_MASK_SHIFT) << BONITO_PCIMEMBASECFG_ASHIFT)
356 #define BONITO_PCIMEMBASECFG_ADDRMASK(WIN, CFG) ((((CFG) & BONITO_PCIMEMBASECFG_MEMBASE##WIN##_MASK) >> BONITO_PCIMEMBASECFG_MEMBASE##WIN##_MASK_SHIFT) << BONITO_PCIMEMBASECFG_ASHIFT)
357 #define BONITO_PCIMEMBASECFG_ADDRTRANS(WIN, CFG) ((((CFG) & BONITO_PCIMEMBASECFG_MEMBASE##WIN##_TRANS) >> BONITO_PCIMEMBASECFG_MEMBASE##WIN##_TRANS_SHIFT) << BONITO_PCIMEMBASECFG_ASHIFT)
359 #define BONITO_PCITOPHYS(WIN, ADDR, CFG) ( (((ADDR) & (~(BONITO_PCIMEMBASECFG_MASK))) & (~(BONITO_PCIMEMBASECFG_ADDRMASK(WIN, CFG)))) | (BONITO_PCIMEMBASECFG_ADDRTRANS(WIN, CFG))
    [all...]
  /external/quake/quake/src/QW/server/
qwsv.mak 6 !IF "$(CFG)" == ""
7 CFG=qwsv - Win32 Debug
11 !IF "$(CFG)" != "qwsv - Win32 Release" && "$(CFG)" != "qwsv - Win32 Debug"
12 !MESSAGE Invalid configuration "$(CFG)" specified.
14 !MESSAGE by defining the macro CFG on the command line. For example:
16 !MESSAGE NMAKE /f "qwsv.mak" CFG="qwsv - Win32 Debug"
37 !IF "$(CFG)" == "qwsv - Win32 Release"
137 !ELSEIF "$(CFG)" == "qwsv - Win32 Debug"
320 !IF "$(CFG)" == "qwsv - Win32 Release"
    [all...]
  /external/quake/quake/src/QW/gas2masm/
gas2masm.mak 6 !IF "$(CFG)" == ""
7 CFG=gas2masm - Win32 Debug
11 !IF "$(CFG)" != "gas2masm - Win32 Release" && "$(CFG)" !=\
13 !MESSAGE Invalid configuration "$(CFG)" specified.
15 !MESSAGE by defining the macro CFG on the command line. For example:
17 !MESSAGE NMAKE /f "gas2masm.mak" CFG="gas2masm - Win32 Debug"
39 !IF "$(CFG)" == "gas2masm - Win32 Release"
92 !ELSEIF "$(CFG)" == "gas2masm - Win32 Debug"
176 !IF "$(CFG)" == "gas2masm - Win32 Release"
    [all...]
  /external/icu4c/data/
makedata.mak 120 !IF "$(CFG)" == "x64\Release" || "$(CFG)" == "x64\Debug"
150 !IF "$(CFG)" == "x64\Release" || "$(CFG)" == "x64\Debug"
491 # C:\svn\icuproj\icu\trunk\source\data>nmake -f makedata.mak ICUMAKE=C:\svn\icuproj\icu\trunk\source\data\ CFG=x86\Debug uni-core-data
524 "$(ICUOUT)\icu4j\src\$(DEBUGUTILITIESDATA_DIR)\$(DEBUGUTILITIESDATA_SRC)" : {"$(ICUTOOLS)\gentest\$(CFG)"}gentest.exe
526 "$(ICUTOOLS)\gentest\$(CFG)\gentest" -j -d"$(ICUOUT)\icu4j\src\$(DEBUGUTILITIESDATA_DIR)"
566 "$(TESTDATAOUT)\testdata.dat": "$(TESTDATA)\*" "$(ICUBLD_PKG)\$(ICUCOL)\ucadata.icu" $(TRANSLIT_RES_FILES) $(MISC_FILES) $(RB_FILES) {"$(ICUTOOLS)\genrb\$(CFG)"}genrb.exe
569 nmake /nologo /f "$(TESTDATA)\testdata.mak" TESTDATA=. ICUTOOLS="$(ICUTOOLS)" ICUPBIN="$(ICUPBIN)" ICUP="$(ICUP)" CFG=$(CFG) TESTDATAOUT="$(TESTDATAOUT)" TESTDATABLD="$(TESTDATABLD)
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
AnalyzerStatsChecker.cpp 44 const CFG *C = 0;
69 // Get the CFG and the Decl of this block.
75 for (CFG::const_iterator I = C->begin(); I != C->end(); ++I) {
DeadStoresChecker.cpp 70 const CFG &cfg; member in class:__anon5416::ReachableCode
73 ReachableCode(const CFG &cfg)
74 : cfg(cfg), reachable(cfg.getNumBlockIDs(), false) {}
85 if (!cfg.getNumBlockIDs())
89 worklist.push_back(&cfg.getEntry());
122 const CFG &cfg member in class:__anon5417::DeadStoreObs
390 CFG *cfg; member in class:__anon5418::FindEscaped
424 CFG &cfg = *mgr.getCFG(D); local
    [all...]
DebugCheckers.cpp 76 if (CFG *cfg = mgr.getCFG(D)) {
77 cfg->viewCFG(mgr.getLangOpts());
96 if (CFG *cfg = mgr.getCFG(D)) {
97 cfg->dump(mgr.getLangOpts(),

Completed in 1477 milliseconds

1 2