1. 2d88708 Split out a header to hold APIs meant for the Sema implementation from Sema.h. by John McCall · 14 years ago
  2. 2de56d1 GCC didn't care for my attempt at API compatibility, so brute-force everything by John McCall · 14 years ago
  3. 781472f Split FunctionScopeInfo and BlockScopeInfo into their own header. by John McCall · 14 years ago
  4. 7cd088e Struggle mightily against header inclusion in Sema.h. by John McCall · 14 years ago
  5. 60d7b3a OwningExprResult -> ExprResult. This patch brought to you by by John McCall · 14 years ago
  6. b3d8748 Abstract out passing around types and kill off ActionBase. by John McCall · 14 years ago
  7. 9ae2f07 Kill off ExprArg (now just Expr*) and StmtArg (now just Stmt*). by John McCall · 14 years ago
  8. ca0408f Sundry incremental steps towards killing off Action. by John McCall · 14 years ago
  9. 8c3e554 Preserve the zero-initialization and construction-kind settings when by Douglas Gregor · 14 years ago
  10. d226f65 DeclPtrTy -> Decl * by John McCall · 14 years ago
  11. 1951085 Another step in the process of making the parser depend on Sema: by John McCall · 14 years ago
  12. 096832c Regularize the API for accessing explicit template arguments. by John McCall · 14 years ago
  13. ec8045d Implicit decl ref expressions might not have name locations; don't silently by John McCall · 14 years ago
  14. e737f50 Move Sema's headers into include/clang/Sema, renaming a few along the way. by Douglas Gregor · 14 years ago
  15. 2577743 Added locations and type source info for DeclarationName. by Abramo Bagnara · 14 years ago
  16. 9bcd4d4 Eliminate unnecessary uses of TemporaryBase in TreeTransform; by Douglas Gregor · 14 years ago
  17. 22f638a Fixed redundant NNS loading. by Abramo Bagnara · 14 years ago
  18. 2cad900 Added TypeLocs to VAArgExpr node. by Abramo Bagnara · 14 years ago
  19. 3fcb73d Added TypeLocs to TypesCompatibleExpr node. by Abramo Bagnara · 14 years ago
  20. fa86954 Preserve calling convention etc. across template instantiations. by Eli Friedman · 14 years ago
  21. ff331c1 Remove the vast majority of the Destroy methods from the AST library, by Douglas Gregor · 14 years ago
  22. e7ffbe2 More block instantiation stuff. Set variable/param DeclContext by Fariborz Jahanian · 14 years ago
  23. 4bd4031 Downgrade the "when type is in parentheses, array cannot have dynamic by Douglas Gregor · 14 years ago
  24. 5291c3c When forming a function call or message send expression, be sure to by Douglas Gregor · 14 years ago
  25. cad8d31 Copy over attributes to instantiated variable. by Fariborz Jahanian · 14 years ago
  26. 720b639 Fix compile error. Per Fariborz. by Dale Johannesen · 14 years ago
  27. 5750b81 Instantiation of byref variable in block literal expression. by Fariborz Jahanian · 14 years ago
  28. a729da2 Instantiation of block literal expressions. wip. by Fariborz Jahanian · 14 years ago
  29. ed8abf1 Reinstate the fix for PR7556. A silly use of isTrivial() was by Douglas Gregor · 14 years ago
  30. 8474567 Revert r107828 and r107827, the fix for PR7556, which seems to be by Douglas Gregor · 14 years ago
  31. 016a4a9 Rename CXXZeroInitValueExpr to CXXScalarValueInitExpr, to reflect its by Douglas Gregor · 14 years ago
  32. 788b0fd improve altivec vector bool/pixel support, patch by Anton Yartsev by Chris Lattner · 14 years ago
  33. 83c9abc Apply array-to-pointer decay when instantiating a MemberExpr. Fixes by Douglas Gregor · 14 years ago
  34. 96fb42e A trivial fix for a test case that's too horrible to commit. Fixes by Douglas Gregor · 14 years ago
  35. e2872d0 When pushing a copy of the TypeLoc information for a dependent by Douglas Gregor · 14 years ago
  36. d6ab232 When we see a 'template' disambiguator that marks the next identifier by Douglas Gregor · 14 years ago
  37. 1a15dae Fix the recently-added warning about 'typename' and 'template' by Douglas Gregor · 14 years ago
  38. ad00b77 Fix a point of semantics with using declaration hiding: method templates by John McCall · 14 years ago
  39. 3350095 Split DependentNameType into two types. DependentNameType represents the by John McCall · 14 years ago
  40. 2865474 Simplify the methods for creating a pointer, reference, member-pointer, by John McCall · 14 years ago
  41. 5613876 Require a complete type when performing the qualified lookup during by John McCall · 14 years ago
  42. ff2e4f4 When transforming a C++ "new" expression's constructor arguments, drop by Douglas Gregor · 14 years ago
  43. 9cbb4d8 tweak to (hopefully) fix darwin[89] buildbots. Thanks to Doug for the suggested modification. by Jim Grosbach · 14 years ago
  44. e4da7a0 Added basic source locations to Elaborated and DependentName types. by Abramo Bagnara · 14 years ago
  45. 042d6f9 Fix an obvious goof that rjmccall found by inspection. No testcase, suggestions by Chandler Carruth · 14 years ago
  46. 7381d5c Switch over the tablegen to use much prettier range technology by Sean Hunt · 14 years ago
  47. c12c5bb Substantially alter the design of the Objective C type AST by introducing by John McCall · 14 years ago
  48. a63db84 Revert r103770, "Added basic source locations to Elaborated and DependentName by Daniel Dunbar · 14 years ago
  49. 5431299 Added basic source locations to Elaborated and DependentName types. by Abramo Bagnara · 14 years ago
  50. 5d7c29a Rebuild builtin_id * as an ObjCObjectPointerType, where builtin_id is the by John McCall · 14 years ago
  51. 465d41b Merged Elaborated and QualifiedName types. by Abramo Bagnara · 14 years ago
  52. afa0fef Fix a silly bootstrap-breaking thinko, where we were trying to convert by Douglas Gregor · 14 years ago
  53. eaa18e4 When instantiating statements that involve conditions (if, while, do, by Douglas Gregor · 14 years ago
  54. eecf38f Fixed DISABLE_SMART_POINTERS breakage by Douglas Gregor · 14 years ago
  55. 586596f Rework our handling of temporary objects within the conditions of by Douglas Gregor · 14 years ago
  56. 4bfe196 Reapplying patch to change StmtNodes.def to StmtNodes.td, this time by Sean Hunt · 14 years ago
  57. c302113 Revert r103072; I accidentally ended up deleting a bunch of trailing by Sean Hunt · 14 years ago
  58. 9d90d62 Change StmtNodes.def to StmtNodes.td in anticipation of a rewrite of attributes by Sean Hunt · 14 years ago
  59. 72be24f Fix a thinko that caused us not to compute __builtin_offset as a by Douglas Gregor · 14 years ago
  60. 895162d Clean up our handling of local instantiation scopes, which keep track by Douglas Gregor · 14 years ago
  61. cc8a5d5 Teach __builtin_offsetof to compute the offsets of members of base by Douglas Gregor · 14 years ago
  62. 29d2fd5 Fix template instantiation for __builtin_offfsetof expressions that refer to members of anonymous structs/unions by Douglas Gregor · 14 years ago
  63. 8ecdb65 Completely reimplement __builtin_offsetof, based on a patch by Roberto Amadini. by Douglas Gregor · 14 years ago
  64. c96be1e During template instantiation, set the naming class of by Douglas Gregor · 14 years ago
  65. 66c4515 When instantiating UnresolvedLookupExpr and UnresolvedMemberExpr by Douglas Gregor · 14 years ago
  66. 57fdc8a Improve source-location information in a C++ typeid (type) expression by Douglas Gregor · 14 years ago
  67. 9cbfdd2 Implement template instantiation for implicit property references in by Douglas Gregor · 14 years ago
  68. e330354 Implement template instantiation for ObjCPropertyRefExpr. by Douglas Gregor · 14 years ago
  69. f9b9eab Implement template instantiation for value-dependent Objective-C ivar by Douglas Gregor · 14 years ago
  70. be270a0 Implement template instantiation for Objective-C @catch by Douglas Gregor · 14 years ago
  71. 107de90 Keep track of when DependentNameTypes have no associated keyword by Douglas Gregor · 14 years ago
  72. 8f5e3dd Improve the AST representation of Objective-C @try/@catch/@finally by Douglas Gregor · 14 years ago
  73. 4dfdd1b Template instantiation for @try and @finally (but not @catch, yet). by Douglas Gregor · 14 years ago
  74. c3203e7 Template instantiation for the Objective-C "fast enumeration" statement, i.e., by Douglas Gregor · 14 years ago
  75. 8fdc13a Template instantiation for Objective-C++ @synchronized statements. by Douglas Gregor · 14 years ago
  76. d1377b2 Implement template instantiation for Objective-C++ @throw statements. by Douglas Gregor · 14 years ago
  77. ef57c61 Some Objective-C++ types and expressions will never change during by Douglas Gregor · 14 years ago
  78. f49bb08 When a dependent Objective-C++ message send was able to resolve the by Douglas Gregor · 14 years ago
  79. 39968ad Remove the SelectorLoc argument to Sema::BuildInstanceMesssage and by Douglas Gregor · 14 years ago
  80. db93c4a Expand the one use of TransformPointerLikeType and eliminate this macro. No functionality change by Douglas Gregor · 14 years ago
  81. 92e986e Implement template instantiation for Objective-C++ message sends. We by Douglas Gregor · 14 years ago
  82. d8383d4 CXXNamedCastExpr is actually an abstract expression. by Zhongxing Xu · 14 years ago
  83. 81d3466 Keep proper source location information for the type in an Objective-C by Douglas Gregor · 14 years ago
  84. 16573fa Keep track of the actual storage specifier written on a variable or by Douglas Gregor · 14 years ago
  85. 1eabb7d Improve diagnostics when an elaborated-type-specifer containing a by Douglas Gregor · 14 years ago
  86. 4033642 Change the representation of dependent elaborated-type-specifiers by Douglas Gregor · 14 years ago
  87. 4a2023f Extend DependentNameType with a keyword enum that specifies whether by Douglas Gregor · 14 years ago
  88. a3ce8ae Re-bind non-dependent CXXTemporaryObjectExpr nodes as temporaries when by Chandler Carruth · 14 years ago
  89. 4714c12 Rename TypenameType to DependentNameType in anticipation of some by Douglas Gregor · 14 years ago
  90. 6bb8017 Propagate the "found declaration" (i.e. the using declaration instead of by John McCall · 14 years ago
  91. 069ace5 Fix a self-host problem caused by this over-eager assertion. I'm not sure by John McCall · 14 years ago
  92. 21ef0fa Maintain type source information for functions through template by John McCall · 14 years ago
  93. 3cb0ebd Create a new InjectedClassNameType to represent bare-word references to the by John McCall · 14 years ago
  94. 5fccd36 Reinstate r97674 with a fix for the assertion that was firing in <list> by Douglas Gregor · 15 years ago
  95. a7cb22d Revert r97674; it's causing failures by Douglas Gregor · 15 years ago
  96. b29b37d Implement disambiguation of base class members via a by Douglas Gregor · 15 years ago
  97. 91be6f5 Use CXXTemporaryObjectExpr for explicitly-constructed temporaries. We by Douglas Gregor · 15 years ago
  98. aac571c Finish pushing source-location information though TreeTransform's by Douglas Gregor · 15 years ago
  99. 7c1e98f When looking for the instantiated declaration that corresponds to a by Douglas Gregor · 15 years ago
  100. 1af7451 Make sure to mark constructors, operator new, and operator delete as by Douglas Gregor · 15 years ago