Skip to content
  1. Oct 12, 2007
  2. Oct 11, 2007
  3. Oct 10, 2007
    • Steve Naroff's avatar
      · 7f549f18
      Steve Naroff authored
      - Make sure default return/argument types (for methods) default to "id".
      - Cache the "id" type in Sema...initialize ObjcIdType and TUScope (oops).
      - Fix ActOnInstanceMessage to allow for "id" type receivers...still work to do (next).
      
      llvm-svn: 42842
      7f549f18
    • Anders Carlsson's avatar
      Emit a warning when the body of an if block is a NullStmt. · db83d77c
      Anders Carlsson authored
      llvm-svn: 42840
      db83d77c
    • 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
    • Chris Lattner's avatar
      Make a significant change to invert the control flow handling · 1f1b0dbc
      Chris Lattner authored
      predefined macros.  Previously, these were handled by the driver,
      now they are handled by the preprocessor.
      
      Some fallout of this:
      
      1. Instead of preprocessing two buffers (the predefines, then the 
         main source file)  we now start preprocessing the main source 
         file and inject the predefines as a "psuedo #include" from the
         main source file.
      2. #1 allows us to nuke the Lexer::IsMainFile flag and simplify
         Preprocessor::isInPrimaryFile.
      3. The driver doesn't have to know about standard #defines, the
         preprocessor knows, which is nice for people wanting to define
         their own drivers.
      4. This allows us to put normal tokens in the predefine buffer,
         for example a definition for __builtin_va_list that is 
         target-specific, and a typedef for id in objc.
      
      llvm-svn: 42818
      1f1b0dbc
    • 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
  4. Oct 09, 2007
  5. Oct 08, 2007
  6. Oct 07, 2007
  7. Oct 06, 2007
  8. Oct 05, 2007
  9. Oct 04, 2007
  10. Oct 03, 2007
    • Steve Naroff's avatar
      · 4810c3a1
      Steve Naroff authored
      Finish renaming ObjC declaration actions.
      Add comments.
      Switch to new indentation style for the Action class. Since many actions take many arguments, the new style will...
      - make it easier to add/remove arguments without messing up the indentation...
      - make it easier to add comments to each argument (see ActOnMethodDeclaration for an example)...
      - in general, just makes it easier to see what is being passed.
      
      The rest of Actions will be converted "lazily"...there is no immediate need to hack all the existing methods.
      
      llvm-svn: 42587
      4810c3a1
    • Fariborz Jahanian's avatar
      Renamed getCatLoc() to getLocation() to be consistant for such · 6cc3803f
      Fariborz Jahanian authored
      getter names.
      
      llvm-svn: 42577
      6cc3803f
    • Steve Naroff's avatar
      · 0c37b0cb
      Steve Naroff authored
      Rename several ObjC action methods to use the "ActOn" prefix (still a few more to do).
      Remove Action::ObjCStartCategoryInterface/ObjCFinishInterface - they are unused.
      .
      
      llvm-svn: 42559
      0c37b0cb
Loading