Ted Kremenek | 1309f9a | 2010-01-25 04:41:41 +0000 | [diff] [blame] | 1 | set(LLVM_NO_RTTI 1) |
| 2 | |
Douglas Gregor | ec9bf47 | 2010-09-09 15:44:58 +0000 | [diff] [blame] | 3 | set(LLVM_USED_LIBS clangBasic clangLex clangAST clangFrontend clangRewrite) |
| 4 | |
Ted Kremenek | 1309f9a | 2010-01-25 04:41:41 +0000 | [diff] [blame] | 5 | add_clang_library(clangChecker |
Ted Kremenek | 40c37e1 | 2010-02-04 00:47:48 +0000 | [diff] [blame] | 6 | AdjustedReturnValueChecker.cpp |
Zhongxing Xu | 13b7639 | 2010-03-23 08:14:19 +0000 | [diff] [blame] | 7 | AggExprVisitor.cpp |
Daniel Dunbar | 9b414d3 | 2010-06-15 17:48:49 +0000 | [diff] [blame] | 8 | AnalysisConsumer.cpp |
Zhongxing Xu | c6238d2 | 2010-07-19 01:31:21 +0000 | [diff] [blame] | 9 | AnalysisManager.cpp |
Ted Kremenek | 1309f9a | 2010-01-25 04:41:41 +0000 | [diff] [blame] | 10 | ArrayBoundChecker.cpp |
| 11 | AttrNonNullChecker.cpp |
| 12 | BasicConstraintManager.cpp |
| 13 | BasicObjCFoundationChecks.cpp |
| 14 | BasicStore.cpp |
| 15 | BasicValueFactory.cpp |
| 16 | BugReporter.cpp |
| 17 | BugReporterVisitors.cpp |
| 18 | BuiltinFunctionChecker.cpp |
Ted Kremenek | 0a02e3e | 2010-07-06 22:03:19 +0000 | [diff] [blame] | 19 | CFRefCount.cpp |
Ted Kremenek | 1309f9a | 2010-01-25 04:41:41 +0000 | [diff] [blame] | 20 | CallAndMessageChecker.cpp |
Zhongxing Xu | ab28099 | 2010-05-25 04:59:19 +0000 | [diff] [blame] | 21 | CastSizeChecker.cpp |
Ted Kremenek | 1309f9a | 2010-01-25 04:41:41 +0000 | [diff] [blame] | 22 | CastToStructChecker.cpp |
| 23 | CheckDeadStores.cpp |
| 24 | CheckObjCDealloc.cpp |
| 25 | CheckObjCInstMethSignature.cpp |
Ted Kremenek | 1309f9a | 2010-01-25 04:41:41 +0000 | [diff] [blame] | 26 | CheckSecuritySyntaxOnly.cpp |
| 27 | CheckSizeofPointer.cpp |
Ted Kremenek | 0a02e3e | 2010-07-06 22:03:19 +0000 | [diff] [blame] | 28 | Checker.cpp |
Tom Care | a9fbf5b | 2010-07-27 23:26:07 +0000 | [diff] [blame] | 29 | CheckerHelpers.cpp |
Ted Kremenek | 145308f | 2010-01-27 06:14:12 +0000 | [diff] [blame] | 30 | CocoaConventions.cpp |
Jordy Rose | ccbf7ee | 2010-07-06 23:11:01 +0000 | [diff] [blame] | 31 | CStringChecker.cpp |
Ted Kremenek | 1309f9a | 2010-01-25 04:41:41 +0000 | [diff] [blame] | 32 | DereferenceChecker.cpp |
| 33 | DivZeroChecker.cpp |
| 34 | Environment.cpp |
| 35 | ExplodedGraph.cpp |
Ted Kremenek | 1309f9a | 2010-01-25 04:41:41 +0000 | [diff] [blame] | 36 | FixedAddressChecker.cpp |
Ted Kremenek | 40c37e1 | 2010-02-04 00:47:48 +0000 | [diff] [blame] | 37 | FlatStore.cpp |
Daniel Dunbar | 9b414d3 | 2010-06-15 17:48:49 +0000 | [diff] [blame] | 38 | FrontendActions.cpp |
Ted Kremenek | 1309f9a | 2010-01-25 04:41:41 +0000 | [diff] [blame] | 39 | GRBlockCounter.cpp |
Zhongxing Xu | cb7464a | 2010-04-19 12:51:02 +0000 | [diff] [blame] | 40 | GRCXXExprEngine.cpp |
Ted Kremenek | 0a02e3e | 2010-07-06 22:03:19 +0000 | [diff] [blame] | 41 | GRCoreEngine.cpp |
Ted Kremenek | 1309f9a | 2010-01-25 04:41:41 +0000 | [diff] [blame] | 42 | GRExprEngine.cpp |
| 43 | GRExprEngineExperimentalChecks.cpp |
| 44 | GRState.cpp |
Daniel Dunbar | 9b414d3 | 2010-06-15 17:48:49 +0000 | [diff] [blame] | 45 | HTMLDiagnostics.cpp |
Tom Care | db2fa8a | 2010-07-06 21:43:29 +0000 | [diff] [blame] | 46 | IdempotentOperationChecker.cpp |
Ted Kremenek | 6dd66ed | 2010-02-14 02:45:18 +0000 | [diff] [blame] | 47 | LLVMConventionsChecker.cpp |
Ted Kremenek | df61b58 | 2010-02-25 05:44:09 +0000 | [diff] [blame] | 48 | MacOSXAPIChecker.cpp |
Ted Kremenek | 1309f9a | 2010-01-25 04:41:41 +0000 | [diff] [blame] | 49 | MallocChecker.cpp |
| 50 | ManagerRegistry.cpp |
| 51 | MemRegion.cpp |
| 52 | NSAutoreleasePoolChecker.cpp |
| 53 | NSErrorChecker.cpp |
Ted Kremenek | 0a02e3e | 2010-07-06 22:03:19 +0000 | [diff] [blame] | 54 | NoReturnFunctionChecker.cpp |
Kovarththanan Rajaratnam | 909e6aa | 2010-03-22 18:16:06 +0000 | [diff] [blame] | 55 | OSAtomicChecker.cpp |
Ted Kremenek | 0a02e3e | 2010-07-06 22:03:19 +0000 | [diff] [blame] | 56 | ObjCUnusedIVarsChecker.cpp |
Ted Kremenek | 1309f9a | 2010-01-25 04:41:41 +0000 | [diff] [blame] | 57 | PathDiagnostic.cpp |
Daniel Dunbar | 9b414d3 | 2010-06-15 17:48:49 +0000 | [diff] [blame] | 58 | PlistDiagnostics.cpp |
Ted Kremenek | 1309f9a | 2010-01-25 04:41:41 +0000 | [diff] [blame] | 59 | PointerArithChecker.cpp |
| 60 | PointerSubChecker.cpp |
| 61 | PthreadLockChecker.cpp |
| 62 | RangeConstraintManager.cpp |
| 63 | RegionStore.cpp |
| 64 | ReturnPointerRangeChecker.cpp |
Ted Kremenek | 1309f9a | 2010-01-25 04:41:41 +0000 | [diff] [blame] | 65 | ReturnUndefChecker.cpp |
Ted Kremenek | 0a02e3e | 2010-07-06 22:03:19 +0000 | [diff] [blame] | 66 | SVals.cpp |
| 67 | SValuator.cpp |
Ted Kremenek | 1309f9a | 2010-01-25 04:41:41 +0000 | [diff] [blame] | 68 | SimpleConstraintManager.cpp |
| 69 | SimpleSValuator.cpp |
Zhongxing Xu | 1622a54 | 2010-06-08 10:00:00 +0000 | [diff] [blame] | 70 | StackAddrLeakChecker.cpp |
Ted Kremenek | 1309f9a | 2010-01-25 04:41:41 +0000 | [diff] [blame] | 71 | Store.cpp |
Zhongxing Xu | c196095 | 2010-06-16 05:38:05 +0000 | [diff] [blame] | 72 | StreamChecker.cpp |
Ted Kremenek | 1309f9a | 2010-01-25 04:41:41 +0000 | [diff] [blame] | 73 | SymbolManager.cpp |
| 74 | UndefBranchChecker.cpp |
Ted Kremenek | 94fd0b8 | 2010-02-16 08:33:59 +0000 | [diff] [blame] | 75 | UndefCapturedBlockVarChecker.cpp |
Ted Kremenek | 0a02e3e | 2010-07-06 22:03:19 +0000 | [diff] [blame] | 76 | UndefResultChecker.cpp |
Ted Kremenek | 1309f9a | 2010-01-25 04:41:41 +0000 | [diff] [blame] | 77 | UndefinedArraySubscriptChecker.cpp |
| 78 | UndefinedAssignmentChecker.cpp |
Ted Kremenek | 381d1bf | 2010-02-25 00:20:35 +0000 | [diff] [blame] | 79 | UnixAPIChecker.cpp |
Tom Care | c4b5bd8 | 2010-07-23 23:04:53 +0000 | [diff] [blame] | 80 | UnreachableCodeChecker.cpp |
Kovarththanan Rajaratnam | 909e6aa | 2010-03-22 18:16:06 +0000 | [diff] [blame] | 81 | VLASizeChecker.cpp |
Ted Kremenek | 0a02e3e | 2010-07-06 22:03:19 +0000 | [diff] [blame] | 82 | ValueManager.cpp |
Ted Kremenek | 1309f9a | 2010-01-25 04:41:41 +0000 | [diff] [blame] | 83 | ) |
Douglas Gregor | 71b1d0e | 2010-05-05 05:41:05 +0000 | [diff] [blame] | 84 | |
Sean Hunt | ee6e4b4 | 2010-06-17 00:37:02 +0000 | [diff] [blame] | 85 | add_dependencies(clangChecker ClangAttrClasses ClangAttrList ClangDeclNodes |
| 86 | ClangStmtNodes) |