Skip to content
  1. May 16, 2009
  2. May 15, 2009
  3. May 14, 2009
  4. May 13, 2009
  5. May 12, 2009
  6. May 11, 2009
    • Douglas Gregor's avatar
      Implement the notions of the "current instantiation" and "unknown · c9f9b867
      Douglas Gregor authored
      specialization" within a C++ template, and permit name lookup into the
      current instantiation. For example, given:
      
        template<typename T, typename U>
        struct X {
          typedef T type;
      
          X* x1;  // current instantiation
          X<T, U> *x2; // current instantiation
          X<U, T> *x3; // not current instantiation
          ::X<type, U> *x4; // current instantiation
          X<typename X<type, U>::type, U>: *x5; // current instantiation
        };
      
      llvm-svn: 71471
      c9f9b867
    • Ted Kremenek's avatar
      Add ParentMap:getParentIgnoreParens(). · d4dacb05
      Ted Kremenek authored
      llvm-svn: 71469
      d4dacb05
    • Douglas Gregor's avatar
      The canonical declaration of a NULL declaration is NULL · 5e4e50c2
      Douglas Gregor authored
      llvm-svn: 71409
      5e4e50c2
    • Douglas Gregor's avatar
      Implement the semantics of the injected-class-name within a class · e362cea5
      Douglas Gregor authored
      template. The injected-class-name is either a type or a template,
      depending on whether a '<' follows it. As a type, the
      injected-class-name's template argument list contains its template
      parameters in declaration order.
      
      As part of this, add logic for canonicalizing declarations, and be
      sure to canonicalize declarations used in template names and template
      arguments. 
      
      A TagType is dependent if the declaration it references is dependent.
      
      I'm not happy about the rather complicated protocol needed to use
      ASTContext::getTemplateSpecializationType.
      
      llvm-svn: 71408
      e362cea5
  7. May 10, 2009
  8. May 07, 2009
  9. May 06, 2009
  10. May 05, 2009
    • Daniel Dunbar's avatar
      Fix the field count in interface record layout (it was incorrectly · 9b042e06
      Daniel Dunbar authored
      compensating for super classes). This was making the reported class
      sizes for empty classes very, very wrong.
       - Also, we now report the size info for an empty class like gcc (as
         the offset of the start, not as 0, 0).
      
       - Add a few more test cases we were mishandling before (padding bit
         field at end of struct, for example).
      
      llvm-svn: 70938
      9b042e06
  11. May 04, 2009
    • Daniel Dunbar's avatar
      Add -fobjc-tight-layout. · e993ba6f
      Daniel Dunbar authored
       - This implements gcc style Objective-C interface layout (I
         think). Currently it is always off, there is no functionality
         change unless this is passed.
         
         For the curious, the deal is that gcc lays out the fields of a
         subclass as if they were part of the superclass. That is, the
         subclass fields immediately follow the super class fields instead
         of being padded to the alignment of the superclass structure.
      
       - Currently gcc uses the tight layout in 32-bit and 64-bit modes, and
         llvm-gcc uses it in 32-bit only, for reasons which aren't clear
         yet. We probably want to switch to matching gcc, once this makes it
         through testing... my hope is that we can also fix llvm-gcc in
         order to maintain compatibility between the compilers.
      
      llvm-svn: 70827
      e993ba6f
    • Daniel Dunbar's avatar
      Don't allow clients to traverse into superclass synthesized properties · 98ba964e
      Daniel Dunbar authored
      via CollectObjCIvars.
       - In places where we need them, we should have the implementation and
         access the properties through it.
      
      This is a fairly substantial functionality change: 
       1. @encode no longer encodes synthesized ivars, ever.
      
       2. The ivar layout bitmap no longer encodes information for
          synthesized ivars in superclasses. Well, actually I had already
          broken that, but it is intentional now.
      
      We are now differing substantially from llvm-gcc and gcc
      here. However, in my opinion this fundamentally *must* work if
      non-fragile classes are to work. Without this change, the result of
      @encode and the ivar layout depend on the order that the
      implementation is seen in a file (if it is in the same file with its
      superclass). Since both scenarios should work the same, our behavior
      is now consistent with gcc behavior as if an implementation is never
      seen following an implementation of its superclass.
      
      Note that #2 is only a functionality change when (A) an
      implementation appears in the same translation unit with the
      implementation of its superclass, and (B) the superclass has
      synthesized ivars. My belief is that this situation does not occur in
      practice.
      
      I am not yet sure of the role/semantics of @encode when synthesized
      ivars are present... it's use is fairly unsound in a non-fragile world.
      
      llvm-svn: 70822
      98ba964e
    • Eli Friedman's avatar
      PR2524: downgrade taking address of expression of type 'void' to an · b8c4fd8c
      Eli Friedman authored
      extension warning.
      
      llvm-svn: 70805
      b8c4fd8c
  12. May 03, 2009
  13. May 02, 2009
  14. Apr 30, 2009
Loading