Skip to content
  1. Oct 22, 2007
  2. Oct 21, 2007
  3. Oct 20, 2007
  4. Oct 19, 2007
    • Evan Cheng's avatar
      Local spiller optimization: · 35ff7937
      Evan Cheng authored
      Turn a store folding instruction into a load folding instruction. e.g.
           xorl  %edi, %eax
           movl  %eax, -32(%ebp)
           movl  -36(%ebp), %eax
           orl   %eax, -32(%ebp)
      =>
           xorl  %edi, %eax
           orl   -36(%ebp), %eax
           mov   %eax, -32(%ebp)
      This enables the unfolding optimization for a subsequent instruction which will
      also eliminate the newly introduced store instruction.
      
      llvm-svn: 43192
      35ff7937
    • Bill Wendling's avatar
      Don't branch fold inline asm statements. · ac5c9304
      Bill Wendling authored
      llvm-svn: 43191
      ac5c9304
Loading