Skip to content
  1. Apr 09, 2005
  2. Apr 07, 2005
    • Chris Lattner's avatar
      If a target zero or sign extends the result of its setcc, allow folding of · b32d9318
      Chris Lattner authored
      this into sign/zero extension instructions later.
      
      On PPC, for example, this testcase:
      
      %G = external global sbyte
      implementation
      void %test(int %X, int %Y) {
        %C = setlt int %X, %Y
        %D = cast bool %C to sbyte
        store sbyte %D, sbyte* %G
        ret void
      }
      
      Now codegens to:
      
              cmpw cr0, r3, r4
              li r3, 1
              li r4, 0
              blt .LBB_test_2 ;
      .LBB_test_1:    ;
              or r3, r4, r4
      .LBB_test_2:    ;
              addis r2, r2, ha16(L_G$non_lazy_ptr-"L00000$pb")
              lwz r2, lo16(L_G$non_lazy_ptr-"L00000$pb")(r2)
              stb r3, 0(r2)
      
      instead of:
      
              cmpw cr0, r3, r4
              li r3, 1
              li r4, 0
              blt .LBB_test_2 ;
      .LBB_test_1:    ;
              or r3, r4, r4
      .LBB_test_2:    ;
      ***     rlwinm r3, r3, 0, 31, 31
              addis r2, r2, ha16(L_G$non_lazy_ptr-"L00000$pb")
              lwz r2, lo16(L_G$non_lazy_ptr-"L00000$pb")(r2)
              stb r3, 0(r2)
      
      llvm-svn: 21148
      b32d9318
    • Chris Lattner's avatar
      Remove somethign I had for testing · dfed7355
      Chris Lattner authored
      llvm-svn: 21144
      dfed7355
    • Chris Lattner's avatar
      This patch does two things. First, it canonicalizes 'X >= C' -> 'X > C-1' · 6b03a0cb
      Chris Lattner authored
      (likewise for <= >=u >=u).
      
      Second, it implements a special case hack to turn 'X gtu SINTMAX' -> 'X lt 0'
      
      On powerpc, for example, this changes this:
      
              lis r2, 32767
              ori r2, r2, 65535
              cmplw cr0, r3, r2
              bgt .LBB_test_2
      
      into:
      
              cmpwi cr0, r3, 0
              blt .LBB_test_2
      
      llvm-svn: 21142
      6b03a0cb
    • Chris Lattner's avatar
      Fix a really scary bug that Nate found where we weren't deleting the right · 7d13eae2
      Chris Lattner authored
      elements auto of the autoCSE maps.
      
      llvm-svn: 21128
      7d13eae2
  3. Apr 06, 2005
  4. Apr 04, 2005
  5. Apr 02, 2005
  6. Mar 31, 2005
  7. Mar 30, 2005
  8. Mar 29, 2005
  9. Mar 26, 2005
  10. Mar 15, 2005
  11. Mar 10, 2005
  12. Mar 09, 2005
    • Chris Lattner's avatar
      constant fold FP_ROUND_INREG, ZERO_EXTEND_INREG, and SIGN_EXTEND_INREG · 7f269467
      Chris Lattner authored
      This allows the alpha backend to compile:
      
      bool %test(uint %P) {
              %c = seteq uint %P, 0
              ret bool %c
      }
      
      into:
      
      test:
              ldgp $29, 0($27)
              ZAP $16,240,$0
              CMPEQ $0,0,$0
              AND $0,1,$0
              ret $31,($26),1
      
      instead of:
      
      test:
              ldgp $29, 0($27)
              ZAP $16,240,$0
              ldiq $1,0
              ZAP $1,240,$1
              CMPEQ $0,$1,$0
              AND $0,1,$0
              ret $31,($26),1
      
      ... and fixes PR534.
      
      llvm-svn: 20534
      7f269467
  13. Feb 22, 2005
    • Chris Lattner's avatar
      Fix a bug in the 'store fpimm, ptr' -> 'store intimm, ptr' handling code. · a4743139
      Chris Lattner authored
      Changing 'op' here caused us to not enter the store into a map, causing
      reemission of the code!!  In practice, a simple loop like this:
      
      no_exit:                ; preds = %no_exit, %entry
              %indvar = phi uint [ %indvar.next, %no_exit ], [ 0, %entry ]            ; <uint> [#uses=3]
              %tmp.4 = getelementptr "complex long double"* %P, uint %indvar, uint 0          ; <double*> [#uses=1]
              store double 0.000000e+00, double* %tmp.4
              %indvar.next = add uint %indvar, 1              ; <uint> [#uses=2]
              %exitcond = seteq uint %indvar.next, %N         ; <bool> [#uses=1]
              br bool %exitcond, label %return, label %no_exit
      
      was being code gen'd to:
      
      .LBBtest_1:     # no_exit
              movl %edx, %esi
              shll $4, %esi
              movl $0, 4(%eax,%esi)
              movl $0, (%eax,%esi)
              incl %edx
              movl $0, (%eax,%esi)
              movl $0, 4(%eax,%esi)
              cmpl %ecx, %edx
              jne .LBBtest_1  # no_exit
      
      Note that we are doing 4 32-bit stores instead of 2.  Now we generate:
      
      .LBBtest_1:     # no_exit
              movl %edx, %esi
              incl %esi
              shll $4, %edx
              movl $0, (%eax,%edx)
              movl $0, 4(%eax,%edx)
              cmpl %ecx, %esi
              movl %esi, %edx
              jne .LBBtest_1  # no_exit
      
      This is much happier, though it would be even better if the increment of ESI
      was scheduled after the compare :-/
      
      llvm-svn: 20265
      a4743139
  14. Feb 17, 2005
  15. Feb 04, 2005
  16. Feb 02, 2005
  17. Feb 01, 2005
  18. Jan 28, 2005
Loading