Argyrios Kyrtzidis | d2592a3 | 2010-12-22 18:53:44 +0000 | [diff] [blame^] | 1 | //=-- ExprEngineExperimentalChecks.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 ExprEngine. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #ifndef LLVM_CLANG_GR_ExprEngine_EXPERIMENTAL_CHECKS |
| 16 | #define LLVM_CLANG_GR_ExprEngine_EXPERIMENTAL_CHECKS |
| 17 | |
| 18 | namespace clang { |
| 19 | |
| 20 | namespace GR { |
| 21 | |
| 22 | class ExprEngine; |
| 23 | |
| 24 | void RegisterAnalyzerStatsChecker(ExprEngine &Eng); |
| 25 | void RegisterChrootChecker(ExprEngine &Eng); |
| 26 | void RegisterCStringChecker(ExprEngine &Eng); |
| 27 | void RegisterIdempotentOperationChecker(ExprEngine &Eng); |
| 28 | void RegisterMallocChecker(ExprEngine &Eng); |
| 29 | void RegisterPthreadLockChecker(ExprEngine &Eng); |
| 30 | void RegisterStreamChecker(ExprEngine &Eng); |
| 31 | void RegisterUnreachableCodeChecker(ExprEngine &Eng); |
| 32 | |
| 33 | } // end GR namespace |
| 34 | |
| 35 | } // end clang namespace |
| 36 | |
| 37 | #endif |