Skip to content
  1. Nov 02, 2007
  2. Nov 01, 2007
  3. Oct 31, 2007
    • Steve Naroff's avatar
      · 9c4fdddd
      Steve Naroff authored
      Fix two rewriter bugs:
      
      - For @class, don't generate multiple typedefs.
      - Handle the following edge case interface...
      
      @interface NSMiddleSpecifier : NSObject {}
      
      @end
      
      ...which was incorrectly being rewritten to...
      
      struct _interface_NSMiddleSpecifier {
              struct _interface_NSObject _NSObject;
      };
      {}
      
      llvm-svn: 43582
      9c4fdddd
    • Fariborz Jahanian's avatar
    • Steve Naroff's avatar
      · aaba0277
      Steve Naroff authored
      Implement ObjC built-in types in MinimalAction.
      
      This fixes the recent regression with selector-1.m and -parse-noop.
      
      llvm-svn: 43575
      aaba0277
    • Steve Naroff's avatar
      · 6d40db0d
      Steve Naroff authored
      Implement a more sensible strategy for ObjC built-in types (addressing a long standing FIXME in Sema::GetObjcIdType()).
      
      This removes several gross hacks to work around the previous "lazy" behavior.
      
      Two notes:
      - MinimalActions still needs to be taught about the built-in types (This breaks one of the -noop test cases). I started this, then added a FIXME.
      - I didn't convert Sema::GetObjcProtoType() yet.
      
      llvm-svn: 43567
      6d40db0d
  4. Oct 30, 2007
    • Steve Naroff's avatar
      · 5448cf6d
      Steve Naroff authored
      - Add location info to category/protocol AST's
      - Rewrite categories.
      
      llvm-svn: 43501
      5448cf6d
    • Steve Naroff's avatar
      · 4cd61acc
      Steve Naroff authored
      Remove a couple FIXME's for rewriting ObjC interfaces (which are now being rewritten properly).
      
      llvm-svn: 43494
      4cd61acc
    • Steve Naroff's avatar
      · c5484043
      Steve Naroff authored
      More support for rewriting ObjC intefaces. Still some edge cases to handle...
      
      llvm-svn: 43493
      c5484043
  5. Oct 29, 2007
    • Steve Naroff's avatar
      · e0933396
      Steve Naroff authored
      Remove a bunch of TODO's that have been done for quite some time...
      
      llvm-svn: 43476
      e0933396
    • Steve Naroff's avatar
      · 33a1e80d
      Steve Naroff authored
      This commit contains lot's of small tweaks to how we pass around and store SourceLocation's for interfaces/protocols/categories/implementations.
      
      llvm-svn: 43475
      33a1e80d
    • Chris Lattner's avatar
      improve error recovery handling broken 'then' or 'else' stmts in · 5c5808a9
      Chris Lattner authored
      if statements.  This implements Sema/if-empty-body.c:f3, silencing
      a bogus secondary warning.  It also improve the location info for
      the nullstmts created for recovery purposes.
      
      llvm-svn: 43440
      5c5808a9
    • Chris Lattner's avatar
      The callers of ParseStructDeclaration are not expecting it to · 70ae491e
      Chris Lattner authored
      eat the terminating ;.  Fix one place where it did, allowing this
      to compile without error:
      
      struct x {
       int a;
       union {
        int b;
        float c;
       };
      
       int d;
      };
      
      This reduces diagnostics on PR1750 from 33 to 27.
      
      llvm-svn: 43437
      70ae491e
    • Chris Lattner's avatar
      Fix a parser bug on labeled inline asm stmts, allowing us · 645ff3ff
      Chris Lattner authored
      to parse stuff like:
      
      asm volatile("1:  rex64/fxrstor (%[fx])\n\t"
             "2:\n"
             ".section .fixup,\"ax\"\n"
             "3:  movl $-1,%[err]\n"
             "    jmp  2b\n"
             ".previous\n"
             ".section __ex_table,\"a\"\n"
             "   .align 8\n"
             "   .quad  1b,3b\n"
             ".previous"
             : [err] "=r" (err)
             : [fx] "cdaSDb" (fx), "m" (*fx), "0" (0));
      
      This reduces # diagnostics on PR1750 from 49 to 37.
      
      llvm-svn: 43434
      645ff3ff
    • Chris Lattner's avatar
      Implement *skeletal* support for representing GNU inline asm stmts in the AST, · 73c56c07
      Chris Lattner authored
      resolving a crash on a .i file in PR1750.  We now generate 49 errors on the
      .i file in that bug.
      
      llvm-svn: 43433
      73c56c07
  6. Oct 26, 2007
    • Steve Naroff's avatar
      · 161a92b9
      Steve Naroff authored
      Start rewriting ObjC interfaces. As a start, we comment out all the methods. This involved refining how the parser/AST passes/manages SourceLocations for ObjcMethodDecl's. 
      
      llvm-svn: 43404
      161a92b9
  7. Oct 25, 2007
  8. Oct 19, 2007
  9. Oct 17, 2007
  10. Oct 16, 2007
  11. Oct 15, 2007
  12. Oct 14, 2007
    • Steve Naroff's avatar
      · 5811baf1
      Steve Naroff authored
      - Added Sema::AddFactoryMethodToGlobalPool and Sema::AddInstanceMethodToGlobalPool and DenseMaps. This will allow us to efficiently lookup a method from a selector given no type information (for the "id" data type).
      
      - Fixed some funky "}
                          else {" indentation in Sema::ActOnAddMethodsToObjcDecl(). I'd prefer we stay away from this style...it wastes space and isn't any easier to read (from my perspective, at least:-)
      
      - Changed Parser::ParseObjCInterfaceDeclList() to only call Action::ActOnAddMethodsToObjcDecl() when it actually has methods to add (since most interface have methods, this is a very minor cleanup).
      
      llvm-svn: 42957
      5811baf1
  13. Oct 12, 2007
  14. Oct 11, 2007
  15. Oct 10, 2007
    • Chris Lattner's avatar
      resolve a fixme, by moving __builtin_va_list to a more logical · ed2a9eb8
      Chris Lattner authored
      place and making it correctly parameterized on the target.
      
      llvm-svn: 42830
      ed2a9eb8
    • Steve Naroff's avatar
      · 8308f60d
      Steve Naroff authored
      Fix a latent bug in MinimalActions (created by a recent name change).
      
      llvm-svn: 42829
      8308f60d
    • Steve Naroff's avatar
      · 93eb5f14
      Steve Naroff authored
      Remove Scope argument from ObjC actions that either don't need it or can now use TUScope.
      Also improve a recently added comment.
      
      llvm-svn: 42826
      93eb5f14
    • Steve Naroff's avatar
      · c62adb6d
      Steve Naroff authored
      Make sure methods with no return type default to "id".
      
      This fixes a crasher in Sema::MatchTwoMethodDeclarations(), identified by selector-overload.m (just added).
      
      Added Action::ActOnTranslationUnitScope() and renamed Action::PopScope to ActOnPopScope.
      
      Added a Translation Unit Scope instance variable to Sema (will be very useful to ObjC-related actions, since ObjC declarations are always file-scoped).
      
      llvm-svn: 42817
      c62adb6d
  16. Oct 09, 2007
Loading