Skip to content
  1. Dec 29, 2013
  2. Dec 28, 2013
  3. Dec 27, 2013
    • Nico Weber's avatar
      Strip dead code when linking by default with BFD ld (linux, ...) and ld64 (os x). · 47ba8fa7
      Nico Weber authored
      This reduces the size of clang-format from 22 MB to 1.8 MB, diagtool goes from
      21 MB to 2.8 MB, libclang.so goes from 29 MB to 20 MB, etc.  The size of the
      bin/ folder shrinks from 270 MB to 200 MB.
      
      Targets that support plugins and don't already use EXPORTED_SYMBOL_FILE
      (which libclang and libLTO already do) can set NO_DEAD_STRIP to opt out.
      
      llvm-svn: 198087
      47ba8fa7
    • Andrea Di Biagio's avatar
      Teach DAGCombiner how to fold a SIGN_EXTEND_INREG of a BUILD_VECTOR of · 46dcddb3
      Andrea Di Biagio authored
      ConstantSDNodes (or UNDEFs) into a simple BUILD_VECTOR.
      
      For example, given the following sequence of dag nodes:
      
        i32 C = Constant<1>
        v4i32 V = BUILD_VECTOR C, C, C, C
        v4i32 Result = SIGN_EXTEND_INREG V, ValueType:v4i1
      
      The SIGN_EXTEND_INREG node can be folded into a build_vector since
      the vector in input is a BUILD_VECTOR of constants.
      
      The optimized sequence is:
      
        i32 C = Constant<-1>
        v4i32 Result = BUILD_VECTOR C, C, C, C
      
      llvm-svn: 198084
      46dcddb3
Loading