Skip to content
  1. Nov 03, 2009
  2. Nov 02, 2009
  3. Oct 30, 2009
  4. Oct 29, 2009
  5. Oct 27, 2009
  6. Oct 25, 2009
  7. Oct 24, 2009
  8. Oct 23, 2009
    • John McCall's avatar
      Remove OriginalTypeParmDecl; the original type is the one specified · 856bbea3
      John McCall authored
      in the DeclaratorInfo, if one is present.
      
      Preserve source information through template instantiation.  This is made
      more complicated by the possibility that ParmVarDecls don't have DIs, which
      is possibly worth fixing in the future.
      
      Also preserve source information for function parameters in ObjC method
      declarations.
      
      llvm-svn: 84971
      856bbea3
    • Douglas Gregor's avatar
      Eliminate QualifiedDeclRefExpr, which captured the notion of a · 4bd90e53
      Douglas Gregor authored
      qualified reference to a declaration that is not a non-static data
      member or non-static member function, e.g., 
      
        namespace N { int i; }
        int j = N::i;
      
      Instead, extend DeclRefExpr to optionally store the qualifier. Most
      clients won't see or care about the difference (since
      QualifierDeclRefExpr inherited DeclRefExpr). However, this reduces the
      number of top-level expression types that clients need to cope with,
      brings the implementation of DeclRefExpr into line with MemberExpr,
      and simplifies and unifies our handling of declaration references.
      
      Extended DeclRefExpr to (optionally) store explicitly-specified
      template arguments. This occurs when naming a declaration via a
      template-id (which will be stored in a TemplateIdRefExpr) that,
      following template argument deduction and (possibly) overload
      resolution, is replaced with a DeclRefExpr that refers to a template
      specialization but maintains the template arguments as written.
      
      llvm-svn: 84962
      4bd90e53
    • Ted Kremenek's avatar
      Add comment. · ca42a51d
      Ted Kremenek authored
      llvm-svn: 84930
      ca42a51d
    • Ted Kremenek's avatar
      Fix integer overflow in PCHReader when reading the length of an · 49c5232d
      Ted Kremenek authored
      identifier.  This caused a crash when reading PCH files that contained
      long identifier names.
      
      The issue is that 'StrLenPtr' was previously a 'const char *', meaning
      the byte loaded from it would be interpretted as a signed integer.  If
      the topmost bit was set, conversion to 'unsigned' would extend that
      bit, causing an overflow.
      
      The solution is to make 'StrLenPtr' an 'unsigned char *', always
      treating the value as an unsigned integer.
      
      This fixes: <rdar://problem/7328900>
      
      llvm-svn: 84925
      49c5232d
    • John McCall's avatar
      FunctionTypeLocs don't necessarily provide ParmVarDecls, so don't crash if · e634700c
      John McCall authored
      one was PCH'ed without any.
      
      llvm-svn: 84920
      e634700c
    • John McCall's avatar
      When building types from declarators, instead of building two types (one for · fc93cf97
      John McCall authored
      the DeclaratorInfo, one for semantic analysis), just build a single type whose
      canonical type will reflect the semantic analysis (assuming the type is
      well-formed, of course).
      
      To make that work, make a few changes to the type system:
      * allow the nominal pointee type of a reference type to be a (possibly sugared)
        reference type.  Also, preserve the original spelling of the reference type.
        Both of these can be ignored on canonical reference types.
      * Remove ObjCProtocolListType and preserve the associated source information on
        the various ObjC TypeLocs.  Preserve the spelling of protocol lists except in
        the canonical form.
      * Preserve some level of source type structure on parameter types, but
        canonicalize on the canonical function type.  This is still a WIP.
      
      Drops code size, makes strides towards accurate source location representation,
      slight (~1.7%) progression on Cocoa.h because of complexity drop.
      
      llvm-svn: 84907
      fc93cf97
  9. Oct 22, 2009
  10. Oct 21, 2009
  11. Oct 20, 2009
  12. Oct 19, 2009
  13. Oct 18, 2009
  14. Oct 17, 2009
  15. Oct 16, 2009
Loading