1. 0e2c34f Update aosp/master clang for rebase to r230699. by Stephen Hines · 9 years ago
  2. 176edba Update aosp/master Clang for rebase to r222490. by Stephen Hines · 10 years ago
  3. 6bcf27b Update Clang for 3.5 rebase (r209713). by Stephen Hines · 10 years ago
  4. 651f13c Updated to Clang 3.5a. by Stephen Hines · 10 years ago
  5. 4444446 Merging r195777: by Bill Wendling · 11 years ago
  6. f949591 Thread-safety analysis: check guarded_by and pt_guarded_by on array access. by DeLesley Hutchins · 11 years ago
  7. 9a2f84b Thread safety analysis: minor bugfix to smart pointer handling, and expanded by DeLesley Hutchins · 11 years ago
  8. 43399fb Thread safety analysis: check pt_guarded_by attribute when calling -> and * by DeLesley Hutchins · 11 years ago
  9. 87bcee8 Simplify some implementations of get*Decl. by Rafael Espindola · 11 years ago
  10. 7336b9f Thread Safety Analysis: fix bug when using TryLock with && and || expressions. by DeLesley Hutchins · 11 years ago
  11. a44f03b Thread safety analysis: move warnings within lock/unlock functions out of beta. by DeLesley Hutchins · 11 years ago
  12. b96e74f Updating a link in the comments; no functional change. by Aaron Ballman · 11 years ago
  13. 451f8e4 Thread safety analysis: fix use after free bug reported by Evgeniy Stepanov. by DeLesley Hutchins · 11 years ago
  14. 5c6134f Thread safety analysis: add two new attributes to the thread safety analysis: by DeLesley Hutchins · 11 years ago
  15. 5696884 Thread safety analysis: turn on checking within lock and unlock functions. by DeLesley Hutchins · 11 years ago
  16. dd0a1f5 Thread safety analysis: Turn on checking for non-scalar types by default. by DeLesley Hutchins · 11 years ago
  17. b078054 Remove the CFGElement "Invalid" state. by David Blaikie · 11 years ago
  18. fdf6a27 Replace CFGElement llvm::cast support to be well-defined. by David Blaikie · 11 years ago
  19. 0ecc2e9 Thread-safety analysis: ignore edges from throw expressions in CFG. by DeLesley Hutchins · 11 years ago
  20. cfa88f8 Remove useless 'llvm::' qualifier from names like StringRef and others that are by Dmitri Gribenko · 11 years ago
  21. 93699d2 Thread-safety analysis: check member access on guarded non-primitive types. by DeLesley Hutchins · 12 years ago
  22. 91e2061 Thread-safety analysis: check locks on method calls, operator=, and by DeLesley Hutchins · 12 years ago
  23. 47715cc Thread Safety Analysis: refactor to make more methods accept const pointers, by DeLesley Hutchins · 12 years ago
  24. 55fc873 Sort all of Clang's files under 'lib', and fix up the broken headers uncovered. by Chandler Carruth · 12 years ago
  25. 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
  26. ef2388b Thread-safety analysis: allow attributes on constructors to refer to 'this'. by DeLesley Hutchins · 12 years ago
  27. d2f3882 Thread-safety analysis: better handling of unreachable blocks. Fixes a bug by DeLesley Hutchins · 12 years ago
  28. 60ff198 Thread-safety analysis: fix bug where shared trylock was treated as exclusive. by DeLesley Hutchins · 12 years ago
  29. 186af2d Thread safety analysis: properly canonicalize calls to virtual methods within by DeLesley Hutchins · 12 years ago
  30. 2a237e0 Thread-safety analysis: Fix warning when EXCLUSIVE_LOCKS_REQUIRED by DeLesley Hutchins · 12 years ago
  31. 5b280f2 Thread-safety analysis: fix ICE when EXCLUSIVE_LOCKS_REQUIRED or by DeLesley Hutchins · 12 years ago
  32. f9ee0ba Thread-safety analysis: fix bug in expression matching code. by DeLesley Hutchins · 12 years ago
  33. 3f0ec52 Thread-safety analysis: differentiate between two forms of analysis; a precise by DeLesley Hutchins · 12 years ago
  34. 589190b Ampersand goes with identifier. by Chad Rosier · 12 years ago
  35. 2de4770 Bring buildbots back. Fix scoping issue and coding style from r163397. by Chad Rosier · 12 years ago
  36. 0b4db3e Thread-safety analysis: Add support for selectively turning off warnings by DeLesley Hutchins · 12 years ago
  37. 31ba613 Dont cast away const needlessly. Found by gcc48 -Wcast-qual. by Roman Divacky · 12 years ago
  38. fd0f11c Thread-safety analysis: bugfix for case where a trylock occurs in an by DeLesley Hutchins · 12 years ago
  39. 5408153 Thread-safety analysis: fix handling of LOCK_RETURNED attribute so that the by DeLesley Hutchins · 12 years ago
  40. 4e4c157 Thread-safety analysis: fix handling of string constants in mutex by DeLesley Hutchins · 12 years ago
  41. ad0fe03 Fix an assortment of doxygen comment issues found by -Wdocumentation. by Ted Kremenek · 12 years ago
  42. ee2f032 Thread-safety-analysis: adds existential quantification over lock by DeLesley Hutchins · 12 years ago
  43. a74b715 Thread safety analysis: refactor to support more sophisticated handling by DeLesley Hutchins · 12 years ago
  44. a1fa471 Refactor thread safety analysis to use a different data structure by DeLesley Hutchins · 12 years ago
  45. bed28ac Fix a typo (the the => the) by Sylvestre Ledru · 12 years ago
  46. 1310611 Thread safety analysis: impove handling of trylock expressions. by DeLesley Hutchins · 12 years ago
  47. 5381c05 Thread-safety analysis: eliminate false positives in case where the definition by DeLesley Hutchins · 12 years ago
  48. 96fac6a Thread safety analysis: improve handling of smart pointers. by DeLesley Hutchins · 12 years ago
  49. 9d6e7f3 Thread Safety Analysis: handle expressions involving temporaries, by DeLesley Hutchins · 12 years ago
  50. bbe3341 Thread safety analysis: fixed bug that occurs when very silly people by DeLesley Hutchins · 12 years ago
  51. 879a433 Thread safety analysis: fixed incorrect error message at the end of a locks_required function. by DeLesley Hutchins · 12 years ago
  52. c36eda1 Thread safety analysis: don't warn in case of duplicate annotation. by DeLesley Hutchins · 12 years ago
  53. 76f0a6e Thread Safety Analysis: turn off checking within trylock functions. by DeLesley Hutchins · 12 years ago
  54. c99a5d8 Thread safety analysis: support release() function on scoped lockable objects. by DeLesley Hutchins · 12 years ago
  55. f63797c Thread safety analysis: implement lock_returned attribute. by DeLesley Hutchins · 12 years ago
  56. 0da4414 Thread safety analysis: fixes a bug in which locksets are not handled by DeLesley Hutchins · 12 years ago
  57. 54c350a Refactor the thread safety analysis so that it is easier to do by DeLesley Hutchins · 12 years ago
  58. f4b88a4 Remove BlockDeclRefExpr and introduce a bit on DeclRefExpr to by John McCall · 12 years ago
  59. 0d95dfc Thread safety analysis: expand set of expressions that can be used to denote locks. by DeLesley Hutchins · 12 years ago
  60. 2a35be8 Thread safety analysis: handle CFG blocks which call functions marked as noreturn. by DeLesley Hutchins · 12 years ago
  61. 2f13bec Thread-safety analysis: Disable checking inside constructors, destructors, lock, and unlock functions by DeLesley Hutchins · 12 years ago
  62. 4bda3ec Thread-Safety: added support for 'this' as a lock expression. by DeLesley Hutchins · 12 years ago
  63. 2e51562 Thread safety analysis: by Richard Smith · 12 years ago
  64. aacde71 Thread safety analysis: at a CFG join point between a block terminating in a by Richard Smith · 12 years ago
  65. e03b2b3 Handle thread safety attributes on functions with separate definitions and declarations. by DeLesley Hutchins · 12 years ago
  66. b4fa418 Thread safety analysis: added support for trylock attribute. by DeLesley Hutchins · 12 years ago
  67. b37d2b5 Added LocalVariableMap by DeLesley Hutchins · 12 years ago
  68. df49782 Support for thread safety attributes on functions by DeLesley Hutchins · 12 years ago
  69. 1fa3c06 This patch extends thread safety analysis with support for the scoped_lockable attribute. by DeLesley Hutchins · 13 years ago
  70. 1d26f48 Rename AnalysisContext to AnalysisDeclContext. Not only is this name more accurate, but it frees up the name AnalysisContext for other uses. by Ted Kremenek · 13 years ago
  71. 439ed16 Refactor ThreadSafety to use PostOrderCFGView instead of its own copy (of TopologicallySortedCFG). by Ted Kremenek · 13 years ago
  72. 6db51f7 Added support for thread safety attributes on destructors. by DeLesley Hutchins · 13 years ago
  73. f1ac637 Thread safety analysis refactoring: invalid lock expressions. by DeLesley Hutchins · 13 years ago
  74. e0eaa85 Thread safety analysis: add support for attributes on constructors. by DeLesley Hutchins · 13 years ago
  75. a60448d Refactoring and code cleanup. by DeLesley Hutchins · 13 years ago
  76. 8121639 Substitute for arguments in method calls -- functionality by DeLesley Hutchins · 13 years ago
  77. 9f80a97 Substitute for arguments in method calls -- refactoring by DeLesley Hutchins · 13 years ago
  78. 9859ea0 Test commit by DeLesley Hutchins · 13 years ago
  79. 1748b12 Thread safety: Adding FIXMEs and a couple cleanups by Caitlin Sadowski · 13 years ago
  80. cb96751 Thread safety: completeing the implementation of shared/exclusive locks required attributes by Caitlin Sadowski · 13 years ago
  81. 4e4bc75 Thread safety: refactoring various out of scope warnings to use the same inteface. This eliminates a lot of unnecessary duplicated code. by Caitlin Sadowski · 13 years ago
  82. 1990346 Thread safety: adding additional documentation to the main thread safety interface, and making the destructor for the thread safety handler pure virtual by Caitlin Sadowski · 13 years ago
  83. 194418f Thread safety: adding test cases for unparseable lock expressions and expanding the handling of these expressions by Caitlin Sadowski · 13 years ago
  84. 7613c73 Thread safety: small formatting change by Caitlin Sadowski · 13 years ago
  85. afc5b15 Silence "end of non-void function" warnings with llvm_unreachable and add an assert. by Benjamin Kramer · 13 years ago
  86. d5b1605 Thread safety: removing unnecessary import and reordering import list by Caitlin Sadowski · 13 years ago
  87. 0fed26d Thread safety: removing unnecessary import by Caitlin Sadowski · 13 years ago
  88. 99107eb Thread safety: This patch deals with previously unhandled cases when building lock expressions. We now resolve this expressions, avoid crashing when encountering cast expressions, and have a diagnostic for unresolved lock expressions by Caitlin Sadowski · 13 years ago
  89. 402aa06 Thread Safety: Moving the analysis to a new file by Caitlin Sadowski · 13 years ago