1. d83d040 Implement delayed parsing for member function templates. Fixes PR4608. by Douglas Gregor · 15 years ago
  2. c141086 Updated statuc page to reflect recent implementations by Fariborz Jahanian · 15 years ago
  3. 2376002 Remove 'AnalysisContext::setDecl()', as we the Decl associated with an by Ted Kremenek · 15 years ago
  4. 54c809b Constify LocationContext* (parent) and Stmt* fields in LocationContext. by Ted Kremenek · 15 years ago
  5. 1561248 Add test taking the address of a member function template and converting it to a member pointer. by Douglas Gregor · 15 years ago
  6. be1ad92 Update Clang C++ status to better reflect what is implemented. by Douglas Gregor · 15 years ago
  7. 82cd37c Remove 'SelfRegion' field from both BasicStoreManager and RegionStoreManager. by Ted Kremenek · 15 years ago
  8. 65ec1fd Implement conversion function templates, along with the ability to use by Douglas Gregor · 15 years ago
  9. 263b352 Calculate the address point for a vtable better, and start fleshing out the vcall by Mike Stump · 15 years ago
  10. 17e32f3 Refactor instantiation of destructors to use the common CXXMethodDecl by Douglas Gregor · 15 years ago
  11. c28bbc2 Patch to ir-gen copy assigning array members when synthesizing by Fariborz Jahanian · 15 years ago
  12. d17da2b Add LocationContext* field to VarRegion. This is needed for interprocedural analysis. by Ted Kremenek · 15 years ago
  13. 1cbc6b0 Add test for out-of-line definition of a conversion function by Douglas Gregor · 15 years ago
  14. ac373c4 Fix parsing for out-of-line definitions of constructors and by Douglas Gregor · 15 years ago
  15. dec0666 Introduce support for constructor templates, which can now be declared by Douglas Gregor · 15 years ago
  16. eb0b6d5 Patch to provide ir-gen support in copying array members by Fariborz Jahanian · 15 years ago
  17. 666a91e Testcase for a recent checkin. by Mike Stump · 15 years ago
  18. 0aa3f75 remove a dead warning. by Chris Lattner · 15 years ago
  19. 64a54ad Array member construction in prologue of user-declared constructors. by Fariborz Jahanian · 15 years ago
  20. 0de7899 Introduce getConstantArrayElementCount API and use it in by Fariborz Jahanian · 15 years ago
  21. 1633427 Fix typo. by Mike Stump · 15 years ago
  22. 0b14331 Eagerly bind 'self' to SelfRegion. Thus we do not need to get code decl from by Zhongxing Xu · 15 years ago
  23. f3cd673 Fix commentos by Daniel Dunbar · 15 years ago
  24. 7cd830b Fix refacto. by Daniel Dunbar · 15 years ago
  25. f6d6a22 Reversing part of 79544. by Sanjiv Gupta · 15 years ago
  26. b8310ea Get the code decl from the initial location context. by Zhongxing Xu · 15 years ago
  27. eda9546 Get the code decl from the initial location context. by Zhongxing Xu · 15 years ago
  28. 641f7d1 gcc told me to add these. by Daniel Dunbar · 15 years ago
  29. 5ab128b Tie the local check NSErrorCheck to a Decl to pave the way by Zhongxing Xu · 15 years ago
  30. b9871a2 We now support overriding base functions in vtables. WIP. by Mike Stump · 15 years ago
  31. 3caa4fb Remove comma at the end of enumerator list. by Daniel Dunbar · 15 years ago
  32. a5d8200 Remove TypeSpecStartLocation from VarDecl/FunctionDecl/FieldDecl, and use DeclaratorInfo to get this information. by Argyrios Kyrtzidis · 15 years ago
  33. d1571ac Make the new Objective-C "id" and "Class" redefinition types special by Douglas Gregor · 15 years ago
  34. 6b90686 Implement support for calling member function templates, which involves: by Douglas Gregor · 15 years ago
  35. c42a92a Center the dragon. by Ted Kremenek · 15 years ago
  36. a12a328 Make the dragon a link... by Ted Kremenek · 15 years ago
  37. 120aff9 Include LLVM logo ... because dragons are cool. by Ted Kremenek · 15 years ago
  38. 6b48720 Added member arrays to more tests now that ir-gen supports it. by Fariborz Jahanian · 15 years ago
  39. 1c536bf Patch to ir-gen destruction of array member elements in revers order by Fariborz Jahanian · 15 years ago
  40. 37b372b Initial support for parsing and representation of member function templates. by Douglas Gregor · 15 years ago
  41. f800f6c ir-gen patch to destruct array members. WIP. by Fariborz Jahanian · 15 years ago
  42. 0280115 Update checker build. by Ted Kremenek · 15 years ago
  43. 0f499d9 Fix a typo in a variable name by Douglas Gregor · 15 years ago
  44. 8165ced Don't install wpa or index-test tools. by Daniel Dunbar · 15 years ago
  45. da3e03e Issue an error if the user specifies parameters in a function marked as ISR. by Sanjiv Gupta · 15 years ago
  46. 09105f5 Using "ObjCImplicitSetterGetterRefExpr" instead of "ObjCImplctSetterGetterRefExpr". by Fariborz Jahanian · 15 years ago
  47. b983744 Refine vbase offsets for the inductive case. Things are now starting by Mike Stump · 15 years ago
  48. f18970d by John McCall · 15 years ago
  49. 43959a9 Refactor the instantiation of statements into a generic tree transformation. by Douglas Gregor · 15 years ago
  50. 357f7ce Improve the Getting Started and Hacking web pages, patch by John Thompson! by Chris Lattner · 15 years ago
  51. ac02f20 retain/release checker: Treat NSObject method '-awakeAfterUsingCoder:' by Ted Kremenek · 15 years ago
  52. caac089 Make this test case more portable by removing its dependency on system header files. by Ted Kremenek · 15 years ago
  53. 04e8357 Fix bit-field promotion to be a bit closer to the behavior of gcc. by Eli Friedman · 15 years ago
  54. d5c3b13 If the 'while' has an empty body, set the body to the continue target block. by Zhongxing Xu · 15 years ago
  55. 1d4b218 If the body of for loop is empty, set its body to the continue target. by Zhongxing Xu · 15 years ago
  56. 7fa0d93 Ensure we don't output repeated vbase offsets. I have a testcase for by Mike Stump · 15 years ago
  57. e29ba20 Basic nested-template implementation. by John McCall · 15 years ago
  58. fafd383 Rename: ProgramPoint::getContext() => ProgramPoint::getLocationContext(). by Zhongxing Xu · 15 years ago
  59. 995d281 Test case for my last patch plus a minor clean up. by Fariborz Jahanian · 15 years ago
  60. c484381 retain/release checker: Special case handling of CFAttributedStringSetAttribute, by Ted Kremenek · 15 years ago
  61. 6147a90 ir-gen for multi-dimensional array construction. WIP. by Fariborz Jahanian · 15 years ago
  62. 21531fa Enhance diagnostics concerning attribute 'ns_returns_retained' and 'cf_returns_retained' to present the range of the attribute and have the diagnostic location be the declaration that the attribute was falsely attached to. This solves the problem where these diagnostics were being suppressed when these attributes were wrapped in a macro that was defined in a system header. by Ted Kremenek · 15 years ago
  63. 82bf010 Keep track of the right paren ')' source location in a function declarator. by Argyrios Kyrtzidis · 15 years ago
  64. 1dea87a Removed unneeded code for break/continue statements in by Fariborz Jahanian · 15 years ago
  65. 288dcaf ir-gen for constructing arrays as non-static data members. WIP. by Fariborz Jahanian · 15 years ago
  66. b63decf Add TCE target to clang; patch by Mikael Lepistö. by Eli Friedman · 15 years ago
  67. 44ba7bf Remove now unnecessary helper methods. by Daniel Dunbar · 15 years ago
  68. 90b504a Tweak svn:ignore by Daniel Dunbar · 15 years ago
  69. 7765934 Switch to SmallString::str from SmallString::c_str. by Daniel Dunbar · 15 years ago
  70. d7407dc Convert parts of Rewriter to StringRef based API. by Daniel Dunbar · 15 years ago
  71. 7e37c81 Use raw_svector_ostream for string concatenation. by Daniel Dunbar · 15 years ago
  72. eb7e9c3 One second thought, I think I want to limit this class to just vtable by Mike Stump · 15 years ago
  73. ee560f3 Cleanup: fold IndirectPrimary into builder. by Mike Stump · 15 years ago
  74. cc2a012 We don't want to confuse this layout with the BLayout from the builder. by Mike Stump · 15 years ago
  75. 9c88d98 Update for recent improvements. by Mike Stump · 15 years ago
  76. f7a50a4 Get the Decl from the current ExplodedNode. Eventually the diagnostic client by Zhongxing Xu · 15 years ago
  77. ad97866 Update CMakeLists. by Benjamin Kramer · 15 years ago
  78. a95d757 Make integer promotions work correctly on PIC16 and other platforms by Eli Friedman · 15 years ago
  79. 09765ec Restore vbase offsets for classes without a primary. by Mike Stump · 15 years ago
  80. b46c92d Refine vcalls a little. by Mike Stump · 15 years ago
  81. 35d44e5 Fix a comment and improve an assert message. by Argyrios Kyrtzidis · 15 years ago
  82. d4a7e54 Store/load type source info from/to PCH files. by Argyrios Kyrtzidis · 15 years ago
  83. e866190 Use Sema's LocInfoType to pass and preserve type source info through the Parser. by Argyrios Kyrtzidis · 15 years ago
  84. 1bb8a45 Introduce LocInfoType which is a Sema-specific implementation detail. by Argyrios Kyrtzidis · 15 years ago
  85. 4adab7f Create and instantiate a DeclaratorInfo using a newly introduced Sema::GetDeclaratorInfoForDeclarator(). by Argyrios Kyrtzidis · 15 years ago
  86. a1d5662 Introduce DeclaratorDecl and pass DeclaratorInfo through the Decl/Sema interfaces. by Argyrios Kyrtzidis · 15 years ago
  87. b17166c Introduce DeclaratorInfo and TypeLoc, intended to be used for storing and reading source information for types. by Argyrios Kyrtzidis · 15 years ago
  88. 7d878eb Update Xcode project. by Anders Carlsson · 15 years ago
  89. 552b275 Cleanup. by Mike Stump · 15 years ago
  90. b3d8837 Add some documentation. by Mike Stump · 15 years ago
  91. 32f3701 Cleanups. Move GenerateRtti to CodeGenModule. by Mike Stump · 15 years ago
  92. d2ae5aa Renamed ClassProp data member of ObjCImplctSetterGetterRefExpr by Fariborz Jahanian · 15 years ago
  93. 109b13d Move the rest of the vtable building code into the new builder. by Mike Stump · 15 years ago
  94. 65defe3 Suck up method generation. by Mike Stump · 15 years ago
  95. 7c435fa Split out vtable bulding code into a builder. by Mike Stump · 15 years ago
  96. 154440e Renamed ObjCKVCRefExpr to ObjCImplctSetterGetterRefExpr. by Fariborz Jahanian · 15 years ago
  97. f53b443 Change ActOnReturnStmt to not take a FullExprArg. Instead, Sema will wrap the return expr inside a CXXExprWithTemporaries if needed. by Anders Carlsson · 15 years ago
  98. 292a5c0 Remove unused parameter BugReporter due to previous patch. by Zhongxing Xu · 15 years ago
  99. 50d5bc4 Now we can get the CFG from the ProgramPoint. No need to pass in the by Zhongxing Xu · 15 years ago
  100. 4f9449d Add test for finding bfin backend. by Daniel Dunbar · 15 years ago