1. 4c5d320 Implementation of new and delete parsing and sema. by Sebastian Redl · 16 years ago
  2. 4fcd399 Enable some more operator overloading tests, and don't look into an identifier for functions that might not have one by Douglas Gregor · 16 years ago
  3. 92e62b0 Rename IdentifierInfo::isName to ::isStr. Use a nifty trick by Chris Lattner · 16 years ago
  4. 337c6b9 Support overloading of the subscript operator[], including support for by Douglas Gregor · 16 years ago
  5. 7425373 Added operator overloading for unary operators, post-increment, and by Douglas Gregor · 16 years ago
  6. 7e3e9b1 simplify some code. by Chris Lattner · 16 years ago
  7. ca354fa Implement rdar://6319320: give a good diagnostic for cases where people by Chris Lattner · 16 years ago
  8. 6ee7aa1 rename Expr::tryEvaluate to Expr::Evaluate. by Chris Lattner · 16 years ago
  9. b460980 Add a new expression node, CXXOperatorCallExpr, which expresses a by Douglas Gregor · 16 years ago
  10. bf3af05 Some cleanup for the implementation of built-in operator by Douglas Gregor · 16 years ago
  11. a6afa76 Fix for crash issues with comma operators with a void first operand, and by Eli Friedman · 16 years ago
  12. b11e778 Backout of r59196, plus a new ICE test. Sorry if this is a by Eli Friedman · 16 years ago
  13. dd2b12a Fix bug in constant evaluation exposed by 176.gcc. by Daniel Dunbar · 16 years ago
  14. eb8f306 Implement support for operator overloading using candidate operator by Douglas Gregor · 16 years ago
  15. 0518999 Introduce a single AST node SizeOfAlignOfExpr for all sizeof and alignof expressions, both of values and types. by Sebastian Redl · 16 years ago
  16. c42e118 Implement C++ 'typeid' parsing and sema. by Sebastian Redl · 16 years ago
  17. cd9b46e Add a new expression class, ObjCSuperExpr, to handle the Objective-C 'super'. Remove ObjCThis from PredefinedExpr by Douglas Gregor · 16 years ago
  18. 796da18 Create a new expression class, CXXThisExpr, to handle the C++ 'this' primary expression. Remove CXXThis from PredefinedExpr by Douglas Gregor · 16 years ago
  19. 6215dee Trivial style fix. by Sebastian Redl · 16 years ago
  20. 0777972 Implement semantic checking of static_cast and dynamic_cast. by Sebastian Redl · 16 years ago
  21. 27c8dc0 Implement initialization of a reference (C++ [dcl.init.ref]) as part by Douglas Gregor · 16 years ago
  22. 6eec8e8 Rename ExplicitCCastExpr to CStyleCastExpr by Douglas Gregor · 16 years ago
  23. 3c32817 Replace a dyn_cast with a cast when we know the exact type by Douglas Gregor · 16 years ago
  24. 9d293df Improve our handling of (C++) references within Clang. Specifically: by Douglas Gregor · 16 years ago
  25. 49badde Refactor the expression class hierarchy for casts. Most importantly: by Douglas Gregor · 16 years ago
  26. ce2fc3a - Move ExprIterator to Stmt.h so that it can be used by classes defined in Stmt.h by Ted Kremenek · 16 years ago
  27. 418f6c7 Remember whether an initlist had a designator in the AST. by Chris Lattner · 16 years ago
  28. ac620de PR2919: __builtin_types_compatible_p strips CRV qualifiers. by Daniel Dunbar · 16 years ago
  29. 90b7bc6 Now that DeclRefExpr accepts a NamedDecl, use a DeclRefExpr for when a CXXFieldDecl is referenced inside a method. by Argyrios Kyrtzidis · 16 years ago
  30. ba7e210 QualType::isMoreQualifiedThan and isAtLeastAsQualifiedAs assert that we by Douglas Gregor · 16 years ago
  31. ae8d467 Functions can be lvalues in C++, but not modifiable lvalues by Douglas Gregor · 16 years ago
  32. 98cd599 Initial step toward supporting qualification conversions (C++ 4.4). by Douglas Gregor · 16 years ago
  33. ee5a700 Adjust calls to APFloat conversion for new interface. by Dale Johannesen · 16 years ago
  34. 56ee689 - Add BlockDecl AST node. - Modify BlockExpr to reference the BlockDecl. by Steve Naroff · 16 years ago
  35. 8a213de A little more tweaking with StmtIterator and SizeOfAlignofExpr. A recent commit actually introduced a regression, not fixed a bug. by Ted Kremenek · 16 years ago
  36. b84887d Fixed a masked bug when iterating over the child expressions of SizeOfAlignOfTypeExpr. This bug was unmasked by recent changes to StmtIterator. by Ted Kremenek · 16 years ago
  37. 45b6b9d Add a Expr::isEvaluatable method, eliminate isBuiltinConstantExpr by Chris Lattner · 16 years ago
  38. a4d55d8 Move folding of __builtin_classify_type out of the CallExpr by Chris Lattner · 16 years ago
  39. 019f4e8 Add a comment that describes tryEvaluate. Make tryEvaluate fold by Chris Lattner · 16 years ago
  40. cb88896 add a new CallExpr::isBuiltinCall() method, and use it to simplify some existing by Chris Lattner · 16 years ago
  41. a62a03b a more efficient test for __builtin_classify_type by Chris Lattner · 16 years ago
  42. ae3f491 Add Builtins.def attribute for "can be a constant expression". by Daniel Dunbar · 16 years ago
  43. 9da13f9 Internally store the body of a BlockExpr using a Stmt* instead of a CompoundStmt*, and use the getBody() method to do the appropriate checking. This both removes the type-punning warnings in Expr.cpp and also makes BlockExpr have more consistency checks against modifications to its body (via StmtIterator). by Ted Kremenek · 16 years ago
  44. 4f6a7d7 Tweak Expr::isModifiableLvalue() and Expr::isLvalue() to better deal with BlockDeclRef exprs. by Steve Naroff · 16 years ago
  45. e1226d2 Bug fix, result of isIntegerConstantExpr could be of incorrect width by Daniel Dunbar · 16 years ago
  46. 9c3c902 Remove BlockStmtExpr. by Steve Naroff · 16 years ago
  47. 17dab4f Remove support for BlockExprExpr. For example... by Steve Naroff · 16 years ago
  48. 24b41fa CXXConditionDeclExpr expression node is an lvalue. by Argyrios Kyrtzidis · 16 years ago
  49. dd972f2 More type checking for blocks. Still incomplete (will hopefully finish up this weekend). by Steve Naroff · 16 years ago
  50. bfdcae6 Fix a handful of typos (closure->block) to avoid confusion. by Steve Naroff · 16 years ago
  51. 4eb206b Add semantic analysis for "blocks". by Steve Naroff · 16 years ago
  52. aa1f9f1 Fix isIntegerConstantExpr eval of __builtin_offsetof to return result by Daniel Dunbar · 16 years ago
  53. 9048891 Fix double-free error with sizeof applied to VLA types. - PR2727. by Daniel Dunbar · 16 years ago
  54. 2ea2b5e Handle emitting __builtin_huge_valf as a constant expr. by Anders Carlsson · 16 years ago
  55. b88d45e treat bool literals as constatnt expressions. by Anders Carlsson · 16 years ago
  56. 7267f78 Add CodeGen support for CXXZeroInitValueExpr. by Argyrios Kyrtzidis · 16 years ago
  57. 15425f9 Handle AddrLabelExprs in Expr::isConstantExpr by Anders Carlsson · 16 years ago
  58. 987a14b Add support for C++'s "type-specifier ( expression-list )" expression: by Argyrios Kyrtzidis · 16 years ago
  59. 0835a3c Add ExplicitCastExpr to replace the current CastExpr, and have ImplicitCastExpr and ExplicitCastExpr derive from a common base class (CastExpr): by Argyrios Kyrtzidis · 16 years ago
  60. 32442bb Update some isIntegerConstantExpr uses to use by Daniel Dunbar · 16 years ago
  61. acc5f3e More #include cleaning by Daniel Dunbar · 16 years ago
  62. c4a1dea More #include cleaning by Daniel Dunbar · 16 years ago
  63. e91593e More #include cleaning by Daniel Dunbar · 16 years ago
  64. 76de9d7 Cleanup ObjCSuperRefExpr (remove last usage and AST node:-). by Steve Naroff · 16 years ago
  65. d9f6910 rename PreDefinedExpr -> PredefinedExpr by Chris Lattner · 16 years ago
  66. 355aba8 Remove the ICE pointer cast hack; the issue this was working around is by Eli Friedman · 16 years ago
  67. c63a1f2 by Chris Lattner · 16 years ago
  68. 28be73f convert more code to use ASTContext to get canonical types instead by Chris Lattner · 16 years ago
  69. 611b2ec fix some problems handling stmtexprs with labels (PR2374), and by Chris Lattner · 16 years ago
  70. 7c4a191 fix 80 col violation. by Chris Lattner · 16 years ago
  71. baf0d66 Add support for __extension__ as an lvalue. rdar://6097308 by Chris Lattner · 16 years ago
  72. 5a56ac3 Added UnaryOperator::isPrefix(). by Ted Kremenek · 16 years ago
  73. 5f6b632 revert my bogus attempt to fix the comment. sorry for the noise. by Nuno Lopes · 16 years ago
  74. 9a979c3 fix CheckForConstantInitializer() for Compound Literals by Nuno Lopes · 16 years ago
  75. c44eec6 Shuffle things around in preparation for integrating Eli's constant evaluator. by Anders Carlsson · 16 years ago
  76. 0795232 Add Sema support for C++ classes. by Argyrios Kyrtzidis · 16 years ago
  77. 4df728e ObjCMessageExpr objects that represent messages to class methods now can contain the ObjCInterfaceDecl* of the target class if it was available when the ObjCMessageExpr object was constructed. The original interfaces of the class has been preserved (requiring no functionality changes from clients), but now a "getClasSInfo" method returns both the ObjCInterfaceDecl* and IdentifierInfo* of the target class. by Ted Kremenek · 16 years ago
  78. 4111024 Change self/_cmd to be instances of ImplicitParamDecl instead of ParmVarDecl. by Chris Lattner · 16 years ago
  79. 5549976 This patch is motivated by numerous strict-aliasing warnings when compiling by Ted Kremenek · 16 years ago
  80. da8249e Fix ast dumping to work with long double literals, e.g. we dump: by Chris Lattner · 16 years ago
  81. c793808 Put back my temporary hack until Eli addresses this in a more complete fashion. by Steve Naroff · 16 years ago
  82. 1b76ada Re-fix r51907 in a way which doesn't affect valid code. This essentially by Eli Friedman · 16 years ago
  83. a2ac06e Change Expr::isIntegerConstantExpr() to allow for pointer types (for GCC compatibility). Note FIXME. by Steve Naroff · 16 years ago
  84. e3e9add Fix <rdar://problem/5979875> clang on xcode: error: use of undeclared identifier 'super' by Steve Naroff · 16 years ago
  85. 799a6a6 Teach Expr::isLvalue() about ObjC properties. For now, all properties are writable. Added a FIXME for another day. by Steve Naroff · 16 years ago
  86. ae78407 Add basic support for properties references (a missing feature). by Steve Naroff · 16 years ago
  87. f494b57 - Move ObjC Expresssion AST's from Expr.h => ExprObjC.h by Steve Naroff · 16 years ago
  88. 211f6ad Assume statement expressions have side effects; this gets rid of a lot by Eli Friedman · 16 years ago
  89. 4f8d123 Move getAccessedFieldNo out of lib/AST/Expr.cpp into by Dan Gohman · 16 years ago
  90. e1b6d50 Remove the unneeded #include of VMCore header "llvm/DerivedTypes.h". by Dan Gohman · 16 years ago
  91. 4be1f47 Make the unused expression warning a bit less aggressive (found in PHP code). by Eli Friedman · 16 years ago
  92. 861dc46 Minor cleanup to isBuiltinConstantExpr. by Eli Friedman · 16 years ago
  93. 774e4af Removed bogus "return true" in Expr::isConstantExpr that returned true for all by Ted Kremenek · 16 years ago
  94. d38617c Implementation of __builtin_shufflevector, a portable builtin capable of by Eli Friedman · 16 years ago
  95. 3b8d116 Remove AST dependency on VMCore by switching ExtVectorElementExpr off Constant. by Nate Begeman · 16 years ago
  96. 8a99764 Extend vector member references to include {.hi, .lo, .e, .o} which return a by Nate Begeman · 16 years ago
  97. 1a42a25 Fixup InitListExpr::child_begin/end. Thanks to Ted for catching the regression. by Steve Naroff · 16 years ago
  98. 81e72e4 Fix off-by-one error. by Steve Naroff · 16 years ago
  99. 9226197 Fixed bug in ObjCIVarExpr: the child iterator now iterates over the Base expression. by Ted Kremenek · 16 years ago
  100. ea958e57 Use pointer swizziling to unify in ObjCMessageExpr the receiver and classname "fields". This saves us a pointer. by Ted Kremenek · 16 years ago