Skip to content
  1. Oct 14, 2008
  2. Oct 13, 2008
    • Dan Gohman's avatar
      When doing the very-late shift-and address-mode optimization, · 56b68851
      Dan Gohman authored
      create a new DAG node to represent the new shift to keep the
      DAG consistent, even though it'll almost always be folded into
      the address.
      
      If a user of the resulting address has multiple uses, the
      nodes may get revisited by a later MatchAddress call, in which
      case DAG inconsistencies do matter.
      
      This fixes PR2849.
      
      llvm-svn: 57465
      56b68851
  3. Oct 06, 2008
  4. Oct 04, 2008
  5. Oct 03, 2008
  6. Oct 02, 2008
  7. Sep 30, 2008
    • Dan Gohman's avatar
      Optimize SelectionDAG's AssignTopologicalOrder even further. · 86aa16a6
      Dan Gohman authored
      Completely eliminate the TopOrder std::vector. Instead, sort
      the AllNodes list in place. This also eliminates the need to
      call AllNodes.size(), a linear-time operation, before
      performing the sort.
      
      Also, eliminate the Sources temporary std::vector, since it
      essentially duplicates the sorted result as it is being
      built.
      
      This also changes the direction of the topological sort
      from bottom-up to top-down. The AllNodes list starts out in
      roughly top-down order, so this reduces the amount of
      reordering needed. Top-down is also more convenient for
      Legalize, and ISel needed only minor adjustments.
      
      llvm-svn: 56867
      86aa16a6
    • Dan Gohman's avatar
      Move the GlobalBaseReg field out of X86ISelDAGToDAG.cpp · 6ebe734c
      Dan Gohman authored
      and X86FastISel.cpp into X86MachineFunction.h, so that it
      can be shared, instead of having each selector keep track
      of its own.
      
      llvm-svn: 56825
      6ebe734c
  8. Sep 27, 2008
  9. Sep 26, 2008
  10. Sep 24, 2008
  11. Sep 23, 2008
  12. Sep 17, 2008
  13. Sep 16, 2008
  14. Sep 12, 2008
  15. Aug 31, 2008
  16. Aug 28, 2008
  17. Aug 27, 2008
  18. Aug 25, 2008
    • Evan Cheng's avatar
      Try approach to moving call address load inside of callseq_start. Now it's... · f00f1e50
      Evan Cheng authored
      Try approach to moving call address load inside of callseq_start. Now it's done during the preprocess of x86 isel. callseq_start's chain is changed to load's chain node; while load's chain is the last of callseq_start or the loads or copytoreg nodes inserted to move arguments to the right spot.
      
      llvm-svn: 55338
      f00f1e50
  19. Aug 23, 2008
    • Dan Gohman's avatar
      Move the point at which FastISel taps into the SelectionDAGISel · eb0cee91
      Dan Gohman authored
      process up to a higher level. This allows FastISel to leverage
      more of SelectionDAGISel's infastructure, such as updating Machine
      PHI nodes.
      
      Also, implement transitioning from SDISel back to FastISel in
      the middle of a block, so it's now possible to go back and
      forth. This allows FastISel to hand individual CallInsts and other
      complicated things off to SDISel to handle, while handling the rest
      of the block itself.
      
      To help support this, reorganize the SelectionDAG class so that it
      is allocated once and reused throughout a function, instead of
      being completely reallocated for each block.
      
      llvm-svn: 55219
      eb0cee91
  20. Aug 21, 2008
  21. Aug 20, 2008
    • Dan Gohman's avatar
      Move the handling of ANY_EXTEND, SIGN_EXTEND_INREG, and TRUNCATE · 814f2916
      Dan Gohman authored
      out of X86ISelDAGToDAG.cpp C++ code and into tablegen code.
      Among other things, using tablegen for these things makes them
      friendlier to FastISel.
      
      Tablegen can handle the case of i8 subregs on x86-32, but currently
      the C++ code for that case uses MVT::Flag in a tricky way, and it
      happens to schedule better in some cases. So for now, leave the
      C++ code in place to handle the i8 case on x86-32.
      
      llvm-svn: 55078
      814f2916
  22. Aug 17, 2008
  23. Aug 13, 2008
  24. Aug 12, 2008
    • Dale Johannesen's avatar
      Some fixes for x86-64 JIT. Make it use small code · dafdbf77
      Dale Johannesen authored
      model, except for external calls; this makes
      addressing modes PC-relative.  Incomplete.
      
      The assertion at the top of Emitter::runOnMachineFunction
      was obviously bogus (always true) so I removed it.
      If someone knows what the correct test should be to cover
      all the various targets, please fix.
      
      llvm-svn: 54656
      dafdbf77
  25. Jul 27, 2008
  26. Jul 21, 2008
  27. Jul 17, 2008
    • Dan Gohman's avatar
      Add a new function, ReplaceAllUsesOfValuesWith, which handles bulk · 17059681
      Dan Gohman authored
      replacement of multiple values. This is slightly more efficient
      than doing multiple ReplaceAllUsesOfValueWith calls, and theoretically
      could be optimized even further. However, an important property of this
      new function is that it handles the case where the source value set and
      destination value set overlap. This makes it feasible for isel to use
      SelectNodeTo in many very common cases, which is advantageous because
      SelectNodeTo avoids a temporary node and it doesn't require CSEMap
      updates for users of values that don't change position.
      
      Revamp MorphNodeTo, which is what does all the work of SelectNodeTo, to
      handle operand lists more efficiently, and to correctly handle a number
      of corner cases to which its new wider use exposes it.
      
      This commit also includes a change to the encoding of post-isel opcodes
      in SDNodes; now instead of being sandwiched between the target-independent
      pre-isel opcodes and the target-dependent pre-isel opcodes, post-isel
      opcodes are now represented as negative values. This makes it possible
      to test if an opcode is pre-isel or post-isel without having to know
      the size of the current target's post-isel instruction set.
      
      These changes speed up llc overall by 3% and reduce memory usage by 10%
      on the InstructionCombining.cpp testcase with -fast and -regalloc=local.
      
      llvm-svn: 53728
      17059681
  28. Jul 16, 2008
  29. Jul 01, 2008
  30. Jun 30, 2008
Loading