Skip to content
  1. Jun 29, 2005
  2. Jun 22, 2005
  3. Jun 18, 2005
  4. May 14, 2005
  5. May 13, 2005
  6. May 12, 2005
  7. May 11, 2005
  8. May 10, 2005
  9. May 09, 2005
  10. May 05, 2005
  11. May 03, 2005
  12. Apr 30, 2005
  13. Apr 27, 2005
    • Andrew Lenharth's avatar
      Implement Value* tracking for loads and stores in the selection DAG. This... · 4a73c2cf
      Andrew Lenharth authored
      Implement Value* tracking for loads and stores in the selection DAG.  This enables one to use alias analysis in the backends.
      
      (TRUNK)Stores and (EXT|ZEXT|SEXT)Loads have an extra SDOperand which is a SrcValueSDNode which contains the Value*.  Note that if the operation is introduced by the backend, it will still have the operand, but the value* will be null.
      
      llvm-svn: 21599
      4a73c2cf
  14. Apr 22, 2005
  15. Apr 13, 2005
  16. Apr 09, 2005
  17. Apr 02, 2005
  18. Mar 31, 2005
  19. Mar 30, 2005
  20. Mar 29, 2005
  21. Mar 26, 2005
  22. Mar 15, 2005
  23. Feb 17, 2005
  24. Jan 23, 2005
  25. Jan 19, 2005
  26. Jan 18, 2005
  27. Jan 17, 2005
    • Chris Lattner's avatar
      Non-volatile loads can be freely reordered against each other. This fixes · 4d9651c7
      Chris Lattner authored
      X86/reg-pressure.ll again, and allows us to do nice things in other cases.
      For example, we now codegen this sort of thing:
      
      int %loadload(int *%X, int* %Y) {
        %Z = load int* %Y
        %Y = load int* %X      ;; load between %Z and store
        %Q = add int %Z, 1
        store int %Q, int* %Y
        ret int %Y
      }
      
      Into this:
      
      loadload:
              mov %EAX, DWORD PTR [%ESP + 4]
              mov %EAX, DWORD PTR [%EAX]
              mov %ECX, DWORD PTR [%ESP + 8]
              inc DWORD PTR [%ECX]
              ret
      
      where we weren't able to form the 'inc [mem]' before.  This also lets the
      instruction selector emit loads in any order it wants to, which can be good
      for register pressure as well.
      
      llvm-svn: 19644
      4d9651c7
Loading