1. edb883c add utility method. by Zhongxing Xu · 15 years ago
  2. 7859cc6 add utility methods. by Zhongxing Xu · 15 years ago
  3. 149f138 Implement PR4175, catching some questionable comparisons. Patch by by Chris Lattner · 15 years ago
  4. 17945a0 De-ASTContext-ify DeclContext. by Argyrios Kyrtzidis · 15 years ago
  5. 048f30a Introduce DeclContext::getParentASTContext(). by Argyrios Kyrtzidis · 15 years ago
  6. 6fb0aee Remove the ASTContext parameter from the getBody() methods of Decl and subclasses. by Argyrios Kyrtzidis · 15 years ago
  7. f1d60ea Remove the ASTContext parameter from the printing related methods of Decl. by Argyrios Kyrtzidis · 15 years ago
  8. 40b598e Remove the ASTContext parameter from the attribute-related methods of Decl. by Argyrios Kyrtzidis · 15 years ago
  9. e4f2142 Key decisions about 'bool' vs '_Bool' to be based on a new flag in langoptions. by Chris Lattner · 15 years ago
  10. 16dbdce Take care of Chris's comments. by Fariborz Jahanian · 15 years ago
  11. 8d4655d Make an error message more clear. by Anders Carlsson · 15 years ago
  12. 47deacf A more detailed diagnosis of ill-formed ctor-initializer list. by Fariborz Jahanian · 15 years ago
  13. af017e6 Improvements to decltype. We now don't crash anymore when the expr is an overloaded function decl. by Anders Carlsson · 15 years ago
  14. 1fd2dd1 Improve code generation for function template specializations: by Douglas Gregor · 15 years ago
  15. 7881a05 Diagnose multiple initialzation of data-member/base by Fariborz Jahanian · 15 years ago
  16. 127102b Keep track of function template specializations, to eliminate by Douglas Gregor · 15 years ago
  17. f7b8eec OpenBSD support. - Patch by Jonathan Gray! by Daniel Dunbar · 15 years ago
  18. 3708b3d -Keep a reference to the ASTContext inside the TranslationUnitDecl. by Argyrios Kyrtzidis · 15 years ago
  19. 001d64d Fix the FloatingLiteral API to take the isexact flag by value instead of by Chris Lattner · 15 years ago
  20. 16e8be2 Move FunctionDecl::TemplateSpecializationInfo out into its own class, by Douglas Gregor · 15 years ago
  21. 683087f Remove ASTContext::getObjCQualifiedIdType(). by Steve Naroff · 15 years ago
  22. f0f0605 The default answer for isBoundable() should be false. by Zhongxing Xu · 15 years ago
  23. 4ebe3e4 Make the StackProtector bitfield use enums instead of obscure numbers. by Bill Wendling · 15 years ago
  24. 45483f7 Add stack protector support to clang. This generates the 'ssp' and 'sspreq' by Bill Wendling · 15 years ago
  25. 364e021 Improve support for overloaded operator templates. by Douglas Gregor · 15 years ago
  26. 0c6139d Make it possible for using decls to point to operators. Fixes PR4441. by Anders Carlsson · 15 years ago
  27. 4f596c2 Remove the last 'GetXXX' methods from GRStateManager. by Ted Kremenek · 15 years ago
  28. 8d2b356 Patch to mark destructors when they are used. by Fariborz Jahanian · 15 years ago
  29. baf45d3 More auto work. by Anders Carlsson · 15 years ago
  30. f670c8c Template argument deduction is no longer responsible for checking by Douglas Gregor · 15 years ago
  31. e7cf07d Can't have arrays of auto. by Anders Carlsson · 15 years ago
  32. e2bb224 An auto variable can't appear in its own initializer. by Anders Carlsson · 15 years ago
  33. e89d159 Implement enough of the 'auto' keyword so we can claim to support N2546. by Anders Carlsson · 15 years ago
  34. 6f3d838 OpenCL 1.0 support: attributes by Nate Begeman · 15 years ago
  35. e136e0e Add NamedDecl::getUnderlyingDecl that can see through UsingDecl and ObjCCompatibleAliasDecl. by Anders Carlsson · 15 years ago
  36. 58badb7 See through UsingDecls in more places. by Anders Carlsson · 15 years ago
  37. 1730ce4 Fix build break. by Zhongxing Xu · 15 years ago
  38. c8e27cc fix PR4452, a crash on invalid. The error recovery is still terrible in this case by Chris Lattner · 15 years ago
  39. 58d29a4 OpenCL 1.0 support: explicit casts to ext-vector types by Nate Begeman · 15 years ago
  40. e74eaef Add missing header file. by Ted Kremenek · 15 years ago
  41. 1637be7 Implicit instantiation for function template specializations. by Douglas Gregor · 15 years ago
  42. 6c07bdb Introduce a new concept to the static analyzer: SValuator. by Ted Kremenek · 15 years ago
  43. 72b60e3 OpenCL 1.0 Support: support "bool, true, false" tokens when compiling for OpenCL by Nate Begeman · 15 years ago
  44. 69cfb9b PCH support for OpenCL language options by Nate Begeman · 15 years ago
  45. 4e3629e OpenCL 1.0 patch 2/N: Language options & file extension by Nate Begeman · 15 years ago
  46. e53060f Improved semantic analysis and AST respresentation for function templates. by Douglas Gregor · 15 years ago
  47. c75bc2d Patch to diagnose and Mark use of implicit default assignment operator. by Fariborz Jahanian · 15 years ago
  48. 131f465 OpenCL 1.0 Support, patch 1/N: upper case swizzle operator and hex element index. by Nate Begeman · 15 years ago
  49. 53d4c14 Introduce the ResolveLocationInAST function which takes an ASTContext and a SourceLocation and it resolves it into a <Decl*, Stmt*> pair. by Argyrios Kyrtzidis · 15 years ago
  50. 53ba0b6 Remove uses of std::ostream from libAnalysis. by Ted Kremenek · 15 years ago
  51. 233e913 Remove GRStateManager::GetSValAsScalarOrLoc()/GetSVal(). by Ted Kremenek · 15 years ago
  52. 395b475 Add a DecltypeType type. by Anders Carlsson · 15 years ago
  53. 6fd634f Parse the C++0x decltype specifier. by Anders Carlsson · 15 years ago
  54. 52591bf Make sure that the template parameter lists get from the parser down to ActOnFunctionDeclarator for function template definitions by Douglas Gregor · 15 years ago
  55. e98da2e Support for [class.local]p4. by Anders Carlsson · 15 years ago
  56. e41590d [class.local] p1 and p3. Also, add back the xcodeproj file. by Anders Carlsson · 15 years ago
  57. e542c86 Start propagating template parameter lists to the right places to by Douglas Gregor · 15 years ago
  58. 2aa03d5 Introduce SourceManager::ísBeforeInTranslationUnit() which can compare 2 source locations and determine which one comes before the other, relative to the translation unit. by Argyrios Kyrtzidis · 15 years ago
  59. 34d25d8 Move the command line source location parsing from clang-cc.cpp into "include/Frontend/CommandLineSourceLoc.h". by Argyrios Kyrtzidis · 15 years ago
  60. d696aa5 Fix build. by Ted Kremenek · 15 years ago
  61. 25e751a Remove GRStateManager::getRegion/getSelfRegion(). by Ted Kremenek · 15 years ago
  62. 76500d0 Remove GRStateManager::BindLoc() and GRStateManager::Unbind(). by Ted Kremenek · 15 years ago
  63. f3b0975 Remove GRStateManager::BindDecl() and GRStateManager::BindDeclWithInit(). by Ted Kremenek · 15 years ago
  64. bb7c96f - Add MemRegion::getMemorySpace() by Ted Kremenek · 15 years ago
  65. ea20cd7 Move 'hasStackStorage()' and 'hasHeapStorage()' from MemRegionManager to MemRegion. by Ted Kremenek · 15 years ago
  66. dbc2afc API cleanup: move more methods from GRStateManager to GRState. by Ted Kremenek · 15 years ago
  67. d91ee27 Move all factory methods from SVal to ValueManager. API cleanup! by Zhongxing Xu · 15 years ago
  68. 2ace5cd Split ValueManager method definitions into its own source file. by Zhongxing Xu · 15 years ago
  69. 3038c5a ValueManager::makeNonLoc -> ValueManager::makeIntVal by Zhongxing Xu · 15 years ago
  70. 087d6c2 Instead of setting the default value of the array region, bind the rest of the by Zhongxing Xu · 15 years ago
  71. 0dea524 MemRegionManager: Migrate logic for getCodeTextRegion() over to using by Zhongxing Xu · 15 years ago
  72. dd198f0 Remove duplicated methods. by Zhongxing Xu · 15 years ago
  73. fb25052 Check in a new template argument list builder that should work better for variadic templates. by Anders Carlsson · 15 years ago
  74. 8ea841b switch Warnings.cpp to use the diagnostics machinery to print diagnostics, not *fprintf*! by Chris Lattner · 15 years ago
  75. a43484a MemRegions: by Ted Kremenek · 15 years ago
  76. 6cd4d87 Remove operator '<=' overload for SourceLocation. by Argyrios Kyrtzidis · 15 years ago
  77. cb5f8f5 Don't use operator overload '<' for SourceLocation, it has not semantic meaning. by Argyrios Kyrtzidis · 15 years ago
  78. 7ae7ad9 MemRegionManager: Migrate logic for getAllocaRegion() over to using trait-based MemRegion creation. by Ted Kremenek · 15 years ago
  79. 485f087 patch to mark use of implicit copy constructors. by Fariborz Jahanian · 15 years ago
  80. 6304b08 Migrate factory methods for FieldRegion and ObjCIVarRegion creation to use the by Ted Kremenek · 15 years ago
  81. 2501013 Refactor some of the logic in MemRegionManager for constructing regions using by Ted Kremenek · 15 years ago
  82. 2f96a06 add a warning group for unavailable decls that mirrors the one for by Chris Lattner · 15 years ago
  83. ac7610d Rework the way we track which declarations are "used" during by Douglas Gregor · 15 years ago
  84. b7f4cc0 Remove ImplicitMustBeDefined, use universal 'Used' flag by Fariborz Jahanian · 15 years ago
  85. 1a5364e Addressing Doug's suggestions: by Argyrios Kyrtzidis · 15 years ago
  86. c1005ac Fixed text of a diagnostics. by Fariborz Jahanian · 15 years ago
  87. 262f9cf Renamed Protocol as TheProtocol so people can use clang header for by Fariborz Jahanian · 15 years ago
  88. 3da83eb Made improvements in c++'s object model patch on Doug's review. by Fariborz Jahanian · 15 years ago
  89. 4b562cf Add the license part to the new source files. by Argyrios Kyrtzidis · 15 years ago
  90. 10b46d2 Introduce SourceManager::getLocation() to get a source location out of a "file:line:column" triplet. by Argyrios Kyrtzidis · 15 years ago
  91. 55d608c Introduce Decl::getSourceRange() which, like Stmt::getSourceRange(), represents the range that the declaration covers. by Argyrios Kyrtzidis · 15 years ago
  92. 06c27ee Add operator '<=' for comparing SourceLocations. by Argyrios Kyrtzidis · 15 years ago
  93. 0853a02 Introduce the ASTUnit class. by Argyrios Kyrtzidis · 15 years ago
  94. 9cfbe48 Parsing and AST support for using declarations, from John Thompson! by Douglas Gregor · 15 years ago
  95. e0762c9 Keep track of when declarations are "used" according to C and by Douglas Gregor · 15 years ago
  96. 7d5c74e Use QualType to represent block's implicit return type as by Fariborz Jahanian · 15 years ago
  97. f8dcb86 Patch for implementation of C++'s object model. This is work in progress. by Fariborz Jahanian · 15 years ago
  98. 3ff1259 Remove more GetSVal/GetLValue methods in GRExprEngine/GRState, instead by Ted Kremenek · 15 years ago
  99. 45257c3 A further step of r73690: associate the cast-to type with the created symbol, by Zhongxing Xu · 15 years ago
  100. 11e5110 Make changes to PCHReader to allow reading a PCH file without having a pre-initialized Preprocessor. by Argyrios Kyrtzidis · 15 years ago