Skip to content
  1. May 22, 2010
  2. May 21, 2010
  3. May 20, 2010
  4. May 19, 2010
  5. May 18, 2010
  6. May 17, 2010
  7. May 16, 2010
  8. May 15, 2010
    • Douglas Gregor's avatar
      When initializing thread-safe statics, put the call to · 58142dd8
      Douglas Gregor authored
      __cxa_guard_abort along the exceptional edge into (in effect) a nested
      "try" that rethrows after aborting. Fixes PR7144 and the remaining
      Boost.ProgramOptions failures.
      
      llvm-svn: 103880
      58142dd8
    • John McCall's avatar
      b0efad14
    • Douglas Gregor's avatar
      When applying the named return value optimization, we still need to · 17012564
      Douglas Gregor authored
      destroy the variable along the exceptional edge; it's only during
      normal execution that we avoid destroying this variable.
      
      llvm-svn: 103872
      17012564
    • John McCall's avatar
      Substantially alter the design of the Objective C type AST by introducing · 8b07ec25
      John McCall authored
      ObjCObjectType, which is basically just a pair of
        one of {primitive-id, primitive-Class, user-defined @class}
      with
        a list of protocols.
      An ObjCObjectPointerType is therefore just a pointer which always points to
      one of these types (possibly sugared).  ObjCInterfaceType is now just a kind
      of ObjCObjectType which happens to not carry any protocols.
      
      Alter a rather large number of use sites to use ObjCObjectType instead of
      ObjCInterfaceType.  Store an ObjCInterfaceType as a pointer on the decl rather
      than hashing them in a FoldingSet.  Remove some number of methods that are no
      longer used, at least after this patch.
      
      By simplifying ObjCObjectPointerType, we are now able to easily remove and apply
      pointers to Objective-C types, which is crucial for a certain kind of ObjC++
      metaprogramming common in WebKit.
      
      llvm-svn: 103870
      8b07ec25
    • Douglas Gregor's avatar
      Implement a simple form of the C++ named return value optimization for · 290c93ec
      Douglas Gregor authored
      return statements. We perform NRVO only when all of the return
      statements in the function return the same variable. Fixes some link
      failures in Boost.Interprocess (which is relying on NRVO), and
      probably improves performance for some C++ applications.
      
      llvm-svn: 103867
      290c93ec
    • Douglas Gregor's avatar
      Implement semantic analysis and an AST representation for the named · 6fd1b180
      Douglas Gregor authored
      return value optimization. Sema marks return statements with their
      NRVO candidates (which may or may not end up using the NRVO), then, at
      the end of a function body, computes and marks those variables that
      can be allocated into the return slot.
      
      I've checked this locally with some debugging statements (not
      committed), but there won't be any tests until CodeGen comes along.
      
      llvm-svn: 103865
      6fd1b180
    • Douglas Gregor's avatar
      Recognize when the named return value optimization applies in a · 222cf0ef
      Douglas Gregor authored
      "return" statement and mark the corresponding CXXConstructExpr as
      elidable. Teach CodeGen that eliding a temporary is different from
      eliding an object construction.
      
      This is just a baby step toward NRVO.
      
      llvm-svn: 103849
      222cf0ef
Loading