Skip to content
  1. Sep 16, 2013
  2. Aug 20, 2013
    • Richard Sandiford's avatar
      Fix overly pessimistic shortcut in post-RA MachineLICM · 96aa93d5
      Richard Sandiford authored
      Post-RA LICM keeps three sets of registers: PhysRegDefs, PhysRegClobbers
      and TermRegs.  When it sees a definition of R it adds all aliases of R
      to the corresponding set, so that when it needs to test for membership
      it only needs to test a single register, rather than worrying about
      aliases there too.  E.g. the final candidate loop just has:
      
          unsigned Def = Candidates[i].Def;
          if (!PhysRegClobbers.test(Def) && ...) {
      
      to test whether register Def is multiply defined.
      
      However, there was also a shortcut in ProcessMI to make sure we didn't
      add candidates if we already knew that they would fail the final test.
      This shortcut was more pessimistic than the final one because it
      checked whether _any alias_ of the defined register was multiply defined.
      This is too conservative for targets that define register pairs.
      E.g. on z, R0 and R1 are sometimes used as a pair, so there is a
      128-bit register that aliases both R0 and R1.  If a loop used
      R0 and R1 independently, and the definition of R0 came first,
      we would be able to hoist the R0 assignment (because that used
      the final test quoted above) but not the R1 assignment (because
      that meant we had two definitions of the paired R0/R1 register
      and would fail the shortcut in ProcessMI).
      
      This patch just uses the same check for the ProcessMI shortcut as
      we use in the final candidate loop.
      
      llvm-svn: 188774
      96aa93d5
  3. Jul 11, 2013
  4. Jan 11, 2013
  5. Dec 13, 2012
  6. Dec 11, 2012
  7. Dec 03, 2012
    • Chandler Carruth's avatar
      Use the new script to sort the includes of every file under lib. · ed0881b2
      Chandler Carruth authored
      Sooooo many of these had incorrect or strange main module includes.
      I have manually inspected all of these, and fixed the main module
      include to be the nearest plausible thing I could find. If you own or
      care about any of these source files, I encourage you to take some time
      and check that these edits were sensible. I can't have broken anything
      (I strictly added headers, and reordered them, never removed), but they
      may not be the headers you'd really like to identify as containing the
      API being implemented.
      
      Many forward declarations and missing includes were added to a header
      files to allow them to parse cleanly when included first. The main
      module rule does in fact have its merits. =]
      
      llvm-svn: 169131
      ed0881b2
  8. Aug 22, 2012
  9. Jun 02, 2012
    • Jakob Stoklund Olesen's avatar
      Switch all register list clients to the new MC*Iterator interface. · 54038d79
      Jakob Stoklund Olesen authored
      No functional change intended.
      
      Sorry for the churn. The iterator classes are supposed to help avoid
      giant commits like this one in the future. The TableGen-produced
      register lists are getting quite large, and it may be necessary to
      change the table representation.
      
      This makes it possible to do so without changing all clients (again).
      
      llvm-svn: 157854
      54038d79
  10. May 08, 2012
    • Jakob Stoklund Olesen's avatar
      Add an MF argument to TRI::getPointerRegClass() and TII::getRegClass(). · 3c52f028
      Jakob Stoklund Olesen authored
      The getPointerRegClass() hook can return register classes that depend on
      the calling convention of the current function (ptr_rc_tailcall).
      
      So far, we have been able to infer the calling convention from the
      subtarget alone, but as we add support for multiple calling conventions
      per target, that no longer works.
      
      Patch by Yiannis Tsiouris!
      
      llvm-svn: 156328
      3c52f028
  11. Apr 11, 2012
    • Jakob Stoklund Olesen's avatar
      Tweak MachineLICM heuristics for cheap instructions. · 645bdd4b
      Jakob Stoklund Olesen authored
      Allow cheap instructions to be hoisted if they are register pressure
      neutral or better. This happens if the instruction is the last loop use
      of another virtual register.
      
      Only expensive instructions are allowed to increase loop register
      pressure.
      
      llvm-svn: 154455
      645bdd4b
    • Jakob Stoklund Olesen's avatar
      Only check for PHI uses inside the current loop. · a3e86a60
      Jakob Stoklund Olesen authored
      Hoisting a value that is used by a PHI in the loop will introduce a
      copy because the live range is extended to cross the PHI.
      
      The same applies to PHIs in exit blocks.
      
      Also use this opportunity to make HasLoopPHIUse() non-recursive.
      
      llvm-svn: 154454
      a3e86a60
  12. Mar 27, 2012
  13. Mar 04, 2012
  14. Feb 28, 2012
  15. Feb 17, 2012
  16. Feb 11, 2012
  17. Feb 08, 2012
  18. Feb 03, 2012
  19. Jan 23, 2012
  20. Jan 20, 2012
  21. Jan 16, 2012
  22. Jan 10, 2012
  23. Dec 22, 2011
  24. Dec 07, 2011
    • Evan Cheng's avatar
      Add bundle aware API for querying instruction properties and switch the code · 7f8e563a
      Evan Cheng authored
      generator to it. For non-bundle instructions, these behave exactly the same
      as the MC layer API.
      
      For properties like mayLoad / mayStore, look into the bundle and if any of the
      bundled instructions has the property it would return true.
      For properties like isPredicable, only return true if *all* of the bundled
      instructions have the property.
      For properties like canFoldAsLoad, isCompare, conservatively return false for
      bundles.
      
      llvm-svn: 146026
      7f8e563a
  25. Dec 06, 2011
    • Evan Cheng's avatar
      First chunk of MachineInstr bundle support. · 2a81dd4a
      Evan Cheng authored
      1. Added opcode BUNDLE
      2. Taught MachineInstr class to deal with bundled MIs
      3. Changed MachineBasicBlock iterator to skip over bundled MIs; added an iterator to walk all the MIs
      4. Taught MachineBasicBlock methods about bundled MIs
      
      llvm-svn: 145975
      2a81dd4a
  26. Nov 16, 2011
  27. Oct 26, 2011
  28. Oct 20, 2011
  29. Oct 17, 2011
  30. Oct 13, 2011
  31. Oct 12, 2011
Loading