Skip to content
  1. Nov 12, 2013
  2. Oct 30, 2013
    • Daniel Sanders's avatar
      [mips][msa] Added support for matching bins[lr]i.[bhwd] from normal IR (i.e. not intrinsics) · d74b130c
      Daniel Sanders authored
      This required correcting the definition of the bins[lr]i intrinsics because
      the result is also the first operand.
      
      It also required removing the (arbitrary) check for 32-bit immediates in
      MipsSEDAGToDAGISel::selectVSplat().
      
      Currently using binsli.d with 2 bits set in the mask doesn't select binsli.d
      because the constant is legalized into a ConstantPool. Similar things can
      happen with binsri.d with more than 10 bits set in the mask. The resulting
      code when this happens is correct but not optimal.
      
      llvm-svn: 193687
      d74b130c
  3. Sep 27, 2013
  4. Sep 24, 2013
    • Daniel Sanders's avatar
      [mips][msa] Remove the VSPLAT and VSPLATD nodes in favour of matching BUILD_VECTOR. · f49dd82e
      Daniel Sanders authored
      Most constant BUILD_VECTOR's are matched using ComplexPatterns which cover
      bitcasted as well as normal vectors. However, it doesn't seem to be possible to
      match ldi.[bhwd] in a type-agnostic manner (e.g. to support the widest range of
      immediates, it should be possible to use ldi.b to load v2i64) using TableGen so
      ldi.[bhwd] is matched using custom code in MipsSEISelDAGToDAG.cpp
      
      This made the majority of the constant splat BUILD_VECTOR lowering redundant.
      The only transformation remaining for constant splats is when an (up-to) 32-bit
      constant splat is possible but the value does not fit into a 10-bit signed
      integer. In this case, the BUILD_VECTOR is transformed into a bitcasted
      BUILD_VECTOR so that fill.[bhw] can be used to splat the vector from a GPR32
      register (which is initialized using the usual lui/addui sequence).
      
      There are no additional tests since this is a re-implementation of previous
      functionality. The change is intended to make it easier to implement some of
      the upcoming instruction selection patches since they can rely on existing
      support for BUILD_VECTOR's in the DAGCombiner.
      
      compare_float.ll changed slightly because a BITCAST is no longer
      introduced during legalization.
      
      llvm-svn: 191299
      f49dd82e
  5. Aug 28, 2013
  6. Aug 13, 2013
  7. Mar 14, 2013
Loading