HomeSort by relevance Sort by last modified time
    Searched refs:CFG (Results 1 - 25 of 49) 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 24 class CFG;
102 void runUninitializedVariablesAnalysis(const DeclContext &dc, const CFG &cfg,
LiveVariables.h 24 class CFG;
74 /// Compute the liveness information for a given 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;
100 const CFG::BuildOptions &BuildOptions);
113 /// Return the build options used to construct the CFG.
114 CFG::BuildOptions &getCFGBuildOptions() {
118 const CFG::BuildOptions &getCFGBuildOptions() const {
124 /// 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
42 class CFG;
275 /// CFGBlock - Represents a single basic block in a source-level CFG.
360 /// of the CFG.
364 /// CFG blocks.
380 /// Parent - The parent CFG that owns this CFGBlock.
381 CFG *Parent;
384 explicit CFGBlock(unsigned blockid, BumpVectorContext &C, CFG *parent)
414 // 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 81 @"$(ICUTOOLS)\genrb\$(CFG)\genrb" -q -s"$(TESTDATA)" -d"$(TESTDATABLD)" $<
85 @"$(ICUTOOLS)\genrb\$(CFG)\genrb" -s"$(TESTDATA)" -eISCII,version=0 -d"$(TESTDATABLD)" iscii.bin
89 @"$(ICUTOOLS)\genrb\$(CFG)\genrb" -s"$(TESTDATA)" -d"$(TESTDATABLD)" idna_rules.txt
92 "$(TESTDATABLD)\test.icu" : {"$(ICUTOOLS)\gentest\$(CFG)"}gentest.exe
93 "$(ICUTOOLS)\gentest\$(CFG)\gentest" -d"$(TESTDATABLD)"
96 "$(TESTDATABLD)\testtable32.txt" : {"$(ICUTOOLS)\gentest\$(CFG)"}gentest.exe
97 "$(ICUTOOLS)\gentest\$(CFG)\gentest" -r -d"$(TESTDATABLD)"
100 "$(ICUTOOLS)\genrb\$(CFG)\genrb" -s"$(TESTDATABLD)" -d"$(TESTDATABLD)" testtable32.txt
103 "$(TESTDATABLD)\nfscsi.spp" : {"$(ICUTOOLS)\gensprep\$(CFG)"}gensprep.exe "$(TESTDATA)\nfs4_cs_prep_ci.txt"
105 @"$(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 18 #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 22 CFG.cpp \
  /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/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 69 const CFG &cfg; member in class:__anon5976::ReachableCode
72 ReachableCode(const CFG &cfg)
73 : cfg(cfg), reachable(cfg.getNumBlockIDs(), false) {}
84 if (!cfg.getNumBlockIDs())
88 worklist.push_back(&cfg.getEntry());
121 const CFG &cfg member in class:__anon5977::DeadStoreObs
389 CFG *cfg; member in class:__anon5978::FindEscaped
432 CFG &cfg = *mgr.getCFG(D); local
    [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
535 "$(ICUOUT)\icu4j\src\$(DEBUGUTILITIESDATA_DIR)\$(DEBUGUTILITIESDATA_SRC)" : {"$(ICUTOOLS)\gentest\$(CFG)"}gentest.exe
537 "$(ICUTOOLS)\gentest\$(CFG)\gentest" -j -d"$(ICUOUT)\icu4j\src\$(DEBUGUTILITIESDATA_DIR)"
581 "$(TESTDATAOUT)\testdata.dat": "$(TESTDATA)\*" "$(ICUBLD_PKG)\$(ICUCOL)\ucadata.icu" $(TRANSLIT_RES_FILES) $(MISC_FILES) $(RB_FILES) {"$(ICUTOOLS)\genrb\$(CFG)"}genrb.exe
584 nmake /nologo /f "$(TESTDATA)\testdata.mak" TESTDATA=. ICUTOOLS="$(ICUTOOLS)" ICUPBIN="$(ICUPBIN)" ICUP="$(ICUP)" CFG=$(CFG) TESTDATAOUT="$(TESTDATAOUT)" TESTDATABLD="$(TESTDATABLD)
    [all...]
  /external/clang/include/clang/Analysis/Support/
BlkExprDeclBitVector.h 21 #include "clang/Analysis/CFG.h"
175 CFG* cfg; member in class:clang::StmtDeclBitVector_Types::AnalysisDataTy
177 AnalysisDataTy() : ctx(0), cfg(0) {}
186 void setCFG(CFG& c) { cfg = &c; }
187 CFG& getCFG() { assert(cfg && "CFG should not be NULL."); return *cfg; }
    [all...]

Completed in 790 milliseconds

1 2