1. 99e9b4d Eliminate CXXConditionDeclExpr with extreme prejudice. by Douglas Gregor · 15 years ago
  2. f7a1a74 Rip out TemplateIdRefExpr and make UnresolvedLookupExpr and by John McCall · 15 years ago
  3. d5532b6 Encapsulate "an array of TemplateArgumentLocs and two angle bracket locations" into by John McCall · 15 years ago
  4. ba13543 "Incremental" progress on using expressions, by which I mean totally ripping by John McCall · 15 years ago
  5. 865d447 Draw a brighter line between "unresolved" expressions, where we have done the by John McCall · 15 years ago
  6. 00b98c2 Improve source-location information for implicitly-generated member call expressions by Douglas Gregor · 15 years ago
  7. 833ca99 Track source information for template arguments and template specialization by John McCall · 15 years ago
  8. 39da0b8 Improve handling of initialization by constructor, by ensuring that by Douglas Gregor · 15 years ago
  9. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
  10. 3b6afbb Initial stab at implement dependent member references to member by Douglas Gregor · 15 years ago
  11. bcb11d0 Clean up the CXXConstructExpr constructor, add Arg getters. by Anders Carlsson · 15 years ago
  12. 21e1c4e Reapply 81096, now with a fix. Spot the bug: by Anders Carlsson · 15 years ago
  13. 4355be0 Revert "Initialize default CXXConstructExpr arguments to 0. Fixes a crash when by Daniel Dunbar · 15 years ago
  14. 657bff7 Initialize default CXXConstructExpr arguments to 0. Fixes a crash when destroying the CXXConstructExpr. by Anders Carlsson · 15 years ago
  15. a71d819 Implement AST, semantics, and CodeGen for C++ pseudo-destructor by Douglas Gregor · 15 years ago
  16. 1d954f6 Implement __is_empty. Patch by Sean Hunt. by Eli Friedman · 15 years ago
  17. d497206 Get rid of Stmt::Clone now that we can reference count statements instead. by Anders Carlsson · 15 years ago
  18. 42602bb Separate Stmt::Destroy into the entrypoint for destroying a statement by Douglas Gregor · 15 years ago
  19. 2eeed7b Support for use of default argument in constructors. work in progress. by Fariborz Jahanian · 15 years ago
  20. 6217b80 Change uses of: by Ted Kremenek · 15 years ago
  21. 5e03f9e This patch fixes the implementations of the __has_trivial_destructor by Douglas Gregor · 15 years ago
  22. 35366a6 Per offline discussion with Steve Naroff, add back Type::getAsXXXType() methods by Ted Kremenek · 15 years ago
  23. 5cad1f7 Replaced Type::getAsLValueReferenceType(), Type::getAsRValueReferenceType(), Type::getAsMemberPointerType(), Type::getAsTagType(), and Type::getAsRecordType() with their Type::getAs<XXX> equivalents. by Ted Kremenek · 15 years ago
  24. edce4dd Preliminary parsing and ASTs for template-ids that refer to function by Douglas Gregor · 15 years ago
  25. f54741e Handle temporaries in default arguments. by Anders Carlsson · 15 years ago
  26. 99ba36d Improvements to CXXExprWithTemporaries in preparation for fixing a bug with default arguments that have temporaries. by Anders Carlsson · 15 years ago
  27. 88eaf07 Clean up the newly added C++ AST nodes. by Anders Carlsson · 15 years ago
  28. ff6b3d6 Stop using CXXTempVarDecl and use CXXTemporary instead. by Anders Carlsson · 15 years ago
  29. 8e587a1 Remove VarDecl from CXXConstructExpr. by Anders Carlsson · 15 years ago
  30. b859f35 Small fixes to CXXTemporary and CXXBindTemporaryExpr. by Anders Carlsson · 15 years ago
  31. fceb0a8 Add a CXXBindTemporaryExpr. by Anders Carlsson · 15 years ago
  32. c1ce477 Add a CXXTemporary class. Not used yet. by Anders Carlsson · 15 years ago
  33. 1c0ca59 Representation of and template instantiation for member by Douglas Gregor · 15 years ago
  34. d94546a Template instantiation for the various kinds of AST nodes that occur by Douglas Gregor · 15 years ago
  35. d81e6ca Introduce a new expression type, CXXUnresolvedConstructExpr, to by Douglas Gregor · 15 years ago
  36. 4a2487a Template instantiation for call expressions. by Douglas Gregor · 15 years ago
  37. 8b0b475 Implement instantiation of a few boring, simple expressions. I don't think these are testable yet, though. by Sebastian Redl · 15 years ago
  38. 6e8ed16 Implement C++0x nullptr. by Sebastian Redl · 15 years ago
  39. 55674ac Get rid of CXXDestroyExpr. by Anders Carlsson · 15 years ago
  40. 2d44e8a Rename CXXExprWithCleanup to CXXExprWithTemporaries. by Anders Carlsson · 15 years ago
  41. 617bd45 Silence gcc warnings. by Eli Friedman · 15 years ago
  42. 02bbfa3 Add CXXExprWithCleanup by Anders Carlsson · 15 years ago
  43. 524fa13 Make CXXTemporaryObjectExpr inherit from CXXConstructExpr. by Anders Carlsson · 15 years ago
  44. 09c4abb Add an ASTContext parameter to CXXTemporaryObjectExpr. by Anders Carlsson · 15 years ago
  45. 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
  46. bd6734e Make the CXXConstructExpr public and add a StmtClass to it. No functionality change. by Anders Carlsson · 15 years ago
  47. e349bea Add a CXXConstructExpr that represents an implicit call to a C++ constructor. I think CXXTemporaryObjectExpr is going to become a subclass of CXXConstructExpr, since CXXTemporaryObjectExpr represents a syntactic temporary, for example T() by Anders Carlsson · 15 years ago
  48. 19d28a6 Add a CXXDestroyExpr. Add classof member functions to CXXTempVarDecl. by Anders Carlsson · 15 years ago
  49. 072abef Add support for the __has_trivial_destructor type trait. by Anders Carlsson · 15 years ago
  50. 347ba89 Add support for the __has_trivial_constructor type trait. by Anders Carlsson · 15 years ago
  51. ab452ba Revamp our representation of C++ nested-name-specifiers. We now have a by Douglas Gregor · 15 years ago
  52. 67e4dd2 Keep track of whether a class is abstract or not. This is currently only used for the __is_abstract type trait. by Anders Carlsson · 15 years ago
  53. 5953d8b Introduce a new expression type, UnresolvedDeclRefExpr, that describes by Douglas Gregor · 15 years ago
  54. bad3518 Generalize printing of nested-name-specifier sequences for use in both by Douglas Gregor · 15 years ago
  55. ba49817 Implement template instantiation for several more kinds of expressions: by Douglas Gregor · 15 years ago
  56. 063daf6 Refactor the way we handle operator overloading and template by Douglas Gregor · 15 years ago
  57. 2850784 Make more AST nodes and semantic checkers dependent-expression-aware. by Sebastian Redl · 15 years ago
  58. c87a282 Rename UnaryTypeTraitExpr::Evaluate to EvaluateTrait to not collide by Daniel Dunbar · 15 years ago
  59. 8189cde Overhaul of Stmt allocation: by Ted Kremenek · 16 years ago
  60. df2d3cf Fix the symptom of the regression, by having the CXXConditionDeclExpr not destroy its Decl. by Sebastian Redl · 16 years ago
  61. 1733001 Fix our semantic analysis of by Douglas Gregor · 16 years ago
  62. 506ae41 Part one of handling C++ functional casts. This handles semantic by Douglas Gregor · 16 years ago
  63. 64b45f7 PODness and Type Traits by Sebastian Redl · 16 years ago
  64. 88a3514 Add support for calls to overloaded member functions. Things to note: by Douglas Gregor · 16 years ago
  65. 5c37de7 Add support for calls to dependent names within templates, e.g., by Douglas Gregor · 16 years ago
  66. d457589 Fix some type punning errors in SizeOfAlignOf and Typeid AST nodes. This should satisfy compilers and language lawyers alike. by Sebastian Redl · 16 years ago
  67. cee63fb Handle new by passing the Declaration to the Action, not a processed type. by Sebastian Redl · 16 years ago
  68. 4c5d320 Implementation of new and delete parsing and sema. by Sebastian Redl · 16 years ago
  69. e94ca9e4 Extend DeclarationName to support C++ overloaded operators, e.g., by Douglas Gregor · 16 years ago
  70. b460980 Add a new expression node, CXXOperatorCallExpr, which expresses a by Douglas Gregor · 16 years ago
  71. c42e118 Implement C++ 'typeid' parsing and sema. by Sebastian Redl · 16 years ago
  72. 796da18 Create a new expression class, CXXThisExpr, to handle the C++ 'this' primary expression. Remove CXXThis from PredefinedExpr by Douglas Gregor · 16 years ago
  73. 49badde Refactor the expression class hierarchy for casts. Most importantly: by Douglas Gregor · 16 years ago
  74. 4189a76 Change line endings: CRLF -> LF by Argyrios Kyrtzidis · 16 years ago
  75. 9e922b1 Add new 'CXXConditionDeclExpr' expression node used for a 'condition' declaration, e.g: "if (int x=0) {...}". by Argyrios Kyrtzidis · 16 years ago
  76. 987a14b Add support for C++'s "type-specifier ( expression-list )" expression: by Argyrios Kyrtzidis · 16 years ago
  77. 1060aff Fix more strict-aliasing warnings. by Ted Kremenek · 16 years ago
  78. 8123a95 Several improvements from Doug Gregor related to default by Chris Lattner · 16 years ago
  79. 0442108 Add support for C++ default arguments, and rework Parse-Sema by Chris Lattner · 16 years ago
  80. bda0b62 Make a major restructuring of the clang tree: introduce a top-level by Chris Lattner · 16 years ago[Renamed from AST/ExprCXX.cpp]
  81. 50dd289 add parsing, ast building and pretty printing support for C++ throw expressions. by Chris Lattner · 16 years ago
  82. 0bc735f Don't attribute in file headers anymore. See llvmdev for the by Chris Lattner · 17 years ago
  83. 9ac5928 Fixed DeclStmt::child_begin() to actually create an iterator that by Ted Kremenek · 17 years ago
  84. 401aa7b Replaced virtual method call to child_begin() in child_end() by by Ted Kremenek · 17 years ago
  85. 9caf8b1 Implemented 90% functionality of new child_iterator for Stmt objects by Ted Kremenek · 17 years ago
  86. a758d09 Implementation of child_begin/child_end for C++ expressions. by Ted Kremenek · 17 years ago