1. a93d0f2 Include pruning and general cleanup. by Benjamin Kramer · 12 years ago
  2. 2fa67ef Pull the Attr iteration parts out of Attr.h, so including DeclBase.h doesn't pull in all the generated Attr code. by Benjamin Kramer · 12 years ago
  3. eba76a4 Further reduce "-fsyntax-only -Wuninitialized" time on sqlite3.c by another 2.5% using intelligent pruning of blocks during the final reporting pass. by Ted Kremenek · 12 years ago
  4. c160258 Switch -Wuninitialized to use a reverse-post order traversal as by Ted Kremenek · 12 years ago
  5. 8f81acf Fix bad CFG construction bug when handling C++ 'try' statements. by Ted Kremenek · 12 years ago
  6. fadcd5d [analyzer] add LocationContext::inTopFrame() helper. by Anna Zaks · 12 years ago
  7. 507d106 Fix potential null deference in CFG printer. by Ted Kremenek · 12 years ago
  8. 857f568 Remove dead store. by Ted Kremenek · 12 years ago
  9. 5dbd990 Conditionally use an integral cast for BodyFarm support for OSAtomicCompareAndSwap if the return type is not a boolean. by Ted Kremenek · 12 years ago
  10. 48fa136 Switch over to BodyFarm implementation of OSAtomicCompareAndSwap and by Ted Kremenek · 12 years ago
  11. ef2388b Thread-safety analysis: allow attributes on constructors to refer to 'this'. by DeLesley Hutchins · 12 years ago
  12. be9af12 Add FP_CONTRACT support for clang. by Lang Hames · 12 years ago
  13. da3d76b Avoid malloc thrashing in the uninitialized value analysis. by Benjamin Kramer · 12 years ago
  14. 81d18bf Add clarifying comment. by Ted Kremenek · 12 years ago
  15. fcf8eba Experiment in BodyFarm of structuring AST creation calls in a hierarchy, by Ted Kremenek · 12 years ago
  16. b80e5bb Create helper method in BodyFarm for creating simple assignments. by Ted Kremenek · 12 years ago
  17. 0b5c5e4 Add helper method in BodyFarm to create unary dereferences. by Ted Kremenek · 12 years ago
  18. 9ba05cd Add helper method to BodyFarm for creating lvalue-to-rvalue conversions. by Ted Kremenek · 12 years ago
  19. a6d62a1 Add helper method to BodyFarm for creatinging integral casts. by Ted Kremenek · 12 years ago
  20. d2f3882 Thread-safety analysis: better handling of unreachable blocks. Fixes a bug by DeLesley Hutchins · 12 years ago
  21. 016c33d Use helper method to create DeclRefExprs in BodyFarm, hopefully allevating by Ted Kremenek · 12 years ago
  22. 0a4c098 Add some structuring comments. No functionality change. by Ted Kremenek · 12 years ago
  23. cc85d21 Add faux-body support for dispatch_once(). by Ted Kremenek · 12 years ago
  24. a43df95 Implement faux-body-synthesis of well-known functions in the static analyzer when by Ted Kremenek · 12 years ago
  25. 60ff198 Thread-safety analysis: fix bug where shared trylock was treated as exclusive. by DeLesley Hutchins · 12 years ago
  26. 186af2d Thread safety analysis: properly canonicalize calls to virtual methods within by DeLesley Hutchins · 12 years ago
  27. 2a237e0 Thread-safety analysis: Fix warning when EXCLUSIVE_LOCKS_REQUIRED by DeLesley Hutchins · 12 years ago
  28. 5b280f2 Thread-safety analysis: fix ICE when EXCLUSIVE_LOCKS_REQUIRED or by DeLesley Hutchins · 12 years ago
  29. e5b89ed clang/lib/Analysis/ObjCNoReturn.cpp: Fix [-Wnewline-eof] by NAKAMURA Takumi · 12 years ago
  30. 670941c Format strings: offer a fixit for Darwin's %D/%U/%O to ISO %d/%u/%o. by Jordan Rose · 12 years ago
  31. 275b6f5 Format strings: %D, %U, and %O are valid on Darwin (same as %d, %u, %o). by Jordan Rose · 12 years ago
  32. 25c1d57 Teach -Wuninitialized to recognize common "noreturn" idioms in by Ted Kremenek · 12 years ago
  33. 4ef1920 Refactor logic in ExprEngine for detecting 'noreturn' methods by Ted Kremenek · 12 years ago
  34. 44ca53f Teach -Wuninitialized to recognize __attribute__((analyzer_noreturn)) by Ted Kremenek · 12 years ago
  35. f9ee0ba Thread-safety analysis: fix bug in expression matching code. by DeLesley Hutchins · 12 years ago
  36. 1ad23d6 Remove redundant semicolons which are null statements. by Dmitri Gribenko · 12 years ago
  37. 3f0ec52 Thread-safety analysis: differentiate between two forms of analysis; a precise by DeLesley Hutchins · 12 years ago
  38. 8be066e Format strings: suggest %lld instead of %qd and %Ld with -Wformat-non-iso. by Jordan Rose · 12 years ago
  39. bbb6bb4 Format strings: %Ld isn't available on Darwin or Windows. by Jordan Rose · 12 years ago
  40. 589190b Ampersand goes with identifier. by Chad Rosier · 12 years ago
  41. 2de4770 Bring buildbots back. Fix scoping issue and coding style from r163397. by Chad Rosier · 12 years ago
  42. 0b4db3e Thread-safety analysis: Add support for selectively turning off warnings by DeLesley Hutchins · 12 years ago
  43. 31ba613 Dont cast away const needlessly. Found by gcc48 -Wcast-qual. by Roman Divacky · 12 years ago
  44. 5a1ffe9 [analyzer] Always include destructors in the analysis CFG. by Jordan Rose · 12 years ago
  45. fd0f11c Thread-safety analysis: bugfix for case where a trylock occurs in an by DeLesley Hutchins · 12 years ago
  46. 5408153 Thread-safety analysis: fix handling of LOCK_RETURNED attribute so that the by DeLesley Hutchins · 12 years ago
  47. 4e4c157 Thread-safety analysis: fix handling of string constants in mutex by DeLesley Hutchins · 12 years ago
  48. 3d1125b Teach CFG that 'if (x & 0)' and 'if (x * 0)' is an unfeasible branch. by Ted Kremenek · 12 years ago
  49. b66529d [analyzer] Support C++ default arguments if they are literal values. by Jordan Rose · 12 years ago
  50. ad0fe03 Fix an assortment of doxygen comment issues found by -Wdocumentation. by Ted Kremenek · 12 years ago
  51. 66c486f Rename 'currentX' to 'currX' throughout analyzer and libAnalysis. by Ted Kremenek · 12 years ago
  52. c739406 [analyzer] Teach live variable analyzes that super uses self pointer. by Anna Zaks · 12 years ago
  53. ee2f032 Thread-safety-analysis: adds existential quantification over lock by DeLesley Hutchins · 12 years ago
  54. a74b715 Thread safety analysis: refactor to support more sophisticated handling by DeLesley Hutchins · 12 years ago
  55. a1fa471 Refactor thread safety analysis to use a different data structure by DeLesley Hutchins · 12 years ago
  56. 7094dee Add missing cctype includes. by Joerg Sonnenberger · 12 years ago
  57. f7158fa Properly check length modfiers for %n in format strings. by Hans Wennborg · 12 years ago
  58. 58e1e54 Remove ScanfArgType and bake that logic into ArgType. by Hans Wennborg · 12 years ago
  59. f3749f4 Rename analyze_format_string::ArgTypeResult to ArgType by Hans Wennborg · 12 years ago
  60. 5deddaf -Wformat: better handling of qualifiers on pointer arguments by Hans Wennborg · 12 years ago
  61. cec9ce4 Make -Wformat check the argument type for %n. by Hans Wennborg · 12 years ago
  62. 4684778 Make -Wformat walk the typedef chain when looking for size_t, etc. by Hans Wennborg · 12 years ago
  63. 11abf2a clang/lib: [CMake] Update tblgen'd dependencies. by NAKAMURA Takumi · 12 years ago
  64. 866abce clang/lib: [CMake] Reformat, alphabetize lists. by NAKAMURA Takumi · 12 years ago
  65. b9d0b76 Final piece of core issue 1330: delay computing the exception specification of by Richard Smith · 12 years ago
  66. 1d3ca25 [analyzer] Don't crash on implicit statements inside initializers. by Jordan Rose · 12 years ago
  67. d7f1d13 [analyzer] Variables with destructors are live until the destructor is run. by Jordan Rose · 12 years ago
  68. 56df4a9 When a && or || appears as the condition of a ?:, perform appropriate by Richard Smith · 12 years ago
  69. bed28ac Fix a typo (the the => the) by Sylvestre Ledru · 12 years ago
  70. fd8b435 Add a reverse iterator to DeclStmt, and use it when building a CFG. by Jordan Rose · 12 years ago
  71. eee18c3 Simplify UninitializedValues.cpp by removing logic to handle the previous (imprecise) representation by Ted Kremenek · 12 years ago
  72. 88237bf Teach CFG construction about destructors resulting from references to array types. Fixes crash in <rdar://problem/11671507>. by Ted Kremenek · 12 years ago
  73. 6cfa78f Uninitialized variables: two little changes: by Richard Smith · 12 years ago
  74. 9532e0d -Wuninitialized: Split the classification of DeclRefExprs as initialization or by Richard Smith · 12 years ago
  75. 3f635c0 Refine CFG so that '&&' and '||' don't lead to extra confluence points when used in a branch, but by Ted Kremenek · 12 years ago
  76. 5c3ea5c Hoist CFG builder logic for '&&' and '||' into helper method. No funcationlity change. by Ted Kremenek · 12 years ago
  77. 449d4d5 Remove unused method declaration. by Ted Kremenek · 12 years ago
  78. 6960ee6 Sort prototypes. No functionality change. by Ted Kremenek · 12 years ago
  79. 558e887 PR13360: When deciding the earliest point which inevitably leads to an by Richard Smith · 12 years ago
  80. 1310611 Thread safety analysis: impove handling of trylock expressions. by DeLesley Hutchins · 12 years ago
  81. 8d3ba23 Implement AST classes for comments, a real parser for Doxygen comments and a by Dmitri Gribenko · 12 years ago
  82. 5381c05 Thread-safety analysis: eliminate false positives in case where the definition by DeLesley Hutchins · 12 years ago
  83. 471c8b4 Drop the ASTContext.h include from DeclFriend.h and DeclTemplate.h. by Benjamin Kramer · 12 years ago
  84. 478851c Drop the ASTContext.h include from Stmt.h and fix up transitive users. by Benjamin Kramer · 12 years ago
  85. 96fac6a Thread safety analysis: improve handling of smart pointers. by DeLesley Hutchins · 12 years ago
  86. 9d6e7f3 Thread Safety Analysis: handle expressions involving temporaries, by DeLesley Hutchins · 12 years ago
  87. a9e8b9e -Wuninitialized: assume that an __attribute__((returns_twice)) function might by Richard Smith · 12 years ago
  88. bbe3341 Thread safety analysis: fixed bug that occurs when very silly people by DeLesley Hutchins · 12 years ago
  89. 879a433 Thread safety analysis: fixed incorrect error message at the end of a locks_required function. by DeLesley Hutchins · 12 years ago
  90. c36eda1 Thread safety analysis: don't warn in case of duplicate annotation. by DeLesley Hutchins · 12 years ago
  91. 76f0a6e Thread Safety Analysis: turn off checking within trylock functions. by DeLesley Hutchins · 12 years ago
  92. d4aeb80 Bail out the LiveVariables analysis when the CFG is very large, as by Ted Kremenek · 12 years ago
  93. c99a5d8 Thread safety analysis: support release() function on scoped lockable objects. by DeLesley Hutchins · 12 years ago
  94. f63797c Thread safety analysis: implement lock_returned attribute. by DeLesley Hutchins · 12 years ago
  95. 0da4414 Thread safety analysis: fixes a bug in which locksets are not handled by DeLesley Hutchins · 12 years ago
  96. b0d8671 Remove a goofy CMake hack and use the standard CMake facilities to by Chandler Carruth · 12 years ago
  97. 8f40dcc -Wuninitialized bugfix: when entering the scope of a variable with no by Richard Smith · 12 years ago
  98. 581deb3 Revert Decl's iterators back to pointer value_type rather than reference value_type by David Blaikie · 12 years ago
  99. facde17 Remove unused private member variables found by clang's new -Wunused-private-field. by Benjamin Kramer · 12 years ago
  100. a08e7bc Zap the /Za compiler switch from MSVC projects, the option is considered harmful even by Microsoft people and clang won't build using the MSVC 2012 RC if not removed. by Francois Pichet · 12 years ago