Skip to content
  1. Nov 25, 2017
  2. Nov 24, 2017
  3. Nov 23, 2017
  4. Nov 22, 2017
  5. Nov 21, 2017
  6. Nov 20, 2017
    • Fedor Sergeev's avatar
      [Sparc] efficient pattern for UINT_TO_FP conversion · a476117e
      Fedor Sergeev authored
      Summary:
              while investigating performance degradation of imagick benchmark
              there were found inefficient pattern for UINT_TO_FP conversion.
              That pattern causes RAW hazard in assembly code. Specifically,
              uitofp IR operator results in poor assembler :
      
              st          %i0, [%fp - 952]
              ldd         [%fp - 952], %f0
      
              it stores 32-bit integer register into memory location and then
              loads 64-bit floating point data from that location.
              That is exactly RAW hazard case. To optimize that case it is
              possible to use SPISD::ITOF and SPISD::XTOF for conversion from
              integer to floating point data type and to use ISD::BITCAST to
              copy from integer register into floating point register.
              The fix is to write custom UINT_TO_FP pattern using SPISD::ITOF,
              SPISD::XTOF, ISD::BITCAST.
      
      Patch by Alexey Lapshin
      
      Reviewers: fedor.sergeev, jyknight, dcederman, lero_chris
      
      Reviewed By: jyknight
      
      Subscribers: llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D36875
      
      llvm-svn: 318704
      a476117e
    • Yonghong Song's avatar
      bpf: add a test case for trunc-op optimization · a4de6d86
      Yonghong Song authored
      
      
      Commit b5cbc7760ab8 ("[bpf] allow direct and indirect calls")
      allowed more than one function in the bpf program, and
      commit 114353884415 ("bpf: fix a bug in trunc-op optimization")
      fixed a bug in trunc-op optimization which only showed up
      with more than one function in the bpf program.
      
      This patch added a test case for trunc-op optimization
      for bpf programs with two functions. Reverting commit
      "bpf: fix a bug in trunc-op optimization" will cause
      failure for this test case.
      
      Signed-off-by: default avatarYonghong Song <yhs@fb.com>
      llvm-svn: 318695
      a4de6d86
    • Paul Robinson's avatar
      Revert "Fix out-of-order stepping behavior in programs with sunk instructions." · 746edea0
      Paul Robinson authored
      This reverts commit 30419e150cd940893a13b345e85f96053850208f.
      aka r318679.  It caused "sanitizer-windows" bot to fail.
      
      llvm-svn: 318684
      746edea0
    • Paul Robinson's avatar
      Fix out-of-order stepping behavior in programs with sunk instructions. · f0b02965
      Paul Robinson authored
      MachineSink attempts to place instructions near the basic blocks where
      they are needed.  Once an instruction has been sunk, its location
      relative to other instructions is no longer consistent with the
      original source code. In order to ensure correct single-stepping and
      profiling, the debug location for sunk instructions is either merged
      with the insertion point or erased if the target successor block is
      empty.
      
      Patch by Matthew Voss!
      
      Differential Revision: https://reviews.llvm.org/D39933
      
      llvm-svn: 318679
      f0b02965
Loading