Skip to content
  1. Aug 20, 2008
  2. Aug 19, 2008
  3. Aug 14, 2008
  4. Aug 13, 2008
  5. Jul 30, 2008
  6. Jul 27, 2008
  7. 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
  8. Jul 08, 2008
  9. Jul 07, 2008
    • Dan Gohman's avatar
      Refactor the tablegen DAGISelEmitter code for outputing calls to · d6ec0507
      Dan Gohman authored
      getTargetNode and SelectNodeTo to reduce duplication, and to
      make some of the getTargetNode code available to SelectNodeTo.
      Use SelectNodeTo instead of getTargetNode in several new
      interesting cases, as it mutates nodes in place instead of
      creating new ones.
      
      This triggers some scheduling behavior differences due to nodes
      being presented to the scheduler in a different order. Some of the
      arbitrary scheduling decisions it makes are now arbitrarily made
      differently. This is visible in CodeGen/PowerPC/LargeAbsoluteAddr.ll,
      where a trivial scheduling difference led to a trivial register
      allocation difference.
      
      llvm-svn: 53203
      d6ec0507
    • Dan Gohman's avatar
      Add explicit keywords. · 56e3f63e
      Dan Gohman authored
      llvm-svn: 53179
      56e3f63e
  10. Jul 03, 2008
  11. Jul 01, 2008
  12. Jun 30, 2008
  13. Jun 26, 2008
    • Dale Johannesen's avatar
      Fixes the last x86-64 test failure in compat.exp: · a2de8eab
      Dale Johannesen authored
      <16 x float> is 64-byte aligned (for some reason),
      which gets us into the stack realignment code.  The
      computation changing FP-relative offsets to SP-relative
      was broken, assiging a spill temp to a location
      also used for parameter passing.  This
      fixes it by rounding up the stack frame to a multiple
      of the largest alignment (I concluded it wasn't fixable
      without doing this, but I'm not very sure.)
      
      llvm-svn: 52750
      a2de8eab
  14. Jun 25, 2008
  15. Jun 16, 2008
  16. Jun 10, 2008
  17. Jun 06, 2008
    • Duncan Sands's avatar
      Wrap MVT::ValueType in a struct to get type safety · 13237ac3
      Duncan Sands authored
      and better control the abstraction.  Rename the type
      to MVT.  To update out-of-tree patches, the main
      thing to do is to rename MVT::ValueType to MVT, and
      rewrite expressions like MVT::getSizeInBits(VT) in
      the form VT.getSizeInBits().  Use VT.getSimpleVT()
      to extract a MVT::SimpleValueType for use in switch
      statements (you will get an assert failure if VT is
      an extended value type - these shouldn't exist after
      type legalization).
      This results in a small speedup of codegen and no
      new testsuite failures (x86-64 linux).
      
      llvm-svn: 52044
      13237ac3
  18. Jun 04, 2008
  19. Jun 02, 2008
    • Dan Gohman's avatar
      Fix the position of MemOperands in nodes that use variadic_ops · 92d62b43
      Dan Gohman authored
      in DAGISelEmitter output. This bug was recently uncovered by the
      addition of patterns for CALL32m and CALL64m, which are nodes
      that now have both MemOperands and variadic_ops.
      
      This bug was especially visible with PIC in various configurations,
      because the new patterns are matching the indirect call code used
      in many PIC configurations.
      
      llvm-svn: 51877
      92d62b43
  20. Jun 01, 2008
  21. May 31, 2008
  22. May 30, 2008
Loading