Skip to content
  1. Nov 11, 2009
  2. Mar 29, 2009
    • Chris Lattner's avatar
      Push DeclGroup much farther throughout the compiler. Now the various · 5bbb3c8a
      Chris Lattner authored
      productions (except the already broken ObjC cases like @class X,Y;) in 
      the parser that can produce more than one Decl return a DeclGroup instead
      of a Decl, etc.
      
      This allows elimination of the Decl::NextDeclarator field, and exposes
      various clients that should look at all decls in a group, but which were
      only looking at one (such as the dumper, printer, etc).  These have been
      fixed.
      
      Still TODO:
      
      1) there are some FIXME's in the code about potentially using
      DeclGroup for better location info.
      2) ParseObjCAtDirectives should return a DeclGroup due to @class etc.
      3) I'm not sure what is going on with StmtIterator.cpp, or if it can
         be radically simplified now.
      4) I put a truly horrible hack in ParseTemplate.cpp.
      
      I plan to bring up #3/4 on the mailing list, but don't plan to tackle
      #1/2 in the short term.
      
      llvm-svn: 68002
      5bbb3c8a
  3. Mar 28, 2009
  4. Jul 26, 2008
  5. May 31, 2008
  6. Mar 16, 2008
    • Chris Lattner's avatar
      Make a major restructuring of the clang tree: introduce a top-level · 7a51313d
      Chris Lattner authored
      lib dir and move all the libraries into it.  This follows the main
      llvm tree, and allows the libraries to be built in parallel.  The
      top level now enforces that all the libs are built before Driver,
      but we don't care what order the libs are built in.  This speeds
      up parallel builds, particularly incremental ones.
      
      llvm-svn: 48402
      7a51313d
  7. Feb 06, 2008
  8. Dec 29, 2007
  9. Nov 30, 2007
    • Ted Kremenek's avatar
      Added method "HandleTopLevelDeclaration" to ASTConsumer. This will eventually · bfcf8cdb
      Ted Kremenek authored
      be the new hook that ASTStreamer calls to feed top-level Decls to
      ASTConsumers.
      
      The difference between "HandleTopLevelDeclaration" and "HandleTopLevelDecl" is
      that "HandleTopLevelDecl" is currently called by ASTStreamer for every
      top-level declaration, including those that appear within a Decl chain. Using
      the new interface, ASTStreamer would only call HandleTopLevelDeclaration for
      Decls that appear that the beginning of a Decl chain (i.e., a group of related
      decls).
      
      To preserve the behavior that all subclasses of ASTConsumer currently expect,
      the default implementation of HandleTopLevelDeclaration simply calls
      HandleTopLevelDecl, and for decl chains it calls HandleTopLevelDecl for each
      Decl* in a chain of Decls.
      
      The advantage of this interface is that some subclasses of ASTConsumer only
      really want the Decl chain, and not each individual Decl passed to them. This
      extra level of indirection allows subclasses to override the default behavior
      if they so desire.
      
      llvm-svn: 44444
      bfcf8cdb
Loading