Skip to content
  1. Jan 10, 2005
    • Chris Lattner's avatar
      Implement a couple of more simplifications. This lets us codegen: · 41b76414
      Chris Lattner authored
      int test2(int * P, int* Q, int A, int B) {
              return P+A == P;
      }
      
      into:
      
      test2:
              movl 4(%esp), %eax
              movl 12(%esp), %eax
              shll $2, %eax
              cmpl $0, %eax
              sete %al
              movzbl %al, %eax
              ret
      
      instead of:
      
      test2:
              movl 4(%esp), %eax
              movl 12(%esp), %ecx
              leal (%eax,%ecx,4), %ecx
              cmpl %eax, %ecx
              sete %al
              movzbl %al, %eax
              ret
      
      ICC is producing worse code:
      
      test2:
              movl      4(%esp), %eax                                 #8.5
              movl      12(%esp), %edx                                #8.5
              lea       (%edx,%edx), %ecx                             #9.9
              addl      %ecx, %ecx                                    #9.9
              addl      %eax, %ecx                                    #9.9
              cmpl      %eax, %ecx                                    #9.16
              movl      $0, %eax                                      #9.16
              sete      %al                                           #9.16
              ret                                                     #9.16
      
      as is GCC (looks like our old code):
      
      test2:
              movl    4(%esp), %edx
              movl    12(%esp), %eax
              leal    (%edx,%eax,4), %ecx
              cmpl    %edx, %ecx
              sete    %al
              movzbl  %al, %eax
              ret
      
      llvm-svn: 19430
      41b76414
    • Chris Lattner's avatar
      Fix incorrect constant folds, fixing Stepanov after the SHR patch. · 00c231ba
      Chris Lattner authored
      llvm-svn: 19429
      00c231ba
    • Jeff Cohen's avatar
      Update System project in Visual Studio to reflect renamed files. · c783e07a
      Jeff Cohen authored
      llvm-svn: 19428
      c783e07a
    • Chris Lattner's avatar
      Constant fold shifts, turning this loop: · 0966a75e
      Chris Lattner authored
      .LBB_Z5test0PdS__3:     # no_exit.1
              fldl data(,%eax,8)
              fldl 24(%esp)
              faddp %st(1)
              fstl 24(%esp)
              incl %eax
              movl $16000, %ecx
              sarl $3, %ecx
              cmpl %eax, %ecx
              fstpl 16(%esp)
              #FP_REG_KILL
              jg .LBB_Z5test0PdS__3   # no_exit.1
      
      into:
      
      .LBB_Z5test0PdS__3:     # no_exit.1
              fldl data(,%eax,8)
              fldl 24(%esp)
              faddp %st(1)
              fstl 24(%esp)
              incl %eax
              cmpl $2000, %eax
              fstpl 16(%esp)
              #FP_REG_KILL
              jl .LBB_Z5test0PdS__3   # no_exit.1
      
      llvm-svn: 19427
      0966a75e
    • Reid Spencer's avatar
      Rename Unix/*.cpp and Win32/*.cpp to have a *.inc suffix so that the silly · c892a0db
      Reid Spencer authored
      gdb debugger doesn't get confused on which file it is reading (the one in
      lib/System or the one in lib/System/{Win32,Unix})
      
      llvm-svn: 19426
      c892a0db
  2. Jan 09, 2005
  3. Jan 08, 2005
Loading