Skip to content
  1. Aug 18, 2016
  2. Aug 17, 2016
  3. Aug 16, 2016
  4. Aug 12, 2016
  5. Aug 11, 2016
  6. Aug 05, 2016
    • Ulrich Weigand's avatar
      [PowerPC] Wrong fast-isel codegen for VSX floating-point loads · c3b495a6
      Ulrich Weigand authored
      There were two locations where fast-isel would generate a LFD instruction
      with a target register class VSFRC instead of F8RC when VSX was enabled.
      This can ccause invalid registers to be used in certain cases, like:
         lfd 36, ...
      instead of using a VSX load instruction.  The wrong register number gets
      silently truncated, causing invalid code to be generated.
      
      
      The first place is PPCFastISel::PPCEmitLoad, which had multiple problems:
      
      1.) The IsVSSRC and IsVSFRC flags are not initialized correctly, since they
      are computed from resultReg, which is still zero at this point in many cases.
      Fixed by changing the helper routines to operate on a register class instead
      of a register and passing in UseRC.
       
      2.) Even with this fixed, Is64VSXLoad is still wrong due to a typo:
      
      bool Is32VSXLoad = IsVSSRC && Opc == PPC::LFS;
      bool Is64VSXLoad = IsVSSRC && Opc == PPC::LFD;
      
      The second line needs to use isVSFRC (like PPCEmitStore does).
      
      3.) Once both the above are fixed, we're now generating a VSX instruction --
      but an incorrect one, since generation of an indexed instruction with null
      index is wrong. Fixed by copying the code handling the same issue in
      PPCEmitStore.
      
      
      The second place is PPCFastISel::PPCMaterializeFP, where we would emit an
      LFD to load a constant from the literal pool, and use the wrong result
      register class. Fixed by hardcoding a F8RC class even on systems
      supporting VSX.
      
      
      Fixes: https://llvm.org/bugs/show_bug.cgi?id=28630
      
      Differential Revision: https://reviews.llvm.org/D22632
      
      llvm-svn: 277823
      c3b495a6
    • Strahinja Petrovic's avatar
      · 30e0ce8e
      Strahinja Petrovic authored
      [PowerPC] fix passing long double arguments to function (soft-float)
      
      This patch fixes passing long double type arguments to function in 
      soft float mode. If there is less than 4 argument registers free 
      (long double type is mapped in 4 gpr registers in soft float mode) 
      long double type argument must be passed through stack.
      Differential Revision: https://reviews.llvm.org/D20114.
      
      llvm-svn: 277804
      30e0ce8e
  7. Aug 03, 2016
    • Guozhi Wei's avatar
      [PPC] Handling CallInst in PPCBoolRetToInt · 9584d18d
      Guozhi Wei authored
      This patch fixes pr25548.
      
      Current implementation of PPCBoolRetToInt doesn't handle CallInst correctly, so it failed to do the intended optimization when there is a CallInst with parameters. This patch fixed that.
      
      llvm-svn: 277655
      9584d18d
  8. Jul 29, 2016
  9. Jul 28, 2016
  10. Jul 27, 2016
    • Nemanja Ivanovic's avatar
      [PowerPC] Fix typo in PPCHazardRecognizers.cpp · 9163ca0f
      Nemanja Ivanovic authored
      Fixes PR28731.
      
      llvm-svn: 276865
      9163ca0f
    • Duncan P. N. Exon Smith's avatar
      PowerPC: Avoid implicit iterator conversions, NFC · e5a22f44
      Duncan P. N. Exon Smith authored
      Avoid implicit conversions from MachineInstrBundleIterator to
      MachineInstr* in the PowerPC backend, mainly by preferring MachineInstr&
      over MachineInstr* when a pointer isn't nullable and using range-based
      for loops.
      
      There was one piece of questionable code in PPCInstrInfo::AnalyzeBranch,
      where a condition checked a pointer converted from an iterator for
      nullptr.  Since this case is impossible (moreover, the code above
      guarantees that the iterator is valid), I removed the check when I
      changed the pointer to a reference.
      
      Despite that case, there should be no functionality change here.
      
      llvm-svn: 276864
      e5a22f44
  11. Jul 25, 2016
  12. Jul 18, 2016
  13. Jul 15, 2016
  14. Jul 12, 2016
  15. Jul 11, 2016
    • Nirav Dave's avatar
      Fix branch relaxation in 16-bit mode. · 8603062e
      Nirav Dave authored
      Thread through MCSubtargetInfo to relaxInstruction function allowing relaxation
      to generate jumps with 16-bit sized immediates in 16-bit mode.
      
      This fixes PR22097.
      
      Reviewers: dwmw2, tstellarAMD, craig.topper, jyknight
      
      Subscribers: jfb, arsenm, jyknight, llvm-commits, dsanders
      
      Differential Revision: http://reviews.llvm.org/D20830
      
      llvm-svn: 275068
      8603062e
  16. Jul 07, 2016
  17. Jul 06, 2016
  18. Jul 05, 2016
    • Nemanja Ivanovic's avatar
      [PowerPC] - Legalize vector types by widening instead of integer promotion · 44513e54
      Nemanja Ivanovic authored
      This patch corresponds to review:
      http://reviews.llvm.org/D20443
      
      It changes the legalization strategy for illegal vector types from integer
      promotion to widening. This only applies for vectors with elements of width
      that is a multiple of a byte since we have hardware support for vectors with
      1, 2, 3, 8 and 16 byte elements.
      Integer promotion for vectors is quite expensive on PPC due to the sequence
      of breaking apart the vector, extending the elements and reconstituting the
      vector. Two of these operations are expensive.
      This patch causes between minor and major improvements in performance on most
      benchmarks. There are very few benchmarks whose performance regresses. These
      regressions can be handled in a subsequent patch with a DAG combine (similar
      to how this patch handles int -> fp conversions of illegal vector types).
      
      llvm-svn: 274535
      44513e54
  19. Jul 02, 2016
  20. Jul 01, 2016
    • Duncan P. N. Exon Smith's avatar
      Target: Remove unused arguments from overrideSchedPolicy, NFC · 63298729
      Duncan P. N. Exon Smith authored
      TargetSubtargetInfo::overrideSchedPolicy takes two MachineInstr*
      arguments (begin and end) that invite implicit conversions from
      MachineInstrBundleIterator.  One option would be to change their type to
      an iterator, but since they don't seem to have been used since the API
      was added in 2010, I'm deleting the dead code.
      
      llvm-svn: 274304
      63298729
    • Duncan P. N. Exon Smith's avatar
      CodeGen: Use MachineInstr& in TargetLowering, NFC · e4f5e4f4
      Duncan P. N. Exon Smith authored
      This is a mechanical change to make TargetLowering API take MachineInstr&
      (instead of MachineInstr*), since the argument is expected to be a valid
      MachineInstr.  In one case, changed a parameter from MachineInstr* to
      MachineBasicBlock::iterator, since it was used as an insertion point.
      
      As a side effect, this removes a bunch of MachineInstr* to
      MachineBasicBlock::iterator implicit conversions, a necessary step
      toward fixing PR26753.
      
      llvm-svn: 274287
      e4f5e4f4
  21. Jun 30, 2016
Loading