1. 98cd599 Initial step toward supporting qualification conversions (C++ 4.4). by Douglas Gregor · 16 years ago
  2. ee5a700 Adjust calls to APFloat conversion for new interface. by Dale Johannesen · 16 years ago
  3. 56ee689 - Add BlockDecl AST node. - Modify BlockExpr to reference the BlockDecl. by Steve Naroff · 16 years ago
  4. 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
  5. 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
  6. 45b6b9d Add a Expr::isEvaluatable method, eliminate isBuiltinConstantExpr by Chris Lattner · 16 years ago
  7. a4d55d8 Move folding of __builtin_classify_type out of the CallExpr by Chris Lattner · 16 years ago
  8. 019f4e8 Add a comment that describes tryEvaluate. Make tryEvaluate fold by Chris Lattner · 16 years ago
  9. cb88896 add a new CallExpr::isBuiltinCall() method, and use it to simplify some existing by Chris Lattner · 16 years ago
  10. a62a03b a more efficient test for __builtin_classify_type by Chris Lattner · 16 years ago
  11. ae3f491 Add Builtins.def attribute for "can be a constant expression". by Daniel Dunbar · 16 years ago
  12. 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
  13. 4f6a7d7 Tweak Expr::isModifiableLvalue() and Expr::isLvalue() to better deal with BlockDeclRef exprs. by Steve Naroff · 16 years ago
  14. e1226d2 Bug fix, result of isIntegerConstantExpr could be of incorrect width by Daniel Dunbar · 16 years ago
  15. 9c3c902 Remove BlockStmtExpr. by Steve Naroff · 16 years ago
  16. 17dab4f Remove support for BlockExprExpr. For example... by Steve Naroff · 16 years ago
  17. 24b41fa CXXConditionDeclExpr expression node is an lvalue. by Argyrios Kyrtzidis · 16 years ago
  18. dd972f2 More type checking for blocks. Still incomplete (will hopefully finish up this weekend). by Steve Naroff · 16 years ago
  19. bfdcae6 Fix a handful of typos (closure->block) to avoid confusion. by Steve Naroff · 16 years ago
  20. 4eb206b Add semantic analysis for "blocks". by Steve Naroff · 16 years ago
  21. aa1f9f1 Fix isIntegerConstantExpr eval of __builtin_offsetof to return result by Daniel Dunbar · 16 years ago
  22. 9048891 Fix double-free error with sizeof applied to VLA types. - PR2727. by Daniel Dunbar · 16 years ago
  23. 2ea2b5e Handle emitting __builtin_huge_valf as a constant expr. by Anders Carlsson · 16 years ago
  24. b88d45e treat bool literals as constatnt expressions. by Anders Carlsson · 16 years ago
  25. 7267f78 Add CodeGen support for CXXZeroInitValueExpr. by Argyrios Kyrtzidis · 16 years ago
  26. 15425f9 Handle AddrLabelExprs in Expr::isConstantExpr by Anders Carlsson · 16 years ago
  27. 987a14b Add support for C++'s "type-specifier ( expression-list )" expression: by Argyrios Kyrtzidis · 16 years ago
  28. 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
  29. 32442bb Update some isIntegerConstantExpr uses to use by Daniel Dunbar · 16 years ago
  30. acc5f3e More #include cleaning by Daniel Dunbar · 16 years ago
  31. c4a1dea More #include cleaning by Daniel Dunbar · 16 years ago
  32. e91593e More #include cleaning by Daniel Dunbar · 16 years ago
  33. 76de9d7 Cleanup ObjCSuperRefExpr (remove last usage and AST node:-). by Steve Naroff · 16 years ago
  34. d9f6910 rename PreDefinedExpr -> PredefinedExpr by Chris Lattner · 16 years ago
  35. 355aba8 Remove the ICE pointer cast hack; the issue this was working around is by Eli Friedman · 16 years ago
  36. c63a1f2 by Chris Lattner · 16 years ago
  37. 28be73f convert more code to use ASTContext to get canonical types instead by Chris Lattner · 16 years ago
  38. 611b2ec fix some problems handling stmtexprs with labels (PR2374), and by Chris Lattner · 16 years ago
  39. 7c4a191 fix 80 col violation. by Chris Lattner · 16 years ago
  40. baf0d66 Add support for __extension__ as an lvalue. rdar://6097308 by Chris Lattner · 16 years ago
  41. 5a56ac3 Added UnaryOperator::isPrefix(). by Ted Kremenek · 16 years ago
  42. 5f6b632 revert my bogus attempt to fix the comment. sorry for the noise. by Nuno Lopes · 16 years ago
  43. 9a979c3 fix CheckForConstantInitializer() for Compound Literals by Nuno Lopes · 16 years ago
  44. c44eec6 Shuffle things around in preparation for integrating Eli's constant evaluator. by Anders Carlsson · 16 years ago
  45. 0795232 Add Sema support for C++ classes. by Argyrios Kyrtzidis · 16 years ago
  46. 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
  47. 4111024 Change self/_cmd to be instances of ImplicitParamDecl instead of ParmVarDecl. by Chris Lattner · 16 years ago
  48. 5549976 This patch is motivated by numerous strict-aliasing warnings when compiling by Ted Kremenek · 16 years ago
  49. da8249e Fix ast dumping to work with long double literals, e.g. we dump: by Chris Lattner · 16 years ago
  50. c793808 Put back my temporary hack until Eli addresses this in a more complete fashion. by Steve Naroff · 16 years ago
  51. 1b76ada Re-fix r51907 in a way which doesn't affect valid code. This essentially by Eli Friedman · 16 years ago
  52. a2ac06e Change Expr::isIntegerConstantExpr() to allow for pointer types (for GCC compatibility). Note FIXME. by Steve Naroff · 16 years ago
  53. e3e9add Fix <rdar://problem/5979875> clang on xcode: error: use of undeclared identifier 'super' by Steve Naroff · 16 years ago
  54. 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
  55. ae78407 Add basic support for properties references (a missing feature). by Steve Naroff · 16 years ago
  56. f494b57 - Move ObjC Expresssion AST's from Expr.h => ExprObjC.h by Steve Naroff · 16 years ago
  57. 211f6ad Assume statement expressions have side effects; this gets rid of a lot by Eli Friedman · 16 years ago
  58. 4f8d123 Move getAccessedFieldNo out of lib/AST/Expr.cpp into by Dan Gohman · 16 years ago
  59. e1b6d50 Remove the unneeded #include of VMCore header "llvm/DerivedTypes.h". by Dan Gohman · 16 years ago
  60. 4be1f47 Make the unused expression warning a bit less aggressive (found in PHP code). by Eli Friedman · 16 years ago
  61. 861dc46 Minor cleanup to isBuiltinConstantExpr. by Eli Friedman · 16 years ago
  62. 774e4af Removed bogus "return true" in Expr::isConstantExpr that returned true for all by Ted Kremenek · 16 years ago
  63. d38617c Implementation of __builtin_shufflevector, a portable builtin capable of by Eli Friedman · 16 years ago
  64. 3b8d116 Remove AST dependency on VMCore by switching ExtVectorElementExpr off Constant. by Nate Begeman · 16 years ago
  65. 8a99764 Extend vector member references to include {.hi, .lo, .e, .o} which return a by Nate Begeman · 16 years ago
  66. 1a42a25 Fixup InitListExpr::child_begin/end. Thanks to Ted for catching the regression. by Steve Naroff · 16 years ago
  67. 81e72e4 Fix off-by-one error. by Steve Naroff · 16 years ago
  68. 9226197 Fixed bug in ObjCIVarExpr: the child iterator now iterates over the Base expression. by Ted Kremenek · 16 years ago
  69. ea958e57 Use pointer swizziling to unify in ObjCMessageExpr the receiver and classname "fields". This saves us a pointer. by Ted Kremenek · 16 years ago
  70. c5ae899 Extend InitListExpr API/IMPL to support arbitrary add/remove (in support of the initializer rewrite I am doing). by Steve Naroff · 16 years ago
  71. 213541a OCUVector -> ExtVector, shorthand for extended vector, per feedback from Chris. by Nate Begeman · 16 years ago
  72. 8123a95 Several improvements from Doug Gregor related to default by Chris Lattner · 16 years ago
  73. 0442108 Add support for C++ default arguments, and rework Parse-Sema by Chris Lattner · 16 years ago
  74. 63f067f PR1963: Address of function is a constant expression by Seo Sanghyeon · 16 years ago
  75. bda0b62 Make a major restructuring of the clang tree: introduce a top-level by Chris Lattner · 16 years ago[Renamed from AST/Expr.cpp]
  76. 98be494 remove the source location arguments to various target query methods. by Chris Lattner · 16 years ago
  77. 2e5f54a Removed VarDecl::hasStaticStorage() (redundant with hasGlobalStorage()) by Ted Kremenek · 16 years ago
  78. a269ebf implement codegen support for sizeof(void), fixing PR2080. by Chris Lattner · 17 years ago
  79. f46699c Alternate address spaces work: by Chris Lattner · 17 years ago
  80. a0992b6 by Steve Naroff · 17 years ago
  81. 64a31ef Fix bug where we would report the wrong value for __alignof__ with an expr that is not a type. by Anders Carlsson · 17 years ago
  82. 6a24acb Make sizeof and __alignof work correctly with packed structs. by Anders Carlsson · 17 years ago
  83. 3c2b317 Remove useless parameter from isConstantSizeType. by Eli Friedman · 17 years ago
  84. 4b3f9b3 Fix a minor bug in isNullPointerConstant triggered by the linux tgmath.h. by Eli Friedman · 17 years ago
  85. 56f3494 Move IgnoreParenCasts to be a method on Expr. by Chris Lattner · 17 years ago
  86. acb818a by Steve Naroff · 17 years ago
  87. 75ceedf by Steve Naroff · 17 years ago
  88. bcba201 Make CallExpr::isBuiltinConstantExpr slightly more efficient. by Anders Carlsson · 17 years ago
  89. c4f8e8b by Steve Naroff · 17 years ago
  90. 67295d0 Implement first round of feedback on __builtin_overload by Nate Begeman · 17 years ago
  91. 5a1deb8 Implement __builtin_offsetof. by Anders Carlsson · 17 years ago
  92. bf75538 fix isIntegerConstantExpr evaluation of unary !. by Chris Lattner · 17 years ago
  93. d47d4f5 Support checking and codegen of constant vector globals by Nate Begeman · 17 years ago
  94. e2ce1d9 Implement basic overload support via a new builtin, __builtin_overload. by Nate Begeman · 17 years ago
  95. 4e99a5f Added method Expr::IgnoreParens(), which returns the first non-ParenExpr Expr*. by Ted Kremenek · 17 years ago
  96. e9b1219 by Steve Naroff · 17 years ago
  97. aa58f00 by Steve Naroff · 17 years ago
  98. aaffbf7 by Steve Naroff · 17 years ago
  99. fa28b30 Fix the type of predefined identifiers like __func__. Patch by Eli Friedman! by Chris Lattner · 17 years ago
  100. d0091aa by Steve Naroff · 17 years ago