Skip to content
  1. Apr 30, 2010
  2. Apr 26, 2010
  3. Apr 24, 2010
  4. Apr 23, 2010
  5. Apr 22, 2010
    • Douglas Gregor's avatar
      Implement parsing for message sends in Objective-C++. Message sends in · 8d4de67e
      Douglas Gregor authored
      Objective-C++ have a more complex grammar than in Objective-C
      (surprise!), because
      
        (1) The receiver of an instance message can be a qualified name such
        as ::I or identity<I>::type.
        (2) Expressions in C++ can start with a type.
      
      The receiver grammar isn't actually ambiguous; it just takes a bit of
      work to parse past the type before deciding whether we have a type or
      expression. We do this in two places within the grammar: once for
      message sends and once when we're determining whether a []'d clause in
      an initializer list is a message send or a C99 designated initializer.
      
      This implementation of Objective-C++ message sends contains one known
      extension beyond GCC's implementation, which is to permit a
      typename-specifier as the receiver type for a class message, e.g.,
      
        [typename compute_receiver_type<T>::type method];
      
      Note that the same effect can be achieved in GCC by way of a typedef,
      e.g.,
      
        typedef typename computed_receiver_type<T>::type Computed;
        [Computed method];
      
      so this is merely a convenience.
      
      Note also that message sends still cannot involve dependent types or
      values.
      
      llvm-svn: 102031
      8d4de67e
  6. Apr 21, 2010
    • Douglas Gregor's avatar
      Migrate the responsibility for turning the receiver name in an · e5798dcb
      Douglas Gregor authored
      Objective-C class message expression into a type from the parser
      (which was doing so in two places) to Action::getObjCMessageKind()
      which, in the case of Sema, reduces the number of name lookups we need
      to perform.
      
      llvm-svn: 102026
      e5798dcb
    • Douglas Gregor's avatar
      Rework the Parser-Sema interaction for Objective-C message · 0c78ad96
      Douglas Gregor authored
      sends. Major changes include:
      
        - Expanded the interface from two actions (ActOnInstanceMessage,
          ActOnClassMessage), where ActOnClassMessage also handled sends to
          "super" by checking whether the identifier was "super", to three
          actions (ActOnInstanceMessage, ActOnClassMessage,
          ActOnSuperMessage). Code completion has the same changes.
        - The parser now resolves the type to which we are sending a class
          message, so ActOnClassMessage now accepts a TypeTy* (rather than
          an IdentifierInfo *). This opens the door to more interesting
          types (for Objective-C++ support).
        - Split ActOnInstanceMessage and ActOnClassMessage into parser
          action functions (with their original names) and semantic
          functions (BuildInstanceMessage and BuildClassMessage,
          respectively). At present, this split is onyl used by
          ActOnSuperMessage, which decides which kind of super message it
          has and forwards to the appropriate Build*Message. In the future,
          Build*Message will be used by template instantiation.
        - Use getObjCMessageKind() within the disambiguation of Objective-C
          message sends vs. array designators.
      
      Two notes about substandard bits in this patch:
        - There is some redundancy in the code in ParseObjCMessageExpr and
        ParseInitializerWithPotentialDesignator; this will be addressed
        shortly by centralizing the mapping from identifiers to type names
        for the message receiver.
        - There is some #if 0'd code that won't likely ever be used---it
        handles the use of 'super' in methods whose class does not have a
        superclass---but could be used to model GCC's behavior more
        closely. This code will die in my next check-in, but I want it in
        Subversion.
      
      llvm-svn: 102021
      0c78ad96
  7. Apr 20, 2010
  8. Apr 16, 2010
  9. Apr 15, 2010
  10. Apr 14, 2010
  11. Apr 13, 2010
  12. Apr 12, 2010
  13. Apr 11, 2010
    • Chris Lattner's avatar
      fix PR6811 by not parsing 'super' as a magic expression in · a36ec424
      Chris Lattner authored
      LookupInObjCMethod.  Doing so allows all sorts of invalid code
      to slip through to codegen.  This patch does not change the 
      AST representation of super, though that would now be a natural
      thing to do since it can only be in the receiver position and
      in the base of a ObjCPropertyRefExpr.
      
      There are still several ugly areas handling super in the parser,
      but this is definitely a step in the right direction.
      
      llvm-svn: 100959
      a36ec424
  14. Apr 10, 2010
    • John McCall's avatar
      Diagnose misordered initializers in constructor templates immediately instead of · bb7b658a
      John McCall authored
      when they're instantiated.  Merge the note into the -Wreorder warning;  it
      doesn't really contribute much, and it was splitting a thought across diagnostics
      anyway.  Don't crash in the parser when a constructor's initializers end in a
      comma and there's no body;  the recovery here is still terrible, but anything's
      better than a crash.
      
      llvm-svn: 100922
      bb7b658a
  15. Apr 08, 2010
  16. Apr 07, 2010
  17. Apr 06, 2010
  18. Apr 05, 2010
  19. Apr 03, 2010
  20. Mar 31, 2010
Loading