Skip to content
  1. Jan 03, 2009
  2. Jan 01, 2009
  3. Dec 31, 2008
  4. Dec 29, 2008
  5. Dec 28, 2008
  6. Dec 24, 2008
  7. Dec 23, 2008
  8. Dec 22, 2008
  9. Dec 20, 2008
  10. Dec 19, 2008
    • Dan Gohman's avatar
      Use ~0u instead of -1u as the special value, to hopefully avoid · 650b1e7f
      Dan Gohman authored
      warnings on compilers that warn about such things.
      
      llvm-svn: 61263
      650b1e7f
    • Evan Cheng's avatar
      Fix PR3149. If an early clobber def is a physical register and it is tied to... · 0869f785
      Evan Cheng authored
      Fix PR3149. If an early clobber def is a physical register and it is tied to an input operand, it effectively extends the live range of the physical register. Currently we do not have a good way to represent this.
      
      172     %ECX<def> = MOV32rr %reg1039<kill>
      180     INLINEASM <es:subl $5,$1
              sbbl $3,$0>, 10, %EAX<def>, 14, %ECX<earlyclobber,def>, 9, %EAX<kill>,
      36, <fi#0>, 1, %reg0, 0, 9, %ECX<kill>, 36, <fi#1>, 1, %reg0, 0
      188     %EAX<def> = MOV32rr %EAX<kill>
      196     %ECX<def> = MOV32rr %ECX<kill>
      204     %ECX<def> = MOV32rr %ECX<kill>
      212     %EAX<def> = MOV32rr %EAX<kill>
      220     %EAX<def> = MOV32rr %EAX
      228     %reg1039<def> = MOV32rr %ECX<kill>
      
      The early clobber operand ties ECX input to the ECX def.
      
      The live interval of ECX is represented as this:
      %reg20,inf = [46,47:1)[174,230:0)  0@174-(230) 1@46-(47)
      
      The right way to represent this is something like
      %reg20,inf = [46,47:2)[174,182:1)[181:230:0)  0@174-(182) 1@181-230 @2@46-(47)
      
      Of course that won't work since that means overlapping live ranges defined by two val#.
      
      The workaround for now is to add a bit to val# which says the val# is redefined by a early clobber def somewhere. This prevents the move at 228 from being optimized away by SimpleRegisterCoalescing::AdjustCopiesBackFrom.
      
      llvm-svn: 61259
      0869f785
    • Chris Lattner's avatar
      Fix some release-assert warnings · 9c148c8f
      Chris Lattner authored
      llvm-svn: 61244
      9c148c8f
    • Rafael Espindola's avatar
      Fix bug 3202. · 770b4b83
      Rafael Espindola authored
      The EH_frame and .eh symbols are now private, except for darwin9 and earlier.
      The patch also fixes the definition of PrivateGlobalPrefix on pcc linux.
      
      llvm-svn: 61242
      770b4b83
    • Bill Wendling's avatar
      Perform this loop only when the -debug flag is specified. · 19a54ffc
      Bill Wendling authored
      llvm-svn: 61238
      19a54ffc
    • Dan Gohman's avatar
      Initialize the ImplicitDefed member, to avoid getting stale · 8c82a8a9
      Dan Gohman authored
      data from a previous block.
      
      llvm-svn: 61237
      8c82a8a9
  11. Dec 18, 2008
Loading