Skip to content
  1. Nov 20, 2017
    • Tony Jiang's avatar
      [PPC] Heuristic to choose between a X-Form VSX ld/st vs a X-Form FP ld/st. · 438bf4a6
      Tony Jiang authored
      The VSX versions have the advantage of a full 64-register target whereas the FP
      ones have the advantage of lower latency and higher throughput. So what we’re
      after is using the faster instructions in low register pressure situations and
      using the larger register file in high register pressure situations.
      
      The heuristic chooses between the following 7 pairs of instructions.
      PPC::LXSSPX vs PPC::LFSX
      PPC::LXSDX vs PPC::LFDX
      PPC::STXSSPX vs PPC::STFSX
      PPC::STXSDX vs PPC::STFDX
      PPC::LXSIWAX vs PPC::LFIWAX
      PPC::LXSIWZX vs PPC::LFIWZX
      PPC::STXSIWX vs PPC::STFIWX
      
      Differential Revision: https://reviews.llvm.org/D38486
      
      llvm-svn: 318651
      438bf4a6
    • Sander de Smalen's avatar
      [AArch64][TableGen] Skip tied result operands for InstAlias · 0c5a29b6
      Sander de Smalen authored
      Summary:
      This patch fixes an issue so that the right alias is printed when the instruction has tied operands. It checks the number of operands in the resulting instruction as opposed to the alias, and then skips over tied operands that should not be printed in the alias.
      
      This allows to generate the preferred assembly syntax for the AArch64 'ins' instruction, which should always be displayed as 'mov' according to the ARM Architecture Reference Manual. Several unit tests have changed as a result, but only to reflect the preferred disassembly. Some other InstAlias patterns (movk/bic/orr) needed a slight adjustment to stop them becoming the default and breaking other unit tests.
      
      Please note that the patch is mostly the same as https://reviews.llvm.org/D29219 which was reverted because of an issue found when running TableGen with the Address Sanitizer. That issue has been addressed in this iteration of the patch.
      
      
      Reviewers: rengolin, stoklund, huntergr, SjoerdMeijer, rovka
      
      Reviewed By: rengolin, SjoerdMeijer
      
      Subscribers: fhahn, aemerson, javed.absar, kristof.beyls, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D40030
      
      llvm-svn: 318650
      0c5a29b6
    • Valery Pykhtin's avatar
    • Mohammed Agabaria's avatar
      [LV][X86] Support of AVX2 Gathers code generation and update the LV with this · 115f68ea
      Mohammed Agabaria authored
      This patch depends on: https://reviews.llvm.org/D35348
      
      Support of pattern selection of masked gathers of AVX2 (X86\AVX2 code gen)
      Update LoopVectorize to generate gathers for AVX2 processors.
      
      Reviewers: delena, zvi, RKSimon, craig.topper, aaboud, igorb
      
      Reviewed By: delena, RKSimon
      
      Differential Revision: https://reviews.llvm.org/D35772
      
      llvm-svn: 318641
      115f68ea
  2. Nov 19, 2017
  3. Nov 18, 2017
  4. Nov 17, 2017
  5. Nov 16, 2017
Loading