Searched refs:checkers (Results 1 - 8 of 8) sorted by relevance

/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Target/
H A DThreadPlanCallUserExpression.cpp74 DynamicCheckerFunctions *checkers = m_thread.GetProcess()->GetDynamicCheckers(); local
77 if (checkers && checkers->DoCheckersExplainStop(addr, s))
/freebsd-10.0-release/usr.bin/dtc/
H A Dchecking.cc175 checkers.insert(std::make_pair(string(name),
184 checkers.insert(std::make_pair(string(name),
190 while (checkers.begin() != checkers.end())
192 delete checkers.begin()->second;
193 checkers.erase(checkers.begin());
219 for (std::map<string, checker*>::iterator i=checkers.begin(),
220 e=checkers.end() ; i!=e ; ++i)
234 std::map<string, checker*>::iterator checker = checkers
[all...]
H A Dchecking.hh45 * Base class for all checkers. This will visit the entire tree and perform
60 * and for enabling / disabling specific checkers from the command
113 * the matching name. To define simple property checkers, just subclass this
253 * The enabled checkers, indexed by their names. The name is used when
254 * disabling checkers from the command line. When this manager runs,
255 * it will only run the checkers from this map.
257 std::map<string, checker*> checkers; member in class:dtc::fdt::checking::check_manager
259 * The disabled checkers. Moving checkers to this list disables them,
280 * Delete all of the checkers tha
[all...]
/freebsd-10.0-release/contrib/llvm/tools/clang/utils/TableGen/
H A DClangSACheckersEmitter.cpp1 //=- ClangSACheckersEmitter.cpp - Generate Clang SA checkers tables -*- C++ -*-
10 // This tablegen backend emits Clang Static Analyzer checkers tables.
85 llvm::DenseSet<const Record *> &checkers = recordGroupMap[package]->Checkers; local
87 I = checkers.begin(), E = checkers.end(); I != E; ++I)
98 std::vector<Record*> checkers = Records.getAllDerivedDefinitions("Checker"); local
100 for (unsigned i = 0, e = checkers.size(); i != e; ++i)
101 checkerRecIndexMap[checkers[i]] = i;
103 // Invert the mapping of checkers to package/group into a one to many
104 // mapping of packages/groups to checkers
264 llvm::DenseSet<const Record *> &checkers = I->second.Checkers; local
[all...]
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DCheckerManager.cpp53 // Functions for running checkers for AST traversing..
61 CachedDeclCheckers *checkers = 0; local
64 checkers = &(CCI->second);
66 // Find the checkers that should run for this Decl and cache them.
67 checkers = &CachedDeclCheckersMap[DeclKind];
71 checkers->push_back(info.CheckFn);
75 assert(checkers);
77 I = checkers->begin(), E = checkers->end(); I != E; ++I)
90 // Functions for running checkers fo
147 CheckStmtContext(bool isPreVisit, const CheckersTy &checkers, const Stmt *s, ExprEngine &eng, bool wasInlined = false) argument
188 CheckObjCMessageContext(bool isPreVisit, const CheckersTy &checkers, const ObjCMethodCall &msg, ExprEngine &eng, bool wasInlined) argument
231 CheckCallContext(bool isPreVisit, const CheckersTy &checkers, const CallEvent &call, ExprEngine &eng, bool wasInlined) argument
274 CheckLocationContext(const CheckersTy &checkers, SVal loc, bool isLoad, const Stmt *NodeEx, const Stmt *BoundEx, ExprEngine &eng) argument
321 CheckBindContext(const CheckersTy &checkers, SVal loc, SVal val, const Stmt *s, ExprEngine &eng, const ProgramPoint &pp) argument
386 CheckBranchConditionContext(const CheckersTy &checkers, const Stmt *Cond, ExprEngine &eng) argument
430 CheckDeadSymbolsContext(const CheckersTy &checkers, SymbolReaper &sr, const Stmt *s, ExprEngine &eng, ProgramPoint::Kind K) argument
696 CachedStmtCheckers *checkers = 0; local
[all...]
H A DCheckerRegistry.cpp1 //===--- CheckerRegistry.cpp - Maintains all available checkers -*- C++ -*-===//
44 static void collectCheckers(const CheckerRegistry::CheckerInfoList &checkers, argument
49 CheckerRegistry::CheckerInfoList::const_iterator e = checkers.end();
51 std::lower_bound(checkers.begin(), e, packageInfo, checkerNameLT);
72 // Step through all the checkers in the package.
96 // Sort checkers for efficient collection.
99 // Collect checkers enabled by the options.
106 // Initialize the CheckerManager with all enabled checkers.
/freebsd-10.0-release/lib/clang/
H A Dclang.build.mk193 -gen-clang-sa-checkers -o ${.TARGET} \
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Frontend/
H A DCompilerInvocation.cpp240 SmallVector<StringRef, 4> checkers; local
241 checkerList.split(checkers, ",");
242 for (unsigned i = 0, e = checkers.size(); i != e; ++i)
243 Opts.CheckersControlList.push_back(std::make_pair(checkers[i], enable));

Completed in 148 milliseconds