Skip to content
  • Evan Cheng's avatar
    Fix a major performance issue with splitting. If there is a def (not def/use) · 8494ee17
    Evan Cheng authored
    in the middle of a split basic block, create a new live interval starting at
    the def. This avoid artifically extending the live interval over a number of
    cycles where it is dead. e.g.
    
    bb1:
           = vr1204   (use / kill) <= new interval starts and ends here.
    ...
    ...
    vr1204 =          (new def)   <= start a new interval here.
           = vr1204   (use)
    
    llvm-svn: 44436
    8494ee17
Loading