Skip to content
  1. Mar 08, 2016
  2. Mar 03, 2016
  3. Mar 01, 2016
    • Kit Barton's avatar
      [Power9] Implement new vector compare, extract, insert instructions · e7256694
      Kit Barton authored
      This change implements the following vector operations:
      
        - Vector Compare Not Equal
          - vcmpneb(.) vcmpneh(.) vcmpnew(.)
          - vcmpnezb(.) vcmpnezh(.) vcmpnezw(.)
        - Vector Extract Unsigned
          - vextractub vextractuh vextractuw vextractd
          - vextublx vextubrx vextuhlx vextuhrx vextuwlx vextuwrx
        - Vector Insert
          - vinsertb vinserth vinsertw vinsertd
      
      26 instructions.
      
      Phabricator: http://reviews.llvm.org/D15916
      llvm-svn: 262392
      e7256694
    • Kit Barton's avatar
      New file to track implementation status of new POWER9 instructions · 01cd2e7a
      Kit Barton authored
      llvm-svn: 262386
      01cd2e7a
    • Matthias Braun's avatar
      TableGen: Check scheduling models for completeness · 17cb5799
      Matthias Braun authored
      TableGen checks at compiletime that for scheduling models with
      "CompleteModel = 1" one of the following holds:
      
      - Is marked with the hasNoSchedulingInfo flag
      - The instruction is a subclass of Sched
      - There are InstRW definitions in the scheduling model
      
      Typical steps necessary to complete a model:
      
      - Ensure all pseudo instructions that are expanded before machine
        scheduling (usually everything handled with EmitYYY() functions in
        XXXTargetLowering).
      - If a CPU does not support some instructions mark the corresponding
        resource unsupported: "WriteRes<WriteXXX, []> { let Unsupported = 1; }".
      - Add missing scheduling information.
      
      Differential Revision: http://reviews.llvm.org/D17747
      
      llvm-svn: 262384
      17cb5799
  4. Feb 29, 2016
  5. Feb 27, 2016
    • Duncan P. N. Exon Smith's avatar
      CodeGen: Change MachineInstr to use MachineInstr&, NFC · fd8cc232
      Duncan P. N. Exon Smith authored
      Change MachineInstr API to prefer MachineInstr& over MachineInstr*
      whenever the parameter is expected to be non-null.  Slowly inching
      toward being able to fix PR26753.
      
      llvm-svn: 262149
      fd8cc232
    • Duncan P. N. Exon Smith's avatar
      CodeGen: Take MachineInstr& in SlotIndexes and LiveIntervals, NFC · 3ac9cc61
      Duncan P. N. Exon Smith authored
      Take MachineInstr by reference instead of by pointer in SlotIndexes and
      the SlotIndex wrappers in LiveIntervals.  The MachineInstrs here are
      never null, so this cleans up the API a bit.  It also incidentally
      removes a few implicit conversions from MachineInstrBundleIterator to
      MachineInstr* (see PR26753).
      
      At a couple of call sites it was convenient to convert to a range-based
      for loop over MachineBasicBlock::instr_begin/instr_end, so I added
      MachineBasicBlock::instrs.
      
      llvm-svn: 262115
      3ac9cc61
  6. Feb 26, 2016
  7. Feb 23, 2016
  8. Feb 22, 2016
  9. Feb 20, 2016
    • Nemanja Ivanovic's avatar
      Fix the build bot break caused by rL261441. · daf0ca23
      Nemanja Ivanovic authored
      The patch has a necessary call to a function inside an assert. Which is fine
      when you have asserts turned on. Not so much when they're off. Sorry about
      the regression.
      
      llvm-svn: 261447
      daf0ca23
    • Nemanja Ivanovic's avatar
      Fix for PR 26500 · ae22101c
      Nemanja Ivanovic authored
      This patch corresponds to review:
      http://reviews.llvm.org/D17294
      
      It ensures that whatever block we are emitting the prologue/epilogue into, we
      have the necessary scratch registers. It takes away the hard-coded register
      numbers for use as scratch registers as registers that are guaranteed to be
      available in the function prologue/epilogue are not guaranteed to be available
      within the function body. Since we shrink-wrap, the prologue/epilogue may end
      up in the function body.
      
      llvm-svn: 261441
      ae22101c
  10. Feb 18, 2016
  11. Feb 15, 2016
  12. Feb 10, 2016
  13. Feb 05, 2016
    • Nemanja Ivanovic's avatar
      Fix for PR 26193 · d389c7a3
      Nemanja Ivanovic authored
      This is a simple fix for a PowerPC intrinsic that was incorrectly defined
      (the return type was incorrect).
      
      llvm-svn: 259886
      d389c7a3
    • Nemanja Ivanovic's avatar
      Fix for PR 26356 · b6fdce4c
      Nemanja Ivanovic authored
      Using the load immediate only when the immediate (whether signed or unsigned)
      can fit in a 16-bit signed field. Namely, from -32768 to 32767 for signed and
      0 to 65535 for unsigned. This patch also ensures that we sign-extend under the
      right conditions.
      
      llvm-svn: 259840
      b6fdce4c
  14. Feb 03, 2016
    • Nemanja Ivanovic's avatar
      Fix for PR 26381 · 82e11689
      Nemanja Ivanovic authored
      Simple fix - Constant values were not being sign extended in FastIsel.
      
      llvm-svn: 259645
      82e11689
    • Kyle Butt's avatar
      Codegen: [PPC] Fix PPCVSXFMAMutate to handle duplicates. · d62d8b77
      Kyle Butt authored
      The purpose of PPCVSXFMAMutate is to elide copies by changing FMA forms
      on PPC.
      
          %vreg6<def> = COPY %vreg96
          %vreg6<def,tied1> = XSMADDASP %vreg6<tied0>, %vreg5<kill>, %vreg7
          ;v6 = v6 + v5 * v7
      
      is replaced by
      
          %vreg5<def,tied1> = XSMADDMSP %vreg5<tied0>, %vreg7, %vreg96
          ;v5 = v5 * v7 + v96
      
      This was broken in the case where the target register was also used as a
      multiplicand. Fix this case by checking for it and replacing both uses
      with the copied register.
      
          %vreg6<def> = COPY %vreg96
          %vreg6<def,tied1> = XSMADDASP %vreg6<tied0>, %vreg5<kill>, %vreg6
          ;v6 = v6 + v5 * v6
      
      is replaced by
      
          %vreg5<def,tied1> = XSMADDMSP %vreg5<tied0>, %vreg96, %vreg96
          ;v5 = v5 * v96 + v96
      
      llvm-svn: 259617
      d62d8b77
  15. Jan 29, 2016
  16. Jan 27, 2016
  17. Jan 26, 2016
  18. Jan 21, 2016
    • Adam Nemet's avatar
      [TTI] Add getCacheLineSize · af761104
      Adam Nemet authored
      Summary:
      And use it in PPCLoopDataPrefetch.cpp.
      
      @hfinkel, please let me know if your preference would be to preserve the
      ppc-loop-prefetch-cache-line option in order to be able to override the
      value of TTI::getCacheLineSize for PPC.
      
      Reviewers: hfinkel
      
      Subscribers: hulx2000, mcrosier, mssimpso, hfinkel, llvm-commits
      
      Differential Revision: http://reviews.llvm.org/D16306
      
      llvm-svn: 258419
      af761104
  19. Jan 16, 2016
  20. Jan 15, 2016
    • Kyle Butt's avatar
      Codegen: [PPC] Silence false-positive initialization warning. NFC · 132bf361
      Kyle Butt authored
      Some compilers don't do exhaustive switch checking. For those compilers,
      add an initialization to prevent un-initialized variable warnings from
      firing. For compilers with exhaustive switch checking, we still get a
      guarantee that the switch is exhaustive, and hence the initializations
      are redundant, and a non-functional change.
      
      llvm-svn: 257923
      132bf361
  21. Jan 14, 2016
Loading