Skip to content
  1. Jan 25, 2009
  2. Jan 20, 2009
    • Douglas Gregor's avatar
      Remove ScopedDecl, collapsing all of its functionality into Decl, so · 6e6ad602
      Douglas Gregor authored
      that every declaration lives inside a DeclContext.
      
      Moved several things that don't have names but were ScopedDecls (and,
      therefore, NamedDecls) to inherit from Decl rather than NamedDecl,
      including ObjCImplementationDecl and LinkageSpecDecl. Now, we don't
      store empty DeclarationNames for these things, nor do we try to insert
      them into DeclContext's lookup structure.
      
      The serialization tests are temporarily disabled. We'll re-enable them
      once we've sorted out the remaining ownership/serialiazation issues
      between DeclContexts and TranslationUnion, DeclGroups, etc.
      
      llvm-svn: 62562
      6e6ad602
  3. Jan 19, 2009
  4. Jan 16, 2009
  5. Jan 14, 2009
    • Douglas Gregor's avatar
      Introduce support for C++0x explicit conversion operators (N2437) · 5fb53972
      Douglas Gregor authored
      Small cleanup in the handling of user-defined conversions. 
      
      Also, implement an optimization when constructing a call. We avoid
      recomputing implicit conversion sequences and instead use those
      conversion sequences that we computed as part of overload resolution.
      
      llvm-svn: 62231
      5fb53972
  6. Jan 13, 2009
  7. Jan 08, 2009
    • Steve Naroff's avatar
      This is a large/messy diff that unifies the ObjC AST's with DeclContext. · 35c62ae6
      Steve Naroff authored
      - ObjCContainerDecl's (ObjCInterfaceDecl/ObjCCategoryDecl/ObjCProtocolDecl), ObjCCategoryImpl, & ObjCImplementation are all DeclContexts.
      - ObjCMethodDecl is now a ScopedDecl (so it can play nicely with DeclContext).
      - ObjCContainerDecl now does iteration/lookup using DeclContext infrastructure (no more linear search:-)
      - Removed ASTContext argument to DeclContext::lookup(). It wasn't being used and complicated it's use from an ObjC AST perspective.
      - Added Sema::ProcessPropertyDecl() and removed Sema::diagnosePropertySetterGetterMismatch().
      - Simplified Sema::ActOnAtEnd() considerably. Still more work to do.
      - Fixed an incorrect casting assumption in Sema::getCurFunctionOrMethodDecl(), now that ObjCMethodDecl is a ScopedDecl.
      - Removed addPropertyMethods from ObjCInterfaceDecl/ObjCCategoryDecl/ObjCProtocolDecl.
      
      This passes all the tests on my machine. Since many of the changes are central to the way ObjC finds it's methods, I expect some fallout (and there are still a handful of FIXME's). Nevertheless, this should be a step in the right direction.
      
      llvm-svn: 61929
      35c62ae6
  8. Jan 07, 2009
    • Douglas Gregor's avatar
      Initial implementation of anonymous unions (and, as a GNU extension, · 9ac7a070
      Douglas Gregor authored
      structures and classes) in C++. Covers name lookup and the synthesis
      and member access for the unnamed objects/fields associated with
      anonymous unions.
      
      Some C++ semantic checks are still missing (anonymous unions can't
      have function members, static data members, etc.), and there is no
      support for anonymous structs or unions in C.
      
      llvm-svn: 61840
      9ac7a070
  9. Dec 23, 2008
    • Douglas Gregor's avatar
      Don't push OverloadedFunctionDecls onto the chain of declarations · 8b9ccca5
      Douglas Gregor authored
      attached to an identifier. Instead, all overloaded functions will be
      pushed into scope, and we'll synthesize an OverloadedFunctionDecl on
      the fly when we need it. 
      
      llvm-svn: 61386
      8b9ccca5
    • Douglas Gregor's avatar
      Add some block-pointer conversions in C++ · 033f56d5
      Douglas Gregor authored
      llvm-svn: 61359
      033f56d5
    • Douglas Gregor's avatar
      Don't explicitly represent OverloadedFunctionDecls within · 55297ac4
      Douglas Gregor authored
      DeclContext. Instead, just keep the list of currently-active
      declarations and only build the OverloadedFunctionDecl when we
      absolutely need it.
      
      This is a half-step toward eliminating the need to explicitly build
      OverloadedFunctionDecls that store sets of overloaded
      functions. This was suggested by Argiris a while back, and it's a good
      thing for several reasons: first, it eliminates the messy logic that
      currently tries to keep the OverloadedFunctionDecl in sync with the 
      declarations that are being added. Second, it will (eventually)
      eliminate the need to allocate memory for overload sets, which could
      help performance. Finally, it helps set us up for when name lookup can
      return multiple (possibly ambiguous) results, as can happen with
      lookup of class members in C++.
      
      Next steps: make the IdentifierResolver store overloads as separate
      entries in its list rather than replacing them with an
      OverloadedFunctionDecl now, then see how far we can go toward
      eliminating OverloadedFunctionDecl entirely.
      
      llvm-svn: 61357
      55297ac4
  10. Dec 22, 2008
  11. Dec 21, 2008
  12. Dec 19, 2008
  13. Dec 15, 2008
    • Douglas Gregor's avatar
      Place constructors and destructors into the DeclContext of the class, · 1349b457
      Douglas Gregor authored
      just like all other members, and remove the special variables in
      CXXRecordDecl to store them. This eliminates a lot of special-case
      code for constructors and destructors, including
      ActOnConstructor/ActOnDeclarator and special lookup rules in
      LookupDecl. The result is far more uniform and manageable.
      
      Diagnose the redeclaration of member functions.
      
      llvm-svn: 61048
      1349b457
  14. Dec 12, 2008
  15. Dec 11, 2008
    • Douglas Gregor's avatar
      7a4fad1b
    • Douglas Gregor's avatar
      Unifies the name-lookup mechanisms used in various parts of the AST · 91f84216
      Douglas Gregor authored
      and separates lexical name lookup from qualified name lookup. In
      particular:
        * Make DeclContext the central data structure for storing and
          looking up declarations within existing declarations, e.g., members
          of structs/unions/classes, enumerators in C++0x enums, members of
          C++ namespaces, and (later) members of Objective-C
          interfaces/implementations. DeclContext uses a lazily-constructed
          data structure optimized for fast lookup (array for small contexts,
          hash table for larger contexts). 
      
        * Implement C++ qualified name lookup in terms of lookup into
          DeclContext.
      
        * Implement C++ unqualified name lookup in terms of
          qualified+unqualified name lookup (since unqualified lookup is not
          purely lexical in C++!)
      
        * Limit the use of the chains of declarations stored in
          IdentifierInfo to those names declared lexically.
      
        * Eliminate CXXFieldDecl, collapsing its behavior into
          FieldDecl. (FieldDecl is now a ScopedDecl).
      
        * Make RecordDecl into a DeclContext and eliminates its
          Members/NumMembers fields (since one can just iterate through the
          DeclContext to get the fields).
      
      llvm-svn: 60878
      91f84216
  16. Dec 06, 2008
    • Douglas Gregor's avatar
      Add support for calls to dependent names within templates, e.g., · b0846b0f
      Douglas Gregor authored
        template<typename T> void f(T x) {
          g(x); // g is a dependent name, so don't even bother to look it up
          g(); // error: g is not a dependent name
        }
      
      Note that when we see "g(", we build a CXXDependentNameExpr. However,
      if none of the call arguments are type-dependent, we will force the
      resolution of the name "g" and replace the CXXDependentNameExpr with
      its result.
      
      GCC actually produces a nice error message when you make this
      mistake, and even offers to compile your code with -fpermissive. I'll
      do the former next, but I don't plan to do the latter.
      
      llvm-svn: 60618
      b0846b0f
  17. Nov 27, 2008
  18. Nov 26, 2008
  19. Nov 24, 2008
  20. Nov 22, 2008
  21. Nov 21, 2008
  22. Nov 20, 2008
  23. Nov 19, 2008
    • Douglas Gregor's avatar
      Implement the rest of C++ [over.call.object], which permits the object · ab7897ac
      Douglas Gregor authored
      being called to be converted to a reference-to-function,
      pointer-to-function, or reference-to-pointer-to-function. This is done
      through "surrogate" candidate functions that model the conversions
      from the object to the function (reference/pointer) and the
      conversions in the arguments.
      
      llvm-svn: 59674
      ab7897ac
Loading