1. d1e9d83 Argument-dependent lookup for friend declarations. Add a new decl type, by John McCall · 16 years ago
  2. c7e8e79 Just add global scope to the associated namespaces set instead of tracking it by John McCall · 16 years ago
  3. 07e91c0 First pass at friend semantics. by John McCall · 16 years ago
  4. 44b83ee Get rid of "smart" quotes. Per report on cfe-dev. by Eli Friedman · 16 years ago
  5. c23c7e6 Change uses of: by Ted Kremenek · 16 years ago
  6. aa87ebc [llvm up] by Douglas Gregor · 16 years ago
  7. 43cee935 Remove Sema::LookupObjCImplementation and replace it with just calling ObjCInterfaceDecl::getImplementation(). by Argyrios Kyrtzidis · 16 years ago
  8. 6b7e376 Remove ASTContext::getCanonicalDecl() and use Decl::getCanonicalDecl in its place. by Argyrios Kyrtzidis · 16 years ago
  9. 8a286fb Per offline discussion with Steve Naroff, add back Type::getAsXXXType() methods by Ted Kremenek · 16 years ago
  10. b825c0d Replaced Type::getAsLValueReferenceType(), Type::getAsRValueReferenceType(), Type::getAsMemberPointerType(), Type::getAsTagType(), and Type::getAsRecordType() with their Type::getAs<XXX> equivalents. by Ted Kremenek · 16 years ago
  11. e3fb4b6 Add member template 'Type::getAs<T>', which converts a Type* to a respective T*. by Ted Kremenek · 16 years ago
  12. be75925 Fix a corner case with argument-dependent lookup and overloaded function sets. by Douglas Gregor · 16 years ago
  13. 197e5f7 Improve argument-dependent lookup to find associated classes and by Douglas Gregor · 16 years ago
  14. cfbfe78 De-ASTContext-ify DeclContext. by Argyrios Kyrtzidis · 16 years ago
  15. b4b64ca Remove the ASTContext parameter from the attribute-related methods of Decl. by Argyrios Kyrtzidis · 16 years ago
  16. 15448f8 Improve support for overloaded operator templates. by Douglas Gregor · 16 years ago
  17. 6915bf6 Add NamedDecl::getUnderlyingDecl that can see through UsingDecl and ObjCCompatibleAliasDecl. by Anders Carlsson · 16 years ago
  18. f057cb2 See through UsingDecls in more places. by Anders Carlsson · 16 years ago
  19. 288dcd1 Fix failing test. by Anders Carlsson · 16 years ago
  20. 5f212cb Fix another assert related to using decls. by Anders Carlsson · 16 years ago
  21. 8d0f6b7 When creating LookupResults, see through UsingDecls. Fixes PR4450. by Anders Carlsson · 16 years ago
  22. ad3f2fc Improved semantic analysis and AST respresentation for function templates. by Douglas Gregor · 16 years ago
  23. 6127ca4 Make sure that argument-dependent lookup looks into the global scope by Douglas Gregor · 16 years ago
  24. fec5263 Parsing and AST support for using declarations, from John Thompson! by Douglas Gregor · 16 years ago
  25. 78bd61f Move the static DeclAttrs map into ASTContext. Fixes <rdar://problem/6983177>. by Douglas Gregor · 16 years ago
  26. f187420f Diagnose class members that shadow a template parameter. Fixes by Douglas Gregor · 16 years ago
  27. 15ba949 Sink the BuiltinInfo object from ASTContext into the by Chris Lattner · 16 years ago
  28. f98d9b6 Improve name lookup for and template instantiation of declaration by Douglas Gregor · 17 years ago
  29. 4182e321 Fix sorting of using directives, from Jay Foad by Douglas Gregor · 17 years ago
  30. 87c57ac Reflow some comments. by Mike Stump · 17 years ago
  31. c9f9b86 Implement the notions of the "current instantiation" and "unknown by Douglas Gregor · 17 years ago
  32. 38feed8 Eliminate Sema::ObjCAliasDecls. This is based on Steve's fix, but also by Douglas Gregor · 17 years ago
  33. ac345a3 Eliminate Sema::ObjCInterfaceDecls by Douglas Gregor · 17 years ago
  34. 79947a2 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 · 17 years ago
  35. de9f17e Eliminate Sema::ObjCProtocols. Instead, we place ObjCProtocolDecls in by Douglas Gregor · 17 years ago
  36. a868bbd Lazy deserialization of the declaration chains associated with by Douglas Gregor · 17 years ago
  37. ef84c4b Implementation of pre-compiled headers (PCH) based on lazy by Douglas Gregor · 17 years ago
  38. bcced4e Propagate the ASTContext to various AST traversal and lookup functions. by Douglas Gregor · 17 years ago
  39. fe3d7d0 Make parsing a semantic analysis a little more robust following Sema by Douglas Gregor · 17 years ago
  40. 83f095c Introduce a new OpaquePtr<N> struct type, which is a simple POD wrapper for a by Chris Lattner · 17 years ago
  41. fdca4a7 Tests and fixes for templates declared within (non-template) by Douglas Gregor · 17 years ago
  42. 5253768 Introduce a representation for types that we referred to via a by Douglas Gregor · 17 years ago
  43. 6bfde49 The scope representation can now be either a DeclContext pointer or a by Douglas Gregor · 17 years ago
  44. 0950e41 Implement template instantiation for several more kinds of expressions: by Douglas Gregor · 17 years ago
  45. d2b7ef6 Improve the representation of operator expressions like "x + y" within by Douglas Gregor · 17 years ago
  46. 2689746 Add basic, hackish support for instantiation of typedefs in a class by Douglas Gregor · 17 years ago
  47. 89ee682 Eliminate CXXRecordType by Douglas Gregor · 17 years ago
  48. deaad8c Create a new TypeNodes.def file that enumerates all of the types, by Douglas Gregor · 17 years ago
  49. eddf433 When we're declaring an object or function with linkage, teach name by Douglas Gregor · 17 years ago
  50. b9063fc Implicitly declare certain C library functions (malloc, strcpy, memmove, by Douglas Gregor · 17 years ago
  51. 4e5cbdc Initial implementation of function overloading in C. by Douglas Gregor · 17 years ago
  52. 112a9766 Implement dereferencing of pointers-to-member. by Sebastian Redl · 17 years ago
  53. 700792c Improvements and fixes for name lookup with using directives, from Piotr Rak! by Douglas Gregor · 17 years ago
  54. ded2d7b Basic representation of C++ class templates, from Andrew Sutton. by Douglas Gregor · 17 years ago
  55. 2ada048 Some name-lookup-related fixes, from Piotr Rak! by Douglas Gregor · 17 years ago
  56. 94eabf3 Bring operator name lookup (as required for C++ operator overloading) by Douglas Gregor · 17 years ago
  57. e254f90 Initial implementation of argument dependent lookup (a.k.a. ADL, by Douglas Gregor · 17 years ago
  58. 1927267 silence some warnings. by Chris Lattner · 17 years ago
  59. 889ceb7 Semantic analysis, ASTs, and unqualified name lookup support for C++ by Douglas Gregor · 17 years ago
  60. 0e8fc3c Add iterators to LookupResult, allowing one to iterate over the by Douglas Gregor · 17 years ago
  61. ed8f288 Eliminated LookupCriteria, whose creation was causing a bottleneck for by Douglas Gregor · 17 years ago
  62. 6e6ad60 Remove ScopedDecl, collapsing all of its functionality into Decl, so by Douglas Gregor · 17 years ago
  63. f23311d PODify LookupResult, for a measly 1% speedup on Cocoa.h. by Douglas Gregor · 17 years ago
  64. dee1be8 Teach DeclContext how to find the primary declaration for any TagDecl by Douglas Gregor · 17 years ago
  65. 1c846b0 Improve diagnostics for ambiguous name lookup results by Douglas Gregor · 17 years ago
  66. 435bbe0 Fix some unused variable, control reaches end of non-void function, by Daniel Dunbar · 17 years ago
  67. 41c8ba8 Deallocate the BasePaths structure that we allocate for LookupResult. by Douglas Gregor · 17 years ago
  68. 960b5bc Initial implementation of member name lookup by Douglas Gregor · 17 years ago
  69. 3407432 Refactor name lookup. by Douglas Gregor · 17 years ago