Skip to content
  1. Aug 14, 2017
    • Lei Huang's avatar
      [PowerPC] Add codegen for VSX word extract convert to FP · 451ef4ad
      Lei Huang authored
      Add codegen for VSX word extract conversion from signed/unsigned to single/double
      precision.
      
      For UINT_TO_FP:
      Extract word unsigned and convert to float was implemented in https://reviews.llvm.org/D20239.
      Here we will add the missing extract integer and conversion to double. This
      utilizes the new P9 instruction xxextractuw to extracting an integer element
      when the result will be converted to double thereby saving 2 direct moves
      (VSR <-> GPR).
      
      For SINT_TO_FP:
      We will implement the following sequence which will also reduce the number of
      instructions by saving 2 direct moves.
      
      v4i32->f32:
              xxspltw
              xvcvsxwsp
              xscvspdpn
      
      v4i32->f64:
              xxspltw
              xvcvsxwdp
      
      Differential Revision: https://reviews.llvm.org/D35859
      
      llvm-svn: 310866
      451ef4ad
    • Chandler Carruth's avatar
      [PowerPC] Revert r310346 (and followups r310356 & r310424) which · fe6b509f
      Chandler Carruth authored
      introduce a miscompile bug.
      
      There appears to be a bug where the generated code to extract the sign
      bit doesn't work correctly for 32-bit inputs. I've replied to the
      original commit pointing out the problem. I think I see by inspection
      (and reading the manual for PPC) how to fix this, but I can't be 100%
      confident and I also don't know what the best way to test this is.
      Currently it seems nearly impossible to get the backend to hit this code
      path, but the patch autohr is likely in a better position to craft such
      test cases than I am, and based on where the bug is it should be easily
      done.
      
      Original commit message for r310346:
      """
      [PowerPC] Eliminate compares - add i32 sext/zext handling for SETLE/SETGE
      
      Adds handling for SETLE/SETGE comparisons on i32 values. Furthermore, it
      adds the handling for the special case where RHS == 0.
      
      Differential Revision: https://reviews.llvm.org/D34048
      """
      
      llvm-svn: 310809
      fe6b509f
  2. Aug 10, 2017
    • Krzysztof Parzyszek's avatar
      Add "Restored" flag to CalleeSavedInfo · bea30c62
      Krzysztof Parzyszek authored
      The liveness-tracking code assumes that the registers that were saved
      in the function's prolog are live outside of the function. Specifically,
      that registers that were saved are also live-on-exit from the function.
      This isn't always the case as illustrated by the LR register on ARM.
      
      Differential Revision: https://reviews.llvm.org/D36160
      
      llvm-svn: 310619
      bea30c62
  3. Aug 09, 2017
  4. Aug 08, 2017
  5. Aug 03, 2017
    • Rafael Espindola's avatar
      Fix the ppc jit tests. · 27834695
      Rafael Espindola authored
      llvm-svn: 309921
      27834695
    • Rafael Espindola's avatar
      Delete Default and JITDefault code models · 79e238af
      Rafael Espindola authored
      IMHO it is an antipattern to have a enum value that is Default.
      
      At any given piece of code it is not clear if we have to handle
      Default or if has already been mapped to a concrete value. In this
      case in particular, only the target can do the mapping and it is nice
      to make sure it is always done.
      
      This deletes the two default enum values of CodeModel and uses an
      explicit Optional<CodeModel> when it is possible that it is
      unspecified.
      
      llvm-svn: 309911
      79e238af
  6. Aug 02, 2017
  7. Jul 31, 2017
  8. Jul 27, 2017
    • Hiroshi Inoue's avatar
      [PowerPC] enable optimizeCompareInstr for branch with static branch hint · 967dc58a
      Hiroshi Inoue authored
      In optimizeCompareInstr, a compare instruction is eliminated by using a record form instruction if possible.
      If the branch instruction that uses the result of the compare has a static branch hint, the optimization does not happen.
      This patch makes this optimization happen regardless of the branch hint by splitting branch hint and branch condition before checking the predicate to identify the possible optimizations.
      
      Differential Revision: https://reviews.llvm.org/D35801
      
      llvm-svn: 309255
      967dc58a
  9. Jul 26, 2017
  10. Jul 25, 2017
  11. Jul 21, 2017
    • Guozhi Wei's avatar
      [PPC] Add Defs = [CARRY] to MIR SRADI_32 · e0094ce2
      Guozhi Wei authored
      MIR SRADI uses instruction template XSForm_1rc which declares Defs = [CARRY]. But MIR SRADI_32 uses instruction template XSForm_1, and it doesn't declare such implicit definition. With patch D33720 it causes wrong code generation for perl.
      
      This patch adds the implicit definition.
      
      Differential Revision: https://reviews.llvm.org/D35699
      
      llvm-svn: 308780
      e0094ce2
    • Jonas Paulsson's avatar
      [SystemZ, LoopStrengthReduce] · 024e3194
      Jonas Paulsson authored
      This patch makes LSR generate better code for SystemZ in the cases of memory
      intrinsics, Load->Store pairs or comparison of immediate with memory.
      
      In order to achieve this, the following common code changes were made:
      
       * New TTI hook: LSRWithInstrQueries(), which defaults to false. Controls if
       LSR should do instruction-based addressing evaluations by calling
       isLegalAddressingMode() with the Instruction pointers.
       * In LoopStrengthReduce: handle address operands of memset, memmove and memcpy
       as address uses, and call isFoldableMemAccessOffset() for any LSRUse::Address,
       not just loads or stores.
      
      SystemZ changes:
      
       * isLSRCostLess() implemented with Insns first, and without ImmCost.
       * New function supportedAddressingMode() that is a helper for TTI methods
       looking at Instructions passed via pointers.
      
      Review: Ulrich Weigand, Quentin Colombet
      https://reviews.llvm.org/D35262
      https://reviews.llvm.org/D35049
      
      llvm-svn: 308729
      024e3194
  12. Jul 18, 2017
  13. Jul 14, 2017
  14. Jul 13, 2017
  15. Jul 12, 2017
    • Rafael Espindola's avatar
      Fully fix the movw/movt addend. · 1beb702b
      Rafael Espindola authored
      The issue is not if the value is pcrel. It is whether we have a
      relocation or not.
      
      If we have a relocation, the static linker will select the upper
      bits. If we don't have a relocation, we have to do it.
      
      llvm-svn: 307730
      1beb702b
  16. Jul 11, 2017
  17. Jul 10, 2017
  18. Jul 07, 2017
  19. Jul 05, 2017
  20. Jul 01, 2017
Loading