1. 33bbbc5 When determining whether an expression refers to a bit-field, look by Douglas Gregor · 15 years ago
  2. b3b0b36 Add CFG support for @synchronized. This fixes <rdar://problem/6848820>. by Ted Kremenek · 15 years ago
  3. 4e8df2e Fix crasher in CFG construction when not properly handling ASTs that contain by Ted Kremenek · 15 years ago
  4. 55674ac Get rid of CXXDestroyExpr. by Anders Carlsson · 15 years ago
  5. 2d44e8a Rename CXXExprWithCleanup to CXXExprWithTemporaries. by Anders Carlsson · 15 years ago
  6. 7b9a2ee Make a home for exception specs in the AST. Now Sema can hook them up. by Sebastian Redl · 15 years ago
  7. 1885764 Properly compute the alignment of typedefs that make use of the by Douglas Gregor · 15 years ago
  8. ec16cb9 int128_t is apparently 128-bit aligned on all 64-bit targets, and by Chris Lattner · 15 years ago
  9. 2df9ced initial support for __[u]int128_t, which should be basically by Chris Lattner · 15 years ago
  10. 267c0ab Minor simplification; also silences gcc warning. by Eli Friedman · 15 years ago
  11. 852871a PR4103: Silence bogus unused expression warning. by Eli Friedman · 15 years ago
  12. ad02d7d PR4097: add logic to Evaluate to handle pointer equality comparisons. by Eli Friedman · 15 years ago
  13. 9f9bf25 Improve compatibility with GCC regarding inline semantics in GNU89 by Douglas Gregor · 15 years ago
  14. 8f08c9d CFG: Add "loop back" block for do...while statements. by Ted Kremenek · 15 years ago
  15. f6e8541 CFG: 'WhileStmts' needs an extra block to indicate the "loop back" path. by Ted Kremenek · 15 years ago
  16. 3575f84 CFG: by Ted Kremenek · 15 years ago
  17. b0156ea A couple more small changes which are probably required for Cygwin by Eli Friedman · 15 years ago
  18. f91f5c8 Add a bit more handling for declarations like "int a[*]". by Eli Friedman · 15 years ago
  19. d3a413d Implement function-try-blocks. However, there's a very subtle bug that I can't track down. by Sebastian Redl · 15 years ago
  20. 9a901bb Remove getIntegerConstantExprValue in favor of using EvaluateAsInt. by Eli Friedman · 15 years ago
  21. 7a9cbed Make sure to pull in the target builtin records when initialize the AST context, even if we're not going to initialize the __builin_* identifiers by Douglas Gregor · 15 years ago
  22. 16f0049 split ObjC and C++ Statements out into their own headers. by Chris Lattner · 15 years ago
  23. 0389e6b implement PCH support for the rest of ExprObjC.h, including by Chris Lattner · 15 years ago
  24. 09de176 Change isNullPointerConstant to be strict; hopefully this won't cause by Eli Friedman · 15 years ago
  25. 617bd45 Silence gcc warnings. by Eli Friedman · 15 years ago
  26. 2dbd285 fix PR4049, a crash on invalid, by making sema install the right number of by Chris Lattner · 15 years ago
  27. 1ad9b28 rename getNumParmVarDeclsFromType back to getNumParams(), by Chris Lattner · 15 years ago
  28. 11ddb7d add a new helper function to FunctionDecl instead of it being by Chris Lattner · 15 years ago
  29. 02bbfa3 Add CXXExprWithCleanup by Anders Carlsson · 15 years ago
  30. 524fa13 Make CXXTemporaryObjectExpr inherit from CXXConstructExpr. by Anders Carlsson · 15 years ago
  31. f627406 Fix assert. by Anders Carlsson · 15 years ago
  32. 9a55d3e CXXTempVarDecls aren't looked up. Fixes tests. by Anders Carlsson · 15 years ago
  33. 09c4abb Add an ASTContext parameter to CXXTemporaryObjectExpr. by Anders Carlsson · 15 years ago
  34. 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
  35. bd6734e Make the CXXConstructExpr public and add a StmtClass to it. No functionality change. by Anders Carlsson · 15 years ago
  36. 1efaa95 Fix rdar://6821047 - clang crashes on subscript of interface in 64-bit mode by Chris Lattner · 15 years ago
  37. 8fc463a Eliminate Sema::ObjCImplementations, relying instead on name lookup. What's good for uniformity is good for PCH (or is it the other way around?). by Douglas Gregor · 15 years ago
  38. 319ac89 PCH support for all of the predefined Objective-C types, such as id, by Douglas Gregor · 15 years ago
  39. 8f36aba The ivars in an ObjCImplementationDecl are now stored in the by Douglas Gregor · 15 years ago
  40. 2c2d43c PCH (de-)serialization for ObjCImplDecl. This can't be tested yet. by Douglas Gregor · 15 years ago
  41. 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
  42. 653f1b1 Eliminate the three SmallVectors in ObjCImplDecl (for instance by Douglas Gregor · 15 years ago
  43. 370187c Remove the serialization code that predates precompiled by Douglas Gregor · 15 years ago
  44. 1725f68 Add handling for complex->int, int->complex float, and float->complex by Eli Friedman · 15 years ago
  45. 2deaea3 Lazy loading of builtins for precompiled headers. by Douglas Gregor · 15 years ago
  46. a80a0f6 Reapply r69771, with updates & fixes: by Daniel Dunbar · 15 years ago
  47. a243578 Remove lookupFieldDeclFromIvar from ObjCIvarDecl interface. by Daniel Dunbar · 15 years ago
  48. 75da674 Simplify addRecordToClass, it is not legal to call it on a forward by Daniel Dunbar · 15 years ago
  49. 068360e ObjCQualifiedClass is dead, remove it. by Chris Lattner · 15 years ago
  50. 71dfdb9 Reorganize built-in initialization to separate the creation of target builtins from marking IdentifierInfos as builtins. No functionality change by Douglas Gregor · 15 years ago
  51. d4ae6c0 Revert r69771, I missed some (obvious) details. :/ by Daniel Dunbar · 15 years ago
  52. 3b3a458 Mark another TypeForDecl const and make getObjCInterfaceType's argument const. by Daniel Dunbar · 15 years ago
  53. 0c45793 Rework the shadow struct that is layed out for Objective-C classes. by Daniel Dunbar · 15 years ago
  54. 24c8991 Make sure to mark the interface as completed when we see an by Daniel Dunbar · 15 years ago
  55. b6c8c8b Explictly track tentative definitions within Sema, then hand those by Douglas Gregor · 15 years ago
  56. ff89666 Use an ASTRecordLayout to compute the sizeof an interface, not by Daniel Dunbar · 15 years ago
  57. 81045d8 Fix PR4027 + rdar://6808859, we were rejecting implicit casts of by Chris Lattner · 15 years ago
  58. 19d28a6 Add a CXXDestroyExpr. Add classof member functions to CXXTempVarDecl. by Anders Carlsson · 15 years ago
  59. 86fa750 Add the beginnings of a CXXTempVarDecl class. by Anders Carlsson · 15 years ago
  60. 525c9b7 Kill ASTContext::[gs]etFieldForDecl, instead we just lookup things by Daniel Dunbar · 15 years ago
  61. 9e6c20b Assert on a few conditions that (I believe) should hold by Daniel Dunbar · 15 years ago
  62. 53c9d8a Add pch reader/writer support for ObjCMethodDecl. by Steve Naroff · 15 years ago
  63. 153bfe5 Make FieldDecl parameter to getObjCEncodingForType... const. by Daniel Dunbar · 15 years ago
  64. 60952f9 Remove non-const form of lookupFieldDeclForIvar. by Daniel Dunbar · 15 years ago
  65. ad56d68 Add location info for indirect goto. by Chris Lattner · 15 years ago
  66. 250fc9c Lazy deserialization of function bodies for PCH files. For the Carbon by Douglas Gregor · 15 years ago
  67. 7297134 FunctionDecl::getBody() is getting an ASTContext argument for use in by Douglas Gregor · 15 years ago
  68. 88c9a46 Fix two embarrassing PCH bugs: by Douglas Gregor · 15 years ago
  69. cd7d5a9 PCH support for inline assembly statements. by Douglas Gregor · 15 years ago
  70. 7645850 Implement lvalue test for conditional expressions. by Sebastian Redl · 15 years ago
  71. 072abef Add support for the __has_trivial_destructor type trait. by Anders Carlsson · 15 years ago
  72. 025452f PCH support for the first batch of statements, including null, by Douglas Gregor · 15 years ago
  73. 3aaa482 Fix <rdar://problem/6765383> clang-6: clang does not appear to support declaring a static Block 'const'. by Steve Naroff · 15 years ago
  74. d077d75 PCH support for InitListExpr, DesignatedInitExpr, and ImplicitValueInitExpr. by Douglas Gregor · 15 years ago
  75. 347ba89 Add support for the __has_trivial_constructor type trait. by Anders Carlsson · 15 years ago
  76. 94cd5d1 PCH support for ShuffleVectorExpr and BlockDeclRefExpr by Douglas Gregor · 15 years ago
  77. d3c98a0 PCH support for ExtVectorElementExpr and VAArgExpr. by Douglas Gregor · 15 years ago
  78. c8d2e77 Fix decl type merges when they have __string/__weak attributes. by Fariborz Jahanian · 15 years ago
  79. 1f0d013 PCH support for MemberExpr and CallExpr. by Douglas Gregor · 15 years ago
  80. 673ecd6 PCH support for string literals by Douglas Gregor · 15 years ago
  81. ffb4b6e Implement support for designated initializers that refer to members of by Douglas Gregor · 15 years ago
  82. 44e35f7 Improve "assignment to cast" diagnostic. by Daniel Dunbar · 15 years ago
  83. 5717dae Strip paren expressions when trying to diagnose "cast as lvalue" extension. by Daniel Dunbar · 15 years ago
  84. d824c9c ASTContext::mergeTypes(): Loosen up the type checking for 'Class' (treating it like 'id'). by Steve Naroff · 15 years ago
  85. 5466c7b Audit __private_extern__ handling. by Daniel Dunbar · 15 years ago
  86. b286a78 Add VarDecl::getStorageClassSpecifierString (StorageClass -> const char*). by Daniel Dunbar · 15 years ago
  87. bb3fde3 Change dyn_cast<> to isa<>. Pointed out by Anders (thanks). by Steve Naroff · 15 years ago
  88. ab76d45 Fix crasher in ASTContext::getObjCEncodingForMethodDecl(). by Steve Naroff · 15 years ago
  89. 16ede0e fix PR3932: [ObjC]Type defined as 'id' is not recognized as a valid object type. by Chris Lattner · 15 years ago
  90. c211218 Non-pointer objects are none gc'able regardles of the attribute set on them. by Fariborz Jahanian · 15 years ago
  91. 8038d51 Various minor fixes to PCH reading and writing, with general by Douglas Gregor · 15 years ago
  92. 2f1169f Use correct alignment and size for references in records as well. by Anders Carlsson · 15 years ago
  93. 1b78276 Add Expr::EvaluateAsLValue which will (believe it or not) try to evaluate an Expr as an LValue. by Anders Carlsson · 15 years ago
  94. f093023 Fix thinko noticed by Chris. by Anders Carlsson · 15 years ago
  95. 4cc2cfd Use the same alignment for reference declarations as for pointer declarations. by Anders Carlsson · 15 years ago
  96. 2cf2634 Implementation of pre-compiled headers (PCH) based on lazy by Douglas Gregor · 15 years ago
  97. c612f7b Add @encode support for complex types. by Anders Carlsson · 15 years ago
  98. 6ab3524 Propagate the ASTContext to various AST traversal and lookup functions. by Douglas Gregor · 15 years ago
  99. c36c540 Simple DeclContext's internal representation by always storing a by Douglas Gregor · 15 years ago
  100. 24ae89a Another ParentMap bug: only the right side of a comma expression is consumed. by Ted Kremenek · 15 years ago