1. 3366582 Remove main() *errors* from warning group. by Ted Kremenek · 13 years ago
  2. bd5da9d Reapply r137903, but fix the definition of size_t in the test case to use __SIZE_TYPE__ (and hence be portable). by Ted Kremenek · 13 years ago
  3. 5c5f03e [libclang] Support code-completion inside macro arguments. by Argyrios Kyrtzidis · 13 years ago
  4. 870d1fe Temporarily revert r137925 to appease buildbots. Original commit message: by Chad Rosier · 13 years ago
  5. 5161163 Rework DiagnoseInvalidRedeclaration to add the ability to correct typos when by Kaelyn Uhrain · 13 years ago
  6. 1f89b40 Fixes traversal of class template nodes on template instantiations. by Manuel Klimek · 13 years ago
  7. 3bd9aa4 Add support for MSVC __unaligned attribute. Necessary to parse MSVC headers in 64-bit mode (ie: when _M_IA64 or _M_AMD64 is defined) by Francois Pichet · 13 years ago
  8. a4c189f Teach ModuleManager::addModule() to check whether a particular module by Douglas Gregor · 13 years ago
  9. 10bc00f Keep track of which modules have been loaded directly (e.g., via by Douglas Gregor · 13 years ago
  10. 1cb4f66 Revert r137903, "Add experimental -Wstrlcpy-size warning that looks to see if the size argument for strlcpy/strlcat is the size of the *source*, and not the size of the *destination*. This warning is off by default (for now)." by Ted Kremenek · 13 years ago
  11. f19eef8 Fix a regression form r137894. Make sure the custom BugReporterVisitors get registred as they were in EnhancedBugReport. Would be good to add a test for this. by Anna Zaks · 13 years ago
  12. 1e473cc Implement '-Weverything', which enables all warnings except those explicitly mapped to be ignored. by Ted Kremenek · 13 years ago
  13. 1b2d536 For the MacroExpands preprocessor callback, also pass the SourceRange by Argyrios Kyrtzidis · 13 years ago
  14. 4b53117 Add experimental -Wstrlcpy-size warning that looks to see if the size argument for strlcpy/strlcat is the size of the *source*, and not the size of the *destination*. This warning is off by default (for now). by Ted Kremenek · 13 years ago
  15. e7c4c4c Add more comments for BugReport. by Anna Zaks · 13 years ago
  16. b7530a4 Remove DiagBugReport by pulling it into its parent BugReport. by Anna Zaks · 13 years ago
  17. e172e8b Remove EnhancedBugReport and RangedBugReport - pull all the extra functionality they provided into their parent BugReport. The only functional changes are: made getRanges() non const - it adds default range to Ranges if none are supplied, made getStmt() private, which was another FIXME. by Anna Zaks · 13 years ago
  18. e95b919 In the AST file format, eliminate the CHAINED_METADATA record. Instead, by Douglas Gregor · 13 years ago
  19. 38ca02e Add a bit more comments to the BugReporter and friends. by Anna Zaks · 13 years ago
  20. 75cf3e8 Mark objc methods that are implicitly declared for properties (not user-declared) as implicit. by Argyrios Kyrtzidis · 13 years ago
  21. ec8058f Treating the unused equality comparisons as something other than part of by Chandler Carruth · 13 years ago
  22. 9d8eb3b Introduce a new warning, -Wtop-level-comparison. This warning is by Chandler Carruth · 13 years ago
  23. 8a01087 Hook up -W[no-]analyzer-incompatible-plugin to new warning, and unbreak buildbot. by Jordy Rose · 13 years ago
  24. b7b0608 Fix typo. by Jordy Rose · 13 years ago
  25. a8fd0bc [analyzer] Add a warning for an incompatible plugin version. by Jordy Rose · 13 years ago
  26. 8e24049 [analyzer] Add some documentation for the new analyzer plugin infrastructure. by Jordy Rose · 13 years ago
  27. 77a33a7 [analyzer] Add basic support for pluggable checkers. by Jordy Rose · 13 years ago
  28. ac836e4 Introduce SourceManager::getMacroArgExpandedLocation function. by Argyrios Kyrtzidis · 13 years ago
  29. 37e59a1 Make SourceManager::isBeforeInTranslationUnit handle macro locations correctly. by Argyrios Kyrtzidis · 13 years ago
  30. 08b8653 [analyzer] Overhaul of checker registration in preparation for basic plugin support. Removes support for checker groups (we can add them back in later if we decide they are still useful), and -analyzer-checker-help output is a little worse for the time being (no packages). by Jordy Rose · 13 years ago
  31. 6c7511d [analyzer] add ExprEngine::getEagerlyAssumedTags() to allow externally querying of "eagerly assumed" expressions. by Ted Kremenek · 13 years ago
  32. 86b39f2 [analyzer] Remove PostStmtCustom ProgramPoint. It can be represented using tagged PostStmts. by Ted Kremenek · 13 years ago
  33. ae160f8 Add missing header files. by Ted Kremenek · 13 years ago
  34. 427964e [libclang] Require explicit cursor visitation for all TypeLocs (compilation will by Argyrios Kyrtzidis · 13 years ago
  35. 18c66fd Rename GRState to ProgramState, and cleanup some code formatting along the way. by Ted Kremenek · 13 years ago
  36. af1fc7a Track in the AST whether a function is constexpr. by Richard Smith · 13 years ago
  37. faef9fc Make -findirect-virtual-calls and -fterminated-vtables aliases of -fapple-kext. by Bob Wilson · 13 years ago
  38. 9b127f3 Add fixit notes for -Wconstant-logical-operand. by Matt Beaumont-Gay · 13 years ago
  39. 507d675 Another typo found by Nico; Doug also warned me about it, but I didn't listen to him. by Francois Pichet · 13 years ago
  40. 0d95f0d Fix typo. by Francois Pichet · 13 years ago
  41. af0f4d0 Implement function template specialization at class scope extension in Microsoft mode. A new AST node is introduced: ClassScopeFunctionSpecialization. This node holds a FunctionDecl that is not yet specialized; then during the class template instantiation the ClassScopeFunctionSpecialization will spawn the actual function specialization. by Francois Pichet · 13 years ago
  42. cc52a06 Add support of -x objc-cpp-output, -x objc++-cpp-output to the Driver. by Nico Weber · 13 years ago
  43. 9c378f7 Cleanup various declarations of 'Stmt*' to be 'Stmt *', etc. in libAnalyzer and libStaticAnalyzer[*]. It was highly inconsistent, and very ugly to look at. by Ted Kremenek · 13 years ago
  44. 1ab69c5 Document purpose of ProgramPointTag::getTagKind(). by Ted Kremenek · 13 years ago
  45. ca80453 [analyzer] change "tag" in ProgramPoint from "void*" to a ProgramPointTag*. by Ted Kremenek · 13 years ago
  46. be69f60 [driver] Refactor a bit to enable a few fixes when generating diagnostics. No functional change intended. by Chad Rosier · 13 years ago
  47. 096aef9 [analyzer] Nitpicks on Olaf's patch, which I meant to e-mail but then didn't in by Jordy Rose · 13 years ago
  48. 3a02b44 metadata generated by the compiler does not include the weak by Fariborz Jahanian · 13 years ago
  49. 261f5b4 Place err_cfstring_literal_not_string_constant and warn_cfstring_truncated under "-WCFString" flag. by Ted Kremenek · 13 years ago
  50. 42cd50c Place diagnostic warn_stringcompare under the "-Wstring-compare" flag. by Ted Kremenek · 13 years ago
  51. 9d9eef9 Place warnings related to incorrect "main()" declaration under "-Wmain". by Ted Kremenek · 13 years ago
  52. 8ed7253 Add -Wtypename-missing flag for diagnostic warn_typename_missing. by Ted Kremenek · 13 years ago
  53. 9697934 [analyzer] Introduce new MemRegion, "TypedValueRegion", so that we can separate TypedRegions that implement getValueType() from those that don't. by Ted Kremenek · 13 years ago
  54. 772eeae Switch the __int128_t and __uint128_t types over to predefined types by Douglas Gregor · 13 years ago
  55. 7a27ea5 Switch the Objective-C 'SEL' type over to a predefined type in the by Douglas Gregor · 13 years ago
  56. 79d6726 Switch the Objective-C 'Class' type over to a predefined type in the by Douglas Gregor · 13 years ago
  57. 4dfd02a Move the creation of the predefined typedef for Objective-C's 'id' by Douglas Gregor · 13 years ago
  58. e685848 include/clang/Config/config.h.cmake: Reorder and reword to follow (generated) llvm/Config/config.h.in. by NAKAMURA Takumi · 13 years ago
  59. b7c324f Collapse ASTWriter::WriteASTChain into ASTWriter::WriteASTCore, by Douglas Gregor · 13 years ago
  60. cb9657c Remove extra semicolons. by Bill Wendling · 13 years ago
  61. 579ad7a Optimizations for Dependent Symbol tracking (as per Ted's code review for r137309): by Anna Zaks · 13 years ago
  62. 6bf2b9f In the serialized AST format, make the translation unit a "predefined" by Douglas Gregor · 13 years ago
  63. 79e610a The current warning in -Wnull-arithmetic for comparisons between NULL and non-pointers is not very helpful. This patch will update the wording to be more helpful to users. by Richard Trieu · 13 years ago
  64. 01a4cf1 Encapsulate the Objective-C id/Class/SEL "redefinition" types in by Douglas Gregor · 13 years ago
  65. 89f9209 Analyzer Core: Adding support for user-defined symbol dependencies. (For example, the allocated resource symbol only needs to be freed if no error has been returned by the allocator, so a checker might want to make the lifespan of the error code symbol depend on the allocated resource symbol.) Note, by default, the map that holds the dependencies will get destroyed along with the SymbolManager at the end of function exploration. by Anna Zaks · 13 years ago
  66. 03720fc Raw string followup. Pass a couple StringRefs by value. by Craig Topper · 13 years ago
  67. 2fa4e86 Add support for C++0x raw string literals. by Craig Topper · 13 years ago
  68. 75eeeb1 Make SymbolManager comments doxygen friendly. by Anna Zaks · 13 years ago
  69. 0e89061 Cleanup: remove CleanedSate member and GetState() wrapper from StmtNodeBuilder, not needed as of r137273. by Anna Zaks · 13 years ago
  70. db5e8cd Cleanup: remove GetState() wrapper from ExprEngine, not needed as of r137273. by Anna Zaks · 13 years ago
  71. 6bd528b Analyzer Core: In checkDeadSymbols checker callback, provide the state in which the symbols are not yet deleted so that checkers could inspect them. Since we are now always creating a transition in ProcessStmt(), remove the logic for adding a transition when none was generated. TODO: the extra transitions will have to be removed; more cleanups; a checker that tests teh new fucntionality. by Anna Zaks · 13 years ago
  72. 6b8bc07 Renamings to consistently use 'Constexpr' not 'ConstExpr' when referring to the C++0x 'constexpr' keyword. by Richard Smith · 13 years ago
  73. 730cfb1 objective-c: Using existing infrastructure for finding by Fariborz Jahanian · 13 years ago
  74. a19950e Change an assert into a check. I'm pretty sure there was a point by John McCall · 13 years ago
  75. b51e031 Thread Safety: Added basic argument parsing for all new attributes. by Caitlin Sadowski · 13 years ago
  76. 0815b57 Move the creation of the record type for the state of Objective-C fast by Douglas Gregor · 13 years ago
  77. 5c0d3d6 Don't serialize the block descriptor or block extended descriptor by Douglas Gregor · 13 years ago
  78. 45c4ea7 Move the construction of the RecordDecl representing the runtime by Douglas Gregor · 13 years ago
  79. 3b8043b Migrate the serialization of ASTContext's AutoDeduceTy and by Douglas Gregor · 13 years ago
  80. 6948bc4 Provide diag_iterator for iterating over the built-in diagnostic IDs/names in the internal table of DiagnosticIDs. by Ted Kremenek · 13 years ago
  81. 5d8c062 Add -W flag for ARC warning "performSelector may cause a leak because its selector is unknown". by Ted Kremenek · 13 years ago
  82. 2112190 objective-c: diagnose protocol inconsistencies in following by Fariborz Jahanian · 13 years ago
  83. 993124e [analyzer] Start sketching out a new BugReporterVisitor that inspects branches and other expressions to generate interesting path events in diagnostics. by Ted Kremenek · 13 years ago
  84. bea2753 [analyzer] Change SymbolReaper to store region roots implied by the Environment, allowing it be queried when by Ted Kremenek · 13 years ago
  85. 3f10e32 Static Analyzer: Add a convinience API. Add comment. by Anna Zaks · 13 years ago
  86. 270ba59 Revert 136984 and 136927. by Ted Kremenek · 13 years ago
  87. d6c8865 Perform array bounds checking in more situations and properly handle special by Kaelyn Uhrain · 13 years ago
  88. e735e2d Wire up -import-module to run ReadAST for each module loaded. by Jonathan D. Turner · 13 years ago
  89. 8e68f1c Let attribute((cdecl)) and company override -mrtd default calling convention. by Roman Divacky · 13 years ago
  90. c268434 Flesh out the -Warray-bounds detection of C89 tail-padded one-element by Chandler Carruth · 13 years ago
  91. 894e4d5 Change the this -W flag to 'return-stack-address'. by Chandler Carruth · 13 years ago
  92. cc2f30c Extend memset/memcpy/memmove checking to include memcmp by Matt Beaumont-Gay · 13 years ago
  93. ace5e76 Have the typo correction in DiagnoseEmptyLookup properly handle template by Kaelyn Uhrain · 13 years ago
  94. dd7fddb More whitespace and naming fixup. No functionality change. by Chad Rosier · 13 years ago
  95. 42d7b2d Specialize diag::warn_unused_call for the "warn_unused_result" attribute, so by Matt Beaumont-Gay · 13 years ago
  96. 270f943 Put a few warnings into a DiagGroup. Feel free to improve the flag name! by Matt Beaumont-Gay · 13 years ago
  97. 6a3bec3 objective-c: diagnose protocol inconsistencies in following by Fariborz Jahanian · 13 years ago
  98. 8fa0a80 Add a new libclang API to return a CXCompletionString for an arbitrary by Douglas Gregor · 13 years ago
  99. 272b6bc Introduce local -> global mapping for preprocessed entity IDs. This is by Douglas Gregor · 13 years ago
  100. 3b2257c Remove the unset, unused return value of by Douglas Gregor · 13 years ago