Skip to content
  1. Dec 10, 2008
  2. Nov 27, 2008
  3. Nov 12, 2008
  4. Nov 11, 2008
    • Dan Gohman's avatar
      The 32-bit displacement field in an x86 address is signed. Arrange for it · 059c4fa8
      Dan Gohman authored
      to be sign-extended when it is promoted to 64 bits for intermediate
      offset calculations. The offset calculations are done as uint64_t so that
      overflow conditions are well defined.
      
      This fixes a problem which is currently hidden by the x86 AsmPrinter but
      which was exposed by r58917 (which is temporarily reverted).  See PR3027
      for details.
      
      llvm-svn: 59044
      059c4fa8
  5. Nov 05, 2008
    • Dan Gohman's avatar
      Eliminate the ISel priority queue, which used the topological order for a · f14b77eb
      Dan Gohman authored
      priority function. Instead, just iterate over the AllNodes list, which is
      already in topological order. This eliminates a fair amount of bookkeeping,
      and speeds up the isel phase by about 15% on many testcases.
      
      The impact on most targets is that AddToISelQueue calls can be simply removed.
      
      In the x86 target, there are two additional notable changes.
      
      The rule-bending AND+SHIFT optimization in MatchAddress that creates new
      pre-isel nodes during isel is now a little more verbose, but more robust.
      Instead of either creating an invalid DAG or creating an invalid topological
      sort, as it has historically done, it can now just insert the new nodes into
      the node list at a position where they will be consistent with the topological
      ordering.
      
      Also, the address-matching code has logic that checked to see if a node was
      "already selected". However, when a node is selected, it has all its uses
      taken away via ReplaceAllUsesWith or equivalent, so it won't recieve any
      further visits from MatchAddress. This code is now removed.
      
      llvm-svn: 58748
      f14b77eb
  6. Nov 04, 2008
  7. Oct 27, 2008
    • David Greene's avatar
      · ce2a9381
      David Greene authored
      Have TableGen emit setSubgraphColor calls under control of a -gen-debug
      flag.  Then in a debugger developers can set breakpoints at these calls
      to see waht is about to be selected and what the resulting subgraph
      looks like.  This really helps when debugging instruction selection.
      
      llvm-svn: 58278
      ce2a9381
  8. Oct 18, 2008
    • Dan Gohman's avatar
      Teach DAGCombine to fold constant offsets into GlobalAddress nodes, · 2fe6bee5
      Dan Gohman authored
      and add a TargetLowering hook for it to use to determine when this
      is legal (i.e. not in PIC mode, etc.)
      
      This allows instruction selection to emit folded constant offsets
      in more cases, such as the included testcase, eliminating the need
      for explicit arithmetic instructions.
      
      This eliminates the need for the C++ code in X86ISelDAGToDAG.cpp
      that attempted to achieve the same effect, but wasn't as effective.
      
      Also, fix handling of offsets in GlobalAddressSDNodes in several
      places, including changing GlobalAddressSDNode's offset from
      int to int64_t.
      
      The Mips, Alpha, Sparc, and CellSPU targets appear to be
      unaware of GlobalAddress offsets currently, so set the hook to
      false on those targets.
      
      llvm-svn: 57748
      2fe6bee5
  9. Oct 16, 2008
  10. Oct 14, 2008
  11. 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
  12. Oct 06, 2008
  13. Oct 04, 2008
  14. Oct 03, 2008
  15. Oct 02, 2008
  16. 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
  17. Sep 27, 2008
  18. Sep 26, 2008
  19. Sep 24, 2008
  20. Sep 23, 2008
  21. Sep 17, 2008
  22. Sep 16, 2008
  23. Sep 12, 2008
  24. Aug 31, 2008
  25. Aug 28, 2008
  26. Aug 27, 2008
  27. 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
  28. 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
  29. Aug 21, 2008
  30. 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
  31. Aug 17, 2008
Loading