Skip to content
  1. Dec 23, 2008
  2. Dec 22, 2008
  3. Dec 21, 2008
  4. Dec 20, 2008
  5. Dec 19, 2008
    • Bill Wendling's avatar
      More precise XFAIL. · 7be667c0
      Bill Wendling authored
      llvm-svn: 61265
      7be667c0
    • Bill Wendling's avatar
    • 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
    • John Criswell's avatar
      The fields for the stoppoint debug intrinsic have not changed, so update the · 8dd90a72
      John Criswell authored
      version number assertions.
      
      llvm-svn: 61257
      8dd90a72
Loading