Skip to content
  1. Apr 30, 2009
  2. Apr 29, 2009
  3. Apr 28, 2009
    • Eli Friedman's avatar
      Get rid of some useless uses of NoExtensions. The philosophy here is · 5d72d411
      Eli Friedman authored
      that if we're going to print an extension warning anyway, 
      there's no point to changing behavior based on NoExtensions: it will 
      only make error recovery worse.
      
      Note that this doesn't cause any behavior change because NoExtensions 
      isn't used by the current front-end.  I'm still considering what to do about
      the remaining use of NoExtensions in IdentifierTable.cpp.
      
      llvm-svn: 70273
      5d72d411
  4. Apr 27, 2009
  5. Apr 26, 2009
  6. Apr 25, 2009
    • Chris Lattner's avatar
      accept an ignore the no_instrument_function attribute. Since we don't · 6d7ffe02
      Chris Lattner authored
      support -pg, we never instrument :)
      
      llvm-svn: 70061
      6d7ffe02
    • Chris Lattner's avatar
      This is a pretty big cleanup for how invalid decl/type are handle. · f6d1c9c7
      Chris Lattner authored
      This gets rid of a bunch of random InvalidDecl bools in sema, changing
      us to use the following approach:
      
      1. When analyzing a declspec or declarator, if an error is found, we 
         set a bit in Declarator saying that it is invalid.
      2. Once the Decl is created by sema, we immediately set the isInvalid
         bit on it from what is in the declarator.  From this point on, sema
         consistently looks at and sets the bit on the decl.
      
      This gives a very clear separation of concerns and simplifies a bunch
      of code.  In addition to this, this patch makes these changes:
      
      1. it renames DeclSpec::getInvalidType() -> isInvalidType().
      2. various "merge" functions no longer return bools: they just set the
         invalid bit on the dest decl if invalid.
      3. The ActOnTypedefDeclarator/ActOnFunctionDeclarator/ActOnVariableDeclarator
         methods now set invalid on the decl returned instead of returning an
         invalid bit byref.
      4. In SemaType, refering to a typedef that was invalid now propagates the
         bit into the resultant type.  Stuff declared with the invalid typedef
         will now be marked invalid.
      5. Various methods like CheckVariableDeclaration now return void and set the
         invalid bit on the decl they check.
      
      
      There are a few minor changes to tests with this, but the only major bad
      result is test/SemaCXX/constructor-recovery.cpp.  I'll take a look at this
      next.
      
      llvm-svn: 70020
      f6d1c9c7
    • Ted Kremenek's avatar
      Hook up attribute 'objc_ownership_retain' to the analyzer. This attribute allows · e75de954
      Ted Kremenek authored
      users to specify that a method's argument is visibly retained (reference count
      incremented).
      
      llvm-svn: 70008
      e75de954
    • Ted Kremenek's avatar
      Add new checker-specific attribute 'objc_ownership_retain'. This isn't hooked up · 2cfd2646
      Ted Kremenek authored
      to the checker yet, but essentially it allows a user to specify that an
      Objective-C method or C function increments the reference count of a passed
      object.
      
      llvm-svn: 70005
      2cfd2646
    • Ted Kremenek's avatar
      Add new checker-specific attribute 'objc_ownership_returns'. This isn't hooked · 44e662cd
      Ted Kremenek authored
      up to the checker yet, but essentially it allows a user to specify that an
      Objective-C method or C function returns an owned an Objective-C object.
      
      llvm-svn: 70001
      44e662cd
    • Chris Lattner's avatar
      fix the sizeof error recovery issue (sizeof-interface.m:attributeRuns) · cd2a8c58
      Chris Lattner authored
      by correctly propagating the fact that the type was invalid up to the
      attributeRuns decl, then returning an ExprError when attributeRuns is
      formed (like we do for normal declrefexprs).
      
      llvm-svn: 69998
      cd2a8c58
  7. Apr 22, 2009
    • Chris Lattner's avatar
      Fix a problem with objc foreach loop. It turns out that objc mode changes · 934074cd
      Chris Lattner authored
      for scoping to match C99 even when in C89 mode.  This patch fixes this 
      (eliminating a "redefinition of thisKey" error), and also prevents non-sensical
      diagnostics in -pedantic mode like this:
      
      t.m:7:8: warning: variable declaration in for loop is a C99-specific feature
        for (id thisKey in keys) ;
             ^
      
      llvm-svn: 69760
      934074cd
  8. Apr 21, 2009
  9. Apr 20, 2009
  10. Apr 19, 2009
  11. Apr 18, 2009
  12. Apr 17, 2009
  13. Apr 16, 2009
    • Sebastian Redl's avatar
      Fix a crash bug when comparing overload quality of conversion operators with... · 1a99f441
      Sebastian Redl authored
      Fix a crash bug when comparing overload quality of conversion operators with conversion constructors.
      Remove an atrocious amount of trailing whitespace in the overloaded operator mangler. Sorry, couldn't help myself.
      Change the DeclType parameter of Sema::CheckReferenceInit to be passed by value instead of reference. It wasn't changed anywhere.
      Let the parser handle C++'s irregular grammar around assignment-expression and conditional-expression.
      And finally, the reason for all this stuff: implement C++ semantics for the conditional operator. The implementation is complete except for determining lvalueness.
      
      llvm-svn: 69299
      1a99f441
    • Anders Carlsson's avatar
      Add support for the __has_trivial_constructor type trait. · fe63dc52
      Anders Carlsson authored
      llvm-svn: 69245
      fe63dc52
  14. Apr 15, 2009
    • Chris Lattner's avatar
      Rejigger how -pedantic and -pedantic-errors work and their interaction · e007de3b
      Chris Lattner authored
      with other diagnostic mapping.  In the new scheme, -Wfoo or -Wno-foo or 
      -Werror=foo all override the -pedantic options, and __extension__ 
      robustly silences all extension diagnostics in their scope.
      
      An added bonus of this change is that MAP_DEFAULT goes away, meaning that
      per-diagnostic mapping information can now be stored in 2 bits, doubling
      the density of the Diagnostic::DiagMapping array.  This also 
      substantially simplifies Diagnostic::getDiagnosticLevel.
      
      OTOH, this temporarily introduces some "macro intensive" code in 
      Diagnostic.cpp.  This will be addressed in a later patch.
      
      llvm-svn: 69154
      e007de3b
    • Chris Lattner's avatar
      Make the implicit-int handling error recovery stuff handle C++ · b4a8fe8d
      Chris Lattner authored
      nested name specifiers.  Now we emit stuff like:
      
      t.cpp:8:13: error: unknown type name 'X'
      static foo::X  P;
             ~~~~ ^
      
      instead of:
      
      t.cpp:8:16: error: invalid token after top level declarator
      static foo::X  P;
                     ^
      
      This is inspired by a really awful error message I got from 
      g++ when I misspelt diag::kind as diag::Kind.
      
      llvm-svn: 69086
      b4a8fe8d
  15. Apr 14, 2009
  16. Apr 13, 2009
  17. Apr 12, 2009
    • Chris Lattner's avatar
      Diagnose invalid uses of tagged types with a missing tag. For example, in: · ffaa0e69
      Chris Lattner authored
      struct xyz { int y; };
      enum abc { ZZZ };
      
      static xyz b;
      abc c;
      
      we used to produce:
      
      t2.c:4:8: error: unknown type name 'xyz'
      static xyz b;
             ^
      t2.c:5:1: error: unknown type name 'abc'
      abc c;
      ^
      
      we now produce:
      
      t2.c:4:8: error: use of tagged type 'xyz' without 'struct' tag
      static xyz b;
             ^
             struct
      t2.c:5:1: error: use of tagged type 'abc' without 'enum' tag
      abc c;
      ^
      enum
      
      GCC produces the normal:
      t2.c:4: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘b’
      t2.c:5: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘c’
      
      rdar://6783347
      
      llvm-svn: 68914
      ffaa0e69
    • Chris Lattner's avatar
      Implement the first set of changes for PR3963 and rdar://6759604, · 6cc055af
      Chris Lattner authored
      which tries to do better error recovery when it is "obvious" that an
      identifier is a mis-typed typename.  In this case, we try to parse
      it as a typename instead of as the identifier in a declarator, which
      gives us several options for better error recovery and immediately
      makes diagnostics more useful.  For example, we now produce:
      
      t.c:4:8: error: unknown type name 'foo_t'
      static foo_t a = 4;
             ^
      
      instead of:
      
      t.c:4:14: error: invalid token after top level declarator
      static foo_t a = 4;
                   ^
      
      Also, since we now parse "a" correctly, we make a decl for it,
      preventing later uses of 'a' from emitting things like:
      
      t.c:12:20: error: use of undeclared identifier 'a'
      int bar() { return a + b; }
                         ^
      
      I'd really appreciate any scrutiny possible on this, it 
      is a tricky area.
      
      llvm-svn: 68911
      6cc055af
Loading