1. fee1381 Patch should implement packed enums - PR4098. Credit to Anders Johnsen. by Edward O'Callaghan · 15 years ago
  2. d497206 Get rid of Stmt::Clone now that we can reference count statements instead. by Anders Carlsson · 15 years ago
  3. 43d9d92 Introduce reference counting for statements and expressions, using it by Douglas Gregor · 15 years ago
  4. 112a0a8 Add a CK_ArrayToPointerDecay cast kind. by Anders Carlsson · 15 years ago
  5. 4d8673b Add CK_ToUnion and use it for aggregate expression codegen. by Anders Carlsson · 15 years ago
  6. 6ff0785 Just add global scope to the associated namespaces set instead of tracking it by John McCall · 15 years ago
  7. 89ed850 Add rbegin and rend for virtual bases, might come in handy some day. by Mike Stump · 15 years ago
  8. 928f150 Add ability to generate vcall offsets for primary virtual base. by Mike Stump · 15 years ago
  9. e607ed0 Fix some const_cast issues. This is the beginning of the rabbit hole. by Mike Stump · 15 years ago
  10. d043968 PR3333: warn when shifting by invalid amount by Ryan Flynn · 15 years ago
  11. 42602bb Separate Stmt::Destroy into the entrypoint for destroying a statement by Douglas Gregor · 15 years ago
  12. d4e5a60 Fix a couple false positive "uninitialized value" warnings with RegionStore by Ted Kremenek · 15 years ago
  13. 470c2a9 Drop the friend-inner-class diagnostic from an extwarn to an ext and don't by John McCall · 15 years ago
  14. 7f27d92 Permit a class to friend its members in C++0x, without restriction. by John McCall · 15 years ago
  15. b1e92b3 Silence gcc warning about non-virtual destructors. by Benjamin Kramer · 15 years ago
  16. d91bb0c I forgot adding this header for r78298. by Zhongxing Xu · 15 years ago
  17. 031ccc0 Last step of template cleanup: merge *BuilderImpl to *Builder. by Zhongxing Xu · 15 years ago
  18. 0111f57 Core analysis engine template cleanup step 2: by Zhongxing Xu · 15 years ago
  19. bb8e648 Fix comment. by Zhongxing Xu · 15 years ago
  20. 38b02b9 Core analysis engine template cleanup step 2: by Zhongxing Xu · 15 years ago
  21. 451ac09 Refactor RegionStoreManager::RemoveDeadBindings to also scan the bindings of LazyCompoundSVals. by Ted Kremenek · 15 years ago
  22. fe85ced Support nested-name-specifiers for C++ member access expressions, e.g., by Douglas Gregor · 15 years ago
  23. 67d1a67 First pass at friend semantics. by John McCall · 15 years ago
  24. c5619d9 As GRState seems general enough, it is time to merge some template classes by Zhongxing Xu · 15 years ago
  25. a5e81f1 Implement lazy "copying" of structures and arrays in RegionStore. While by Ted Kremenek · 15 years ago
  26. 47a434f Update for LLVM API change. by Owen Anderson · 15 years ago
  27. 6f37633 Calculate the primary base class better and use that when laying down by Mike Stump · 15 years ago
  28. 8e9ef0d Translate -mcmodel=X to -code-model X and pass it to clang-cc. Patch by Pawel Worach! by Benjamin Kramer · 15 years ago
  29. 091038c Add support for the -fno-omit-frame-pointer option. Patch by Roman Divacky! by Benjamin Kramer · 15 years ago
  30. b890f04 Fix a comment that trailed off by Douglas Gregor · 15 years ago
  31. 50d62d1 Introduce the canonical type smart pointers, and use them in a few places to by Douglas Gregor · 15 years ago
  32. a52ad4e If the UnaryOperator has non-location type, use its type to create the by Zhongxing Xu · 15 years ago
  33. 2eeed7b Support for use of default argument in constructors. work in progress. by Fariborz Jahanian · 15 years ago
  34. 577f75a Refactor template instantiation for types into a generic tree by Douglas Gregor · 15 years ago
  35. dbdec8b Compare matching selectors in current and by Fariborz Jahanian · 15 years ago
  36. 7a02a37 Per advice that Doug Gregor gave me several months ago, clean up the by Ted Kremenek · 15 years ago
  37. 98f6f25 Regression fix: reset 'DisplayedFunction' when a new function/method decl gets analyzed. by Ted Kremenek · 15 years ago
  38. fec5401 Refactor methods on DeclSpec to take a diagnostic& parameter, and reflect this by John McCall · 15 years ago
  39. 32d335e Templatize BadSpecifier and introduce DeclSpec::getSpecifier(T) for the by John McCall · 15 years ago
  40. 18c7c06 add a bunch of routine methods to AnalysisContext. by Zhongxing Xu · 15 years ago
  41. d764090 Tweak diagnostic wording; patch by Sean Hunt. by Eli Friedman · 15 years ago
  42. d07a0d0 now we can let AnalysisManager to own the PathDiagnosticClient. by Zhongxing Xu · 15 years ago
  43. c471e7b Create only one AnalysisManager for each translation unit. In HandleCode(), by Zhongxing Xu · 15 years ago
  44. 2e31244 Add LocationContext classes to enable creation of cross function by Zhongxing Xu · 15 years ago
  45. 1f561c1 Produce a warning that partial ordering of function templates is not yet supported by Douglas Gregor · 15 years ago
  46. 37d93e9 Keep track of the template arguments deduced when matching a class by Douglas Gregor · 15 years ago
  47. 714179b Use the correct cast kind for dynamic_cast. by Anders Carlsson · 15 years ago
  48. df74e25 Remove RegionViews and RegionCasts. These are no longer used. by Ted Kremenek · 15 years ago
  49. 093569c RegionStoreManager::RemoveDeadBindings() now removes dead 'default' bindings as well. by Ted Kremenek · 15 years ago
  50. 2f26bc3 Generalize the interface of 'StoreManager::RemoveDeadBindings()' to manipulate the entire GRState, not just the Store. by Ted Kremenek · 15 years ago
  51. 19e1f0b This is a fairly large patch, which resulted from a cascade of changes by Ted Kremenek · 15 years ago
  52. 738f8c2 Add beginnigs of rtti generation, wire up more of -fno-exceptions. by Mike Stump · 15 years ago
  53. 82b5696 And now we can generate a simple vtable. Still a work in progress... by Mike Stump · 15 years ago
  54. 5296afa Allow one to update the type representation of the declaration specifiers. Will be used by an upcoming commit. by Douglas Gregor · 15 years ago
  55. 78b89b0 Fix 80-col violation by Douglas Gregor · 15 years ago
  56. 2ec09f1 Canonicalize dependent extended vector types. by Douglas Gregor · 15 years ago
  57. 0f434ec Rename Action::TagKind to Action::TagUseKind, which removes both a misnomer by John McCall · 15 years ago
  58. 5c15fe1 sp. by John McCall · 15 years ago
  59. 3503d04 Add CK_DerivedToBase and use it PerformObjectMemberConversion. by Anders Carlsson · 15 years ago
  60. cdef2b7 Add a CastKind enum to CastExpr. Right now it's not used for much but it will be :) by Anders Carlsson · 15 years ago
  61. 82ec2e9 Fix use-after-release bug introduced in r77585 where the PathDiagnosticClient by Ted Kremenek · 15 years ago
  62. 04d4bee Build canonical types for dependently-sized array types. by Douglas Gregor · 15 years ago
  63. 9d702ae Canonicalization of dependent C++0x decltype types. by Douglas Gregor · 15 years ago
  64. b197572 Canonicalization for dependent typeof(expr) types. by Douglas Gregor · 15 years ago
  65. 426cc38 Patch for future ir-gen for destructor calls. by Fariborz Jahanian · 15 years ago
  66. b88e888 Support out-of-line definitions of the members of class template by Douglas Gregor · 15 years ago
  67. fda7832 Make AnalysisManager into its own source file and a pure data management class. by Zhongxing Xu · 15 years ago
  68. e25ff83 PR3679 - handle #pragma weak by Ryan Flynn · 15 years ago
  69. 97ab394 This patch collects all analysis context data into a new class AnalysisContext. by Zhongxing Xu · 15 years ago
  70. f66eab0 Fix type to be consistent with the rest of the code. by Mike Stump · 15 years ago
  71. dbb8d81 Add support for -Wno-long-long. by Eli Friedman · 15 years ago
  72. 19b732a Add support for ObjC message expressions, in the Analyzer: by Argyrios Kyrtzidis · 15 years ago
  73. 87bcb50 Support ObjC methods as Entities. by Argyrios Kyrtzidis · 15 years ago
  74. b325146 Use a STL helper template 'pair_value_iterator', by both DeclReferenceMap and SelectorMap. by Argyrios Kyrtzidis · 15 years ago
  75. 66570b2 Add ObjCMethodDecl::isThisDeclarationADefinition(). by Argyrios Kyrtzidis · 15 years ago
  76. d88284b Index the selectors and provide the translation units that contain them by Argyrios Kyrtzidis · 15 years ago
  77. 0f39848 Add TranslationUnit::getSelectorMap(). by Argyrios Kyrtzidis · 15 years ago
  78. 557b1d2 Introduce SelectorMap whose purpose is to map selectors to objc methods and message exprs, by Argyrios Kyrtzidis · 15 years ago
  79. 27bd0dc Introduce the GlobalSelector class in the Indexing library. by Argyrios Kyrtzidis · 15 years ago
  80. 7f4656e -Introduce the idx::Analyzer class used for getting indexing information, like finding by Argyrios Kyrtzidis · 15 years ago
  81. 40c0e73 Introduce TULocation and TULocationHandler classes. by Argyrios Kyrtzidis · 15 years ago
  82. 52f1d47 Modify the Indexer class so that it can return the TranslationUnit that internal by Argyrios Kyrtzidis · 15 years ago
  83. e380c51 Add Entity::getInternalDecl() to be used only on Entities that refer to internal by Argyrios Kyrtzidis · 15 years ago
  84. 6dbbc0e Constify ASTLocation::print. by Argyrios Kyrtzidis · 15 years ago
  85. 614455c Fix some comments. by Argyrios Kyrtzidis · 15 years ago
  86. 768a6c9 Add getDeclReferenceMap() to the abstract interface of TranslationUnit class. by Argyrios Kyrtzidis · 15 years ago
  87. 94431b5 Introduce a helper template for the Handler classes and use it instead by Argyrios Kyrtzidis · 15 years ago
  88. 16d8bcf Accept Handler objects in parameters as references. by Argyrios Kyrtzidis · 15 years ago
  89. 77b4a79 Rename EntityHandler::HandleEntity to Handle. by Argyrios Kyrtzidis · 15 years ago
  90. b17dc46 -Make IndexProvider an abstract interface for getting indexing information. by Argyrios Kyrtzidis · 15 years ago
  91. 8e9e9ef Make tag declarations redeclarable. This change has three purposes: by Douglas Gregor · 15 years ago
  92. 6217b80 Change uses of: by Ted Kremenek · 15 years ago
  93. f7a0cf4 Remove 'StoreManager::OldCastRegion()', TypedViewRegion (which only by Ted Kremenek · 15 years ago
  94. d99cbe6 [llvm up] by Douglas Gregor · 15 years ago
  95. 1004a9f Make StoreManager::InvalidateRegion() virtual, move the current implementation by Ted Kremenek · 15 years ago
  96. 0e3ec3f Add 'MemRegion::getBaseRegion()', a utility method to strip ElementRegions with by Ted Kremenek · 15 years ago
  97. c447aba Check for identical types in C++ catch expression. Patch by Erik Verbruggen. by Sebastian Redl · 15 years ago
  98. 828e226 Use the new statement/expression profiling code to unique dependent by Douglas Gregor · 15 years ago
  99. 99b10be Incorporate feedback from Chris (on r76979). by Steve Naroff · 15 years ago
  100. 5a5c60d delete an undefined method. by Zhongxing Xu · 15 years ago