aboutsummaryrefslogtreecommitdiff
path: root/lib/Sema/SemaLookup.cpp
AgeCommit message (Expand)Author
2009-06-18Move the static DeclAttrs map into ASTContext. Fixes <rdar://problem/6983177>.Douglas Gregor
2009-06-17Diagnose class members that shadow a template parameter. FixesDouglas Gregor
2009-06-14Sink the BuiltinInfo object from ASTContext into theChris Lattner
2009-05-27Improve name lookup for and template instantiation of declarationDouglas Gregor
2009-05-18Fix sorting of using directives, from Jay FoadDouglas Gregor
2009-05-16Reflow some comments.Mike Stump
2009-05-11Implement the notions of the "current instantiation" and "unknownDouglas Gregor
2009-04-24Eliminate Sema::ObjCAliasDecls. This is based on Steve's fix, but alsoDouglas Gregor
2009-04-24Eliminate Sema::ObjCInterfaceDeclsDouglas Gregor
2009-04-24Eliminate Sema::ObjCImplementations, relying instead on name lookup. What's g...Douglas Gregor
2009-04-23Eliminate Sema::ObjCProtocols. Instead, we place ObjCProtocolDecls inDouglas Gregor
2009-04-21Lazy deserialization of the declaration chains associated withDouglas Gregor
2009-04-09Implementation of pre-compiled headers (PCH) based on lazyDouglas Gregor
2009-04-09Propagate the ASTContext to various AST traversal and lookup functions.Douglas Gregor
2009-04-01Make parsing a semantic analysis a little more robust following SemaDouglas Gregor
2009-03-28Introduce a new OpaquePtr<N> struct type, which is a simple POD wrapper for aChris Lattner
2009-03-27Tests and fixes for templates declared within (non-template)Douglas Gregor
2009-03-19Introduce a representation for types that we referred to via aDouglas Gregor
2009-03-18The scope representation can now be either a DeclContext pointer or aDouglas Gregor
2009-03-13Implement template instantiation for several more kinds of expressions:Douglas Gregor
2009-03-13Improve the representation of operator expressions like "x + y" withinDouglas Gregor
2009-03-11Add basic, hackish support for instantiation of typedefs in a classDouglas Gregor
2009-02-28Eliminate CXXRecordTypeDouglas Gregor
2009-02-26Create a new TypeNodes.def file that enumerates all of the types,Douglas Gregor
2009-02-24When we're declaring an object or function with linkage, teach nameDouglas Gregor
2009-02-13Implicitly declare certain C library functions (malloc, strcpy, memmove,Douglas Gregor
2009-02-11Initial implementation of function overloading in C.Douglas Gregor
2009-02-07Implement dereferencing of pointers-to-member.Sebastian Redl
2009-02-05Improvements and fixes for name lookup with using directives, from Piotr Rak!Douglas Gregor
2009-02-04Basic representation of C++ class templates, from Andrew Sutton.Douglas Gregor
2009-02-04Some name-lookup-related fixes, from Piotr Rak!Douglas Gregor
2009-02-04Bring operator name lookup (as required for C++ operator overloading)Douglas Gregor
2009-02-04Initial implementation of argument dependent lookup (a.k.a. ADL,Douglas Gregor
2009-02-03silence some warnings.Chris Lattner
2009-02-03Semantic analysis, ASTs, and unqualified name lookup support for C++Douglas Gregor
2009-02-02Add iterators to LookupResult, allowing one to iterate over theDouglas Gregor
2009-01-30Eliminated LookupCriteria, whose creation was causing a bottleneck forDouglas Gregor
2009-01-20Remove ScopedDecl, collapsing all of its functionality into Decl, soDouglas Gregor
2009-01-17PODify LookupResult, for a measly 1% speedup on Cocoa.h.Douglas Gregor
2009-01-17Teach DeclContext how to find the primary declaration for any TagDeclDouglas Gregor
2009-01-16Improve diagnostics for ambiguous name lookup resultsDouglas Gregor
2009-01-15Fix some unused variable, control reaches end of non-void function,Daniel Dunbar
2009-01-15Deallocate the BasePaths structure that we allocate for LookupResult.Douglas Gregor
2009-01-15Initial implementation of member name lookupDouglas Gregor
2009-01-14Refactor name lookup.Douglas Gregor