blob: 3380031e0200cb7b46711c8ba89050bb549bdfc3 [file] [log] [blame]
Ted Kremenekac9bea82009-11-12 06:17:47 +00001//=-- GRExprEngineExperimentalChecks.h ------------------------------*- C++ -*-=
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines functions to instantiate and register experimental
11// checks in GRExprEngine.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_CLANG_GREXPRENGINE_EXPERIMENTAL_CHECKS
16#define LLVM_CLANG_GREXPRENGINE_EXPERIMENTAL_CHECKS
17
18namespace clang {
19
20class GRExprEngine;
21
Tom Care52d861c2010-09-10 00:44:44 +000022void RegisterAnalyzerStatsChecker(GRExprEngine &Eng);
Zhongxing Xu1c9e6b12010-10-10 05:45:30 +000023void RegisterChrootChecker(GRExprEngine &Eng);
Jordy Roseccbf7ee2010-07-06 23:11:01 +000024void RegisterCStringChecker(GRExprEngine &Eng);
Tom Care1fafd1d2010-08-06 22:23:07 +000025void RegisterIdempotentOperationChecker(GRExprEngine &Eng);
Zhongxing Xu7b760962009-11-13 07:25:27 +000026void RegisterMallocChecker(GRExprEngine &Eng);
Tom Carec4b5bd82010-07-23 23:04:53 +000027void RegisterPthreadLockChecker(GRExprEngine &Eng);
Zhongxing Xuc1960952010-06-16 05:38:05 +000028void RegisterStreamChecker(GRExprEngine &Eng);
Tom Carec4b5bd82010-07-23 23:04:53 +000029void RegisterUnreachableCodeChecker(GRExprEngine &Eng);
Ted Kremenekac9bea82009-11-12 06:17:47 +000030
31} // end clang namespace
32#endif