Skip to content
  1. May 03, 2016
  2. May 02, 2016
  3. Apr 30, 2016
  4. Apr 29, 2016
  5. Apr 28, 2016
  6. Apr 27, 2016
    • Ahmed Bougacha's avatar
      [TLI] Unify LibFunc attribute inference. NFCI. · b0624a2c
      Ahmed Bougacha authored
      Now the pass is just a tiny wrapper around the util. This lets us reuse
      the logic elsewhere (done here for BuildLibCalls) instead of duplicating
      it.
      
      The next step is to have something like getOrInsertLibFunc that also
      sets the attributes.
      
      Differential Revision: http://reviews.llvm.org/D19470
      
      llvm-svn: 267759
      b0624a2c
    • Ahmed Bougacha's avatar
      [TLI] Unify LibFunc signature checking. NFCI. · d765a82b
      Ahmed Bougacha authored
      I tried to be as close as possible to the strongest check that
      existed before; cleaning these up properly is left for future work.
      
      Differential Revision: http://reviews.llvm.org/D19469
      
      llvm-svn: 267758
      d765a82b
    • Adam Nemet's avatar
      [LoopDist] Add llvm.loop.distribute.enable loop metadata · d2fa4147
      Adam Nemet authored
      Summary:
      D19403 adds a new pragma for loop distribution.  This change adds
      support for the corresponding metadata that the pragma is translated to
      by the FE.
      
      As part of this I had to rethink the flag -enable-loop-distribute.  My
      goal was to be backward compatible with the existing behavior:
      
        A1. pass is off by default from the optimization pipeline
        unless -enable-loop-distribute is specified
      
        A2. pass is on when invoked directly from opt (e.g. for unit-testing)
      
      The new pragma/metadata overrides these defaults so the new behavior is:
      
        B1. A1 + enable distribution for individual loop with the pragma/metadata
      
        B2. A2 + disable distribution for individual loop with the pragma/metadata
      
      The default value whether the pass is on or off comes from the initiator
      of the pass.  From the PassManagerBuilder the default is off, from opt
      it's on.
      
      I moved -enable-loop-distribute under the pass.  If the flag is
      specified it overrides the default from above.
      
      Then the pragma/metadata can further modifies this per loop.
      
      As a side-effect, we can now also use -enable-loop-distribute=0 from opt
      to emulate the default from the optimization pipeline.  So to be precise
      this is the new behavior:
      
        C1. pass is off by default from the optimization pipeline
        unless -enable-loop-distribute or the pragma/metadata enables it
      
        C2. pass is on when invoked directly from opt
        unless -enable-loop-distribute=0 or the pragma/metadata disables it
      
      Reviewers: hfinkel
      
      Subscribers: joker.eph, mzolotukhin, llvm-commits
      
      Differential Revision: http://reviews.llvm.org/D19431
      
      llvm-svn: 267672
      d2fa4147
    • Mehdi Amini's avatar
      ThinLTO: do not promote GlobalVariable that have a specific section. · b4e1e829
      Mehdi Amini authored
      Differential Revision: http://reviews.llvm.org/D18298
      
      From: Mehdi Amini <mehdi.amini@apple.com>
      llvm-svn: 267646
      b4e1e829
  7. Apr 26, 2016
  8. Apr 25, 2016
  9. Apr 24, 2016
  10. Apr 23, 2016
  11. Apr 22, 2016
  12. Apr 21, 2016
    • Andrew Kaylor's avatar
      Initial implementation of optimization bisect support. · f0f27929
      Andrew Kaylor authored
      This patch implements a optimization bisect feature, which will allow optimizations to be selectively disabled at compile time in order to track down test failures that are caused by incorrect optimizations.
      
      The bisection is enabled using a new command line option (-opt-bisect-limit).  Individual passes that may be skipped call the OptBisect object (via an LLVMContext) to see if they should be skipped based on the bisect limit.  A finer level of control (disabling individual transformations) can be managed through an addition OptBisect method, but this is not yet used.
      
      The skip checking in this implementation is based on (and replaces) the skipOptnoneFunction check.  Where that check was being called, a new call has been inserted in its place which checks the bisect limit and the optnone attribute.  A new function call has been added for module and SCC passes that behaves in a similar way.
      
      Differential Revision: http://reviews.llvm.org/D19172
      
      llvm-svn: 267022
      f0f27929
    • Mehdi Amini's avatar
      ThinLTO/ModuleLinker: add a flag to not always pull-in linkonce when performing importing · bda3c97c
      Mehdi Amini authored
      Summary:
      The function importer already decided what symbols need to be pulled
      in. Also these magically added ones will not be in the export list
      for the source module, which can confuse the internalizer for
      instance.
      
      Reviewers: tejohnson, rafael
      
      Subscribers: joker.eph, llvm-commits
      
      Differential Revision: http://reviews.llvm.org/D19096
      
      From: Mehdi Amini <mehdi.amini@apple.com>
      llvm-svn: 266948
      bda3c97c
    • Dehao Chen's avatar
      Refine instruction weight annotation algorithm for sample profiler. · a8bae823
      Dehao Chen authored
      Summary:
      This patch refined the instruction weight anootation algorithm:
      1. Do not use dbg_value intrinsics for annotation.
      2. Annotate cold calls if the call is inlined in profile, but not inlined before preparation. This indicates that the annotation preparation step found no sample for the inlined callsite, thus the call should be very cold.
      
      Reviewers: dnovillo, davidxl
      
      Subscribers: mgrang, llvm-commits
      
      Differential Revision: http://reviews.llvm.org/D19286
      
      llvm-svn: 266936
      a8bae823
  13. Apr 20, 2016
  14. Apr 19, 2016
  15. Apr 18, 2016
Loading