Skip to content
  1. Jun 18, 2011
    • Douglas Gregor's avatar
      Objective-C++ ARC: do not mangle __unsafe_unretained lifetime · b5176a53
      Douglas Gregor authored
      qualifiers, so that an __unsafe_unretained-qualified type T in ARC code
      will have the same mangling as T in non-ARC code, improving ABI
      interoperability. This works now because we infer or require a
      lifetime qualifier everywhere one can appear in an external
      interface. Another part of <rdar://problem/9595486>.
      
      llvm-svn: 133306
      b5176a53
    • Matt Beaumont-Gay's avatar
      Fix -Asserts build · c3dfb5fa
      Matt Beaumont-Gay authored
      llvm-svn: 133305
      c3dfb5fa
    • Douglas Gregor's avatar
      Fix a grammaro · 4fdf57b0
      Douglas Gregor authored
      llvm-svn: 133304
      4fdf57b0
    • Douglas Gregor's avatar
      Objective-ARC++: infer template type arguments of · e46db90c
      Douglas Gregor authored
      ownership-unqualified retainable object type as __strong. This allows
      us to write, e.g.,
      
        std::vector<id>
      
      and we'll infer that the vector's element types have __strong
      ownership semantics, which is far nicer than requiring:
      
        std::vector<__strong id>
      
      Note that we allow one to override the ownership qualifier of a
      substituted template type parameter, e.g., given
      
        template<typename T>
        struct X {
          typedef __weak T type;
        };
      
      X<id> is treated the same as X<__strong id>. At instantiation type,
      the __weak in "__weak T" overrides the (inferred or specified)
      __strong on the template argument type, so that we can still provide
      metaprogramming transformations.
      
      This is part of <rdar://problem/9595486>.
      
      llvm-svn: 133303
      e46db90c
    • Greg Clayton's avatar
      Fixed variable parsing to not parse block variables over and over due to an · c662ec8b
      Greg Clayton authored
      issue in the way block variables are marked as parsed. In the DWARF parser we
      always parse all blocks for a function at once, so we can mark all blocks as
      having all variables parsed and avoid recursive function calls to try and
      reparse things that have already been handled.
      
      Fixed an issue with how variables get scoped into blocks. The DWARF parser can
      now handle abtract class definitions that contain concrete static variables.
      When the concrete instance of the class functions get instantiated, they will
      track down the concrete block for the abtract block and add the variable to
      each block.
      
      llvm-svn: 133302
      c662ec8b
    • Chad Rosier's avatar
      Revert r133285. Causing odd failures on Dragonegg. · c76b9d8c
      Chad Rosier authored
      llvm-svn: 133301
      c76b9d8c
  2. Jun 17, 2011
Loading