Skip to content
  1. Dec 12, 2007
  2. Dec 11, 2007
    • Ted Kremenek's avatar
      Mega-patch: ripped SourceManager out of Diagnostic/DiagnosticClient. Now · d4e5fbac
      Ted Kremenek authored
      SourceManager is passed by reference, allowing the SourceManager to be
      associated with a specific translation unit, and not the entire execution
      of the driver.
      
      Modified all users of Diagnostics to comply with this new interface.
      
      Integrated SourceManager as a member variable of TargetInfo. TargetInfo will
      eventually be associated with a single translation unit (just like
      SourceManager).
      
      Made the SourceManager reference in ASTContext private. Provided accessor
      getSourceManager() for clients to use instead. Modified clients to comply with
      new interface.
      
      llvm-svn: 44878
      d4e5fbac
    • Fariborz Jahanian's avatar
      For @optional unimplemented methods do not issue the warning. · 3b5dca25
      Fariborz Jahanian authored
      llvm-svn: 44872
      3b5dca25
    • Steve Naroff's avatar
      · 5cace62e
      Steve Naroff authored
      Avoid the first person in a recently added comment. 
      
      llvm-svn: 44843
      5cace62e
    • Steve Naroff's avatar
      · c30dcf12
      Steve Naroff authored
      Change err_undef_protocolref to warn_undef_protocolref (this is consistent with GCC).
      
      llvm-svn: 44840
      c30dcf12
    • Steve Naroff's avatar
      · f727faf2
      Steve Naroff authored
      Explicitly set the string literal type from "char *" to "constant array of char".
      
      At this point, I am fairly certain the front-end is correct. Unfortunately, the back-end is still unhappy.
      
      That said, I've commented out the two lines in globalinit.c that are causing problems.
      
      Chris, please have a look...thanks!
      
      llvm-svn: 44823
      f727faf2
  3. Dec 10, 2007
    • Steve Naroff's avatar
      · 91f78080
      Steve Naroff authored
      Add support for initializing char arrays from string literals.
      
      Adapted from a patch by Anders Carlsson.
      
      llvm-svn: 44816
      91f78080
  4. Dec 09, 2007
  5. Dec 07, 2007
    • Fariborz Jahanian's avatar
      ff6a455c
    • Steve Naroff's avatar
      · 2c20c38c
      Steve Naroff authored
      Have Sema::CheckConstantInitList skip semantic analysis when the element type is a record (until we implement the FIXME). This removes a bogus error for the following code...
      
      snarofflocal% cat bug.m
      
      #import <Foundation/NSGeometry.h>
      
      #define NUMHELICOPTERRECTS 5
      
      static NSRect helicopterRects[NUMHELICOPTERRECTS] = {
          {{27, 0}, {18, 11}},	// Bottom
          {{0, 8}, {4, 11}},		// Tail
          {{0, 16}, {50, 1}},
          {{22, 5}, {18, 12}},	// Body
          {{0, 10}, {42, 3}}
      };
      
      llvm-svn: 44684
      2c20c38c
    • Steve Naroff's avatar
      · 888f33cc
      Steve Naroff authored
      Lookup methods in the global pool even when a statically typed object's class interface isn't in scope!
      
      As the comment in the code indicates, I'm not fond of this. Nevertheless, gcc compat is a goal.
      
      Here is the case I'm talking about...
      
      #import <Foundation/Foundation.h>
      
      @interface AnyClass : NSObject
      - (NSRect)rect;
      @end
      
      @class Helicopter;
      
      static void func(Helicopter *obj) {
        NSRect r = [obj rect];
      }
      
      ...before this patch, we would warn/error. With this patch, everything "just works".
      
      llvm-svn: 44682
      888f33cc
    • Steve Naroff's avatar
      · b2f8ff15
      Steve Naroff authored
      Rewrite 'super' within a class method. This required some minor tweaks to the front-end.
      
      llvm-svn: 44673
      b2f8ff15
    • Fariborz Jahanian's avatar
      Patch to implement "Protocol" as a built-in type declared as · 2bbd03a7
      Fariborz Jahanian authored
      "@class Protocol;"
      
      llvm-svn: 44670
      2bbd03a7
  6. Dec 06, 2007
  7. Dec 05, 2007
  8. Dec 04, 2007
  9. Dec 03, 2007
  10. Dec 02, 2007
  11. Nov 30, 2007
    • Anders Carlsson's avatar
      Initialize CurMethodDecl to 0. · 3b754452
      Anders Carlsson authored
      llvm-svn: 44463
      3b754452
    • Anders Carlsson's avatar
      GCC has an extension where the left hand side of the ? : operator can be... · 801c5c74
      Anders Carlsson authored
      GCC has an extension where the left hand side of the ? : operator can be omitted. Handle this in a few more places.
      
      llvm-svn: 44462
      801c5c74
    • Anders Carlsson's avatar
      Support lax vector conversions. · e1af1d20
      Anders Carlsson authored
      llvm-svn: 44449
      e1af1d20
    • Steve Naroff's avatar
      · 205ec3d0
      Steve Naroff authored
      Yesterday, I simplified how we stream top-level decls.
      
      After a discussion with Ted, we both came to the conclusion that adding a "HandleTopLevelDeclaration" hook to ASConsumer is far more elegant. The default implementation of HandleTopLevelDeclaration will be responsible for iterating over the ScopedDecl (which has a chain of the decls:-).
      
      TODO: Once Ted adds HandleTopLevelDeclaration, make sure TagDecls are chainged appropriately...
      llvm-svn: 44445
      205ec3d0
  12. Nov 29, 2007
  13. Nov 28, 2007
    • Steve Naroff's avatar
      · 197616c3
      Steve Naroff authored
      Several fixes/simplifications surrounding how we stream top-level decl AST's.
      
      The following code...
      
      typedef struct cssm_data {} CSSM_DATA, *CSSM_DATA_PTR;
      
      struct Y { int A; };
      
      struct X { int A; } D; 
      
      struct X E, F;
      
      ...now produces the following output...
      
      > ../../Debug/bin/clang xx.c -ast-print
      Read top-level tag decl: 'cssm_data'
      typedef struct cssm_data CSSM_DATA;
      typedef struct cssm_data *CSSM_DATA_PTR;
      Read top-level tag decl: 'Y'
      Read top-level tag decl: 'X'
      Read top-level variable decl: 'D'
      Read top-level variable decl: 'E'
      Read top-level variable decl: 'F'
      
      ...which is much more accurate than the previous -ast-print output...
      
      typedef struct cssm_data CSSM_DATA;
      typedef struct cssm_data CSSM_DATA;
      Read top-level variable decl: 'D'
      Read top-level variable decl: 'E'
      Read top-level variable decl: 'E'
      
      llvm-svn: 44421
      197616c3
    • Chris Lattner's avatar
      Fix a bug checking for 'int foo(void)' that didn't look through typedefs of void. · db2a6ef8
      Chris Lattner authored
      Bug pointed out by Michael Zolda, thanks!
      
      llvm-svn: 44408
      db2a6ef8
Loading