1. ac7610d Rework the way we track which declarations are "used" during by Douglas Gregor · 15 years ago
  2. e0762c9 Keep track of when declarations are "used" according to C and by Douglas Gregor · 15 years ago
  3. f54741e Handle temporaries in default arguments. by Anders Carlsson · 15 years ago
  4. 99ba36d Improvements to CXXExprWithTemporaries in preparation for fixing a bug with default arguments that have temporaries. by Anders Carlsson · 15 years ago
  5. d958389 Make sure to copy back arguments that can be changed by FindAllocationOverload. This fixes placement new. (Sebastian, please review). by Anders Carlsson · 15 years ago
  6. fc27d26 Fix an off by one error when trying to perform copy initialization of operator new and operator delete arguments. Sebastian, please review. by Anders Carlsson · 15 years ago
  7. 75bbb97 Forgot the implementation. Thanks Eli. by Anders Carlsson · 15 years ago
  8. 88eaf07 Clean up the newly added C++ AST nodes. by Anders Carlsson · 15 years ago
  9. a19e66d It's OK for a full expr to be null. This fixes the failing test cases. by Anders Carlsson · 15 years ago
  10. f5dcd38 AddInitializerToDecl needs to take a full expression. by Anders Carlsson · 15 years ago
  11. 860306e Add the newly created temporary to the ExprTemporaries stack. by Anders Carlsson · 15 years ago
  12. ff6b3d6 Stop using CXXTempVarDecl and use CXXTemporary instead. by Anders Carlsson · 15 years ago
  13. 8e587a1 Remove VarDecl from CXXConstructExpr. by Anders Carlsson · 15 years ago
  14. def1199 Add Sema::MaybeBindToTemporary which takes an expression and (if needed) wraps it in a CXXBindTemporaryExpr. Use this when creating CXXTemporaryObjectExprs. by Anders Carlsson · 15 years ago
  15. 3433cf7 Template instantiation for C++ "new" expressions. by Douglas Gregor · 15 years ago
  16. d81e6ca Introduce a new expression type, CXXUnresolvedConstructExpr, to by Douglas Gregor · 15 years ago
  17. 7c3e8a1 Create CXXConstructExpr calls for arguments passed to functions. by Anders Carlsson · 15 years ago
  18. bde2008 Fix instantiate-function-1.cpp. by Anders Carlsson · 15 years ago
  19. 165a0a0 Implement Sema::ActOnFinishFullExpr and create a CXXExprWithTemporaries node if necessary. by Anders Carlsson · 15 years ago
  20. 390b4cc Reflow some comments. by Mike Stump · 15 years ago
  21. 9afe130 When there are any member new operators, global versions aren't looked up at all. by Sebastian Redl · 15 years ago
  22. 3f5b61c Implement explicit instantiations of member classes of class templates, e.g., by Douglas Gregor · 15 years ago
  23. 6e8ed16 Implement C++0x nullptr. by Sebastian Redl · 15 years ago
  24. 4f14963 Fix a FIXME in new expression checking. by Sebastian Redl · 15 years ago
  25. de866f3 Turns out that Sebastian already implemented the logic to compute the by Douglas Gregor · 15 years ago
  26. 0c6db94 Implement support for comparing pointers with <, >, <=, >=, ==, and != by Douglas Gregor · 15 years ago
  27. 972041f Improve validation of C++ exception handling: diagnose throwing incomplete types and jumps into protected try-catch scopes. by Sebastian Redl · 15 years ago
  28. a5cd2cd Make reference class unification in conditional expressions check for validity of the conversion. by Sebastian Redl · 15 years ago
  29. eaaebc7 This is a pretty big cleanup for how invalid decl/type are handle. by Chris Lattner · 15 years ago
  30. 09c4abb Add an ASTContext parameter to CXXTemporaryObjectExpr. by Anders Carlsson · 15 years ago
  31. 26de549 Add a VarDecl parameter to the CXXTemporaryObjectExpr constructor. It's unused for now, so no functionality change yet. Also, create CXXTempVarDecls to pass to the CXXTemporaryObjectExpr ctor. by Anders Carlsson · 15 years ago
  32. 78eb874 Conditional operator C++ checking complete. What issues remain are in more general code. by Sebastian Redl · 15 years ago
  33. 9bebfad Bring member pointer operands of the conditional operator to a common type. We're getting there ... by Sebastian Redl · 15 years ago
  34. d1bd7fc Another piece of the conditional operator puzzle. We'll want to use FindCompositePointerType in some other places, too. by Sebastian Redl · 15 years ago
  35. 7645850 Implement lvalue test for conditional expressions. by Sebastian Redl · 15 years ago
  36. 3201f6b Fix a crash bug when comparing overload quality of conversion operators with conversion constructors. by Sebastian Redl · 15 years ago
  37. e2b6833 Parse deleted member functions. Parsing member declarations goes through a different code path that I forgot previously. by Sebastian Redl · 15 years ago
  38. 6ab3524 Propagate the ASTContext to various AST traversal and lookup functions. by Douglas Gregor · 15 years ago
  39. b28317a Introduce a new OpaquePtr<N> struct type, which is a simple POD wrapper for a by Chris Lattner · 15 years ago
  40. 8dcb29d Fix a few isObjectTypes that really need to be isIncompleteOrObject by Douglas Gregor · 15 years ago
  41. e7450f5 Make sure to use RequireCompleteType rather than testing for by Douglas Gregor · 15 years ago
  42. 8211eff More work on diagnosing abstract classes. We can now handle cases like by Anders Carlsson · 15 years ago
  43. 11f21a0 More improvements to abstract type checking. Handle arrays correctly, and make sure to check parameter types before they decay. by Anders Carlsson · 15 years ago
  44. b9bbe49 It's an error to try to allocate an abstract object using new. by Anders Carlsson · 15 years ago
  45. 7c80bd6 Almost complete implementation of rvalue references. One bug, and a few unclear areas. Maybe Doug can shed some light on some of the fixmes. by Sebastian Redl · 16 years ago
  46. f53597f Convert a bunch of actions to smart pointers, and also bring PrintParserCallbacks a bit more in line with reality. by Sebastian Redl · 16 years ago
  47. ba49817 Implement template instantiation for several more kinds of expressions: by Douglas Gregor · 16 years ago
  48. 063daf6 Refactor the way we handle operator overloading and template by Douglas Gregor · 16 years ago
  49. 86447ec Rename DiagnoseIncompleteType to RequireCompleteType, and update the documentation to reflect the fact that we can instantiate templates here by Douglas Gregor · 16 years ago
  50. c1efaec Eliminate CXXRecordType by Douglas Gregor · 16 years ago
  51. 2850784 Make more AST nodes and semantic checkers dependent-expression-aware. by Sebastian Redl · 16 years ago
  52. 2224f84 C99 DR #316 implies that the function parameter types that are known by Douglas Gregor · 16 years ago
  53. 48f3bb9 Downgrade complaints about calling unavailable functions to a warning by Douglas Gregor · 16 years ago
  54. 4330d65 remove "; candidates are/is:" from various ambiguity diagnostics. by Chris Lattner · 16 years ago
  55. 5cdf821 Introduce _Complex conversions into the function overloading by Douglas Gregor · 16 years ago
  56. f9201e0 Initial implementation of function overloading in C. by Douglas Gregor · 16 years ago
  57. 00e68e2 Update new expression to make use of Declarator::getSourceRange(). by Sebastian Redl · 16 years ago
  58. 7c8bd60 Move CheckPointerToMemberOperands to SemaExprCXX.cpp by Sebastian Redl · 16 years ago
  59. 8189cde Overhaul of Stmt allocation: by Ted Kremenek · 16 years ago
  60. 1733001 Fix our semantic analysis of by Douglas Gregor · 16 years ago
  61. ebc07d5 Allow taking the address of data members, resulting in a member pointer. by Sebastian Redl · 16 years ago
  62. 4c921ae Eliminated LookupCriteria, whose creation was causing a bottleneck for by Douglas Gregor · 16 years ago
  63. 500d329 move library-specific diagnostic headers into library private dirs. Reduce by Chris Lattner · 16 years ago
  64. 3e8ffd2 Refactor Sema::LookupDecl() into 2 functions: LookupDeclInScope() and LookupDeclInContext(). by Steve Naroff · 16 years ago
  65. 133147d Remove 'NamespaceNameOnly' argument to Sema::LookupDecl(). It is unused. by Steve Naroff · 16 years ago
  66. 20c6b3b Split the single monolithic DiagnosticKinds.def file into one by Chris Lattner · 16 years ago
  67. 4433aaf Implement implicit conversions for pointers-to-member. by Sebastian Redl · 16 years ago
  68. 4afa39d Remove ScopedDecl, collapsing all of its functionality into Decl, so by Douglas Gregor · 16 years ago
  69. 4ec339f Centralize error reporting of improper uses of incomplete types in the by Douglas Gregor · 16 years ago
  70. cd965b9 Convert a few expression actions to smart pointers. by Sebastian Redl · 16 years ago
  71. 66b947f Fix <rdar://problem/6502934>. We were creating an ImplicitCastExpr by Douglas Gregor · 16 years ago
  72. 506ae41 Part one of handling C++ functional casts. This handles semantic by Douglas Gregor · 16 years ago
  73. eb11cd0 Refactor name lookup. by Douglas Gregor · 16 years ago
  74. 09f41cf Introduce support for C++0x explicit conversion operators (N2437) by Douglas Gregor · 16 years ago
  75. fc76761 FunctionDecl::setParams() now uses the allocator associated with ASTContext to allocate the array of ParmVarDecl*'s. by Ted Kremenek · 16 years ago
  76. 482b77d Cleanup DeclContext::addDecl and DeclContext::insert interface, from Piotr Rak by Douglas Gregor · 16 years ago
  77. 0701bbb This is a large/messy diff that unifies the ObjC AST's with DeclContext. by Steve Naroff · 16 years ago
  78. 64b45f7 PODness and Type Traits by Sebastian Redl · 16 years ago
  79. 5cc3709 Fix misguided type selection by Douglas Gregor · 16 years ago
  80. 6ed40e3 Don't push OverloadedFunctionDecls onto the chain of declarations by Douglas Gregor · 16 years ago
  81. 3fc749d Don't explicitly represent OverloadedFunctionDecls within by Douglas Gregor · 16 years ago
  82. 45920e8 Allow downcasts of pointers to Objective-C interfaces, with a by Douglas Gregor · 16 years ago
  83. 798d119 Some utilities for using the smart pointers in Actions, especially Sema. Convert a few functions. by Sebastian Redl · 16 years ago
  84. 44b4321 Unifies the name-lookup mechanisms used in various parts of the AST by Douglas Gregor · 16 years ago
  85. caaf29a Added a warning when referencing an if's condition variable in the by Douglas Gregor · 16 years ago
  86. 898574e Introduce basic support for dependent types, type-dependent by Douglas Gregor · 16 years ago
  87. 7f66239 Code cleanup in new handling. by Sebastian Redl · 16 years ago
  88. 636a7c4 Fix some diagnostics and enhance test cases. Now tests member new and ambiguous overloads. by Sebastian Redl · 16 years ago
  89. b5a57a6 Overload resolution for the operator new function. Member version is still untested. by Sebastian Redl · 16 years ago
  90. cee63fb Handle new by passing the Declaration to the Action, not a processed type. by Sebastian Redl · 16 years ago
  91. d162584 Change a whole lot of diagnostics to take QualType's directly by Chris Lattner · 16 years ago
  92. d9d22dd Rename NamedDecl::getName() to getNameAsString(). Replace a bunch of by Chris Lattner · 16 years ago
  93. 4c5d320 Implementation of new and delete parsing and sema. by Sebastian Redl · 16 years ago
  94. d3a94e2 remove another old-school Diag method. by Chris Lattner · 16 years ago
  95. 572af49 remove the type_info identifier cache. Compared to the cost by Chris Lattner · 16 years ago
  96. 487a75a Some tweaks suggested by Argiris by Douglas Gregor · 16 years ago
  97. dcd5ef1 remove one more old-style Diag method. by Chris Lattner · 16 years ago
  98. 10c4262 As threatened previously: consolidate name lookup and the creation of by Douglas Gregor · 16 years ago
  99. e94ca9e4 Extend DeclarationName to support C++ overloaded operators, e.g., by Douglas Gregor · 16 years ago
  100. 2def483 Updated IdentifierResolver to deal with DeclarationNames. The names of by Douglas Gregor · 16 years ago