Skip to content
  1. Nov 13, 2013
    • Diego Novillo's avatar
      Add -fprofile-sample-use to Clang's driver. · 5c29705c
      Diego Novillo authored
      This adds a new option -fprofile-sample-use=filename to Clang. It
      tells the driver to schedule the SampleProfileLoader pass and passes
      on the name of the profile file to use.
      
      llvm-svn: 194567
      5c29705c
  2. Nov 12, 2013
    • Rafael Espindola's avatar
      Avoid producing mismatched comdats. · 129d313c
      Rafael Espindola authored
      The problem was that given
      
      template<typename T>
      struct foo {
        ~foo() {}
      };
      template class foo<int>;
      
      We would produce a alias, creating a comdat with D0 and D1, since the symbols
      have to be weak. Another TU is not required to have a explicit template
      instantiation definition or an explict template instantiation declaration and
      for
      
      template<typename T>
      struct foo {
        ~foo() {}
      };
      foo<int> a;
      
      we would produce a comdat with only one symbol in it.
      
      llvm-svn: 194520
      129d313c
    • Rafael Espindola's avatar
      Keep the old function order in CodeGenModule::applyReplacements. · 0196a1d9
      Rafael Espindola authored
      The original decls are created when used. The replacements are created at the
      end of the TU in reverse order.
      
      This makes the original order far better for testing. This is particularly
      important since the replacement logic could be used even when
      -mconstructor-aliases is not used, but that would make many tests hard to read.
      
      This is a fixed version of r194357 which handles replacing a destructor with
      another which is an alias to a third one.
      
      llvm-svn: 194452
      0196a1d9
  3. Nov 11, 2013
  4. Nov 10, 2013
  5. Nov 09, 2013
  6. Nov 08, 2013
  7. Nov 07, 2013
  8. Nov 06, 2013
  9. Nov 05, 2013
  10. Nov 04, 2013
    • Rafael Espindola's avatar
      Use aliases for more constructors and destructors. · 3f643bd1
      Rafael Espindola authored
      With this patch we produce alias for cases like
      
      template<typename T>
      struct foobar {
        foobar() {
        }
      };
      template struct foobar<void>;
      
      We just have to be careful to produce the same aliases in every TU because
      of comdats.
      
      llvm-svn: 194000
      3f643bd1
    • Justin Bogner's avatar
      CodeGen: Use EmitBranchOnBool when generating For and CXXForRange · b23224ee
      Justin Bogner authored
      A while ago EmitForStmt was changed to explicitly evaluate the
      condition expression and create a branch instead of using
      EmitBranchOnBool, so that the condition expression could be used for
      some cleanup logic. The cleanup stuff has since been reorganized, and
      this is no longer necessary.
      
      In EmitCXXForRange, the evaluated condition was never used for
      anything else. The logic was presumably modeled on EmitForStmt.
      
      llvm-svn: 193994
      b23224ee
    • Justin Bogner's avatar
      CodeGen: Move an initialization away from an unrelated comment · 085e28e4
      Justin Bogner authored
      An initialization somehow found its way in between a comment and the
      block of code the comment is about. Moving the initialization makes
      this less confusing.
      
      llvm-svn: 193993
      085e28e4
  11. Oct 31, 2013
  12. Oct 30, 2013
  13. Oct 29, 2013
Loading