Skip to content
  1. May 10, 2010
  2. Apr 17, 2010
  3. Feb 13, 2010
  4. Jan 13, 2010
  5. Jan 11, 2010
    • Douglas Gregor's avatar
      Implement name lookup for conversion function template specializations · ea0a0a9b
      Douglas Gregor authored
      (C++ [temp.mem]p5-6), which involves template argument deduction based
      on the type named, e.g., given
      
        struct X { template<typename T> operator T*(); } x;
      
      when we call
      
        x.operator int*();
      
      we perform template argument deduction to determine that T=int. This
      template argument deduction is needed for template specialization and
      explicit instantiation, e.g.,
      
        template<> X::operator float*() { /* ... */ }
      
      and when calling or otherwise naming a conversion function (as in the
      first example). 
      
      This fixes PR5742 and PR5762, although there's some remaining ugliness
      that's causing out-of-line definitions of conversion function
      templates to fail. I'll look into that separately.
      
      llvm-svn: 93162
      ea0a0a9b
  6. Dec 23, 2009
  7. Dec 10, 2009
  8. Nov 29, 2009
  9. Nov 16, 2009
  10. Nov 15, 2009
  11. Nov 04, 2009
  12. Oct 18, 2009
  13. Oct 17, 2009
  14. Sep 24, 2009
  15. Sep 09, 2009
  16. Aug 05, 2009
  17. Jul 29, 2009
    • Ted Kremenek's avatar
      Change uses of: · c23c7e6a
      Ted Kremenek authored
        Type::getAsReferenceType() -> Type::getAs<ReferenceType>()
        Type::getAsRecordType() -> Type::getAs<RecordType>()
        Type::getAsPointerType() -> Type::getAs<PointerType>()
        Type::getAsBlockPointerType() -> Type::getAs<BlockPointerType>()
        Type::getAsLValueReferenceType() -> Type::getAs<LValueReferenceType>()
        Type::getAsRValueReferenceType() -> Type::getAs<RValueReferenceType>()
        Type::getAsMemberPointerType() -> Type::getAs<MemberPointerType>()
        Type::getAsReferenceType() -> Type::getAs<ReferenceType>()
        Type::getAsTagType() -> Type::getAs<TagType>()
        
      And remove Type::getAsReferenceType(), etc.
      
      This change is similar to one I made a couple weeks ago, but that was partly
      reverted pending some additional design discussion. With Doug's pending smart
      pointer changes for Types, it seemed natural to take this approach.
      
      llvm-svn: 77510
      c23c7e6a
  18. Jul 17, 2009
  19. May 15, 2009
  20. Apr 24, 2009
  21. Apr 22, 2009
  22. Mar 21, 2009
  23. Mar 14, 2009
  24. Feb 16, 2009
  25. Feb 03, 2009
  26. Jan 13, 2009
  27. Dec 14, 2008
  28. Dec 11, 2008
    • 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
  29. Nov 24, 2008
  30. Nov 18, 2008
    • Douglas Gregor's avatar
      Extend DeclarationName to support C++ overloaded operators, e.g., · 163c5850
      Douglas Gregor authored
      operator+, directly, using the same mechanism as all other special
      names.
      
      Removed the "special" identifiers for the overloaded operators from
      the identifier table and IdentifierInfo data structure. IdentifierInfo
      is back to representing only real identifiers.
      
      Added a new Action, ActOnOperatorFunctionIdExpr, that builds an
      expression from an parsed operator-function-id (e.g., "operator
      +"). ActOnIdentifierExpr used to do this job, but
      operator-function-ids are no longer represented by IdentifierInfo's.
      
      Extended Declarator to store overloaded operator names. 
      Sema::GetNameForDeclarator now knows how to turn the operator
      name into a DeclarationName for the overloaded operator. 
      
      Except for (perhaps) consolidating the functionality of
      ActOnIdentifier, ActOnOperatorFunctionIdExpr, and
      ActOnConversionFunctionExpr into a common routine that builds an
      appropriate DeclRefExpr by looking up a DeclarationName, all of the
      work on normalizing declaration names should be complete with this
      commit.
      
      llvm-svn: 59526
      163c5850
  31. Nov 17, 2008
    • Douglas Gregor's avatar
      Eliminate all of the placeholder identifiers used for constructors, · 92751d41
      Douglas Gregor authored
      destructors, and conversion functions. The placeholders were used to
      work around the fact that the parser and some of Sema really wanted
      declarators to have simple identifiers; now, the code that deals with
      declarators will use DeclarationNames.
      
      llvm-svn: 59469
      92751d41
    • Douglas Gregor's avatar
      Updated IdentifierResolver to deal with DeclarationNames. The names of · ae2fbad3
      Douglas Gregor authored
      C++ constructors, destructors, and conversion functions now have a
      FETokenInfo field that IdentifierResolver can access, so that these
      special names are handled just like ordinary identifiers. A few other
      Sema routines now use DeclarationNames instead of IdentifierInfo*'s.
      
      To validate this design, this code also implements parsing and
      semantic analysis for id-expressions that name conversion functions,
      e.g.,
      
        return operator bool();
      
      The new parser action ActOnConversionFunctionExpr takes the result of
      parsing "operator type-id" and turning it into an expression, using
      the IdentifierResolver with the DeclarationName of the conversion
      function. ActOnDeclarator pushes those conversion function names into
      scope so that the IdentifierResolver can find them, of course.
      
      llvm-svn: 59462
      ae2fbad3
    • Douglas Gregor's avatar
      Introduction the DeclarationName class, as a single, general method of · 77324f38
      Douglas Gregor authored
      representing the names of declarations in the C family of
      languages. DeclarationName is used in NamedDecl to store the name of
      the declaration (naturally), and ObjCMethodDecl is now a NamedDecl.
      
      llvm-svn: 59441
      77324f38
Loading