Skip to content
  1. Feb 25, 2010
  2. Feb 24, 2010
  3. Feb 23, 2010
  4. Feb 22, 2010
  5. Feb 21, 2010
  6. Feb 18, 2010
  7. Feb 16, 2010
  8. Feb 15, 2010
  9. Feb 12, 2010
    • Douglas Gregor's avatar
      Work around an annoying, non-standard optimization in the glibc · f40863ca
      Douglas Gregor authored
      headers, where malloc (and many other libc functions) are declared
      with empty throw specifications, e.g.,  
      
        extern void *malloc (__SIZE_TYPE__ __size) throw () __attribute__
        ((__malloc__)) ;
      
      The C++ standard doesn't seem to allow this, and redeclaring malloc as
      the standard permits (as follows) resulted in Clang (rightfully!)
      complaining about mis-matched exception specifications.
      
        void *malloc(size_t size);
      
      We work around this by silently propagating an empty throw
      specification "throw()" from a function with C linkage declared in a
      system header to a redeclaration that has no throw specifier.
      
      Ick.
      
      llvm-svn: 95969
      f40863ca
    • Douglas Gregor's avatar
      Improve a test slightly · 87b4b418
      Douglas Gregor authored
      llvm-svn: 95967
      87b4b418
    • Douglas Gregor's avatar
      In C++, allow builtins to be referred to via qualified name lookup, e.g., · d3a59187
      Douglas Gregor authored
        ::__builtin_va_copy
      
      Fixes one of the Firefox issues in PR5511.
      
      llvm-svn: 95966
      d3a59187
  10. Feb 11, 2010
  11. Feb 10, 2010
  12. Feb 09, 2010
    • Douglas Gregor's avatar
      Migrate the mish-mash of declaration checks in · e6565625
      Douglas Gregor authored
      Sema::ActOnUninitializedDecl over to InitializationSequence (with
      default initialization), eliminating redundancy. More importantly, we
      now check that a const definition in C++ has an initilizer, which was
      an #if 0'd code for many, many months. A few other tweaks were needed
      to get everything working again:
      
        - Fix all of the places in the testsuite where we defined const
          objects without initializers (now that we diagnose this issue)
        - Teach instantiation of static data members to find the previous
          declaration, so that we build proper redeclaration
          chains. Previously, we had the redeclaration chain but built it
          too late to be useful, because...
        - Teach instantiation of static data member definitions not to try
          to check an initializer if a previous declaration already had an
          initializer. This makes sure that we don't complain about static
          const data members with in-class initializers and out-of-line
          definitions.
        - Move all of the incomplete-type checking logic out of
          Sema::FinalizeDeclaratorGroup; it makes more sense in
          ActOnUnitializedDecl.
      
      There may still be a few places where we can improve these
      diagnostics. I'll address that as a separate commit.
      
      llvm-svn: 95657
      e6565625
    • Douglas Gregor's avatar
      Fix PR number in test case · 1f53e803
      Douglas Gregor authored
      llvm-svn: 95640
      1f53e803
    • Douglas Gregor's avatar
      Be more careful when checking initializer lists that involve reference · 34c0a902
      Douglas Gregor authored
      types; we don't want to give an expression reference type. Fixes PR6177.
      
      llvm-svn: 95635
      34c0a902
  13. Feb 08, 2010
  14. Feb 07, 2010
  15. Feb 06, 2010
  16. Feb 05, 2010
  17. Feb 03, 2010
    • Chandler Carruth's avatar
      Teach the allocation function overload handling to deal with templates, and · 93538421
      Chandler Carruth authored
      prevent a crash on templates when looking for an existing declaration of the
      predefined global operators. This fixes PR5918.
      
      Added an easy test case for the overload handling, but testing the crash is
      a bit trickier. Created a new test that can use multiple runs with a define to
      trigger which test case is used so we can test this type of issue.
      
      llvm-svn: 95220
      93538421
    • Douglas Gregor's avatar
      Implement the lvalue-to-rvalue conversion where needed. The · b92a1565
      Douglas Gregor authored
      lvalue-to-rvalue conversion adjusts lvalues of qualified, non-class
      type to rvalue expressions of the unqualified variant of that
      type. For example, given:
      
        const int i;
        (void)(i + 17);
      
      the lvalue-to-rvalue conversion for the subexpression "i" will turn it
      from an lvalue expression (a DeclRefExpr) with type 'const int' into
      an rvalue expression with type 'int'. Both C and C++ mandate this
      conversion, and somehow we've slid through without implementing it. 
      
      We now have both DefaultFunctionArrayConversion and
      DefaultFunctionArrayLvalueConversion, and which gets used depends on
      whether we do the lvalue-to-rvalue conversion or not. Generally, we do
      the lvalue-to-rvalue conversion, but there are a few notable
      exceptions:
        - the left-hand side of a '.' operator
        - the left-hand side of an assignment
        - a C++ throw expression
        - a subscript expression that's subscripting a vector
      
      Making this change exposed two issues with blocks:
        - we were deducing const-qualified return types of non-class type
        from a block return, which doesn't fit well
        - we weren't always setting the known return type of a block when it
        was provided with the ^return-type syntax
      
      Fixes the current Clang-on-Clang compile failure and PR6076.
      
      llvm-svn: 95167
      b92a1565
  18. Jan 31, 2010
    • Anders Carlsson's avatar
      Diagnose binding a non-const reference to a vector element. · 8abde4b4
      Anders Carlsson authored
      llvm-svn: 94963
      8abde4b4
    • Chandler Carruth's avatar
      Fix my dyslexia. · cd6d4260
      Chandler Carruth authored
      llvm-svn: 94958
      cd6d4260
    • Chandler Carruth's avatar
      Add a test case for a fixed PR just to ensure we don't regress. · 764cf41d
      Chandler Carruth authored
      llvm-svn: 94957
      764cf41d
    • Douglas Gregor's avatar
      Rework base and member initialization in constructors, with several · 7ae2d775
      Douglas Gregor authored
      (necessarily simultaneous) changes:
      
        - CXXBaseOrMemberInitializer now contains only a single initializer
          rather than a set of initialiation arguments + a constructor. The
          single initializer covers all aspects of initialization, including
          constructor calls as necessary but also cleanup of temporaries
          created by the initializer (which we never handled
          before!).
      
        - Rework + simplify code generation for CXXBaseOrMemberInitializers,
          since we can now just emit the initializer as an initializer.
      
        - Switched base and member initialization over to the new
          initialization code (InitializationSequence), so that it
      
        - Improved diagnostics for the new initialization code when
          initializing bases and members, to match the diagnostics produced
          by the previous (special-purpose) code.
      
        - Simplify the representation of type-checked constructor initializers in
          templates; instead of keeping the fully-type-checked AST, which is
          rather hard to undo at template instantiation time, throw away the
          type-checked AST and store the raw expressions in the AST. This
          simplifies instantiation, but loses a little but of information in
          the AST.
      
        - When type-checking implicit base or member initializers within a
          dependent context, don't add the generated initializers into the
          AST, because they'll look like they were explicit.
      
        - Record in CXXConstructExpr when the constructor call is to
        initialize a base class, so that CodeGen does not have to infer it
        from context. This ensures that we call the right kind of
        constructor.
      
      There are also a few "opportunity" fixes here that were needed to not
      regress, for example:
      
        - Diagnose default-initialization of a const-qualified class that
          does not have a user-declared default constructor. We had this
          diagnostic specifically for bases and members, but missed it for
          variables. That's fixed now.
      
        - When defining the implicit constructors, destructor, and
          copy-assignment operator, set the CurContext to that constructor
          when we're defining the body.
      
      llvm-svn: 94952
      7ae2d775
  19. Jan 27, 2010
    • Douglas Gregor's avatar
      Fix a major oversight in the comparison of standard conversion · 3edc4d5e
      Douglas Gregor authored
      sequences, where we would occasionally determine (incorrectly) that
      one standard conversion sequence was a proper subset of another when,
      in fact, they contained completely incomparable conversions. 
      
      This change records the types in each step within a standard
      conversion sequence, so that we can check the specific comparison
      types to determine when one sequence is a proper subset of the
      other. Fixes this testcase (thanks, Anders!), which was distilled from
      PR6095 (also thanks to Anders).
      
      llvm-svn: 94660
      3edc4d5e
  20. Jan 26, 2010
Loading