Skip to content
  1. Jul 28, 2012
  2. Jul 27, 2012
  3. Jul 26, 2012
  4. Jul 25, 2012
  5. Jul 24, 2012
  6. Jul 23, 2012
  7. Jul 20, 2012
  8. Jul 19, 2012
  9. Jul 18, 2012
  10. Jul 17, 2012
  11. Jul 16, 2012
    • Evan Cheng's avatar
      For something like · 75315b87
      Evan Cheng authored
      uint32_t hi(uint64_t res)
      {
              uint_32t hi = res >> 32;
              return !hi;
      }
      
      llvm IR looks like this:
      define i32 @hi(i64 %res) nounwind uwtable ssp {
      entry:
        %lnot = icmp ult i64 %res, 4294967296
        %lnot.ext = zext i1 %lnot to i32
        ret i32 %lnot.ext
      }
      
      The optimizer has optimize away the right shift and truncate but the resulting
      constant is too large to fit in the 32-bit immediate field. The resulting x86
      code is worse as a result:
              movabsq $4294967296, %rax       ## imm = 0x100000000
              cmpq    %rax, %rdi
              sbbl    %eax, %eax
              andl    $1, %eax
      
      This patch teaches the x86 lowering code to handle ult against a large immediate
      with trailing zeros. It will issue a right shift and a truncate followed by
      a comparison against a shifted immediate.
              shrq    $32, %rdi
              testl   %edi, %edi
              sete    %al
              movzbl  %al, %eax
      
      It also handles a ugt comparison against a large immediate with trailing bits
      set. i.e. X >  0x0ffffffff -> (X >> 32) >= 1
      
      rdar://11866926
      
      llvm-svn: 160312
      75315b87
    • Chad Rosier's avatar
      With r160248 in place this code is no longer needed. · 10e8207c
      Chad Rosier authored
      llvm-svn: 160293
      10e8207c
    • Nadav Rotem's avatar
      Fix a bug in the 3-address conversion of LEA when one of the operands is an · 4968e45b
      Nadav Rotem authored
      undef virtual register. The problem is that ProcessImplicitDefs removes the
      definition of the register and marks all uses as undef. If we lose the undef
      marker then we get a register which has no def, is not marked as undef. The
      live interval analysis does not collect information for these virtual
      registers and we crash in later passes.
      
      Together with Michael Kuperstein <michael.m.kuperstein@intel.com>
      
      llvm-svn: 160260
      4968e45b
    • Alexey Samsonov's avatar
      This CL changes the function prologue and epilogue emitted on X86 when stack needs realignment. · dcc1291d
      Alexey Samsonov authored
      It is intended to fix PR11468.
      
      Old prologue and epilogue looked like this:
      push %rbp
      mov %rsp, %rbp
      and $alignment, %rsp
      push %r14
      push %r15
      ...
      pop %r15
      pop %r14
      mov %rbp, %rsp
      pop %rbp
      
      The problem was to reference the locations of callee-saved registers in exception handling:
      locations of callee-saved had to be re-calculated regarding the stack alignment operation. It would
      take some effort to implement this in LLVM, as currently MachineLocation can only have the form
      "Register + Offset". Funciton prologue and epilogue are now changed to:
      
      push %rbp
      mov %rsp, %rbp
      push %14
      push %15
      and $alignment, %rsp
      ...
      lea -$size_of_saved_registers(%rbp), %rsp
      pop %r15
      pop %r14
      pop %rbp
      
      Reviewed by Chad Rosier.
      
      llvm-svn: 160248
      dcc1291d
  12. Jul 15, 2012
  13. Jul 13, 2012
Loading