blob: 7b5b0ed7ba00c5ecc91b01651caf6163e9dbbd6a [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);
Tom Care1fafd1d2010-08-06 22:23:07 +000023void RegisterIdempotentOperationChecker(GRExprEngine &Eng);
Zhongxing Xu7b760962009-11-13 07:25:27 +000024void RegisterMallocChecker(GRExprEngine &Eng);
Tom Carec4b5bd82010-07-23 23:04:53 +000025void RegisterPthreadLockChecker(GRExprEngine &Eng);
Zhongxing Xuc1960952010-06-16 05:38:05 +000026void RegisterStreamChecker(GRExprEngine &Eng);
Tom Carec4b5bd82010-07-23 23:04:53 +000027void RegisterUnreachableCodeChecker(GRExprEngine &Eng);
Ted Kremenekac9bea82009-11-12 06:17:47 +000028
29} // end clang namespace
30#endif