Skip to content
  1. Sep 16, 2012
    • Nadav Rotem's avatar
      The PMOVZXWD family of functions had patterns extends narrow vector types to wide vector types. · 37521aa8
      Nadav Rotem authored
      It had patterns for zext-loading and extending. This commit adds patterns for loading a wide type, performing a bitcast,
      and extending. This is an odd pattern, but it is commonly used when writing code with intrinsics.
      
      rdar://11897677
      
      llvm-svn: 163995
      37521aa8
    • Jakob Stoklund Olesen's avatar
      Add alternative coalescing algorithm under a flag. · 17e21855
      Jakob Stoklund Olesen authored
      The live range of an SSA value forms a sub-tree of the dominator tree.
      That means the live ranges of two values overlap if and only if the def
      of one value lies within the live range of the other.
      
      This can be used to simplify the interference checking a bit: Visit each
      def in the two registers about to be joined. Check for interference
      against the value that is live in the other register at the def point
      only. It is not necessary to scan the set of overlapping live ranges,
      this interference check can be done while computing the value mapping
      required for the final live range join.
      
      The new algorithm is prepared to handle more complicated conflict
      resolution - We can allow overlapping live ranges with different values
      as long as the differing lanes are undef or unused in the other
      register.
      
      The implementation in this patch doesn't do that yet, it creates code
      that is nearly identical to the old algorithm's, except:
      
      - The new stripCopies() function sees through multiple copies while
        the old RegistersDefinedFromSameValue() only can handle one.
      
      - There are a few rare cases where the new algorithm can erase an
        IMPLICIT_DEF instuction that RegistersDefinedFromSameValue() couldn't
        handle.
      
      llvm-svn: 163991
      17e21855
  2. Sep 15, 2012
  3. Sep 14, 2012
Loading