clang-1/lib/AST
Douglas Gregor 47b9a1ca55 Some name-lookup-related fixes, from Piotr Rak!
- Changes Lookup*Name functions to return NamedDecls, instead of
Decls. Unfortunately my recent statement that it will simplify lot of
code, was not quite right, but it simplifies some...
- Makes MergeLookupResult SmallPtrSet instead of vector, following
Douglas suggestions.
- Adds %qN format for printing qualified names to Diagnostic.
- Avoids searching for using-directives in Scopes, which are not
DeclScope, during unqualified name lookup.



git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@63739 91177308-0d34-0410-b5e6-96231b3b80d8
2009-02-04 17:27:36 +00:00
..
APValue.cpp Support evaluation of vector constant expressions, and codegen of same. 2009-01-18 03:20:47 +00:00
ASTConsumer.cpp Remove unused ASTConsumer::HandleTopLevelDeclaration 2008-07-25 22:39:30 +00:00
ASTContext.cpp Change the ObjC type encoding for block pointer types to "@?" (for consistency with GCC). 2009-02-02 18:24:29 +00:00
Builtins.cpp Fix for PR3350: add special-casing for "references" to va_lists in 2009-01-20 07:46:22 +00:00
CFG.cpp Remove ScopedDecl, collapsing all of its functionality into Decl, so 2009-01-20 01:17:11 +00:00
CMakeLists.txt CMake: Added some source files. 2008-11-19 18:46:39 +00:00
Decl.cpp Some name-lookup-related fixes, from Piotr Rak! 2009-02-04 17:27:36 +00:00
DeclBase.cpp Semantic analysis, ASTs, and unqualified name lookup support for C++ 2009-02-03 19:21:40 +00:00
DeclCXX.cpp Semantic analysis, ASTs, and unqualified name lookup support for C++ 2009-02-03 19:21:40 +00:00
DeclGroup.cpp Finish making AST BumpPtrAllocation runtime configurable (based on -disable-free). 2009-01-27 23:20:32 +00:00
DeclObjC.cpp Remove many references to ASTContext::getAllocator(), replacing them with calls to the recently added placement new (which uses ASTContext's allocator for memory). Also added ASTContext::Deallocate(). 2009-01-27 21:25:57 +00:00
DeclSerialization.cpp Semantic analysis, ASTs, and unqualified name lookup support for C++ 2009-02-03 19:21:40 +00:00
DeclarationName.cpp Semantic analysis, ASTs, and unqualified name lookup support for C++ 2009-02-03 19:21:40 +00:00
Expr.cpp Make CodeGen produce an error if we come across a non-constant initializer list that involves the GNU array-range designator extension 2009-01-29 19:42:23 +00:00
ExprCXX.cpp Fix our semantic analysis of 2009-02-04 15:01:18 +00:00
ExprConstant.cpp Evaluate ==,!= for complex types. 2009-01-29 06:43:41 +00:00
InheritViz.cpp [LLVM up] Update for raw_fd_ostream change. This fixes a FIXME that 2008-11-13 05:09:21 +00:00
Makefile Make a major restructuring of the clang tree: introduce a top-level 2008-03-15 23:59:48 +00:00
ParentMap.cpp Dead stores checker: Fix <rdar://problem/6506065> by being more selective when say that a store is dead even though the computed value is used in the enclosing expression. 2009-01-20 00:47:45 +00:00
Stmt.cpp Don't advance the statement iterator after we've deallocated the statement 2009-01-16 06:50:08 +00:00
StmtDumper.cpp Semantic analysis, ASTs, and unqualified name lookup support for C++ 2009-02-03 19:21:40 +00:00
StmtIterator.cpp Remove ScopedDecl, collapsing all of its functionality into Decl, so 2009-01-20 01:17:11 +00:00
StmtPrinter.cpp Fix our semantic analysis of 2009-02-04 15:01:18 +00:00
StmtSerialization.cpp Fix our semantic analysis of 2009-02-04 15:01:18 +00:00
StmtViz.cpp Migrate DeclStmt over to using a DeclGroup instead of a pointer to a ScopedDecl*. 2008-10-07 23:09:49 +00:00
TranslationUnit.cpp Remove the TopLevelDecls from TranslationUnit, since all of those decls are owned by the ASTContext's TranslationUnitDecl. There are definitely some leaking Decls now that I'll tackle tomorrow 2009-01-20 04:25:11 +00:00
Type.cpp Switch Type::isAggregateType to use the C++ definition of "aggregate 2009-01-30 17:31:00 +00:00
TypeSerialization.cpp Add support for declaring pointers to members. 2009-01-24 21:16:55 +00:00