blob: 7d1eb77f9fd6e17d183b4f4469baab2083e1adb1 [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
Jordy Roseccbf7ee2010-07-06 23:11:01 +000022void RegisterCStringChecker(GRExprEngine &Eng);
Ted Kremenekac9bea82009-11-12 06:17:47 +000023void RegisterPthreadLockChecker(GRExprEngine &Eng);
Zhongxing Xu7b760962009-11-13 07:25:27 +000024void RegisterMallocChecker(GRExprEngine &Eng);
Zhongxing Xuc1960952010-06-16 05:38:05 +000025void RegisterStreamChecker(GRExprEngine &Eng);
Tom Caredb2fa8a2010-07-06 21:43:29 +000026void RegisterIdempotentOperationChecker(GRExprEngine &Eng);
Ted Kremenekac9bea82009-11-12 06:17:47 +000027
28} // end clang namespace
29#endif