Skip to content
  1. May 01, 2010
  2. Apr 30, 2010
  3. Apr 29, 2010
    • Devang Patel's avatar
      Use clang::VarDecl name instead of llvm::GlobalVariable name. · dfcd0661
      Devang Patel authored
      llvm::GLobalVariable name may not match user visibile name for function static variables.
      
      llvm-svn: 102644
      dfcd0661
    • Daniel Dunbar's avatar
      IRgen/NeXT: Put the synthesized _objc_super, _message_ref_t decls in a valid... · 0c005375
      Daniel Dunbar authored
      IRgen/NeXT: Put the synthesized _objc_super, _message_ref_t decls in a valid DeclContext, to satisfy the invariants that should hold on a RecordDecl.
      
      llvm-svn: 102624
      0c005375
    • Fariborz Jahanian's avatar
      Support for construct/destruct of ivar array · 499b9025
      Fariborz Jahanian authored
      of c++ objects (NeXt runtime).
      radar 7900343.
      
      llvm-svn: 102546
      499b9025
    • Douglas Gregor's avatar
      Completely reimplement __builtin_offsetof, based on a patch by Roberto · 882211c1
      Douglas Gregor authored
      Amadini.
      
      This change introduces a new expression node type, OffsetOfExpr, that
      describes __builtin_offsetof. Previously, __builtin_offsetof was
      implemented using a unary operator whose subexpression involved
      various synthesized array-subscript and member-reference expressions,
      which was ugly and made it very hard to instantiate as a
      template. OffsetOfExpr represents the AST more faithfully, with proper
      type source information and a more compact representation.
      
      OffsetOfExpr also has support for dependent __builtin_offsetof
      expressions; it can be value-dependent, but will never be
      type-dependent (like sizeof or alignof). This commit introduces
      template instantiation for __builtin_offsetof as well.
      
      There are two major caveats to this patch:
      
        1) CodeGen cannot handle the case where __builtin_offsetof is not a
        constant expression, so it produces an error. So, to avoid
        regressing in C, we retain the old UnaryOperator-based
        __builtin_offsetof implementation in C while using the shiny new
        OffsetOfExpr implementation in C++. The old implementation can go
        away once we have proper CodeGen support for this case, which we
        expect won't cause much trouble in C++.
      
        2) __builtin_offsetof doesn't work well with non-POD class types,
        particularly when the designated field is found within a base
        class. I will address this in a subsequent patch.
      
      Fixes PR5880 and a bunch of assertions when building Boost.Python
      tests. 
      
      llvm-svn: 102542
      882211c1
  4. Apr 28, 2010
  5. Apr 27, 2010
  6. Apr 26, 2010
  7. Apr 25, 2010
Loading