Skip to content
  1. Jun 09, 2016
  2. Jun 03, 2016
  3. May 31, 2016
    • Erik Eckstein's avatar
      Fix a crash in MergeFunctions related to ordering of weak/strong functions · 0c48dd8c
      Erik Eckstein authored
      The assumption, made in insert() that weak functions are always inserted after strong functions,
      is only true in the first round of adding functions.
      In subsequent rounds this is no longer guaranteed , because we might remove a strong function from the tree (because it's modified) and add it later,
      where an equivalent weak function already exists in the tree.
      This change removes the assert in insert() and explicitly enforces a weak->strong order.
      This also removes the need of two separate loops in runOnModule().
      
      llvm-svn: 271299
      0c48dd8c
  4. May 28, 2016
  5. May 27, 2016
  6. May 25, 2016
    • Peter Collingbourne's avatar
      Move whole-program virtual call optimization pass after function attribute... · fad596aa
      Peter Collingbourne authored
      Move whole-program virtual call optimization pass after function attribute inference in LTO pipeline.
      
      As a result of D18634 we no longer infer certain attributes on linkonce_odr
      functions at compile time, and may only infer them at LTO time. The readnone
      attribute in particular is required for virtual constant propagation (part
      of whole-program virtual call optimization) to work correctly.
      
      This change moves the whole-program virtual call optimization pass after
      the function attribute inference passes, and enables the attribute inference
      passes at opt level 1, so that virtual constant propagation has a chance to
      work correctly for linkonce_odr functions.
      
      Differential Revision: http://reviews.llvm.org/D20643
      
      llvm-svn: 270765
      fad596aa
    • Teresa Johnson's avatar
      [ThinLTO] Refactor ODR resolution and internalization (NFC) · 04c9a2d6
      Teresa Johnson authored
      Move the now index-based ODR resolution and internalization routines out
      of ThinLTOCodeGenerator.cpp and into either LTO.cpp (index-based
      analysis) or FunctionImport.cpp (index-driven optimizations).
      This is to enable usage by other linkers.
      
      llvm-svn: 270698
      04c9a2d6
    • David Majnemer's avatar
      [FunctionAttrs] Volatile loads should disable readonly · 124bdb74
      David Majnemer authored
      A volatile load has side effects beyond what callers expect readonly to
      signify.  For example, it is not safe to reorder two function calls
      which each perform a volatile load to the same memory location.
      
      llvm-svn: 270671
      124bdb74
  7. May 23, 2016
  8. May 20, 2016
  9. May 15, 2016
  10. May 12, 2016
  11. May 11, 2016
  12. May 10, 2016
  13. May 07, 2016
  14. May 06, 2016
    • Mehdi Amini's avatar
      Tweak the ThinLTO pass pipeline · 31407ba0
      Mehdi Amini authored
      Summary:
      The original ThinLTO pipeline was derived from some
      work I did tuning FullLTO on the test suite and SPEC. This
      patch reduces the amount of work done in the "linker phase" of
      the build, and extend the function simplifications passes
      performed during the "compile phase". This helps the build time
      by reducing the IR as much as possible during the compile phase
      and limiting the work to be performed during the "link phase",
      while keeping the performance "on par" with the existing pipeline.
      
      Reviewers: tejohnson
      
      Subscribers: llvm-commits, joker.eph
      
      Differential Revision: http://reviews.llvm.org/D19773
      
      From: Mehdi Amini <mehdi.amini@apple.com>
      llvm-svn: 268769
      31407ba0
    • Xinliang David Li's avatar
      [PM] port IR based PGO prof-gen pass to new pass manager · 8aebf44c
      Xinliang David Li authored
      llvm-svn: 268710
      8aebf44c
  15. May 05, 2016
  16. May 04, 2016
  17. May 03, 2016
  18. May 02, 2016
  19. Apr 30, 2016
Loading