Skip to content
  1. Feb 11, 2009
  2. Feb 10, 2009
  3. Feb 09, 2009
    • Douglas Gregor's avatar
      Eliminate TemplateArg so that we only have a single kind of · 67b556a0
      Douglas Gregor authored
      representation for template arguments. Also simplifies the interface
      for ActOnClassTemplateSpecialization and eliminates some annoying
      allocations of TemplateArgs.
      
      My attempt at smart pointers for template arguments lists is
      relatively lame. We can improve it once we're sure that we have the
      right representation for template arguments.
      
      llvm-svn: 64154
      67b556a0
    • Douglas Gregor's avatar
      Start processing template-ids as types when the template-name refers · 8bf4205c
      Douglas Gregor authored
      to a class template. For example, the template-id 'vector<int>' now
      has a nice, sugary type in the type system. What we can do now:
      
        - Parse template-ids like 'vector<int>' (where 'vector' names a
          class template) and form proper types for them in the type system.
        - Parse icky template-ids like 'A<5>' and 'A<(5 > 0)>' properly,
          using (sadly) a bool in the parser to tell it whether '>' should
          be treated as an operator or not.
      
      This is a baby-step, with major problems and limitations:
        - There are currently two ways that we handle template arguments
        (whether they are types or expressions). These will be merged, and,
        most likely, TemplateArg will disappear.
        - We don't have any notion of the declaration of class template
        specializations or of template instantiations, so all template-ids
        are fancy names for 'int' :)
      
      llvm-svn: 64153
      8bf4205c
    • Sebastian Redl's avatar
      Update new expression to make use of Declarator::getSourceRange(). · 1df2bbe7
      Sebastian Redl authored
      References are not objects; implement this in Type::isObjectType().
      
      llvm-svn: 64152
      1df2bbe7
    • Douglas Gregor's avatar
      Make Sema::getTypeName return the opaque pointer of a QualType rather · 9817f4a7
      Douglas Gregor authored
      than a Decl, which gives us some more flexibility to express the
      results with the type system. There are no clients using this
      flexibility yet, but it's meant to be able to describe qualified names
      as written in the source (e.g., "foo::type") or template-ids that name
      a class template specialization (e.g., "std::vector<INT>").
      
      DeclSpec's TST_typedef has become TST_typename, to reflect its use to
      describe types found by name (that may or may not be typedefs). The
      type representation of a DeclSpec with TST_typename is an opaque
      QualType pointer. All users of TST_typedef, both direct and indirect,
      have been updated for these changes.
      
      llvm-svn: 64141
      9817f4a7
  4. Feb 07, 2009
    • Sebastian Redl's avatar
      Move CheckPointerToMemberOperands to SemaExprCXX.cpp · 5822f08c
      Sebastian Redl authored
      llvm-svn: 64029
      5822f08c
    • Ted Kremenek's avatar
      Overhaul of Stmt allocation: · 5a201951
      Ted Kremenek authored
      - Made allocation of Stmt objects using vanilla new/delete a *compiler
        error* by making this new/delete "protected" within class Stmt.
      - Now the only way to allocate Stmt objects is by using the new
        operator that takes ASTContext& as an argument.  This ensures that
        all Stmt nodes are allocated from the same (pool) allocator.
      - Naturally, these two changes required that *all* creation sites for
        AST nodes use new (ASTContext&).  This is a large patch, but the
        majority of the changes are just this mechanical adjustment.
      - The above changes also mean that AST nodes can no longer be
        deallocated using 'delete'.  Instead, one most do
        StmtObject->Destroy(ASTContext&) or do
        ASTContextObject.Deallocate(StmtObject) (the latter not running the
        'Destroy' method).
      
      Along the way I also...
      - Made CompoundStmt allocate its array of Stmt* using the allocator in
        ASTContext (previously it used std::vector).  There are a whole
        bunch of other Stmt classes that need to be similarly changed to
        ensure that all memory allocated for ASTs comes from the allocator
        in ASTContext.
      - Added a new smart pointer ExprOwningPtr to Sema.h.  This replaces
        the uses of llvm::OwningPtr within Sema, as llvm::OwningPtr used
        'delete' to free memory instead of a Stmt's 'Destroy' method.
      
      Big thanks to Doug Gregor for helping with the acrobatics of making
      'new/delete' private and the new smart pointer ExprOwningPtr!
      
      llvm-svn: 63997
      5a201951
    • Sebastian Redl's avatar
      Implement dereferencing of pointers-to-member. · 112a9766
      Sebastian Redl authored
      llvm-svn: 63983
      112a9766
  5. Feb 06, 2009
    • Douglas Gregor's avatar
      Semantic checking for class template declarations and · cd72ba97
      Douglas Gregor authored
      redeclarations. For example, checks that a class template
      redeclaration has the same template parameters as previous
      declarations.
      
      Detangled class-template checking from ActOnTag, whose logic was
      getting rather convoluted because it tried to handle C, C++, and C++
      template semantics in one shot.
      
      Made some inroads toward eliminating extraneous "declaration does not
      declare anything" errors by adding an "error" type specifier.
      
      llvm-svn: 63973
      cd72ba97
  6. Feb 05, 2009
  7. Feb 04, 2009
  8. Feb 03, 2009
  9. Feb 02, 2009
  10. Jan 31, 2009
  11. Jan 30, 2009
    • Douglas Gregor's avatar
      Eliminated LookupCriteria, whose creation was causing a bottleneck for · ed8f2887
      Douglas Gregor authored
      LookupName et al. Instead, use an enum and a bool to describe its
      contents.
      
      Optimized the C/Objective-C path through LookupName, eliminating any
      unnecessarily C++isms. Simplify IdentifierResolver::iterator, removing
      some code and arguments that are no longer used.
      
      Eliminated LookupDeclInScope/LookupDeclInContext, moving all callers
      over to LookupName, LookupQualifiedName, or LookupParsedName, as
      appropriate.
      
      All together, I'm seeing a 0.2% speedup on Cocoa.h with PTH and
      -disable-free. Plus, we're down to three name-lookup routines.
      
      llvm-svn: 63354
      ed8f2887
  12. Jan 29, 2009
  13. Jan 28, 2009
    • Douglas Gregor's avatar
      Code generation support for C99 designated initializers. · 347f7eab
      Douglas Gregor authored
      The approach I've taken in this patch is relatively straightforward,
      although the code itself is non-trivial. Essentially, as we process
      an initializer list we build up a fully-explicit representation of the
      initializer list, where each of the subobject initializations occurs
      in order. Designators serve to "fill in" subobject initializations in
      a non-linear way. The fully-explicit representation makes initializer
      lists (both with and without designators) easy to grok for codegen and
      later semantic analyses. We keep the syntactic form of the initializer
      list linked into the AST for those clients interested in exactly what
      the user wrote.
      
      Known limitations:
        - Designating a member of a union that isn't the first member may
          result in bogus initialization (we warn about this)
        - GNU array-range designators are not supported (we warn about this)
      
      llvm-svn: 63242
      347f7eab
    • Steve Naroff's avatar
      Name change (isTypeName->getTypeName). · 16c8e598
      Steve Naroff authored
      Since it doesn't return a bool, is shouldn't be prefixed with 'is'.
      
      llvm-svn: 63226
      16c8e598
    • Steve Naroff's avatar
      Remove 'NamespaceNameOnly' argument to Sema::LookupDecl(). It is unused. · aec0f37d
      Steve Naroff authored
      Even though Sema::LookupDecl() is deprecated, it's still used all over the place. Simplifying the interface will make it easier to understand/optimize/convert.
      
      llvm-svn: 63210
      aec0f37d
    • Steve Naroff's avatar
      Remove 'enableLazyBuiltinCreation' argument to Sema::LookupDecl(). It is unused. · 49f97d7e
      Steve Naroff authored
      Even though Sema::LookupDecl() is deprecated, it's still used all over the place. Simplifying the interface will make it easier to understand/optimize/convert.
      
      llvm-svn: 63208
      49f97d7e
Loading