1. 77a3c9e Add two small utility functions to PCHReader that the writer will use. WIP. by Sebastian Redl · 14 years ago
  2. 90a8f27 Add a warning to catch a bug recently caught by code review, like this: by Chris Lattner · 14 years ago
  3. 6398235 Whenever we're creating an expression that is typically an rvalue by Douglas Gregor · 14 years ago
  4. e4b8f11 Properly add to 32 by Douglas Gregor · 14 years ago
  5. 4bd4031 Downgrade the "when type is in parentheses, array cannot have dynamic by Douglas Gregor · 14 years ago
  6. 9b36c3f Modify the pragma handlers to accept and use StringRefs instead of IdentifierInfos. by Argyrios Kyrtzidis · 14 years ago
  7. de80ec1 Improve diagnostics for the "type qualifier on return type has no by Douglas Gregor · 14 years ago
  8. 5291c3c When forming a function call or message send expression, be sure to by Douglas Gregor · 14 years ago
  9. aef0199 Diagnose typedef of an operator name. Fixes PR7462 by Douglas Gregor · 14 years ago
  10. 8dd0c56 Instantiate attributes when first building an instantiated VarDecl. by Fariborz Jahanian · 14 years ago
  11. 669eed8 Provide a special diagnostic for attempts to explicitly specialize by Douglas Gregor · 14 years ago
  12. dd41ed5 Fix a documentation paste-o and eliminate a useless function parameter, both found by Sebastian by Douglas Gregor · 14 years ago
  13. cdbcad0 We should not be recursing over the shadow definitions in UsingDecl -- by Craig Silverstein · 14 years ago
  14. f9ea1f3 Produce an error on encountering a pointer or reference to a qualified function type. Fixes PR7470. by Sebastian Redl · 14 years ago
  15. 1dc13a1 Split the normal and chained PCH writing paths and add a tiny bit of implementation to the latter. WIP. by Sebastian Redl · 14 years ago
  16. cad8d31 Copy over attributes to instantiated variable. by Fariborz Jahanian · 14 years ago
  17. 03569ea If we are past tok::eof and in caching lex mode, avoid caching repeated tok::eofs. by Argyrios Kyrtzidis · 14 years ago
  18. 84ca008 Compute Type dependent-ness of BlockDeclRefExpr on the fly when constructing it. by Fariborz Jahanian · 14 years ago
  19. 52bc56a Move setting of Dependent Type to BlockDeclRefExpr's constructor. by Fariborz Jahanian · 14 years ago
  20. 184aa4e fix PR7280 by making the warning on code like this: by Chris Lattner · 14 years ago
  21. 9b3215d change the 'invalid token after top level declarator' message to be by Chris Lattner · 14 years ago
  22. 004659a Fix PR7617 by not entering ParseFunctionDefinition when by Chris Lattner · 14 years ago
  23. c82daef add a const qualifier, refactor some code. by Chris Lattner · 14 years ago
  24. 6d00c13 Add PCH support for the remaining C++ exprs. by Argyrios Kyrtzidis · 14 years ago
  25. c61bb20 Slightly improve the diagnostic when using a qualified function typedef to declare nonmember or static member functions. by Sebastian Redl · 14 years ago
  26. 77f4603 When given the -chained-pch option and a previous PCH file, have the PCHWriter emit a CHAINED_METADATA record instead of METADATA, and write a link to the previous file there. by Sebastian Redl · 14 years ago
  27. 04821c7 Ignore -Wno-main, per PR7269. by Eli Friedman · 14 years ago
  28. 27f46ee Refer to implicit "conversions" rather than implicit "casts", which by Douglas Gregor · 14 years ago
  29. a0068fc Introduce -f{no-}spell-checking options to enable/disable by Douglas Gregor · 14 years ago
  30. 6b3f1eb Move traverseunqualifiedtypeloc over to the 'main' typeloc tree. by Craig Silverstein · 14 years ago
  31. d6ac452 Add a frontend option -chained-pch and don't pass an active PCH reader to the PCH writer if it is not set, preventing creation of chained PCH files. Since the reader is so far unused, effectively no functionality change. by Sebastian Redl · 14 years ago
  32. 40ed9a1 Support code completion for parameter names in Objective-C method declarations. by Douglas Gregor · 14 years ago
  33. 1f5537a Introduce a new code-completion point prior to an identifier in the by Douglas Gregor · 14 years ago
  34. a93e3b5 Some preparatory work for chained PCH. No functionality change. by Sebastian Redl · 14 years ago
  35. 80db8cb Makes RecursiveASTVisitor traverse the type of a temporary object by Zhanyong Wan · 14 years ago
  36. 24bae92 When performing substitution of template arguments within the body of by Douglas Gregor · 14 years ago
  37. 8871a44 Introduce PCHReader::GetTranslationUnitDecl() and use it instead of ReadDeclRecord when initializing. by Argyrios Kyrtzidis · 14 years ago
  38. bfcc92c Support TemplateTemplateParmDecl for PCH. by Argyrios Kyrtzidis · 14 years ago
  39. 6d82ef4 Bowing to popular demand, reduce the "comma at end of enumerator list" by Douglas Gregor · 14 years ago
  40. be19110 For TagType and TemplateSpecializationType, isDependent calculation may be invalid because some decls that the by Argyrios Kyrtzidis · 14 years ago
  41. 663e380 Read/write the C++ parts of DeclRefExpr and MemberExpr for PCH. by Argyrios Kyrtzidis · 14 years ago
  42. 82f8e79 Fix reading of UsingDecl from PCH. by Argyrios Kyrtzidis · 14 years ago
  43. 9705752 Remove unused protected constructor of DeclRefExpr. by Argyrios Kyrtzidis · 14 years ago
  44. fbc9421 Wrap the new ext-warn on extraneous comma on the last entry of an enumerator by Chandler Carruth · 14 years ago
  45. 7d5c45e Add support for differentiating between attributes ignored when handled and by Chandler Carruth · 14 years ago
  46. ed8abf1 Reinstate the fix for PR7556. A silly use of isTrivial() was by Douglas Gregor · 14 years ago
  47. 8474567 Revert r107828 and r107827, the fix for PR7556, which seems to be by Douglas Gregor · 14 years ago
  48. 016a4a9 Rename CXXZeroInitValueExpr to CXXScalarValueInitExpr, to reflect its by Douglas Gregor · 14 years ago
  49. 63ef464 Do not use CXXZeroValueInitExpr for class types. Instead, use by Douglas Gregor · 14 years ago
  50. 717cc00 Changes how the TypeLoc traverser invokes the Type traverser: before, by Zhanyong Wan · 14 years ago
  51. 38e317d add driver support for minix, patch by Kees van Reeuwijk from PR7583 by Chris Lattner · 14 years ago
  52. bb80a8e Delay passing InterestingDecls to the Consumer until when we know we are not in recursive loading and the by Argyrios Kyrtzidis · 14 years ago
  53. 5f1bfc1 Remove Decl::getCompoundBody(). by Argyrios Kyrtzidis · 14 years ago
  54. 06a54a3 Introduce Decl::hasBody() and FunctionDecl::hasBody() and use them instead of getBody() when we are just checking the existence of a body, to avoid de-serialization of the body from PCH. by Argyrios Kyrtzidis · 14 years ago
  55. 8b5dec3 implement PR7569, warning about assignment to null, which by Chris Lattner · 14 years ago
  56. c34c211 Avoid double-traversing for QualifiedTypeLoc -- we were calling by Craig Silverstein · 14 years ago
  57. 744016d Provide a hook for the benefit of clients using clang IR gen as a subroutine: by John McCall · 14 years ago
  58. dd5faf0 Add a const version of a method, to be consistent with other methods by Craig Silverstein · 14 years ago
  59. fa87d81 Implement dumpToStream() for NonStaticGlobalSpaceRegion and StaticGlobalSpaceRegion. by Ted Kremenek · 14 years ago
  60. db2fa8a Added a path-sensitive idempotent operation checker (-analyzer-idempotent-operation). Finds idempotent and/or tautological operations in a path sensitive context, flagging operations that have no effect or a predictable effect. by Tom Care · 14 years ago
  61. 1693e15 Improve the accuracy of getSourceRange() for DeclaratorDecl and by Douglas Gregor · 14 years ago
  62. 7d6228f Added several helper functions to Stmt to recursively check for different elements (macros, enum constants, etc). by Tom Care · 14 years ago
  63. d455add Add to PCH missing Sema information about VTable uses and dynamic classes. by Argyrios Kyrtzidis · 14 years ago
  64. 65d336b Add skeleton code to make wpa call the analysis engine. by Zhongxing Xu · 14 years ago
  65. dc01a15 Collect function definitions in the Indexer when indexing through the ASTs. by Zhongxing Xu · 14 years ago
  66. 5dd3af7 Remove the now-unused GRState::isEqual method. Instead of asking if an expression equals a certain value, use SValuator::EvalEQ and GRState::Assume to see if it can, must, or must not equal that value. by Jordy Rose · 14 years ago
  67. c8f9af2 Read/write the identifier namespace in PCH for decls that may modify it. by Argyrios Kyrtzidis · 14 years ago
  68. 7b081c8 Read/write some source location for PCH. by Argyrios Kyrtzidis · 14 years ago
  69. 400f512 Fix a regression of a previous commit of mine (rdar://8158953). by Argyrios Kyrtzidis · 14 years ago
  70. c91e9f4 Read/write more information of ASTContext for PCH. Overriden methods and instantiated-from information. by Argyrios Kyrtzidis · 14 years ago
  71. 0061138 Don't try to install the __[u]int128_t identifier if it is already installed by PCHReader. by Argyrios Kyrtzidis · 14 years ago
  72. 9421adc Read/write specialization info of static data members for PCH. by Argyrios Kyrtzidis · 14 years ago
  73. 4d2229c Add TypeLoc traversal to the RecursiveASTVisitor! Because the TypeLocs don't by Nick Lewycky · 14 years ago
  74. a8bef69 Fix ObjCInterfaceTypeLoc to inherit from ObjCObjectTypeLoc so as to match the by Nick Lewycky · 14 years ago
  75. 32f2656 Add a new symbol type, SymbolExtent, to represent the extents of memory regions that may not be known at compile-time (such as those created by malloc). This replaces the old setExtent/getExtent API on Store, which used the GRState's GDM to store SVals. by Jordy Rose · 14 years ago
  76. a038c1d When setting the anonymous namespace at PCH reading, it may still be initializing so avoid by Argyrios Kyrtzidis · 14 years ago
  77. 1827403 Lazily declare default constructors. We now delay the construction of by Douglas Gregor · 14 years ago
  78. 2258431 Lazily declare implicit copy constructors. by Douglas Gregor · 14 years ago
  79. 0745d0a Read/write CastExpr's CXXBaseSpecifierArray for PCH. by Argyrios Kyrtzidis · 14 years ago
  80. 8a50733 Fix broken PCH support for CXXDefaultArgExpr. by Argyrios Kyrtzidis · 14 years ago
  81. a376d10 Lazily declare copy-assignment operators. by Douglas Gregor · 14 years ago
  82. 234faa7 Make RecursiveASTVisitor traverse function parameter types in a function by Zhanyong Wan · 14 years ago
  83. 4923aa2 Lazily declare the implicitly-declared destructor in a C++ class. by Douglas Gregor · 14 years ago
  84. d0b982c Don't visit implicitly defined functions (default constructors and the by Craig Silverstein · 14 years ago
  85. 23c94db Move the "current scope" state from the Parser into Action. This by Douglas Gregor · 14 years ago
  86. fe2dd6c By default, warn about commas at the end of an enumerator list in C++/C89. by Douglas Gregor · 14 years ago
  87. 9146832 Handle CXXConstructorDecl, CXXDestructorDecl, and CXXConversionDecl for PCH. by Argyrios Kyrtzidis · 14 years ago
  88. 37ffed3 Fully read/write CXXRecordDecl for PCH. by Argyrios Kyrtzidis · 14 years ago
  89. 43921b5 Allow reading of InjectedClassNameType from PCH even when its decl is currently initializing. by Argyrios Kyrtzidis · 14 years ago
  90. 9763e22 - Allow a typedef type to be read from PCH even if its decl is currently initializing. by Argyrios Kyrtzidis · 14 years ago
  91. b8b03e6 Add some side-effect free Create methods for TypeDecl subclasses and use them for PCH reading. by Argyrios Kyrtzidis · 14 years ago
  92. 6d956df Change CallGraph::Prog to be a reference. idx::Program means to be a global object to the Index library. by Zhongxing Xu · 14 years ago
  93. f650a62 Handle typedef function declarations correctly, such as by Craig Silverstein · 14 years ago
  94. eb8c670 Provide exception specifications for implicitly-declared default constructors. by Douglas Gregor · 14 years ago
  95. dcee3ce Fix PR 7475 by enhancing the static analyzer to also invalidate bindings for non-static global variables by Ted Kremenek · 14 years ago
  96. 7dadf79 Add an ivar to SymbolReaper for the current statement, and then stop passing the current statement around everywhere. Preparation for symbolic extents. by Jordy Rose · 14 years ago
  97. b87786f Provide an exception-specification for an implicitly-declared by Douglas Gregor · 14 years ago
  98. 1d110e0 Remove unnecessary ASTContext parameter from by Douglas Gregor · 14 years ago
  99. c77a551 ExplodedGraph never uses ASTContext, remove it. by Zhongxing Xu · 14 years ago
  100. 2f9d874 Extend the "cannot convert from base class pointer to derived class by Douglas Gregor · 14 years ago