1. d110243 Collect multiple levels of template arguments into a new type, by Douglas Gregor · 15 years ago
  2. ce3ff2b Clarify the difference between substitution and instantiation by renaming by John McCall · 15 years ago
  3. 5842ba9 Try to complete a type before looking for conversion functions within by Douglas Gregor · 15 years ago
  4. 43959a9 Refactor the instantiation of statements into a generic tree transformation. by Douglas Gregor · 15 years ago
  5. e29ba20 Basic nested-template implementation. by John McCall · 15 years ago
  6. b98b199 Refactor the template-instantiation logic for expressions into a by Douglas Gregor · 15 years ago
  7. d1067e5 Implement transformation of template names within the generic tree by Douglas Gregor · 15 years ago
  8. dcee1a1 Implement transformation of nested-name-specifiers within the general by Douglas Gregor · 15 years ago
  9. 670444e Move the template instantiation logic for template arguments into the by Douglas Gregor · 15 years ago
  10. 577f75a Refactor template instantiation for types into a generic tree by Douglas Gregor · 15 years ago
  11. 37d93e9 Keep track of the template arguments deduced when matching a class by Douglas Gregor · 15 years ago
  12. 7caa682 Template instantiation for static data members that are defined out-of-line. by Douglas Gregor · 15 years ago
  13. 9e9fae4 Improve template argument deduction for array types, so that a parameter by Douglas Gregor · 15 years ago
  14. 71c6e71 Allocate BaseOrMemberInitializers and CXXBaseSpecifier nodes via ASTContext. by Fariborz Jahanian · 15 years ago
  15. c15cb2a Remove ObjCQualifiedInterfaceType:-) by Steve Naroff · 15 years ago
  16. 97fbaa2 Remove ASTContext::getCanonicalDecl() and use Decl::getCanonicalDecl in its place. by Argyrios Kyrtzidis · 15 years ago
  17. 7e7eb3d Keep track of the Expr used to describe the size of an array type, by Douglas Gregor · 15 years ago
  18. cca9e96 Keep track of more information within the template instantiation stack, e.g., by Douglas Gregor · 15 years ago
  19. 16134c6 Cope with explicitly-specified function template arguments when there by Douglas Gregor · 15 years ago
  20. 17945a0 De-ASTContext-ify DeclContext. by Argyrios Kyrtzidis · 15 years ago
  21. 6fb0aee Remove the ASTContext parameter from the getBody() methods of Decl and subclasses. by Argyrios Kyrtzidis · 15 years ago
  22. af017e6 Improvements to decltype. We now don't crash anymore when the expr is an overloaded function decl. by Anders Carlsson · 15 years ago
  23. 8a5cb11 A little template argument deduction test uncovered an "oops". As part by Douglas Gregor · 15 years ago
  24. 87471f5 Fix PR4448. by Anders Carlsson · 15 years ago
  25. 1637be7 Implicit instantiation for function template specializations. by Douglas Gregor · 15 years ago
  26. 395b475 Add a DecltypeType type. by Anders Carlsson · 15 years ago
  27. ac7610d Rework the way we track which declarations are "used" during by Douglas Gregor · 15 years ago
  28. f6ddb73 Some cleanups suggested by Chris by Douglas Gregor · 15 years ago
  29. d1b3c2d First step toward fixing <rdar://problem/6613046> refactor clang objc type representation. by Steve Naroff · 15 years ago
  30. 9cdda0c Support dependent extended vector types and template instantiation by Douglas Gregor · 15 years ago
  31. 76e4ce4 Keep track of whether a type parameter type is a parameter pack. by Anders Carlsson · 15 years ago
  32. d01b1da Add a new 'Pack' argument kind to TemplateArgument. This is not yet used. by Anders Carlsson · 15 years ago
  33. 5e9f35c Update LLVM. by Douglas Gregor · 15 years ago
  34. 923f753 Fix for PR4382: allow instantiating dependent nested name specifiers. by Eli Friedman · 15 years ago
  35. 9a917e4 Address comments from Doug - Add a Sema::SemaRef.BuildBlockPointerType and use it. by Anders Carlsson · 15 years ago
  36. c1efb3f It looks like we've finished off matching of class template partial specializations; add comments and update the C++ status page by Douglas Gregor · 15 years ago
  37. 16df850 Finish implementing checking of class template partial specializations by Douglas Gregor · 15 years ago
  38. f67875d Improve template argument deduction to keep track of why template by Douglas Gregor · 15 years ago
  39. 859ba50 Deducation and instantiation of block types. by Anders Carlsson · 15 years ago
  40. 02cbbd2 Once we have deduced the template arguments of a class template by Douglas Gregor · 15 years ago
  41. 9133300 Separate TemplateArgument instantiation logic into its own function. No functionality change. by Douglas Gregor · 15 years ago
  42. 637a409 Template argument deduction for member pointers. by Douglas Gregor · 15 years ago
  43. 949bf69 Handle member pointer types with dependent class types (e.g., int by Douglas Gregor · 15 years ago
  44. 199d991 Several improvements to template argument deduction: by Douglas Gregor · 15 years ago
  45. 0b9247f When performing template argument deduction, ensure that multiple by Douglas Gregor · 15 years ago
  46. c8ab256 Initial infrastructure for class template partial specialization. Here by Douglas Gregor · 15 years ago
  47. d249e1d1f Create a new PrintingPolicy class, which we pass down through the AST by Douglas Gregor · 15 years ago
  48. 0ca20ac Reduce the amount of stack space we use in SmallVectors during by Douglas Gregor · 15 years ago
  49. ed961e7 Simplify, and improve the performance of, template instantiation for by Douglas Gregor · 15 years ago
  50. 815215d Initial stab at a generalized operation for determining the by Douglas Gregor · 15 years ago
  51. 5f8bd59 Template instantiation for "typeof" for both types and expressions. by Douglas Gregor · 15 years ago
  52. aba43bb Make sure that CodeGen sees template instantiations. by Douglas Gregor · 15 years ago
  53. beaaccd Use v.data() instead of &v[0] when SmallVector v might be empty. by Jay Foad · 15 years ago
  54. f3e7ce4 When instantiating the definition of a member function of a class by Douglas Gregor · 15 years ago
  55. 390b4cc Reflow some comments. by Mike Stump · 15 years ago
  56. 54dabfc Introduce basic support for instantiating the definitions of member by Douglas Gregor · 15 years ago
  57. 3f5b61c Implement explicit instantiations of member classes of class templates, e.g., by Douglas Gregor · 15 years ago
  58. a58861f Explicit instantiations of templates now instantiate the definitions by Douglas Gregor · 15 years ago
  59. ff66803 Improve the semantic checking for explicit instantiations of by Douglas Gregor · 15 years ago
  60. 93dfdb1 Semantic analysis for explicit instantiation of class templates. We by Douglas Gregor · 15 years ago
  61. 7e06390 Encapsulate template arguments lists in a new class, by Douglas Gregor · 16 years ago
  62. e9146f2 Replace more release+static_cast with takeAs. by Anders Carlsson · 16 years ago
  63. f1b1d59 Replace a bunch of static_cast + release with takeAs. by Anders Carlsson · 16 years ago
  64. 068360e ObjCQualifiedClass is dead, remove it. by Chris Lattner · 16 years ago
  65. 6ab3524 Propagate the ASTContext to various AST traversal and lookup functions. by Douglas Gregor · 16 years ago
  66. 1734317 Parsing, semantic analysis, and template instantiation for typename by Douglas Gregor · 16 years ago
  67. 9bde773 Some cleanup and renaming. No functionality change by Douglas Gregor · 16 years ago
  68. de650ae Implement template instantiation for template names, including both by Douglas Gregor · 16 years ago
  69. c45c232 Parsing and AST representation for dependent template names that occur by Douglas Gregor · 16 years ago
  70. 7532dc6 Improve the representation of template names in the AST. This by Douglas Gregor · 16 years ago
  71. b28317a Introduce a new OpaquePtr<N> struct type, which is a simple POD wrapper for a by Chris Lattner · 16 years ago
  72. d57959a Initial implementation of parsing, semantic analysis, and template by Douglas Gregor · 16 years ago
  73. ab452ba Revamp our representation of C++ nested-name-specifiers. We now have a by Douglas Gregor · 16 years ago
  74. d048bb7 Fix notes regarding the instantiation of member classes (and test 'em). by Douglas Gregor · 16 years ago
  75. d475b8d Instantiation for member classes of class templates. Note that only by Douglas Gregor · 16 years ago
  76. aa6af22 Move template instantiation for expressions into a separate file by Douglas Gregor · 16 years ago
  77. 25a88bb Eliminate post-diagnostic hooks. Instead, implement a Sema-specific by Douglas Gregor · 16 years ago
  78. 5953d8b Introduce a new expression type, UnresolvedDeclRefExpr, that describes by Douglas Gregor · 16 years ago
  79. e4e5b05 Introduce a representation for types that we referred to via a by Douglas Gregor · 16 years ago
  80. eb26eea Use the instantiated expressions to build the ConditionalOperator. This addresses the second part of review feedback. by Gabor Greif · 16 years ago
  81. 299e829 incorporate review comment (about the optimization when we have a non-typedependent expression) by Gabor Greif · 16 years ago
  82. 9c3b3d0 simplify logic, isInvalid check is redundant by Gabor Greif · 16 years ago
  83. 6c473c8 cleanup instantiation code, tighten testcase by Gabor Greif · 16 years ago
  84. 087edcf instantiate ?: expressions by Gabor Greif · 16 years ago
  85. 8dbc269 Refactor instantiation of declarations within a template into a much by Douglas Gregor · 16 years ago
  86. 879fd49 Implement instantiation of enums within class templates. This isn't by Douglas Gregor · 16 years ago
  87. 0cde0a3 Handle ImplicitCastExprs when instantiating templates. by Anders Carlsson · 16 years ago
  88. 1ac02dc Fix a problem noticed by Anders, where we were creating by Douglas Gregor · 16 years ago
  89. 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
  90. 76b1c84 (Hopefully) instantiate dependent array types correctly. by Anders Carlsson · 16 years ago
  91. 94b15fb Handle static_asserts when instantiating structs. by Anders Carlsson · 16 years ago
  92. a135fb4 Add the ability to clone integer and string literals. Use it when instantiating template expressions. by Anders Carlsson · 16 years ago
  93. 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
  94. 3e287c2 Fix bitfield-instantiation ownership bug noticed by Anders by Douglas Gregor · 16 years ago
  95. bc736fc Implement template instantiation for the prefix unary operators. As by Douglas Gregor · 16 years ago
  96. ba49817 Implement template instantiation for several more kinds of expressions: by Douglas Gregor · 16 years ago
  97. 1d65fa7 Remove an already-fixed FIXME by Douglas Gregor · 16 years ago
  98. 063daf6 Refactor the way we handle operator overloading and template by Douglas Gregor · 16 years ago
  99. 3fd95ce Improve the representation of operator expressions like "x + y" within by Douglas Gregor · 16 years ago
  100. df03251 Implement template instantiation for builtin binary operators by Douglas Gregor · 16 years ago