Skip to content
  1. Nov 25, 2007
  2. Nov 24, 2007
  3. Nov 23, 2007
  4. Nov 22, 2007
  5. Nov 20, 2007
  6. Nov 17, 2007
    • Steve Naroff's avatar
      · 14f5f79b
      Steve Naroff authored
      Now that we are passing back "free standing decls", make sure -ast-dump works like -ast-print.
      Also added a cast to be safe...
      
      llvm-svn: 44209
      14f5f79b
    • Steve Naroff's avatar
      · c1e6d60b
      Steve Naroff authored
      Make sure Sema::ParsedFreeStandingDeclSpec() returns a decl representing the type.
      Adding basic printing to StmtPrinter::PrintRawDecl().
      
      llvm-svn: 44208
      c1e6d60b
  7. Nov 16, 2007
  8. Nov 15, 2007
    • Steve Naroff's avatar
      · e3ffc2f4
      Steve Naroff authored
      Finish up variadic methods/messages.
      
      llvm-svn: 44172
      e3ffc2f4
    • Steve Naroff's avatar
      · d8ea1ac5
      Steve Naroff authored
      Implement support for variadic methods (work in progress).
      
      llvm-svn: 44171
      d8ea1ac5
    • Steve Naroff's avatar
      · f60782b8
      Steve Naroff authored
      - Implement ivar rewrite (patch by Fariborz).
      - RewriteMessageExpr()...make implicit casts explicit with synthesizing call (removing warnings when calling objc_msgSend()).
      
      llvm-svn: 44156
      f60782b8
  9. Nov 14, 2007
    • Steve Naroff's avatar
      · 9e0887cf
      Steve Naroff authored
      Allow properties within a protocol. The case below was asserting...now it works fine.
      
      @protocol CAMediaTiming
      
      @property int beginTime;
      
      @end
      
      Comments in the code tell the rest of the story...
      
      llvm-svn: 44117
      9e0887cf
    • Chris Lattner's avatar
      implement test/Sema/typedef-prototype.c, allowing code · 07b201d9
      Chris Lattner authored
      to declare a function with a typedef:
      
      typedef int unary_int_func(int arg);
      unary_int_func add_one;
      
      This patch contributed by Seo Sanghyeon!
      
      llvm-svn: 44100
      07b201d9
  10. Nov 13, 2007
  11. Nov 12, 2007
    • Fariborz Jahanian's avatar
      Patch to do statically typed ivar references. · 21f54eea
      Fariborz Jahanian authored
      llvm-svn: 44028
      21f54eea
    • Steve Naroff's avatar
      · fedb4977
      Steve Naroff authored
      Add category method definitions incrementally, removing a FIXME (like we do for class implementations).
      
      llvm-svn: 44027
      fedb4977
    • Fariborz Jahanian's avatar
    • Fariborz Jahanian's avatar
      'super' nailed. · d98a734b
      Fariborz Jahanian authored
      llvm-svn: 44025
      d98a734b
    • Steve Naroff's avatar
      · 040f696b
      Steve Naroff authored
      Fix regression to Sema::ObjcActOnStartOfMethodDef()...need to initialize InvalidType field to false.
      
      llvm-svn: 44023
      040f696b
    • Steve Naroff's avatar
      · e46504b2
      Steve Naroff authored
      Implement instance variable references.
      
      llvm-svn: 44016
      e46504b2
    • Steve Naroff's avatar
      · e3d1ab29
      Steve Naroff authored
      - Minor cleanup to yesterday's changes to Sema::ObjcActOnStartOfMethodDef();
      - Add Sema::CurMethodDecl, in preparation for adding ObjcIvarRefExpr.
      - Add ObjcInterfaceDecl::lookupInstanceVariable(), in prep for adding ivars.
      - A couple renames in ObjcInterfaceDecl, while I was in the vicinity:-)
      
      llvm-svn: 44015
      e3d1ab29
    • Steve Naroff's avatar
      · ff4dbff4
      Steve Naroff authored
      Remove Action::ObjcActOnMethodDefinition(). Rationale:
      
      - It is not an "action" - it is never called by the parser.
      - It was only used by one method, Sema::ObjcActOnStartOfMethodDef().
      
      As a result, the logic it embodied is now directly implemented in Sema::ObjcActOnStartOfMethodDef().
      
      llvm-svn: 44008
      ff4dbff4
    • Steve Naroff's avatar
      · 3434bebe
      Steve Naroff authored
      Make sure @property is allowed within a category.
      
      Bug submitted by Keith Bauer.
      
      CookieJar:Desktop keith$ cat test.m
      #import <WebKit/WebKit.h>
      
      llvm-svn: 44007
      3434bebe
    • Steve Naroff's avatar
      · d0bf516e
      Steve Naroff authored
      Remove Sema::ObjcBuildMethodParameter().
      Modify Sema::ParseParamDeclarator() to work for both ActOnStartOfFunctionDef() and ObjcActOnStartOfMethodDef().
      
      llvm-svn: 44006
      d0bf516e
    • Steve Naroff's avatar
      · b313fc32
      Steve Naroff authored
      Replace 2 method definition actions (ActOnFunctionDefBody, ActOnMethodDefBody) with 1 method definition action (ActOnFinishFunctionBody). I can't think of any reason that we would need two action hooks.
      
      llvm-svn: 44000
      b313fc32
  12. Nov 11, 2007
    • Steve Naroff's avatar
      · 49effdef
      Steve Naroff authored
      Tweak Sema::ActOnInstanceMessage() to treat the built-in "Class" type the same as "id".
      
      llvm-svn: 43996
      49effdef
    • Steve Naroff's avatar
      · cac26f4f
      Steve Naroff authored
      This is the last 5% of the solution to teaching Sema::ActOnInstanceMessage() about private methods (r43989).
      
      While the diff is large, the idea is very simple. When we parse method definitions (in an @implementation), we need to add them incrementally (rather than wait until the @end).
      
      Other details...
      
      - Renamed Sema::ActOnAddMethodsToObjcDecl() to Sema::ActOnAtEnd(). The methods are now optional arguments.
      - Removed Parser::AllImplMethods (a nice cleanup).
      - Added location info to ObjcImplementationDecl (since we will need it very soon:-)
      - Modified message.m test to no longer allow the bogus diagnostic.
      
      llvm-svn: 43995
      cac26f4f
    • Steve Naroff's avatar
      · 5f9ae64f
      Steve Naroff authored
      Make sure Sema::CheckIncrementDecrementOperand() removes typedefs when doing it's analysis.
      
      Thanks to Seo Sanghyeon for his excellent (first) bug fix!
      
      llvm-svn: 43994
      5f9ae64f
    • Steve Naroff's avatar
      · 22e078e0
      Steve Naroff authored
      Teach Sema::ActOnInstanceMessage() about private methods. That is, methods declared in an implementation (but not listed in the interface).
      
      This commit is only 95% of the bug fix. The last piece to this puzzle is to add the method decls to the implementation incrementally (as we encounter them). At the moment, the methods aren't added until we see an @end (which is too late).
      
      I will complete this later...
      
      llvm-svn: 43989
      22e078e0
  13. Nov 10, 2007
    • Fariborz Jahanian's avatar
      0bd56b77
    • Steve Naroff's avatar
      · 257b4a24
      Steve Naroff authored
      Fix a basic bug (having to do with typedefs) in Sema::UsualArithmeticConversions(). 
      
      This resuled in the following crash below.
      
      Also modified the usual-float.c test case to capture this case.
      
      [steve-naroffs-imac:clang/test/Sema] snaroff% ../../../../Debug/bin/clang usual-float.c
      Assertion failed: (0 && "Sema::UsualArithmeticConversions(): illegal float comparison"), function UsualArithmeticConversions, file SemaExpr.cpp, line 960.
      0   clang                               0x001ef9b9 _ZN40_GLOBAL__N_Signals.cpp_00000000_4E6DAF8315PrintStackTraceEv + 45
      1   clang                               0x001efd5f _ZN40_GLOBAL__N_Signals.cpp_00000000_4E6DAF8313SignalHandlerEi + 323
      2   libSystem.B.dylib                   0x90c6297b _sigtramp + 43
      3   ???                                 0xffffffff 0x0 + 4294967295
      4   libSystem.B.dylib                   0x90cdb782 raise + 26
      5   libSystem.B.dylib                   0x90cead3f abort + 73
      6   libSystem.B.dylib                   0x90cdc923 __assert_rtn + 101
      7   clang                               0x00077316 _ZN5clang4Sema26UsualArithmeticConversionsERPNS_4ExprES3_b + 1004
      8   clang                               0x000803cf _ZN5clang4Sema27CheckMultiplyDivideOperandsERPNS_4ExprES3_NS_14SourceLocationEb + 181
      9   clang                               0x0007a8e8 _ZN5clang4Sema10ActOnBinOpENS_14SourceLocationENS_3tok9TokenKindEPvS4_ + 472
      10  clang                               0x000cf058 _ZN5clang6Parser26ParseRHSOfBinaryExpressionENS_6Action12ActionResultILj0EEEj + 1286
      11  clang                               0x000cf2de _ZN5clang6Parser25ParseAssignmentExpressionEv + 86
      
      llvm-svn: 43985
      257b4a24
    • Fariborz Jahanian's avatar
      Minor code clean up in method def area. · 6aafd413
      Fariborz Jahanian authored
      llvm-svn: 43980
      6aafd413
Loading