Skip to content
  1. Nov 27, 2008
  2. Nov 25, 2008
  3. Nov 24, 2008
  4. Nov 23, 2008
    • Chris Lattner's avatar
      Convert IdentifierInfo's to be printed the same as DeclarationNames · e3d20d95
      Chris Lattner authored
      with implicit quotes around them.  This has a bunch of follow-on 
      effects and requires tweaking to a whole lot of code.  This causes
      a regression in two tests (xfailed) by causing it to emit things like:
      
        Line 10: duplicate interface declaration for category 'MyClass1' ('Category1')
      
      instead of:
      
        Line 10: duplicate interface declaration for category 'MyClass1(Category1)'
      
      I will fix this in a follow-up commit.
      
      As part of this, I had to start switching stuff to use ->getDeclName() instead
      of Decl::getName() for consistency.  This is good, but I was planning to do this
      as an independent patch.  There will be several follow-on patches
      to clean up some of the mess, but this patch is already too big.
      
      llvm-svn: 59917
      e3d20d95
    • Chris Lattner's avatar
      add support for inserting a DeclarationName into a diagnostic directly · f7e69d5a
      Chris Lattner authored
      without calling getAsString().  This implicitly puts quotes around the
      name, so diagnostics need to be tweaked to accommodate this.
      
      llvm-svn: 59916
      f7e69d5a
  5. Nov 22, 2008
  6. Nov 21, 2008
  7. Nov 20, 2008
  8. Nov 19, 2008
    • Douglas Gregor's avatar
      Beef up the test for function call operators slightly · 20b30023
      Douglas Gregor authored
      llvm-svn: 59675
      20b30023
    • 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
    • Douglas Gregor's avatar
      Support for calling overloaded function call operators (operator()) · 91cea0ad
      Douglas Gregor authored
      with function call syntax, e.g.,
      
        Functor f;
        f(x, y);
      
      This is the easy part of handling calls to objects of class type 
      (C++ [over.call.object]). The hard part (coping with conversions from
      f to function pointer or reference types) will come later. Nobody uses
      that stuff anyway, right? :)
      
      llvm-svn: 59663
      91cea0ad
    • Argyrios Kyrtzidis's avatar
      Take care another assert: · 0d09c494
      Argyrios Kyrtzidis authored
      struct A {
        struct B;
      };
      
      struct A::B {
        void m() {} // Assertion failed: getContainingDC(DC) == CurContext && "The next DeclContext should be lexically contained in the current one."
      };
      
      Introduce DeclContext::getLexicalParent which may be different from DeclContext::getParent when nested-names are involved, e.g:
      
         namespace A {
            struct S;
         }
         struct A::S {}; // getParent() == namespace 'A'
                         // getLexicalParent() == translation unit
      
      llvm-svn: 59650
      0d09c494
    • Douglas Gregor's avatar
      Support overloading of the subscript operator[], including support for · 40412acc
      Douglas Gregor authored
      built-in operator candidates. Test overloading of '&' and ','.
      
      In C++, a comma expression is an lvalue if its right-hand
      subexpression is an lvalue. Update Expr::isLvalue accordingly.
      
      llvm-svn: 59643
      40412acc
    • Douglas Gregor's avatar
      Added operator overloading for unary operators, post-increment, and · d08452f6
      Douglas Gregor authored
      post-decrement, including support for generating all of the built-in
      operator candidates for these operators. 
      
      C++ and C have different rules for the arguments to the builtin unary
      '+' and '-'. Implemented both variants in Sema::ActOnUnaryOp.
      
      In C++, pre-increment and pre-decrement return lvalues. Update
      Expr::isLvalue accordingly.
      
      llvm-svn: 59638
      d08452f6
    • Argyrios Kyrtzidis's avatar
      Fix this: · 89709ac2
      Argyrios Kyrtzidis authored
      With this snippet:
        void f(a::b);
      
      An assert is hit:
      Assertion failed: CachedTokens[CachedLexPos-1].getLocation() == Tok.getAnnotationEndLoc() && "The annotation should be until the most recent cached token", file ..\..\lib\Lex\PPCaching.cpp, line 98
      
      Introduce Preprocessor::RevertCachedTokens that reverts a specific number of tokens when backtracking is enabled.
      
      llvm-svn: 59636
      89709ac2
    • Douglas Gregor's avatar
      Built-in equality and relational operators have return type "bool" in C++, · ca63811b
      Douglas Gregor authored
      not "int".
      
      Fix a typo in the promotion of enumeration types that was causing some
      integral promotions to look like integral conversions (leading to
      extra ambiguities in overload resolution).
      
      Check for "acceptable" overloaded operators based on the types of the
      arguments. This is a somewhat odd check that is specified by the
      standard, but I can't see why it actually matters: the overload
      candidates it suppresses don't seem like they would ever be picked as
      the best candidates.
      
      llvm-svn: 59583
      ca63811b
    • Douglas Gregor's avatar
      Partial expansion of C++ operator overloading (for binary operators) · 436424cf
      Douglas Gregor authored
      to support operators defined as member functions, e.g.,
      
        struct X { 
          bool operator==(X&);
        };
      
      Overloading with non-member operators is supported, and the special
      rules for the implicit object parameter (e.g., the ability for a
      non-const *this to bind to an rvalue) are implemented.
      
      This change also refactors and generalizes the code for adding
      overload candidates for overloaded operator calls (C++ [over.match.expr]),
      both to match the rules more exactly (name lookup of non-member
      operators actually ignores member operators) and to make this routine
      more reusable for the other overloaded operators.
      
      Testing for the initialization of the implicit object parameter is
      very light. More tests will come when we get support for calling
      member functions directly (e.g., o.m(a1, a2)).
      
      llvm-svn: 59564
      436424cf
  9. Nov 18, 2008
    • Douglas Gregor's avatar
      As threatened previously: consolidate name lookup and the creation of · 4ea8043d
      Douglas Gregor authored
      DeclRefExprs and BlockDeclRefExprs into a single function
      Sema::ActOnDeclarationNameExpr, eliminating a bunch of duplicate
      lookup-name-and-check-the-result code.
      
      Note that we still have the three parser entry points for identifiers,
      operator-function-ids, and conversion-function-ids, since the parser
      doesn't (and shouldn't) know about DeclarationNames. This is a Good
      Thing (TM), and there will be more entrypoints coming (e.g., for C++
      pseudo-destructor expressions).
      
      llvm-svn: 59527
      4ea8043d
    • 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
    • Chris Lattner's avatar
    • Sebastian Redl's avatar
  10. Nov 17, 2008
  11. Nov 15, 2008
  12. Nov 12, 2008
    • Douglas Gregor's avatar
      Implement support for operator overloading using candidate operator · a11693bc
      Douglas Gregor authored
      functions for built-in operators, e.g., the builtin
      
        bool operator==(int const*, int const*)
      
      can be used for the expression "x1 == x2" given:
      
        struct X {
          operator int const*();
        } x1, x2;
      
      The scheme for handling these built-in operators is relatively simple:
      for each candidate required by the standard, create a special kind of
      candidate function for the built-in. If overload resolution picks the
      built-in operator, we perform the appropriate conversions on the
      arguments and then let the normal built-in operator take care of it. 
      
      There may be some optimization opportunity left: if we can reduce the
      number of built-in operator overloads we generate, overload resolution
      for these cases will go faster. However, one must be careful when
      doing this: GCC generates too few operator overloads in our little
      test program, and fails to compile it because none of the overloads it
      generates match.
      
      Note that we only support operator overload for non-member binary
      operators at the moment. The other operators will follow.
      
      As part of this change, ImplicitCastExpr can now be an lvalue.
      
      llvm-svn: 59148
      a11693bc
  13. Nov 11, 2008
  14. Nov 10, 2008
  15. Nov 08, 2008
Loading